677bc50519
* Moved deployment/molecule to deployment-e2e * Update paths and readmes * Nested molecule * Corrected paths * paths * path * Moved docker up
49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
import os
|
|
import pytest
|
|
import testinfra.utils.ansible_runner
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('ui')
|
|
|
|
|
|
@pytest.mark.parametrize("name", [
|
|
("ui_ui_1")
|
|
])
|
|
def test_docker_containers(host, name):
|
|
container = host.docker(name)
|
|
assert container.is_running
|
|
|
|
|
|
@pytest.mark.parametrize("service", [
|
|
("tokenbridge-ui"),
|
|
("rsyslog")
|
|
])
|
|
def test_services(host, service):
|
|
assert host.service(service).is_enabled
|
|
assert host.service(service).is_running
|
|
|
|
|
|
@pytest.mark.parametrize("filename", [
|
|
("/etc/rsyslog.d/32-ui-docker.conf"),
|
|
("/etc/rsyslog.d/37-ui-remote-logging.conf")
|
|
])
|
|
def test_logging(host, filename):
|
|
assert host.file(filename).exists
|
|
assert host.file(filename).mode == 0o0644
|
|
|
|
|
|
def test_index_page_title(host):
|
|
assert host.run_test(
|
|
'curl -s http://localhost:3001 | '
|
|
'grep "<title>" | '
|
|
'grep -q "TokenBridge UI app"'
|
|
)
|
|
|
|
|
|
def test_index_page_error(host):
|
|
assert host.run_expect(
|
|
[1],
|
|
'curl -s http://localhost:3001 | '
|
|
'grep -i -q "error"'
|
|
)
|