2020-01-17 21:00:14 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:15:01 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2020-01-17 21:00:14 +00:00
|
|
|
|
|
|
|
|
2021-05-15 14:05:35 +00:00
|
|
|
def test_vaultwarden_running(host):
|
|
|
|
vaultwarden = host.docker("vaultwarden")
|
2020-01-17 21:00:14 +00:00
|
|
|
|
2021-05-15 14:05:35 +00:00
|
|
|
assert vaultwarden.is_running
|
2020-01-17 21:00:14 +00:00
|
|
|
|
|
|
|
|
2021-05-15 14:05:35 +00:00
|
|
|
def test_vaultwarden_socket(host):
|
2020-01-17 21:00:14 +00:00
|
|
|
# Verify the socket is listening for HTTP traffic
|
2020-06-20 13:29:36 +00:00
|
|
|
assert host.socket("tcp://127.0.0.1:8080").is_listening
|
2020-01-17 21:00:14 +00:00
|
|
|
|
|
|
|
|
2021-05-15 14:05:35 +00:00
|
|
|
def test_vaultwarden_conn_error(host):
|
|
|
|
code = int(
|
2021-06-07 20:15:01 +00:00
|
|
|
host.run("curl -s -w '%{http_code}' http://127.0.0.1:8080/alive -o /dev/null").stdout
|
|
|
|
)
|
2020-06-20 13:29:36 +00:00
|
|
|
body = host.run("curl -sX GET http://127.0.0.1:8080/").stdout
|
2020-01-17 21:00:14 +00:00
|
|
|
|
|
|
|
assert code == 200
|
|
|
|
assert "Bitwarden Web Vault" in body
|