2020-01-17 21:00:14 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
import warnings
|
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
|
|
|
|
|
|
|
|
2020-01-22 18:38:54 +00:00
|
|
|
def test_bitwardenrs_running(host):
|
|
|
|
bitwardenrs = host.docker("bitwardenrs")
|
2020-01-17 21:00:14 +00:00
|
|
|
|
2020-01-22 18:38:54 +00:00
|
|
|
assert bitwardenrs.is_running
|
2020-01-17 21:00:14 +00:00
|
|
|
|
|
|
|
|
2020-01-22 18:38:54 +00:00
|
|
|
def test_bitwardenrs_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
|
|
|
|
|
|
|
|
2020-01-22 18:38:54 +00:00
|
|
|
def test_bitwardenrs_conn_error(host):
|
2020-06-20 13:29:36 +00:00
|
|
|
code = int(host.run("curl -s -w '%{http_code}' http://127.0.0.1:8080/alive -o /dev/null").stdout)
|
|
|
|
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
|