Update the tests (#4427)
* unpin the requirements and update all to latest available - needs more work still. see notes in `def host()` Signed-off-by: Adam Warner <me@adamwarner.co.uk> * fix py3 monkey patch of testinfra docker using bash Signed-off-by: Adam Hill <adam@diginc.us> * update the other test files to use `host` instead of `Pihole` Address some sticklr and codefactor update python version from 3.7 to 3.8 preload `git` onto the centos/fedora test images, and switch which with command -v in the passthrough mock testinfra is deprecated, use pytest-testinfra Signed-off-by: Adam Warner <me@adamwarner.co.uk> Co-authored-by: Adam Hill <adam@diginc.us>
This commit is contained in:
parent
cedd1a2591
commit
cdd4d9ea9e
|
@ -36,10 +36,10 @@ jobs:
|
||||||
name: Checkout repository
|
name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Set up Python 3.7
|
name: Set up Python 3.8
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.8
|
||||||
-
|
-
|
||||||
name: Install dependencies
|
name: Install dependencies
|
||||||
run: pip install -r test/requirements.txt
|
run: pip install -r test/requirements.txt
|
||||||
|
|
|
@ -9,3 +9,4 @@ __pycache__
|
||||||
*.egg-info
|
*.egg-info
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
|
.vscode/
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM centos:7
|
FROM centos:7
|
||||||
|
RUN yum install -y git
|
||||||
|
|
||||||
ENV GITDIR /etc/.pihole
|
ENV GITDIR /etc/.pihole
|
||||||
ENV SCRIPTDIR /opt/pihole
|
ENV SCRIPTDIR /opt/pihole
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM centos:8
|
FROM centos:8
|
||||||
|
RUN yum install -y git
|
||||||
|
|
||||||
ENV GITDIR /etc/.pihole
|
ENV GITDIR /etc/.pihole
|
||||||
ENV SCRIPTDIR /opt/pihole
|
ENV SCRIPTDIR /opt/pihole
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM fedora:33
|
FROM fedora:33
|
||||||
|
RUN dnf install -y git
|
||||||
|
|
||||||
ENV GITDIR /etc/.pihole
|
ENV GITDIR /etc/.pihole
|
||||||
ENV SCRIPTDIR /opt/pihole
|
ENV SCRIPTDIR /opt/pihole
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM fedora:34
|
FROM fedora:34
|
||||||
|
RUN dnf install -y git
|
||||||
|
|
||||||
ENV GITDIR /etc/.pihole
|
ENV GITDIR /etc/.pihole
|
||||||
ENV SCRIPTDIR /opt/pihole
|
ENV SCRIPTDIR /opt/pihole
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
import pytest
|
import pytest
|
||||||
import testinfra
|
import testinfra
|
||||||
|
import testinfra.backend.docker
|
||||||
|
import subprocess
|
||||||
from textwrap import dedent
|
from textwrap import dedent
|
||||||
|
|
||||||
check_output = testinfra.get_backend(
|
|
||||||
"local://"
|
|
||||||
).get_module("Command").check_output
|
|
||||||
|
|
||||||
SETUPVARS = {
|
SETUPVARS = {
|
||||||
'PIHOLE_INTERFACE': 'eth99',
|
'PIHOLE_INTERFACE': 'eth99',
|
||||||
|
@ -12,85 +11,42 @@ SETUPVARS = {
|
||||||
'PIHOLE_DNS_2': '4.2.2.2'
|
'PIHOLE_DNS_2': '4.2.2.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IMAGE = 'pytest_pihole:test_container'
|
||||||
|
|
||||||
tick_box = "[\x1b[1;32m\u2713\x1b[0m]"
|
tick_box = "[\x1b[1;32m\u2713\x1b[0m]"
|
||||||
cross_box = "[\x1b[1;31m\u2717\x1b[0m]"
|
cross_box = "[\x1b[1;31m\u2717\x1b[0m]"
|
||||||
info_box = "[i]"
|
info_box = "[i]"
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
# Monkeypatch sh to bash, if they ever support non hard code /bin/sh this can go away
|
||||||
def Pihole(Docker):
|
# https://github.com/pytest-dev/pytest-testinfra/blob/master/testinfra/backend/docker.py
|
||||||
'''
|
def run_bash(self, command, *args, **kwargs):
|
||||||
used to contain some script stubbing, now pretty much an alias.
|
|
||||||
Also provides bash as the default run function shell
|
|
||||||
'''
|
|
||||||
def run_bash(self, command, *args, **kwargs):
|
|
||||||
cmd = self.get_command(command, *args)
|
cmd = self.get_command(command, *args)
|
||||||
if self.user is not None:
|
if self.user is not None:
|
||||||
out = self.run_local(
|
out = self.run_local(
|
||||||
"docker exec -u %s %s /bin/bash -c %s",
|
"docker exec -u %s %s /bin/bash -c %s", self.user, self.name, cmd
|
||||||
self.user, self.name, cmd)
|
)
|
||||||
else:
|
else:
|
||||||
out = self.run_local(
|
out = self.run_local("docker exec %s /bin/bash -c %s", self.name, cmd)
|
||||||
"docker exec %s /bin/bash -c %s", self.name, cmd)
|
|
||||||
out.command = self.encode(cmd)
|
out.command = self.encode(cmd)
|
||||||
return out
|
return out
|
||||||
|
|
||||||
funcType = type(Docker.run)
|
|
||||||
Docker.run = funcType(run_bash, Docker)
|
testinfra.backend.docker.DockerBackend.run = run_bash
|
||||||
return Docker
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def Docker(request, args, image, cmd):
|
def host():
|
||||||
'''
|
# run a container
|
||||||
combine our fixtures into a docker run command and setup finalizer to
|
docker_id = subprocess.check_output(
|
||||||
cleanup
|
['docker', 'run', '-t', '-d', '--cap-add=ALL', IMAGE]).decode().strip()
|
||||||
'''
|
|
||||||
assert 'docker' in check_output('id'), "Are you in the docker group?"
|
|
||||||
docker_run = "docker run {} {} {}".format(args, image, cmd)
|
|
||||||
docker_id = check_output(docker_run)
|
|
||||||
|
|
||||||
def teardown():
|
# return a testinfra connection to the container
|
||||||
check_output("docker rm -f %s", docker_id)
|
docker_host = testinfra.get_host("docker://" + docker_id)
|
||||||
request.addfinalizer(teardown)
|
|
||||||
|
|
||||||
docker_container = testinfra.get_backend("docker://" + docker_id)
|
yield docker_host
|
||||||
docker_container.id = docker_id
|
# at the end of the test suite, destroy the container
|
||||||
return docker_container
|
subprocess.check_call(['docker', 'rm', '-f', docker_id])
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
|
||||||
def args(request):
|
|
||||||
'''
|
|
||||||
-t became required when tput began being used
|
|
||||||
'''
|
|
||||||
return '-t -d --cap-add=ALL'
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(params=[
|
|
||||||
'test_container'
|
|
||||||
])
|
|
||||||
def tag(request):
|
|
||||||
'''
|
|
||||||
consumed by image to make the test matrix
|
|
||||||
'''
|
|
||||||
return request.param
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture()
|
|
||||||
def image(request, tag):
|
|
||||||
'''
|
|
||||||
built by test_000_build_containers.py
|
|
||||||
'''
|
|
||||||
return 'pytest_pihole:{}'.format(tag)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture()
|
|
||||||
def cmd(request):
|
|
||||||
'''
|
|
||||||
default to doing nothing by tailing null, but don't exit
|
|
||||||
'''
|
|
||||||
return 'tail -f /dev/null'
|
|
||||||
|
|
||||||
|
|
||||||
# Helper functions
|
# Helper functions
|
||||||
|
@ -129,7 +85,7 @@ def mock_command_passthrough(script, args, container):
|
||||||
|
|
||||||
Example use-case: mocking `git pull` but still allowing `git clone` to work as intended
|
Example use-case: mocking `git pull` but still allowing `git clone` to work as intended
|
||||||
'''
|
'''
|
||||||
orig_script_path = check_output('which {}'.format(script))
|
orig_script_path = container.check_output('command -v {}'.format(script))
|
||||||
full_script_path = '/usr/local/bin/{}'.format(script)
|
full_script_path = '/usr/local/bin/{}'.format(script)
|
||||||
mock_script = dedent(r'''\
|
mock_script = dedent(r'''\
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
@ -209,6 +165,7 @@ def mock_command_2(script, args, container):
|
||||||
content=mock_script,
|
content=mock_script,
|
||||||
scriptlog=script))
|
scriptlog=script))
|
||||||
|
|
||||||
|
|
||||||
def run_script(Pihole, script):
|
def run_script(Pihole, script):
|
||||||
result = Pihole.run(script)
|
result = Pihole.run(script)
|
||||||
assert result.rc == 0
|
assert result.rc == 0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
docker-compose==1.23.2
|
docker-compose
|
||||||
pytest==4.3.0
|
pytest
|
||||||
pytest-xdist==1.26.1
|
pytest-xdist
|
||||||
pytest-cov==2.6.1
|
pytest-cov
|
||||||
testinfra==1.19.0
|
pytest-testinfra
|
||||||
tox==3.7.0
|
tox
|
||||||
|
|
|
@ -14,14 +14,14 @@ from .conftest import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_supported_package_manager(Pihole):
|
def test_supported_package_manager(host):
|
||||||
'''
|
'''
|
||||||
confirm installer exits when no supported package manager found
|
confirm installer exits when no supported package manager found
|
||||||
'''
|
'''
|
||||||
# break supported package managers
|
# break supported package managers
|
||||||
Pihole.run('rm -rf /usr/bin/apt-get')
|
host.run('rm -rf /usr/bin/apt-get')
|
||||||
Pihole.run('rm -rf /usr/bin/rpm')
|
host.run('rm -rf /usr/bin/rpm')
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
''')
|
''')
|
||||||
|
@ -30,7 +30,7 @@ def test_supported_package_manager(Pihole):
|
||||||
# assert package_manager_detect.rc == 1
|
# assert package_manager_detect.rc == 1
|
||||||
|
|
||||||
|
|
||||||
def test_setupVars_are_sourced_to_global_scope(Pihole):
|
def test_setupVars_are_sourced_to_global_scope(host):
|
||||||
'''
|
'''
|
||||||
currently update_dialogs sources setupVars with a dot,
|
currently update_dialogs sources setupVars with a dot,
|
||||||
then various other functions use the variables.
|
then various other functions use the variables.
|
||||||
|
@ -40,7 +40,7 @@ def test_setupVars_are_sourced_to_global_scope(Pihole):
|
||||||
for k, v in SETUPVARS.items():
|
for k, v in SETUPVARS.items():
|
||||||
setup_var_file += "{}={}\n".format(k, v)
|
setup_var_file += "{}={}\n".format(k, v)
|
||||||
setup_var_file += "EOF\n"
|
setup_var_file += "EOF\n"
|
||||||
Pihole.run(setup_var_file)
|
host.run(setup_var_file)
|
||||||
|
|
||||||
script = dedent('''\
|
script = dedent('''\
|
||||||
set -e
|
set -e
|
||||||
|
@ -58,13 +58,13 @@ def test_setupVars_are_sourced_to_global_scope(Pihole):
|
||||||
printSetupVars
|
printSetupVars
|
||||||
''')
|
''')
|
||||||
|
|
||||||
output = run_script(Pihole, script).stdout
|
output = run_script(host, script).stdout
|
||||||
|
|
||||||
for k, v in SETUPVARS.items():
|
for k, v in SETUPVARS.items():
|
||||||
assert "{}={}".format(k, v) in output
|
assert "{}={}".format(k, v) in output
|
||||||
|
|
||||||
|
|
||||||
def test_setupVars_saved_to_file(Pihole):
|
def test_setupVars_saved_to_file(host):
|
||||||
'''
|
'''
|
||||||
confirm saved settings are written to a file for future updates to re-use
|
confirm saved settings are written to a file for future updates to re-use
|
||||||
'''
|
'''
|
||||||
|
@ -72,7 +72,7 @@ def test_setupVars_saved_to_file(Pihole):
|
||||||
set_setup_vars = '\n'
|
set_setup_vars = '\n'
|
||||||
for k, v in SETUPVARS.items():
|
for k, v in SETUPVARS.items():
|
||||||
set_setup_vars += " {}={}\n".format(k, v)
|
set_setup_vars += " {}={}\n".format(k, v)
|
||||||
Pihole.run(set_setup_vars).stdout
|
host.run(set_setup_vars)
|
||||||
|
|
||||||
script = dedent('''\
|
script = dedent('''\
|
||||||
set -e
|
set -e
|
||||||
|
@ -87,17 +87,17 @@ def test_setupVars_saved_to_file(Pihole):
|
||||||
cat /etc/pihole/setupVars.conf
|
cat /etc/pihole/setupVars.conf
|
||||||
'''.format(set_setup_vars))
|
'''.format(set_setup_vars))
|
||||||
|
|
||||||
output = run_script(Pihole, script).stdout
|
output = run_script(host, script).stdout
|
||||||
|
|
||||||
for k, v in SETUPVARS.items():
|
for k, v in SETUPVARS.items():
|
||||||
assert "{}={}".format(k, v) in output
|
assert "{}={}".format(k, v) in output
|
||||||
|
|
||||||
|
|
||||||
def test_selinux_not_detected(Pihole):
|
def test_selinux_not_detected(host):
|
||||||
'''
|
'''
|
||||||
confirms installer continues when SELinux configuration file does not exist
|
confirms installer continues when SELinux configuration file does not exist
|
||||||
'''
|
'''
|
||||||
check_selinux = Pihole.run('''
|
check_selinux = host.run('''
|
||||||
rm -f /etc/selinux/config
|
rm -f /etc/selinux/config
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
checkSelinux
|
checkSelinux
|
||||||
|
@ -107,11 +107,11 @@ def test_selinux_not_detected(Pihole):
|
||||||
assert check_selinux.rc == 0
|
assert check_selinux.rc == 0
|
||||||
|
|
||||||
|
|
||||||
def test_installPiholeWeb_fresh_install_no_errors(Pihole):
|
def test_installPiholeWeb_fresh_install_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms all web page assets from Core repo are installed on a fresh build
|
confirms all web page assets from Core repo are installed on a fresh build
|
||||||
'''
|
'''
|
||||||
installWeb = Pihole.run('''
|
installWeb = host.run('''
|
||||||
umask 0027
|
umask 0027
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
installPiholeWeb
|
installPiholeWeb
|
||||||
|
@ -128,19 +128,19 @@ def test_installPiholeWeb_fresh_install_no_errors(Pihole):
|
||||||
assert expected_stdout in installWeb.stdout
|
assert expected_stdout in installWeb.stdout
|
||||||
expected_stdout = tick_box + ' Installing sudoer file'
|
expected_stdout = tick_box + ' Installing sudoer file'
|
||||||
assert expected_stdout in installWeb.stdout
|
assert expected_stdout in installWeb.stdout
|
||||||
web_directory = Pihole.run('ls -r /var/www/html/pihole').stdout
|
web_directory = host.run('ls -r /var/www/html/pihole').stdout
|
||||||
assert 'index.php' in web_directory
|
assert 'index.php' in web_directory
|
||||||
assert 'blockingpage.css' in web_directory
|
assert 'blockingpage.css' in web_directory
|
||||||
|
|
||||||
|
|
||||||
def get_directories_recursive(Pihole, directory):
|
def get_directories_recursive(host, directory):
|
||||||
if directory is None:
|
if directory is None:
|
||||||
return directory
|
return directory
|
||||||
ls = Pihole.run('ls -d {}'.format(directory + '/*/'))
|
ls = host.run('ls -d {}'.format(directory + '/*/'))
|
||||||
directories = list(filter(bool, ls.stdout.splitlines()))
|
directories = list(filter(bool, ls.stdout.splitlines()))
|
||||||
dirs = directories
|
dirs = directories
|
||||||
for dirval in directories:
|
for dirval in directories:
|
||||||
dir_rec = get_directories_recursive(Pihole, dirval)
|
dir_rec = get_directories_recursive(host, dirval)
|
||||||
if isinstance(dir_rec, str):
|
if isinstance(dir_rec, str):
|
||||||
dirs.extend([dir_rec])
|
dirs.extend([dir_rec])
|
||||||
else:
|
else:
|
||||||
|
@ -148,14 +148,14 @@ def get_directories_recursive(Pihole, directory):
|
||||||
return dirs
|
return dirs
|
||||||
|
|
||||||
|
|
||||||
def test_installPihole_fresh_install_readableFiles(Pihole):
|
def test_installPihole_fresh_install_readableFiles(host):
|
||||||
'''
|
'''
|
||||||
confirms all neccessary files are readable by pihole user
|
confirms all neccessary files are readable by pihole user
|
||||||
'''
|
'''
|
||||||
# Whiptail dialog returns Cancel for user prompt
|
# Whiptail dialog returns Cancel for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
# mock git pull
|
# mock git pull
|
||||||
mock_command_passthrough('git', {'pull': ('', '0')}, Pihole)
|
mock_command_passthrough('git', {'pull': ('', '0')}, host)
|
||||||
# mock systemctl to not start lighttpd and FTL
|
# mock systemctl to not start lighttpd and FTL
|
||||||
mock_command_2(
|
mock_command_2(
|
||||||
'systemctl',
|
'systemctl',
|
||||||
|
@ -189,12 +189,12 @@ def test_installPihole_fresh_install_readableFiles(Pihole):
|
||||||
'0'
|
'0'
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
# try to install man
|
# try to install man
|
||||||
Pihole.run('command -v apt-get > /dev/null && apt-get install -qq man')
|
host.run('command -v apt-get > /dev/null && apt-get install -qq man')
|
||||||
Pihole.run('command -v dnf > /dev/null && dnf install -y man')
|
host.run('command -v dnf > /dev/null && dnf install -y man')
|
||||||
Pihole.run('command -v yum > /dev/null && yum install -y man')
|
host.run('command -v yum > /dev/null && yum install -y man')
|
||||||
# create configuration file
|
# create configuration file
|
||||||
setup_var_file = 'cat <<EOF> /etc/pihole/setupVars.conf\n'
|
setup_var_file = 'cat <<EOF> /etc/pihole/setupVars.conf\n'
|
||||||
for k, v in SETUPVARS.items():
|
for k, v in SETUPVARS.items():
|
||||||
|
@ -202,8 +202,8 @@ def test_installPihole_fresh_install_readableFiles(Pihole):
|
||||||
setup_var_file += "INSTALL_WEB_SERVER=true\n"
|
setup_var_file += "INSTALL_WEB_SERVER=true\n"
|
||||||
setup_var_file += "INSTALL_WEB_INTERFACE=true\n"
|
setup_var_file += "INSTALL_WEB_INTERFACE=true\n"
|
||||||
setup_var_file += "EOF\n"
|
setup_var_file += "EOF\n"
|
||||||
Pihole.run(setup_var_file)
|
host.run(setup_var_file)
|
||||||
install = Pihole.run('''
|
install = host.run('''
|
||||||
export TERM=xterm
|
export TERM=xterm
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
umask 0027
|
umask 0027
|
||||||
|
@ -223,172 +223,172 @@ def test_installPihole_fresh_install_readableFiles(Pihole):
|
||||||
test_cmd = 'su --shell /bin/bash --command "test -{0} {1}" -p {2}'
|
test_cmd = 'su --shell /bin/bash --command "test -{0} {1}" -p {2}'
|
||||||
# check files in /etc/pihole for read, write and execute permission
|
# check files in /etc/pihole for read, write and execute permission
|
||||||
check_etc = test_cmd.format('r', '/etc/pihole', piholeuser)
|
check_etc = test_cmd.format('r', '/etc/pihole', piholeuser)
|
||||||
actual_rc = Pihole.run(check_etc).rc
|
actual_rc = host.run(check_etc).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_etc = test_cmd.format('x', '/etc/pihole', piholeuser)
|
check_etc = test_cmd.format('x', '/etc/pihole', piholeuser)
|
||||||
actual_rc = Pihole.run(check_etc).rc
|
actual_rc = host.run(check_etc).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable and writable dhcp.leases
|
# readable and writable dhcp.leases
|
||||||
check_leases = test_cmd.format('r', '/etc/pihole/dhcp.leases', piholeuser)
|
check_leases = test_cmd.format('r', '/etc/pihole/dhcp.leases', piholeuser)
|
||||||
actual_rc = Pihole.run(check_leases).rc
|
actual_rc = host.run(check_leases).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_leases = test_cmd.format('w', '/etc/pihole/dhcp.leases', piholeuser)
|
check_leases = test_cmd.format('w', '/etc/pihole/dhcp.leases', piholeuser)
|
||||||
actual_rc = Pihole.run(check_leases).rc
|
actual_rc = host.run(check_leases).rc
|
||||||
# readable dns-servers.conf
|
# readable dns-servers.conf
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_servers = test_cmd.format(
|
check_servers = test_cmd.format(
|
||||||
'r', '/etc/pihole/dns-servers.conf', piholeuser)
|
'r', '/etc/pihole/dns-servers.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_servers).rc
|
actual_rc = host.run(check_servers).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable GitHubVersions
|
# readable GitHubVersions
|
||||||
check_version = test_cmd.format(
|
check_version = test_cmd.format(
|
||||||
'r', '/etc/pihole/GitHubVersions', piholeuser)
|
'r', '/etc/pihole/GitHubVersions', piholeuser)
|
||||||
actual_rc = Pihole.run(check_version).rc
|
actual_rc = host.run(check_version).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable install.log
|
# readable install.log
|
||||||
check_install = test_cmd.format(
|
check_install = test_cmd.format(
|
||||||
'r', '/etc/pihole/install.log', piholeuser)
|
'r', '/etc/pihole/install.log', piholeuser)
|
||||||
actual_rc = Pihole.run(check_install).rc
|
actual_rc = host.run(check_install).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable localbranches
|
# readable localbranches
|
||||||
check_localbranch = test_cmd.format(
|
check_localbranch = test_cmd.format(
|
||||||
'r', '/etc/pihole/localbranches', piholeuser)
|
'r', '/etc/pihole/localbranches', piholeuser)
|
||||||
actual_rc = Pihole.run(check_localbranch).rc
|
actual_rc = host.run(check_localbranch).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable localversions
|
# readable localversions
|
||||||
check_localversion = test_cmd.format(
|
check_localversion = test_cmd.format(
|
||||||
'r', '/etc/pihole/localversions', piholeuser)
|
'r', '/etc/pihole/localversions', piholeuser)
|
||||||
actual_rc = Pihole.run(check_localversion).rc
|
actual_rc = host.run(check_localversion).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable logrotate
|
# readable logrotate
|
||||||
check_logrotate = test_cmd.format(
|
check_logrotate = test_cmd.format(
|
||||||
'r', '/etc/pihole/logrotate', piholeuser)
|
'r', '/etc/pihole/logrotate', piholeuser)
|
||||||
actual_rc = Pihole.run(check_logrotate).rc
|
actual_rc = host.run(check_logrotate).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable macvendor.db
|
# readable macvendor.db
|
||||||
check_macvendor = test_cmd.format(
|
check_macvendor = test_cmd.format(
|
||||||
'r', '/etc/pihole/macvendor.db', piholeuser)
|
'r', '/etc/pihole/macvendor.db', piholeuser)
|
||||||
actual_rc = Pihole.run(check_macvendor).rc
|
actual_rc = host.run(check_macvendor).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable and writeable pihole-FTL.conf
|
# readable and writeable pihole-FTL.conf
|
||||||
check_FTLconf = test_cmd.format(
|
check_FTLconf = test_cmd.format(
|
||||||
'r', '/etc/pihole/pihole-FTL.conf', piholeuser)
|
'r', '/etc/pihole/pihole-FTL.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_FTLconf).rc
|
actual_rc = host.run(check_FTLconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_FTLconf = test_cmd.format(
|
check_FTLconf = test_cmd.format(
|
||||||
'w', '/etc/pihole/pihole-FTL.conf', piholeuser)
|
'w', '/etc/pihole/pihole-FTL.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_FTLconf).rc
|
actual_rc = host.run(check_FTLconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable setupVars.conf
|
# readable setupVars.conf
|
||||||
check_setup = test_cmd.format(
|
check_setup = test_cmd.format(
|
||||||
'r', '/etc/pihole/setupVars.conf', piholeuser)
|
'r', '/etc/pihole/setupVars.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_setup).rc
|
actual_rc = host.run(check_setup).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check dnsmasq files
|
# check dnsmasq files
|
||||||
# readable /etc/dnsmasq.conf
|
# readable /etc/dnsmasq.conf
|
||||||
check_dnsmasqconf = test_cmd.format(
|
check_dnsmasqconf = test_cmd.format(
|
||||||
'r', '/etc/dnsmasq.conf', piholeuser)
|
'r', '/etc/dnsmasq.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_dnsmasqconf).rc
|
actual_rc = host.run(check_dnsmasqconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# readable /etc/dnsmasq.d/01-pihole.conf
|
# readable /etc/dnsmasq.d/01-pihole.conf
|
||||||
check_dnsmasqconf = test_cmd.format(
|
check_dnsmasqconf = test_cmd.format(
|
||||||
'r', '/etc/dnsmasq.d', piholeuser)
|
'r', '/etc/dnsmasq.d', piholeuser)
|
||||||
actual_rc = Pihole.run(check_dnsmasqconf).rc
|
actual_rc = host.run(check_dnsmasqconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_dnsmasqconf = test_cmd.format(
|
check_dnsmasqconf = test_cmd.format(
|
||||||
'x', '/etc/dnsmasq.d', piholeuser)
|
'x', '/etc/dnsmasq.d', piholeuser)
|
||||||
actual_rc = Pihole.run(check_dnsmasqconf).rc
|
actual_rc = host.run(check_dnsmasqconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_dnsmasqconf = test_cmd.format(
|
check_dnsmasqconf = test_cmd.format(
|
||||||
'r', '/etc/dnsmasq.d/01-pihole.conf', piholeuser)
|
'r', '/etc/dnsmasq.d/01-pihole.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_dnsmasqconf).rc
|
actual_rc = host.run(check_dnsmasqconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check readable and executable /etc/init.d/pihole-FTL
|
# check readable and executable /etc/init.d/pihole-FTL
|
||||||
check_init = test_cmd.format(
|
check_init = test_cmd.format(
|
||||||
'x', '/etc/init.d/pihole-FTL', piholeuser)
|
'x', '/etc/init.d/pihole-FTL', piholeuser)
|
||||||
actual_rc = Pihole.run(check_init).rc
|
actual_rc = host.run(check_init).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_init = test_cmd.format(
|
check_init = test_cmd.format(
|
||||||
'r', '/etc/init.d/pihole-FTL', piholeuser)
|
'r', '/etc/init.d/pihole-FTL', piholeuser)
|
||||||
actual_rc = Pihole.run(check_init).rc
|
actual_rc = host.run(check_init).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check readable /etc/lighttpd/lighttpd.conf
|
# check readable /etc/lighttpd/lighttpd.conf
|
||||||
check_lighttpd = test_cmd.format(
|
check_lighttpd = test_cmd.format(
|
||||||
'r', '/etc/lighttpd/lighttpd.conf', piholeuser)
|
'r', '/etc/lighttpd/lighttpd.conf', piholeuser)
|
||||||
actual_rc = Pihole.run(check_lighttpd).rc
|
actual_rc = host.run(check_lighttpd).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check readable and executable manpages
|
# check readable and executable manpages
|
||||||
if maninstalled is True:
|
if maninstalled is True:
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'x', '/usr/local/share/man', piholeuser)
|
'x', '/usr/local/share/man', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'r', '/usr/local/share/man', piholeuser)
|
'r', '/usr/local/share/man', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'x', '/usr/local/share/man/man8', piholeuser)
|
'x', '/usr/local/share/man/man8', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'r', '/usr/local/share/man/man8', piholeuser)
|
'r', '/usr/local/share/man/man8', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'x', '/usr/local/share/man/man5', piholeuser)
|
'x', '/usr/local/share/man/man5', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'r', '/usr/local/share/man/man5', piholeuser)
|
'r', '/usr/local/share/man/man5', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'r', '/usr/local/share/man/man8/pihole.8', piholeuser)
|
'r', '/usr/local/share/man/man8/pihole.8', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'r', '/usr/local/share/man/man8/pihole-FTL.8', piholeuser)
|
'r', '/usr/local/share/man/man8/pihole-FTL.8', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_man = test_cmd.format(
|
check_man = test_cmd.format(
|
||||||
'r', '/usr/local/share/man/man5/pihole-FTL.conf.5', piholeuser)
|
'r', '/usr/local/share/man/man5/pihole-FTL.conf.5', piholeuser)
|
||||||
actual_rc = Pihole.run(check_man).rc
|
actual_rc = host.run(check_man).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check not readable sudoers file
|
# check not readable sudoers file
|
||||||
check_sudo = test_cmd.format(
|
check_sudo = test_cmd.format(
|
||||||
'r', '/etc/sudoers.d/pihole', piholeuser)
|
'r', '/etc/sudoers.d/pihole', piholeuser)
|
||||||
actual_rc = Pihole.run(check_sudo).rc
|
actual_rc = host.run(check_sudo).rc
|
||||||
assert exit_status_success != actual_rc
|
assert exit_status_success != actual_rc
|
||||||
# check not readable cron file
|
# check not readable cron file
|
||||||
check_sudo = test_cmd.format(
|
check_sudo = test_cmd.format(
|
||||||
'x', '/etc/cron.d/', piholeuser)
|
'x', '/etc/cron.d/', piholeuser)
|
||||||
actual_rc = Pihole.run(check_sudo).rc
|
actual_rc = host.run(check_sudo).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_sudo = test_cmd.format(
|
check_sudo = test_cmd.format(
|
||||||
'r', '/etc/cron.d/', piholeuser)
|
'r', '/etc/cron.d/', piholeuser)
|
||||||
actual_rc = Pihole.run(check_sudo).rc
|
actual_rc = host.run(check_sudo).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_sudo = test_cmd.format(
|
check_sudo = test_cmd.format(
|
||||||
'r', '/etc/cron.d/pihole', piholeuser)
|
'r', '/etc/cron.d/pihole', piholeuser)
|
||||||
actual_rc = Pihole.run(check_sudo).rc
|
actual_rc = host.run(check_sudo).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
directories = get_directories_recursive(Pihole, '/etc/.pihole/')
|
directories = get_directories_recursive(host, '/etc/.pihole/')
|
||||||
for directory in directories:
|
for directory in directories:
|
||||||
check_pihole = test_cmd.format('r', directory, piholeuser)
|
check_pihole = test_cmd.format('r', directory, piholeuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
check_pihole = test_cmd.format('x', directory, piholeuser)
|
check_pihole = test_cmd.format('x', directory, piholeuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
findfiles = 'find "{}" -maxdepth 1 -type f -exec echo {{}} \\;;'
|
findfiles = 'find "{}" -maxdepth 1 -type f -exec echo {{}} \\;;'
|
||||||
filelist = Pihole.run(findfiles.format(directory))
|
filelist = host.run(findfiles.format(directory))
|
||||||
files = list(filter(bool, filelist.stdout.splitlines()))
|
files = list(filter(bool, filelist.stdout.splitlines()))
|
||||||
for file in files:
|
for file in files:
|
||||||
check_pihole = test_cmd.format('r', file, piholeuser)
|
check_pihole = test_cmd.format('r', file, piholeuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("test_webpage", [True])
|
@pytest.mark.parametrize("test_webpage", [True])
|
||||||
def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
def test_installPihole_fresh_install_readableBlockpage(host, test_webpage):
|
||||||
'''
|
'''
|
||||||
confirms all web page assets from Core repo are readable
|
confirms all web page assets from Core repo are readable
|
||||||
by $LIGHTTPD_USER on a fresh build
|
by $LIGHTTPD_USER on a fresh build
|
||||||
|
@ -398,9 +398,10 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
||||||
# "pi.hole"
|
# "pi.hole"
|
||||||
]
|
]
|
||||||
# Whiptail dialog returns Cancel for user prompt
|
# Whiptail dialog returns Cancel for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
|
|
||||||
# mock git pull
|
# mock git pull
|
||||||
mock_command_passthrough('git', {'pull': ('', '0')}, Pihole)
|
mock_command_passthrough('git', {'pull': ('', '0')}, host)
|
||||||
# mock systemctl to start lighttpd and FTL
|
# mock systemctl to start lighttpd and FTL
|
||||||
ligthttpdcommand = dedent(r'''\"\"
|
ligthttpdcommand = dedent(r'''\"\"
|
||||||
echo 'starting lighttpd with {}'
|
echo 'starting lighttpd with {}'
|
||||||
|
@ -478,7 +479,7 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
||||||
'0'
|
'0'
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
# create configuration file
|
# create configuration file
|
||||||
setup_var_file = 'cat <<EOF> /etc/pihole/setupVars.conf\n'
|
setup_var_file = 'cat <<EOF> /etc/pihole/setupVars.conf\n'
|
||||||
|
@ -488,8 +489,8 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
||||||
setup_var_file += "INSTALL_WEB_INTERFACE=true\n"
|
setup_var_file += "INSTALL_WEB_INTERFACE=true\n"
|
||||||
setup_var_file += "IPV4_ADDRESS=127.0.0.1\n"
|
setup_var_file += "IPV4_ADDRESS=127.0.0.1\n"
|
||||||
setup_var_file += "EOF\n"
|
setup_var_file += "EOF\n"
|
||||||
Pihole.run(setup_var_file)
|
host.run(setup_var_file)
|
||||||
installWeb = Pihole.run('''
|
installWeb = host.run('''
|
||||||
export TERM=xterm
|
export TERM=xterm
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
umask 0027
|
umask 0027
|
||||||
|
@ -542,55 +543,55 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
||||||
# readable and writeable pihole-FTL.db
|
# readable and writeable pihole-FTL.db
|
||||||
check_FTLconf = test_cmd.format(
|
check_FTLconf = test_cmd.format(
|
||||||
'r', '/etc/pihole/pihole-FTL.db', piholeuser)
|
'r', '/etc/pihole/pihole-FTL.db', piholeuser)
|
||||||
actual_rc = Pihole.run(check_FTLconf).rc
|
actual_rc = host.run(check_FTLconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_FTLconf = test_cmd.format(
|
check_FTLconf = test_cmd.format(
|
||||||
'w', '/etc/pihole/pihole-FTL.db', piholeuser)
|
'w', '/etc/pihole/pihole-FTL.db', piholeuser)
|
||||||
actual_rc = Pihole.run(check_FTLconf).rc
|
actual_rc = host.run(check_FTLconf).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check directories above $webroot for read and execute permission
|
# check directories above $webroot for read and execute permission
|
||||||
check_var = test_cmd.format('r', '/var', webuser)
|
check_var = test_cmd.format('r', '/var', webuser)
|
||||||
actual_rc = Pihole.run(check_var).rc
|
actual_rc = host.run(check_var).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_var = test_cmd.format('x', '/var', webuser)
|
check_var = test_cmd.format('x', '/var', webuser)
|
||||||
actual_rc = Pihole.run(check_var).rc
|
actual_rc = host.run(check_var).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_www = test_cmd.format('r', '/var/www', webuser)
|
check_www = test_cmd.format('r', '/var/www', webuser)
|
||||||
actual_rc = Pihole.run(check_www).rc
|
actual_rc = host.run(check_www).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_www = test_cmd.format('x', '/var/www', webuser)
|
check_www = test_cmd.format('x', '/var/www', webuser)
|
||||||
actual_rc = Pihole.run(check_www).rc
|
actual_rc = host.run(check_www).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_html = test_cmd.format('r', '/var/www/html', webuser)
|
check_html = test_cmd.format('r', '/var/www/html', webuser)
|
||||||
actual_rc = Pihole.run(check_html).rc
|
actual_rc = host.run(check_html).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_html = test_cmd.format('x', '/var/www/html', webuser)
|
check_html = test_cmd.format('x', '/var/www/html', webuser)
|
||||||
actual_rc = Pihole.run(check_html).rc
|
actual_rc = host.run(check_html).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check directories below $webroot for read and execute permission
|
# check directories below $webroot for read and execute permission
|
||||||
check_admin = test_cmd.format('r', webroot + '/admin', webuser)
|
check_admin = test_cmd.format('r', webroot + '/admin', webuser)
|
||||||
actual_rc = Pihole.run(check_admin).rc
|
actual_rc = host.run(check_admin).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_admin = test_cmd.format('x', webroot + '/admin', webuser)
|
check_admin = test_cmd.format('x', webroot + '/admin', webuser)
|
||||||
actual_rc = Pihole.run(check_admin).rc
|
actual_rc = host.run(check_admin).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
directories = get_directories_recursive(Pihole, webroot + '/admin/*/')
|
directories = get_directories_recursive(host, webroot + '/admin/*/')
|
||||||
for directory in directories:
|
for directory in directories:
|
||||||
check_pihole = test_cmd.format('r', directory, webuser)
|
check_pihole = test_cmd.format('r', directory, webuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
check_pihole = test_cmd.format('x', directory, webuser)
|
check_pihole = test_cmd.format('x', directory, webuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
findfiles = 'find "{}" -maxdepth 1 -type f -exec echo {{}} \\;;'
|
findfiles = 'find "{}" -maxdepth 1 -type f -exec echo {{}} \\;;'
|
||||||
filelist = Pihole.run(findfiles.format(directory))
|
filelist = host.run(findfiles.format(directory))
|
||||||
files = list(filter(bool, filelist.stdout.splitlines()))
|
files = list(filter(bool, filelist.stdout.splitlines()))
|
||||||
for file in files:
|
for file in files:
|
||||||
check_pihole = test_cmd.format('r', file, webuser)
|
check_pihole = test_cmd.format('r', file, webuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
# check web interface files
|
# check web interface files
|
||||||
# change nameserver to pi-hole
|
# change nameserver to pi-hole
|
||||||
# setting nameserver in /etc/resolv.conf to pi-hole does
|
# setting nameserver in /etc/resolv.conf to pi-hole does
|
||||||
# not work here because of the way docker uses this file
|
# not work here because of the way docker uses this file
|
||||||
ns = Pihole.run(
|
ns = host.run(
|
||||||
r"sed -i 's/nameserver.*/nameserver 127.0.0.1/' /etc/resolv.conf")
|
r"sed -i 's/nameserver.*/nameserver 127.0.0.1/' /etc/resolv.conf")
|
||||||
pihole_is_ns = ns.rc == 0
|
pihole_is_ns = ns.rc == 0
|
||||||
|
|
||||||
|
@ -599,19 +600,19 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
||||||
return bool(m)
|
return bool(m)
|
||||||
if installWebInterface is True:
|
if installWebInterface is True:
|
||||||
check_pihole = test_cmd.format('r', webroot + '/pihole', webuser)
|
check_pihole = test_cmd.format('r', webroot + '/pihole', webuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_pihole = test_cmd.format('x', webroot + '/pihole', webuser)
|
check_pihole = test_cmd.format('x', webroot + '/pihole', webuser)
|
||||||
actual_rc = Pihole.run(check_pihole).rc
|
actual_rc = host.run(check_pihole).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
# check most important files in $webroot for read permission
|
# check most important files in $webroot for read permission
|
||||||
check_index = test_cmd.format(
|
check_index = test_cmd.format(
|
||||||
'r', webroot + '/pihole/index.php', webuser)
|
'r', webroot + '/pihole/index.php', webuser)
|
||||||
actual_rc = Pihole.run(check_index).rc
|
actual_rc = host.run(check_index).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
check_blockpage = test_cmd.format(
|
check_blockpage = test_cmd.format(
|
||||||
'r', webroot + '/pihole/blockingpage.css', webuser)
|
'r', webroot + '/pihole/blockingpage.css', webuser)
|
||||||
actual_rc = Pihole.run(check_blockpage).rc
|
actual_rc = host.run(check_blockpage).rc
|
||||||
assert exit_status_success == actual_rc
|
assert exit_status_success == actual_rc
|
||||||
if test_webpage is True:
|
if test_webpage is True:
|
||||||
# check webpage for unreadable files
|
# check webpage for unreadable files
|
||||||
|
@ -631,23 +632,23 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage):
|
||||||
testpage = "http://" + page + "/admin/"
|
testpage = "http://" + page + "/admin/"
|
||||||
resolvesuccess = True
|
resolvesuccess = True
|
||||||
if is_ip(page) is False:
|
if is_ip(page) is False:
|
||||||
dig = Pihole.run(digcommand.format(page))
|
dig = host.run(digcommand.format(page))
|
||||||
testpage = "http://" + dig.stdout.strip() + "/admin/"
|
testpage = "http://" + dig.stdout.strip() + "/admin/"
|
||||||
resolvesuccess = dig.rc == 0
|
resolvesuccess = dig.rc == 0
|
||||||
if resolvesuccess or pihole_is_ns:
|
if resolvesuccess or pihole_is_ns:
|
||||||
# check HTTP status of blockpage
|
# check HTTP status of blockpage
|
||||||
actual_rc = Pihole.run(status.format(testpage))
|
actual_rc = host.run(status.format(testpage))
|
||||||
assert exit_status_success == actual_rc.rc
|
assert exit_status_success == actual_rc.rc
|
||||||
# check for PHP error
|
# check for PHP error
|
||||||
actual_output = Pihole.run(pagecontent.format(testpage))
|
actual_output = host.run(pagecontent.format(testpage))
|
||||||
assert noPHPfopen.match(actual_output.stdout) is None
|
assert noPHPfopen.match(actual_output.stdout) is None
|
||||||
|
|
||||||
|
|
||||||
def test_update_package_cache_success_no_errors(Pihole):
|
def test_update_package_cache_success_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms package cache was updated without any errors
|
confirms package cache was updated without any errors
|
||||||
'''
|
'''
|
||||||
updateCache = Pihole.run('''
|
updateCache = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
update_package_cache
|
update_package_cache
|
||||||
|
@ -657,12 +658,12 @@ def test_update_package_cache_success_no_errors(Pihole):
|
||||||
assert 'error' not in updateCache.stdout.lower()
|
assert 'error' not in updateCache.stdout.lower()
|
||||||
|
|
||||||
|
|
||||||
def test_update_package_cache_failure_no_errors(Pihole):
|
def test_update_package_cache_failure_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms package cache was not updated
|
confirms package cache was not updated
|
||||||
'''
|
'''
|
||||||
mock_command('apt-get', {'update': ('', '1')}, Pihole)
|
mock_command('apt-get', {'update': ('', '1')}, host)
|
||||||
updateCache = Pihole.run('''
|
updateCache = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
update_package_cache
|
update_package_cache
|
||||||
|
@ -672,12 +673,12 @@ def test_update_package_cache_failure_no_errors(Pihole):
|
||||||
assert 'Error: Unable to update package cache.' in updateCache.stdout
|
assert 'Error: Unable to update package cache.' in updateCache.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_aarch64_no_errors(Pihole):
|
def test_FTL_detect_aarch64_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only aarch64 package is downloaded for FTL engine
|
confirms only aarch64 package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock uname to return aarch64 platform
|
# mock uname to return aarch64 platform
|
||||||
mock_command('uname', {'-m': ('aarch64', '0')}, Pihole)
|
mock_command('uname', {'-m': ('aarch64', '0')}, host)
|
||||||
# mock ldd to respond with aarch64 shared library
|
# mock ldd to respond with aarch64 shared library
|
||||||
mock_command(
|
mock_command(
|
||||||
'ldd',
|
'ldd',
|
||||||
|
@ -687,9 +688,9 @@ def test_FTL_detect_aarch64_no_errors(Pihole):
|
||||||
'0'
|
'0'
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -705,15 +706,15 @@ def test_FTL_detect_aarch64_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_armv4t_no_errors(Pihole):
|
def test_FTL_detect_armv4t_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only armv4t package is downloaded for FTL engine
|
confirms only armv4t package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock uname to return armv4t platform
|
# mock uname to return armv4t platform
|
||||||
mock_command('uname', {'-m': ('armv4t', '0')}, Pihole)
|
mock_command('uname', {'-m': ('armv4t', '0')}, host)
|
||||||
# mock ldd to respond with ld-linux shared library
|
# mock ldd to respond with ld-linux shared library
|
||||||
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux.so.3', '0')}, Pihole)
|
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux.so.3', '0')}, host)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -729,15 +730,15 @@ def test_FTL_detect_armv4t_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_armv5te_no_errors(Pihole):
|
def test_FTL_detect_armv5te_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only armv5te package is downloaded for FTL engine
|
confirms only armv5te package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock uname to return armv5te platform
|
# mock uname to return armv5te platform
|
||||||
mock_command('uname', {'-m': ('armv5te', '0')}, Pihole)
|
mock_command('uname', {'-m': ('armv5te', '0')}, host)
|
||||||
# mock ldd to respond with ld-linux shared library
|
# mock ldd to respond with ld-linux shared library
|
||||||
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux.so.3', '0')}, Pihole)
|
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux.so.3', '0')}, host)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -753,15 +754,15 @@ def test_FTL_detect_armv5te_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_armv6l_no_errors(Pihole):
|
def test_FTL_detect_armv6l_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only armv6l package is downloaded for FTL engine
|
confirms only armv6l package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock uname to return armv6l platform
|
# mock uname to return armv6l platform
|
||||||
mock_command('uname', {'-m': ('armv6l', '0')}, Pihole)
|
mock_command('uname', {'-m': ('armv6l', '0')}, host)
|
||||||
# mock ldd to respond with ld-linux-armhf shared library
|
# mock ldd to respond with ld-linux-armhf shared library
|
||||||
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux-armhf.so.3', '0')}, Pihole)
|
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux-armhf.so.3', '0')}, host)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -778,15 +779,15 @@ def test_FTL_detect_armv6l_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_armv7l_no_errors(Pihole):
|
def test_FTL_detect_armv7l_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only armv7l package is downloaded for FTL engine
|
confirms only armv7l package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock uname to return armv7l platform
|
# mock uname to return armv7l platform
|
||||||
mock_command('uname', {'-m': ('armv7l', '0')}, Pihole)
|
mock_command('uname', {'-m': ('armv7l', '0')}, host)
|
||||||
# mock ldd to respond with ld-linux-armhf shared library
|
# mock ldd to respond with ld-linux-armhf shared library
|
||||||
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux-armhf.so.3', '0')}, Pihole)
|
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux-armhf.so.3', '0')}, host)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -803,15 +804,15 @@ def test_FTL_detect_armv7l_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_armv8a_no_errors(Pihole):
|
def test_FTL_detect_armv8a_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only armv8a package is downloaded for FTL engine
|
confirms only armv8a package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock uname to return armv8a platform
|
# mock uname to return armv8a platform
|
||||||
mock_command('uname', {'-m': ('armv8a', '0')}, Pihole)
|
mock_command('uname', {'-m': ('armv8a', '0')}, host)
|
||||||
# mock ldd to respond with ld-linux-armhf shared library
|
# mock ldd to respond with ld-linux-armhf shared library
|
||||||
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux-armhf.so.3', '0')}, Pihole)
|
mock_command('ldd', {'/bin/ls': ('/lib/ld-linux-armhf.so.3', '0')}, host)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -827,11 +828,11 @@ def test_FTL_detect_armv8a_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_x86_64_no_errors(Pihole):
|
def test_FTL_detect_x86_64_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only x86_64 package is downloaded for FTL engine
|
confirms only x86_64 package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -847,11 +848,11 @@ def test_FTL_detect_x86_64_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_detect_unknown_no_errors(Pihole):
|
def test_FTL_detect_unknown_no_errors(host):
|
||||||
''' confirms only generic package is downloaded for FTL engine '''
|
''' confirms only generic package is downloaded for FTL engine '''
|
||||||
# mock uname to return generic platform
|
# mock uname to return generic platform
|
||||||
mock_command('uname', {'-m': ('mips', '0')}, Pihole)
|
mock_command('uname', {'-m': ('mips', '0')}, host)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -863,18 +864,18 @@ def test_FTL_detect_unknown_no_errors(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_download_aarch64_no_errors(Pihole):
|
def test_FTL_download_aarch64_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms only aarch64 package is downloaded for FTL engine
|
confirms only aarch64 package is downloaded for FTL engine
|
||||||
'''
|
'''
|
||||||
# mock whiptail answers and ensure installer dependencies
|
# mock whiptail answers and ensure installer dependencies
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
Pihole.run('''
|
host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
install_dependent_packages ${INSTALLER_DEPS[@]}
|
install_dependent_packages ${INSTALLER_DEPS[@]}
|
||||||
''')
|
''')
|
||||||
download_binary = Pihole.run('''
|
download_binary = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
FTLinstall "pihole-FTL-aarch64-linux-gnu"
|
FTLinstall "pihole-FTL-aarch64-linux-gnu"
|
||||||
|
@ -884,11 +885,11 @@ def test_FTL_download_aarch64_no_errors(Pihole):
|
||||||
assert 'error' not in download_binary.stdout.lower()
|
assert 'error' not in download_binary.stdout.lower()
|
||||||
|
|
||||||
|
|
||||||
def test_FTL_binary_installed_and_responsive_no_errors(Pihole):
|
def test_FTL_binary_installed_and_responsive_no_errors(host):
|
||||||
'''
|
'''
|
||||||
confirms FTL binary is copied and functional in installed location
|
confirms FTL binary is copied and functional in installed location
|
||||||
'''
|
'''
|
||||||
installed_binary = Pihole.run('''
|
installed_binary = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
create_pihole_user
|
create_pihole_user
|
||||||
funcOutput=$(get_binary_name)
|
funcOutput=$(get_binary_name)
|
||||||
|
@ -901,11 +902,11 @@ def test_FTL_binary_installed_and_responsive_no_errors(Pihole):
|
||||||
assert expected_stdout in installed_binary.stdout
|
assert expected_stdout in installed_binary.stdout
|
||||||
|
|
||||||
|
|
||||||
# def test_FTL_support_files_installed(Pihole):
|
# def test_FTL_support_files_installed(host):
|
||||||
# '''
|
# '''
|
||||||
# confirms FTL support files are installed
|
# confirms FTL support files are installed
|
||||||
# '''
|
# '''
|
||||||
# support_files = Pihole.run('''
|
# support_files = host.run('''
|
||||||
# source /opt/pihole/basic-install.sh
|
# source /opt/pihole/basic-install.sh
|
||||||
# FTLdetect
|
# FTLdetect
|
||||||
# stat -c '%a %n' /var/log/pihole-FTL.log
|
# stat -c '%a %n' /var/log/pihole-FTL.log
|
||||||
|
@ -918,7 +919,7 @@ def test_FTL_binary_installed_and_responsive_no_errors(Pihole):
|
||||||
# assert '644 /var/log/pihole-FTL.log' in support_files.stdout
|
# assert '644 /var/log/pihole-FTL.log' in support_files.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_IPv6_only_link_local(Pihole):
|
def test_IPv6_only_link_local(host):
|
||||||
'''
|
'''
|
||||||
confirms IPv6 blocking is disabled for Link-local address
|
confirms IPv6 blocking is disabled for Link-local address
|
||||||
'''
|
'''
|
||||||
|
@ -931,9 +932,9 @@ def test_IPv6_only_link_local(Pihole):
|
||||||
'0'
|
'0'
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
find_IPv6_information
|
find_IPv6_information
|
||||||
''')
|
''')
|
||||||
|
@ -941,7 +942,7 @@ def test_IPv6_only_link_local(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_IPv6_only_ULA(Pihole):
|
def test_IPv6_only_ULA(host):
|
||||||
'''
|
'''
|
||||||
confirms IPv6 blocking is enabled for ULA addresses
|
confirms IPv6 blocking is enabled for ULA addresses
|
||||||
'''
|
'''
|
||||||
|
@ -954,9 +955,9 @@ def test_IPv6_only_ULA(Pihole):
|
||||||
'0'
|
'0'
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
find_IPv6_information
|
find_IPv6_information
|
||||||
''')
|
''')
|
||||||
|
@ -964,7 +965,7 @@ def test_IPv6_only_ULA(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_IPv6_only_GUA(Pihole):
|
def test_IPv6_only_GUA(host):
|
||||||
'''
|
'''
|
||||||
confirms IPv6 blocking is enabled for GUA addresses
|
confirms IPv6 blocking is enabled for GUA addresses
|
||||||
'''
|
'''
|
||||||
|
@ -977,9 +978,9 @@ def test_IPv6_only_GUA(Pihole):
|
||||||
'0'
|
'0'
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
find_IPv6_information
|
find_IPv6_information
|
||||||
''')
|
''')
|
||||||
|
@ -987,7 +988,7 @@ def test_IPv6_only_GUA(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_IPv6_GUA_ULA_test(Pihole):
|
def test_IPv6_GUA_ULA_test(host):
|
||||||
'''
|
'''
|
||||||
confirms IPv6 blocking is enabled for GUA and ULA addresses
|
confirms IPv6 blocking is enabled for GUA and ULA addresses
|
||||||
'''
|
'''
|
||||||
|
@ -1001,9 +1002,9 @@ def test_IPv6_GUA_ULA_test(Pihole):
|
||||||
'0'
|
'0'
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
find_IPv6_information
|
find_IPv6_information
|
||||||
''')
|
''')
|
||||||
|
@ -1011,7 +1012,7 @@ def test_IPv6_GUA_ULA_test(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_IPv6_ULA_GUA_test(Pihole):
|
def test_IPv6_ULA_GUA_test(host):
|
||||||
'''
|
'''
|
||||||
confirms IPv6 blocking is enabled for GUA and ULA addresses
|
confirms IPv6 blocking is enabled for GUA and ULA addresses
|
||||||
'''
|
'''
|
||||||
|
@ -1025,9 +1026,9 @@ def test_IPv6_ULA_GUA_test(Pihole):
|
||||||
'0'
|
'0'
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
Pihole
|
host
|
||||||
)
|
)
|
||||||
detectPlatform = Pihole.run('''
|
detectPlatform = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
find_IPv6_information
|
find_IPv6_information
|
||||||
''')
|
''')
|
||||||
|
@ -1035,13 +1036,13 @@ def test_IPv6_ULA_GUA_test(Pihole):
|
||||||
assert expected_stdout in detectPlatform.stdout
|
assert expected_stdout in detectPlatform.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_validate_ip(Pihole):
|
def test_validate_ip(host):
|
||||||
'''
|
'''
|
||||||
Tests valid_ip for various IP addresses
|
Tests valid_ip for various IP addresses
|
||||||
'''
|
'''
|
||||||
|
|
||||||
def test_address(addr, success=True):
|
def test_address(addr, success=True):
|
||||||
output = Pihole.run('''
|
output = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
valid_ip "{addr}"
|
valid_ip "{addr}"
|
||||||
'''.format(addr=addr))
|
'''.format(addr=addr))
|
||||||
|
@ -1076,9 +1077,9 @@ def test_validate_ip(Pihole):
|
||||||
test_address('0.0.0.0#00001', False)
|
test_address('0.0.0.0#00001', False)
|
||||||
|
|
||||||
|
|
||||||
def test_os_check_fails(Pihole):
|
def test_os_check_fails(host):
|
||||||
''' Confirms install fails on unsupported OS '''
|
''' Confirms install fails on unsupported OS '''
|
||||||
Pihole.run('''
|
host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
install_dependent_packages ${OS_CHECK_DEPS[@]}
|
install_dependent_packages ${OS_CHECK_DEPS[@]}
|
||||||
|
@ -1088,7 +1089,7 @@ def test_os_check_fails(Pihole):
|
||||||
VERSION_ID="2"
|
VERSION_ID="2"
|
||||||
EOT
|
EOT
|
||||||
''')
|
''')
|
||||||
detectOS = Pihole.run('''t
|
detectOS = host.run('''t
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
os_check
|
os_check
|
||||||
''')
|
''')
|
||||||
|
@ -1096,15 +1097,15 @@ def test_os_check_fails(Pihole):
|
||||||
assert expected_stdout in detectOS.stdout
|
assert expected_stdout in detectOS.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_os_check_passes(Pihole):
|
def test_os_check_passes(host):
|
||||||
''' Confirms OS meets the requirements '''
|
''' Confirms OS meets the requirements '''
|
||||||
Pihole.run('''
|
host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
install_dependent_packages ${OS_CHECK_DEPS[@]}
|
install_dependent_packages ${OS_CHECK_DEPS[@]}
|
||||||
install_dependent_packages ${INSTALLER_DEPS[@]}
|
install_dependent_packages ${INSTALLER_DEPS[@]}
|
||||||
''')
|
''')
|
||||||
detectOS = Pihole.run('''
|
detectOS = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
os_check
|
os_check
|
||||||
''')
|
''')
|
||||||
|
@ -1112,10 +1113,10 @@ def test_os_check_passes(Pihole):
|
||||||
assert expected_stdout in detectOS.stdout
|
assert expected_stdout in detectOS.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_package_manager_has_installer_deps(Pihole):
|
def test_package_manager_has_installer_deps(host):
|
||||||
''' Confirms OS is able to install the required packages for the installer'''
|
''' Confirms OS is able to install the required packages for the installer'''
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
output = Pihole.run('''
|
output = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
install_dependent_packages ${INSTALLER_DEPS[@]}
|
install_dependent_packages ${INSTALLER_DEPS[@]}
|
||||||
|
@ -1125,10 +1126,10 @@ def test_package_manager_has_installer_deps(Pihole):
|
||||||
assert output.rc == 0
|
assert output.rc == 0
|
||||||
|
|
||||||
|
|
||||||
def test_package_manager_has_pihole_deps(Pihole):
|
def test_package_manager_has_pihole_deps(host):
|
||||||
''' Confirms OS is able to install the required packages for Pi-hole '''
|
''' Confirms OS is able to install the required packages for Pi-hole '''
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
output = Pihole.run('''
|
output = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -1139,10 +1140,10 @@ def test_package_manager_has_pihole_deps(Pihole):
|
||||||
assert output.rc == 0
|
assert output.rc == 0
|
||||||
|
|
||||||
|
|
||||||
def test_package_manager_has_web_deps(Pihole):
|
def test_package_manager_has_web_deps(host):
|
||||||
''' Confirms OS is able to install the required packages for web '''
|
''' Confirms OS is able to install the required packages for web '''
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
output = Pihole.run('''
|
output = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
|
|
@ -5,11 +5,11 @@ from .conftest import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_php_upgrade_default_optout_centos_eq_7(Pihole):
|
def test_php_upgrade_default_optout_centos_eq_7(host):
|
||||||
'''
|
'''
|
||||||
confirms the default behavior to opt-out of installing PHP7 from REMI
|
confirms the default behavior to opt-out of installing PHP7 from REMI
|
||||||
'''
|
'''
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -17,18 +17,18 @@ def test_php_upgrade_default_optout_centos_eq_7(Pihole):
|
||||||
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
||||||
'Deprecated PHP may be in use.')
|
'Deprecated PHP may be in use.')
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_upgrade_user_optout_centos_eq_7(Pihole):
|
def test_php_upgrade_user_optout_centos_eq_7(host):
|
||||||
'''
|
'''
|
||||||
confirms installer behavior when user opt-out of installing PHP7 from REMI
|
confirms installer behavior when user opt-out of installing PHP7 from REMI
|
||||||
(php not currently installed)
|
(php not currently installed)
|
||||||
'''
|
'''
|
||||||
# Whiptail dialog returns Cancel for user prompt
|
# Whiptail dialog returns Cancel for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '1')}, Pihole)
|
mock_command('whiptail', {'*': ('', '1')}, host)
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -36,18 +36,18 @@ def test_php_upgrade_user_optout_centos_eq_7(Pihole):
|
||||||
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
||||||
'Deprecated PHP may be in use.')
|
'Deprecated PHP may be in use.')
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_upgrade_user_optin_centos_eq_7(Pihole):
|
def test_php_upgrade_user_optin_centos_eq_7(host):
|
||||||
'''
|
'''
|
||||||
confirms installer behavior when user opt-in to installing PHP7 from REMI
|
confirms installer behavior when user opt-in to installing PHP7 from REMI
|
||||||
(php not currently installed)
|
(php not currently installed)
|
||||||
'''
|
'''
|
||||||
# Whiptail dialog returns Continue for user prompt
|
# Whiptail dialog returns Continue for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -59,5 +59,5 @@ def test_php_upgrade_user_optin_centos_eq_7(Pihole):
|
||||||
expected_stdout = tick_box + (' Remi\'s RPM repository has '
|
expected_stdout = tick_box + (' Remi\'s RPM repository has '
|
||||||
'been enabled for PHP7')
|
'been enabled for PHP7')
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert remi_package.is_installed
|
assert remi_package.is_installed
|
||||||
|
|
|
@ -5,12 +5,12 @@ from .conftest import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_php_upgrade_default_continue_centos_gte_8(Pihole):
|
def test_php_upgrade_default_continue_centos_gte_8(host):
|
||||||
'''
|
'''
|
||||||
confirms the latest version of CentOS continues / does not optout
|
confirms the latest version of CentOS continues / does not optout
|
||||||
(should trigger on CentOS7 only)
|
(should trigger on CentOS7 only)
|
||||||
'''
|
'''
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -19,19 +19,19 @@ def test_php_upgrade_default_continue_centos_gte_8(Pihole):
|
||||||
' Deprecated PHP may be in use.')
|
' Deprecated PHP may be in use.')
|
||||||
assert unexpected_stdout not in package_manager_detect.stdout
|
assert unexpected_stdout not in package_manager_detect.stdout
|
||||||
# ensure remi was not installed on latest CentOS
|
# ensure remi was not installed on latest CentOS
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_upgrade_user_optout_skipped_centos_gte_8(Pihole):
|
def test_php_upgrade_user_optout_skipped_centos_gte_8(host):
|
||||||
'''
|
'''
|
||||||
confirms installer skips user opt-out of installing PHP7 from REMI on
|
confirms installer skips user opt-out of installing PHP7 from REMI on
|
||||||
latest CentOS (should trigger on CentOS7 only)
|
latest CentOS (should trigger on CentOS7 only)
|
||||||
(php not currently installed)
|
(php not currently installed)
|
||||||
'''
|
'''
|
||||||
# Whiptail dialog returns Cancel for user prompt
|
# Whiptail dialog returns Cancel for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '1')}, Pihole)
|
mock_command('whiptail', {'*': ('', '1')}, host)
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -40,19 +40,19 @@ def test_php_upgrade_user_optout_skipped_centos_gte_8(Pihole):
|
||||||
' Deprecated PHP may be in use.')
|
' Deprecated PHP may be in use.')
|
||||||
assert unexpected_stdout not in package_manager_detect.stdout
|
assert unexpected_stdout not in package_manager_detect.stdout
|
||||||
# ensure remi was not installed on latest CentOS
|
# ensure remi was not installed on latest CentOS
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_upgrade_user_optin_skipped_centos_gte_8(Pihole):
|
def test_php_upgrade_user_optin_skipped_centos_gte_8(host):
|
||||||
'''
|
'''
|
||||||
confirms installer skips user opt-in to installing PHP7 from REMI on
|
confirms installer skips user opt-in to installing PHP7 from REMI on
|
||||||
latest CentOS (should trigger on CentOS7 only)
|
latest CentOS (should trigger on CentOS7 only)
|
||||||
(php not currently installed)
|
(php not currently installed)
|
||||||
'''
|
'''
|
||||||
# Whiptail dialog returns Continue for user prompt
|
# Whiptail dialog returns Continue for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -64,5 +64,5 @@ def test_php_upgrade_user_optin_skipped_centos_gte_8(Pihole):
|
||||||
unexpected_stdout = tick_box + (' Remi\'s RPM repository has '
|
unexpected_stdout = tick_box + (' Remi\'s RPM repository has '
|
||||||
'been enabled for PHP7')
|
'been enabled for PHP7')
|
||||||
assert unexpected_stdout not in package_manager_detect.stdout
|
assert unexpected_stdout not in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
|
@ -7,13 +7,13 @@ from .conftest import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_release_supported_version_check_centos(Pihole):
|
def test_release_supported_version_check_centos(host):
|
||||||
'''
|
'''
|
||||||
confirms installer exits on unsupported releases of CentOS
|
confirms installer exits on unsupported releases of CentOS
|
||||||
'''
|
'''
|
||||||
# modify /etc/redhat-release to mock an unsupported CentOS release
|
# modify /etc/redhat-release to mock an unsupported CentOS release
|
||||||
Pihole.run('echo "CentOS Linux release 6.9" > /etc/redhat-release')
|
host.run('echo "CentOS Linux release 6.9" > /etc/redhat-release')
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -24,11 +24,11 @@ def test_release_supported_version_check_centos(Pihole):
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
|
|
||||||
|
|
||||||
def test_enable_epel_repository_centos(Pihole):
|
def test_enable_epel_repository_centos(host):
|
||||||
'''
|
'''
|
||||||
confirms the EPEL package repository is enabled when installed on CentOS
|
confirms the EPEL package repository is enabled when installed on CentOS
|
||||||
'''
|
'''
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -38,22 +38,22 @@ def test_enable_epel_repository_centos(Pihole):
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
expected_stdout = tick_box + ' Installed epel-release'
|
expected_stdout = tick_box + ' Installed epel-release'
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
epel_package = Pihole.package('epel-release')
|
epel_package = host.package('epel-release')
|
||||||
assert epel_package.is_installed
|
assert epel_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_version_lt_7_detected_upgrade_default_optout_centos(Pihole):
|
def test_php_version_lt_7_detected_upgrade_default_optout_centos(host):
|
||||||
'''
|
'''
|
||||||
confirms the default behavior to opt-out of upgrading to PHP7 from REMI
|
confirms the default behavior to opt-out of upgrading to PHP7 from REMI
|
||||||
'''
|
'''
|
||||||
# first we will install the default php version to test installer behavior
|
# first we will install the default php version to test installer behavior
|
||||||
php_install = Pihole.run('yum install -y php')
|
php_install = host.run('yum install -y php')
|
||||||
assert php_install.rc == 0
|
assert php_install.rc == 0
|
||||||
php_package = Pihole.package('php')
|
php_package = host.package('php')
|
||||||
default_centos_php_version = php_package.version.split('.')[0]
|
default_centos_php_version = php_package.version.split('.')[0]
|
||||||
if int(default_centos_php_version) >= 7: # PHP7 is supported/recommended
|
if int(default_centos_php_version) >= 7: # PHP7 is supported/recommended
|
||||||
pytest.skip("Test deprecated . Detected default PHP version >= 7")
|
pytest.skip("Test deprecated . Detected default PHP version >= 7")
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -61,24 +61,24 @@ def test_php_version_lt_7_detected_upgrade_default_optout_centos(Pihole):
|
||||||
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
||||||
'Deprecated PHP may be in use.')
|
'Deprecated PHP may be in use.')
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_version_lt_7_detected_upgrade_user_optout_centos(Pihole):
|
def test_php_version_lt_7_detected_upgrade_user_optout_centos(host):
|
||||||
'''
|
'''
|
||||||
confirms installer behavior when user opt-out to upgrade to PHP7 via REMI
|
confirms installer behavior when user opt-out to upgrade to PHP7 via REMI
|
||||||
'''
|
'''
|
||||||
# first we will install the default php version to test installer behavior
|
# first we will install the default php version to test installer behavior
|
||||||
php_install = Pihole.run('yum install -y php')
|
php_install = host.run('yum install -y php')
|
||||||
assert php_install.rc == 0
|
assert php_install.rc == 0
|
||||||
php_package = Pihole.package('php')
|
php_package = host.package('php')
|
||||||
default_centos_php_version = php_package.version.split('.')[0]
|
default_centos_php_version = php_package.version.split('.')[0]
|
||||||
if int(default_centos_php_version) >= 7: # PHP7 is supported/recommended
|
if int(default_centos_php_version) >= 7: # PHP7 is supported/recommended
|
||||||
pytest.skip("Test deprecated . Detected default PHP version >= 7")
|
pytest.skip("Test deprecated . Detected default PHP version >= 7")
|
||||||
# Whiptail dialog returns Cancel for user prompt
|
# Whiptail dialog returns Cancel for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '1')}, Pihole)
|
mock_command('whiptail', {'*': ('', '1')}, host)
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -86,24 +86,24 @@ def test_php_version_lt_7_detected_upgrade_user_optout_centos(Pihole):
|
||||||
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
expected_stdout = info_box + (' User opt-out of PHP 7 upgrade on CentOS. '
|
||||||
'Deprecated PHP may be in use.')
|
'Deprecated PHP may be in use.')
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
||||||
|
|
||||||
def test_php_version_lt_7_detected_upgrade_user_optin_centos(Pihole):
|
def test_php_version_lt_7_detected_upgrade_user_optin_centos(host):
|
||||||
'''
|
'''
|
||||||
confirms installer behavior when user opt-in to upgrade to PHP7 via REMI
|
confirms installer behavior when user opt-in to upgrade to PHP7 via REMI
|
||||||
'''
|
'''
|
||||||
# first we will install the default php version to test installer behavior
|
# first we will install the default php version to test installer behavior
|
||||||
php_install = Pihole.run('yum install -y php')
|
php_install = host.run('yum install -y php')
|
||||||
assert php_install.rc == 0
|
assert php_install.rc == 0
|
||||||
php_package = Pihole.package('php')
|
php_package = host.package('php')
|
||||||
default_centos_php_version = php_package.version.split('.')[0]
|
default_centos_php_version = php_package.version.split('.')[0]
|
||||||
if int(default_centos_php_version) >= 7: # PHP7 is supported/recommended
|
if int(default_centos_php_version) >= 7: # PHP7 is supported/recommended
|
||||||
pytest.skip("Test deprecated . Detected default PHP version >= 7")
|
pytest.skip("Test deprecated . Detected default PHP version >= 7")
|
||||||
# Whiptail dialog returns Continue for user prompt
|
# Whiptail dialog returns Continue for user prompt
|
||||||
mock_command('whiptail', {'*': ('', '0')}, Pihole)
|
mock_command('whiptail', {'*': ('', '0')}, host)
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
|
@ -118,8 +118,8 @@ def test_php_version_lt_7_detected_upgrade_user_optin_centos(Pihole):
|
||||||
expected_stdout = tick_box + (' Remi\'s RPM repository has '
|
expected_stdout = tick_box + (' Remi\'s RPM repository has '
|
||||||
'been enabled for PHP7')
|
'been enabled for PHP7')
|
||||||
assert expected_stdout in package_manager_detect.stdout
|
assert expected_stdout in package_manager_detect.stdout
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert remi_package.is_installed
|
assert remi_package.is_installed
|
||||||
updated_php_package = Pihole.package('php')
|
updated_php_package = host.package('php')
|
||||||
updated_php_version = updated_php_package.version.split('.')[0]
|
updated_php_version = updated_php_package.version.split('.')[0]
|
||||||
assert int(updated_php_version) == 7
|
assert int(updated_php_version) == 7
|
||||||
|
|
|
@ -5,7 +5,7 @@ from .conftest import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def mock_selinux_config(state, Pihole):
|
def mock_selinux_config(state, host):
|
||||||
'''
|
'''
|
||||||
Creates a mock SELinux config file with expected content
|
Creates a mock SELinux config file with expected content
|
||||||
'''
|
'''
|
||||||
|
@ -13,20 +13,20 @@ def mock_selinux_config(state, Pihole):
|
||||||
valid_states = ['enforcing', 'permissive', 'disabled']
|
valid_states = ['enforcing', 'permissive', 'disabled']
|
||||||
assert state in valid_states
|
assert state in valid_states
|
||||||
# getenforce returns the running state of SELinux
|
# getenforce returns the running state of SELinux
|
||||||
mock_command('getenforce', {'*': (state.capitalize(), '0')}, Pihole)
|
mock_command('getenforce', {'*': (state.capitalize(), '0')}, host)
|
||||||
# create mock configuration with desired content
|
# create mock configuration with desired content
|
||||||
Pihole.run('''
|
host.run('''
|
||||||
mkdir /etc/selinux
|
mkdir /etc/selinux
|
||||||
echo "SELINUX={state}" > /etc/selinux/config
|
echo "SELINUX={state}" > /etc/selinux/config
|
||||||
'''.format(state=state.lower()))
|
'''.format(state=state.lower()))
|
||||||
|
|
||||||
|
|
||||||
def test_selinux_enforcing_exit(Pihole):
|
def test_selinux_enforcing_exit(host):
|
||||||
'''
|
'''
|
||||||
confirms installer prompts to exit when SELinux is Enforcing by default
|
confirms installer prompts to exit when SELinux is Enforcing by default
|
||||||
'''
|
'''
|
||||||
mock_selinux_config("enforcing", Pihole)
|
mock_selinux_config("enforcing", host)
|
||||||
check_selinux = Pihole.run('''
|
check_selinux = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
checkSelinux
|
checkSelinux
|
||||||
''')
|
''')
|
||||||
|
@ -37,12 +37,12 @@ def test_selinux_enforcing_exit(Pihole):
|
||||||
assert check_selinux.rc == 1
|
assert check_selinux.rc == 1
|
||||||
|
|
||||||
|
|
||||||
def test_selinux_permissive(Pihole):
|
def test_selinux_permissive(host):
|
||||||
'''
|
'''
|
||||||
confirms installer continues when SELinux is Permissive
|
confirms installer continues when SELinux is Permissive
|
||||||
'''
|
'''
|
||||||
mock_selinux_config("permissive", Pihole)
|
mock_selinux_config("permissive", host)
|
||||||
check_selinux = Pihole.run('''
|
check_selinux = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
checkSelinux
|
checkSelinux
|
||||||
''')
|
''')
|
||||||
|
@ -51,12 +51,12 @@ def test_selinux_permissive(Pihole):
|
||||||
assert check_selinux.rc == 0
|
assert check_selinux.rc == 0
|
||||||
|
|
||||||
|
|
||||||
def test_selinux_disabled(Pihole):
|
def test_selinux_disabled(host):
|
||||||
'''
|
'''
|
||||||
confirms installer continues when SELinux is Disabled
|
confirms installer continues when SELinux is Disabled
|
||||||
'''
|
'''
|
||||||
mock_selinux_config("disabled", Pihole)
|
mock_selinux_config("disabled", host)
|
||||||
check_selinux = Pihole.run('''
|
check_selinux = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
checkSelinux
|
checkSelinux
|
||||||
''')
|
''')
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
def test_epel_and_remi_not_installed_fedora(Pihole):
|
def test_epel_and_remi_not_installed_fedora(host):
|
||||||
'''
|
'''
|
||||||
confirms installer does not attempt to install EPEL/REMI repositories
|
confirms installer does not attempt to install EPEL/REMI repositories
|
||||||
on Fedora
|
on Fedora
|
||||||
'''
|
'''
|
||||||
package_manager_detect = Pihole.run('''
|
package_manager_detect = host.run('''
|
||||||
source /opt/pihole/basic-install.sh
|
source /opt/pihole/basic-install.sh
|
||||||
package_manager_detect
|
package_manager_detect
|
||||||
select_rpm_php
|
select_rpm_php
|
||||||
''')
|
''')
|
||||||
assert package_manager_detect.stdout == ''
|
assert package_manager_detect.stdout == ''
|
||||||
|
|
||||||
epel_package = Pihole.package('epel-release')
|
epel_package = host.package('epel-release')
|
||||||
assert not epel_package.is_installed
|
assert not epel_package.is_installed
|
||||||
remi_package = Pihole.package('remi-release')
|
remi_package = host.package('remi-release')
|
||||||
assert not remi_package.is_installed
|
assert not remi_package.is_installed
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py38
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = docker
|
whitelist_externals = docker
|
||||||
|
|
Loading…
Reference in New Issue