35 lines
924 B
Python
35 lines
924 B
Python
import os
|
|
import time
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
).get_hosts("all")
|
|
|
|
|
|
def test_homeassistant_running(host):
|
|
homeassistant = host.docker("homeassistant")
|
|
|
|
assert homeassistant.is_running
|
|
|
|
|
|
def test_homeassistant_socket(host):
|
|
# Verify the socket is listening for HTTP traffic
|
|
for _ in range(30):
|
|
if host.socket("tcp://127.0.0.1:8123").is_listening:
|
|
break
|
|
time.sleep(1)
|
|
|
|
assert host.socket("tcp://127.0.0.1:8123").is_listening
|
|
|
|
|
|
def test_homeassistant_conn_error(host):
|
|
code = int(host.run("curl -sL -w '%{http_code}' http://127.0.0.1:8123/ -o /dev/null").stdout)
|
|
body = host.run("curl -sLX GET http://127.0.0.1:8123/").stdout
|
|
|
|
assert code == 200
|
|
assert "Home Assistant" in body
|