Files
the-littlest-jupyterhub/integration-tests/test_bootstrap.py

145 lines
4.7 KiB
Python
Raw Normal View History

"""
Test running bootstrap script in different circumstances
"""
2020-08-18 23:56:37 +03:00
import concurrent.futures
2020-08-21 18:03:57 +03:00
import os
2020-08-18 23:56:37 +03:00
import requests
import subprocess
from textwrap import dedent
2020-08-18 23:56:37 +03:00
import time
2020-08-21 18:03:57 +03:00
def start_container(container_name, image, show_progress_page):
run_flags = [
"--detach",
"--name",
container_name,
image,
"/bin/bash",
"-c",
"sleep 1000s",
]
if show_progress_page:
# Use port-forwarding to be able to access the progress page when it starts
run_flags = ["--publish", "12000:80"] + run_flags
# Start a detached container
subprocess.check_call(["docker", "run"] + run_flags)
def install_pkgs(container_name, show_progress_page):
# Install python3 inside the ubuntu container
# There is no trusted Ubuntu+Python3 container we can use
2020-08-21 18:03:57 +03:00
pkgs = ["python3"]
if show_progress_page:
pkgs += ["systemd", "git"]
# Create the sudoers dir, so that the installer succesfully gets to the
# point of starting jupyterhub and stopping the progress page server.
subprocess.check_output(
["docker", "exec", container_name, "mkdir", "-p", "etc/sudoers.d"]
)
subprocess.check_output(["docker", "exec", container_name, "apt-get", "update"])
subprocess.check_output(
["docker", "exec", container_name, "apt-get", "install", "--yes"] + pkgs
2020-08-18 23:56:37 +03:00
)
2020-08-21 18:03:57 +03:00
def get_bootstrap_script_location(container_name, show_progress_page):
# Copy only the bootstrap script to container when progress page not enabled, to be faster
source_path = "bootstrap/"
bootstrap_script = "/srv/src/bootstrap.py"
if show_progress_page:
source_path = os.path.abspath(
os.path.join(os.path.dirname(__file__), os.pardir)
)
bootstrap_script = "/srv/src/bootstrap/bootstrap.py"
subprocess.check_call(["docker", "cp", source_path, f"{container_name}:/srv/src"])
return bootstrap_script
def run_bootstrap(container_name, image, show_progress_page=False):
# stop container if it is already running
subprocess.run(["docker", "rm", "-f", container_name])
start_container(container_name, image, show_progress_page)
install_pkgs(container_name, show_progress_page)
bootstrap_script = get_bootstrap_script_location(container_name, show_progress_page)
exec_flags = ["-i", container_name, "python3", bootstrap_script]
if show_progress_page:
exec_flags = (
2020-08-22 15:57:40 +03:00
["-e", "TLJH_BOOTSTRAP_DEV=yes", "-e", "TLJH_BOOTSTRAP_PIP_SPEC=/srv/src"]
2020-08-21 18:03:57 +03:00
+ exec_flags
+ ["--show-progress-page"]
)
# Run bootstrap script, return the output
2020-08-21 18:03:57 +03:00
return subprocess.run(
["docker", "exec"] + exec_flags,
check=False,
stdout=subprocess.PIPE,
encoding="utf-8",
)
def test_ubuntu_too_old():
"""
Error with a useful message when running in older Ubuntu
"""
2020-08-21 18:03:57 +03:00
output = run_bootstrap("old-distro-test", "ubuntu:16.04")
assert output.stdout == "The Littlest JupyterHub requires Ubuntu 18.04 or higher\n"
assert output.returncode == 1
def test_inside_no_systemd_docker():
2020-08-21 18:03:57 +03:00
output = run_bootstrap("plain-docker-test", "ubuntu:18.04")
assert (
output.stdout.strip()
== dedent(
"""
Systemd is required to run TLJH
Running inside a docker container without systemd isn't supported
We recommend against running a production TLJH instance inside a docker container
For local development, see http://tljh.jupyter.org/en/latest/contributing/dev-setup.html
2020-08-21 18:03:57 +03:00
"""
).strip()
)
assert output.returncode == 1
2020-08-18 23:56:37 +03:00
2020-08-19 02:33:17 +03:00
def verify_progress_page(expected_status_code, timeout):
2020-08-18 23:56:37 +03:00
progress_page_status = False
2020-08-19 02:33:17 +03:00
start = time.time()
while not progress_page_status and (time.time() - start < timeout):
2020-08-18 23:56:37 +03:00
try:
2020-08-21 18:03:57 +03:00
resp = requests.get("http://127.0.0.1:12000/index.html")
2020-08-19 02:33:17 +03:00
if resp.status_code == expected_status_code:
2020-08-18 23:56:37 +03:00
progress_page_status = True
2020-08-21 18:03:57 +03:00
break
2020-08-18 23:56:37 +03:00
except Exception as e:
2020-08-19 02:33:17 +03:00
time.sleep(2)
2020-08-21 18:03:57 +03:00
continue
2020-08-18 23:56:37 +03:00
return progress_page_status
2020-08-21 18:03:57 +03:00
2020-08-18 23:56:37 +03:00
def test_progress_page():
with concurrent.futures.ThreadPoolExecutor() as executor:
2020-08-21 18:03:57 +03:00
installer = executor.submit(
run_bootstrap, "progress-page", "ubuntu:18.04", True
)
2020-08-18 23:56:37 +03:00
# Check if progress page started
2020-08-19 02:33:17 +03:00
started = verify_progress_page(expected_status_code=200, timeout=120)
2020-08-18 23:56:37 +03:00
assert started
2020-08-21 18:03:57 +03:00
# This will fail start tljh but should successfully get to the point
# Where it stops the progress page server.
output = installer.result()
2020-08-19 02:33:17 +03:00
# Check if progress page stopped
2020-08-21 18:03:57 +03:00
assert "Progress page server stopped successfully." in output.stdout