2021-05-29 11:45:35 +00:00
|
|
|
import os
|
2021-05-29 13:02:57 +00:00
|
|
|
import warnings
|
2021-05-29 11:45:35 +00:00
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-05-29 13:02:57 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]).get_hosts("all")
|
|
|
|
|
|
|
|
|
|
|
|
def test_prometheus_running_and_enabled(host):
|
|
|
|
prometheus = host.service("prometheus")
|
|
|
|
assert prometheus.is_running
|
|
|
|
assert prometheus.is_enabled
|
2021-05-29 11:45:35 +00:00
|
|
|
|
|
|
|
|
2021-05-29 13:02:57 +00:00
|
|
|
def test_prometheus_socket(host):
|
|
|
|
# Verify the socket is listening for HTTP traffic
|
2021-05-29 13:59:30 +00:00
|
|
|
assert host.socket("tcp://127.0.0.1:9090").is_listening
|