ansible-role-icingaweb2/molecule/default/tests/test_default.py
2021-08-18 11:53:35 +02:00

17 lines
515 B
Python

import os, re
import testinfra.utils.ansible_runner
def test_packages(host):
for package_name in ['icingaweb2', 'icingaweb2-module-monitoring']:
package = host.package(package_name)
assert package.is_installed
def test_service(host):
service = host.service('apache2')
assert service.is_running
assert service.is_enabled
def test_http_access(host):
cmd = host.run('curl -v http://127.0.0.1/icingaweb2/')
assert cmd.succeeded
assert 'Location: /icingaweb2/authentication/login' in cmd.stderr