mirror of
https://github.com/pi-hole/docker-pi-hole.git
synced 2025-12-20 10:28:36 +00:00
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
import pytest
|
|
|
|
|
|
# Adding 5 seconds sleep to give the emulated architecture time to run
|
|
@pytest.mark.parametrize("docker", ["FTLCONF_webserver_port=999"], indirect=True)
|
|
def test_ftlconf_webserver_port(docker):
|
|
func = docker.run("echo ${FTLCONF_webserver_port}")
|
|
assert "999" in func.stdout
|
|
func = docker.run(
|
|
"""
|
|
sleep 5
|
|
pihole-FTL --config webserver.port
|
|
"""
|
|
)
|
|
assert "999" in func.stdout
|
|
|
|
|
|
# Adding 5 seconds sleep to give the emulated architecture time to run
|
|
@pytest.mark.parametrize(
|
|
"docker", ["FTLCONF_dns_upstreams=1.2.3.4;5.6.7.8#1234"], indirect=True
|
|
)
|
|
def test_ftlconf_dns_upstreams(docker):
|
|
func = docker.run("echo ${FTLCONF_dns_upstreams}")
|
|
assert "1.2.3.4;5.6.7.8#1234" in func.stdout
|
|
func = docker.run(
|
|
"""
|
|
sleep 5
|
|
pihole-FTL --config dns.upstreams
|
|
"""
|
|
)
|
|
assert "[ 1.2.3.4, 5.6.7.8#1234 ]" in func.stdout
|
|
|
|
|
|
CMD_SETUP_WEB_PASSWORD = ". bash_functions.sh ; setup_web_password"
|
|
|
|
|
|
def test_random_password_assigned_fresh_start(docker):
|
|
func = docker.run(CMD_SETUP_WEB_PASSWORD)
|
|
assert "assigning random password:" in func.stdout
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"docker", ["FTLCONF_webserver_api_password=1234567890"], indirect=True
|
|
)
|
|
def test_password_set_by_envvar(docker):
|
|
func = docker.run(CMD_SETUP_WEB_PASSWORD)
|
|
assert "Assigning password defined by Environment Variable" in func.stdout
|