mirror of
https://github.com/bunkerity/bunkerized-nginx
synced 2023-12-13 21:30:18 +01:00
222 lines
8.5 KiB
Python
222 lines
8.5 KiB
Python
from Test import Test
|
|
from os.path import isdir, isfile
|
|
from os import getenv, mkdir
|
|
from shutil import rmtree, copy
|
|
from traceback import format_exc
|
|
from subprocess import run
|
|
from time import sleep
|
|
from logger import log
|
|
from yaml import safe_load, dump
|
|
|
|
|
|
class AutoconfTest(Test):
|
|
def __init__(self, name, timeout, tests, no_copy_container=False, delay=0):
|
|
super().__init__(
|
|
name,
|
|
"autoconf",
|
|
timeout,
|
|
tests,
|
|
no_copy_container=no_copy_container,
|
|
delay=delay,
|
|
)
|
|
self._domains = {
|
|
r"www\.example\.com": f"{Test.random_string(6)}.{getenv('TEST_DOMAIN1')}",
|
|
r"auth\.example\.com": f"{Test.random_string(6)}.{getenv('TEST_DOMAIN1')}",
|
|
r"app1\.example\.com": f"{Test.random_string(6)}.{getenv('TEST_DOMAIN1_1')}",
|
|
r"app2\.example\.com": f"{Test.random_string(6)}.{getenv('TEST_DOMAIN1_2')}",
|
|
r"app3\.example\.com": f"{Test.random_string(6)}.{getenv('TEST_DOMAIN1_3')}",
|
|
}
|
|
self._check_domains()
|
|
|
|
def init():
|
|
try:
|
|
if not Test.init():
|
|
return False
|
|
proc = run("sudo chown -R root:root /tmp/bw-data", shell=True)
|
|
if proc.returncode != 0:
|
|
raise (Exception("chown failed (autoconf stack)"))
|
|
if isdir("/tmp/autoconf"):
|
|
rmtree("/tmp/autoconf")
|
|
mkdir("/tmp/autoconf")
|
|
if isdir("/tmp/www"):
|
|
rmtree("/tmp/www")
|
|
mkdir("/tmp/www")
|
|
copy("./misc/integrations/autoconf.yml", "/tmp/autoconf/docker-compose.yml")
|
|
compose = "/tmp/autoconf/docker-compose.yml"
|
|
Test.replace_in_file(
|
|
compose, r"bunkerity/bunkerweb:.*$", "local/bunkerweb-tests:latest"
|
|
)
|
|
Test.replace_in_file(
|
|
compose,
|
|
r"bunkerity/bunkerweb-autoconf:.*$",
|
|
"local/autoconf-tests:latest",
|
|
)
|
|
Test.replace_in_file(
|
|
compose,
|
|
r"bunkerity/bunkerweb-scheduler:.*$",
|
|
"local/scheduler-tests:latest",
|
|
)
|
|
Test.replace_in_file(compose, r"\./bw\-data:/", "/tmp/bw-data:/")
|
|
with open(compose, "r") as f:
|
|
data = safe_load(f.read())
|
|
data["services"]["bunkerweb"]["volumes"] = ["/tmp/www:/var/www/html"]
|
|
if (
|
|
not "AUTO_LETS_ENCRYPT=yes"
|
|
in data["services"]["bunkerweb"]["environment"]
|
|
):
|
|
data["services"]["bunkerweb"]["environment"].append(
|
|
"AUTO_LETS_ENCRYPT=yes"
|
|
)
|
|
data["services"]["bunkerweb"]["environment"].append(
|
|
"USE_LETS_ENCRYPT_STAGING=yes"
|
|
)
|
|
with open(compose, "w") as f:
|
|
f.write(dump(data))
|
|
proc = run(
|
|
"docker-compose pull --ignore-pull-failures",
|
|
cwd="/tmp/autoconf",
|
|
shell=True,
|
|
)
|
|
if proc.returncode != 0:
|
|
raise (Exception("docker-compose pull failed (autoconf stack)"))
|
|
proc = run("docker-compose up -d", cwd="/tmp/autoconf", shell=True)
|
|
if proc.returncode != 0:
|
|
raise (Exception("docker-compose up failed (autoconf stack)"))
|
|
i = 0
|
|
healthy = False
|
|
while i < 30:
|
|
proc = run(
|
|
'docker inspect --format "{{json .State.Health }}" autoconf-bunkerweb-1',
|
|
cwd="/tmp/autoconf",
|
|
shell=True,
|
|
capture_output=True,
|
|
)
|
|
if proc.returncode != 0:
|
|
raise (Exception("docker inspect failed (autoconf stack)"))
|
|
if "healthy" in proc.stdout.decode():
|
|
healthy = True
|
|
break
|
|
sleep(1)
|
|
i += 1
|
|
if not healthy:
|
|
raise (Exception("autoconf stack is not healthy"))
|
|
except:
|
|
log(
|
|
"AUTOCONF",
|
|
"❌",
|
|
f"exception while running AutoconfTest.init()\n{format_exc()}",
|
|
)
|
|
return False
|
|
return True
|
|
|
|
def end():
|
|
ret = True
|
|
try:
|
|
if not Test.end():
|
|
return False
|
|
proc = run("docker-compose down -v", cwd="/tmp/autoconf", shell=True)
|
|
if proc.returncode != 0:
|
|
ret = False
|
|
rmtree("/tmp/autoconf")
|
|
except:
|
|
log(
|
|
"AUTOCONF",
|
|
"❌",
|
|
f"exception while running AutoconfTest.end()\n{format_exc()}",
|
|
)
|
|
return False
|
|
return ret
|
|
|
|
def _setup_test(self):
|
|
try:
|
|
super()._setup_test()
|
|
test = f"/tmp/tests/{self._name}"
|
|
compose = f"/tmp/tests/{self._name}/autoconf.yml"
|
|
example_data = f"/tmp/tests/{self._name}/bw-data"
|
|
example_www = f"/tmp/tests/{self._name}/www"
|
|
Test.replace_in_file(
|
|
compose, r"bunkerity/bunkerweb:.*$", "local/bunkerweb-tests:latest"
|
|
)
|
|
Test.replace_in_file(
|
|
compose,
|
|
r"bunkerity/bunkerweb-scheduler:.*$",
|
|
"local/scheduler-tests:latest",
|
|
)
|
|
Test.replace_in_file(
|
|
compose,
|
|
r"bunkerity/bunkerweb-autoconf:.*$",
|
|
"local/autoconf-tests:latest",
|
|
)
|
|
Test.replace_in_file(compose, r"\./bw\-data:/", "/tmp/bw-data:/")
|
|
Test.replace_in_file(compose, r"\- bw_data:/", "- /tmp/bw-data:/")
|
|
Test.replace_in_file(compose, r"\- bw\-data:/", "- /tmp/bw-data:/")
|
|
for ex_domain, test_domain in self._domains.items():
|
|
Test.replace_in_files(test, ex_domain, test_domain)
|
|
Test.rename(test, ex_domain, test_domain)
|
|
Test.replace_in_files(test, "example.com", getenv("ROOT_DOMAIN"))
|
|
setup = f"{test}/setup-autoconf.sh"
|
|
if isfile(setup):
|
|
proc = run("sudo ./setup-autoconf.sh", cwd=test, shell=True)
|
|
if proc.returncode != 0:
|
|
raise (Exception("setup-autoconf failed"))
|
|
if isdir(example_data) and not self._no_copy_container:
|
|
proc = run(
|
|
f"sudo bash -c 'cp -rp {example_data}/* /tmp/bw-data'",
|
|
shell=True,
|
|
)
|
|
if proc.returncode != 0:
|
|
raise (Exception("cp bw-data failed"))
|
|
if isdir(example_www):
|
|
proc = run(
|
|
f"sudo bash -c 'cp -rp {example_www}/* /tmp/www'",
|
|
shell=True,
|
|
)
|
|
if proc.returncode != 0:
|
|
raise (Exception("cp bw-data failed"))
|
|
proc = run(
|
|
"docker-compose -f autoconf.yml pull --ignore-pull-failures",
|
|
shell=True,
|
|
cwd=test,
|
|
)
|
|
if proc.returncode != 0:
|
|
raise (Exception("docker-compose pull failed"))
|
|
proc = run("docker-compose -f autoconf.yml up -d", shell=True, cwd=test)
|
|
if proc.returncode != 0:
|
|
raise (Exception("docker-compose up failed"))
|
|
except:
|
|
log(
|
|
"AUTOCONF",
|
|
"❌",
|
|
f"exception while running AutoconfTest._setup_test()\n{format_exc()}",
|
|
)
|
|
self._cleanup_test()
|
|
return False
|
|
return True
|
|
|
|
def _cleanup_test(self):
|
|
try:
|
|
test = f"/tmp/tests/{self._name}"
|
|
proc = run("docker-compose -f autoconf.yml down -v", shell=True, cwd=test)
|
|
if proc.returncode != 0:
|
|
raise (Exception("docker-compose down failed"))
|
|
proc = run(
|
|
"sudo bash -c 'rm -rf /tmp/www/*'",
|
|
shell=True,
|
|
)
|
|
if proc.returncode != 0:
|
|
raise (Exception("cp bw-data failed"))
|
|
super()._cleanup_test()
|
|
except:
|
|
log(
|
|
"AUTOCONF",
|
|
"❌",
|
|
f"exception while running AutoconfTest._cleanup_test()\n{format_exc()}",
|
|
)
|
|
return False
|
|
return True
|
|
|
|
def _debug_fail(self):
|
|
autoconf = "/tmp/autoconf"
|
|
proc = run("docker-compose logs", shell=True, cwd=autoconf)
|
|
test = f"/tmp/tests/{self._name}"
|
|
proc = run("docker-compose -f autoconf.yml logs", shell=True, cwd=test)
|