xoxys.homeassistant_docker/molecule/centos7/tests/test_default.py

35 lines
939 B
Python
Raw Normal View History

2019-05-19 16:20:32 +02:00
import os
2019-10-13 23:15:36 +02:00
import time
2019-05-19 16:20:32 +02:00
import testinfra.utils.ansible_runner
2019-10-13 23:15:36 +02:00
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
2019-05-19 16:20:32 +02:00
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_homeassistant_running(host):
homeassistant = host.docker("homeassistant")
2019-10-13 23:15:36 +02:00
assert homeassistant.is_running
2019-10-13 23:15:36 +02:00
def test_homeassistant_socket(host):
2019-10-13 23:15:36 +02:00
# Verify the socket is listening for HTTP traffic
for _ in range(30):
if host.socket("tcp://127.0.0.1:8123").is_listening:
2019-10-13 23:15:36 +02:00
break
time.sleep(1)
2019-05-19 16:20:32 +02:00
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