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

87 lines
2.4 KiB
Python
Raw Normal View History

2018-08-12 09:47:32 -07:00
"""
Test the plugin in integration-tests/plugins/simplest that makes use of all tljh
recognized plugin hooks that are defined in tljh/hooks.py.
2018-08-12 09:47:32 -07:00
"""
2018-08-12 09:47:32 -07:00
import os
import subprocess
2020-01-13 18:38:47 +02:00
from ruamel.yaml import YAML
2020-01-13 18:38:47 +02:00
from tljh import user
from tljh.config import CONFIG_FILE, HUB_ENV_PREFIX, USER_ENV_PREFIX
2018-08-12 09:47:32 -07:00
GIT_REPO_PATH = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
yaml = YAML(typ="rt")
2018-08-12 09:47:32 -07:00
def test_tljh_extra_user_conda_packages():
subprocess.check_call([f"{USER_ENV_PREFIX}/bin/python3", "-c", "import tqdm"])
2018-08-12 09:47:32 -07:00
def test_tljh_extra_user_pip_packages():
subprocess.check_call([f"{USER_ENV_PREFIX}/bin/python3", "-c", "import django"])
2018-08-12 09:47:32 -07:00
def test_tljh_extra_hub_pip_packages():
subprocess.check_call([f"{HUB_ENV_PREFIX}/bin/python3", "-c", "import there"])
2018-08-12 09:47:32 -07:00
def test_tljh_extra_apt_packages():
assert os.path.exists("/usr/games/sl")
2018-08-12 09:47:32 -07:00
def test_tljh_custom_jupyterhub_config():
2018-08-12 09:47:32 -07:00
"""
Test that the provided tljh_custom_jupyterhub_config hook has made the tljh
jupyterhub load additional jupyterhub config.
2018-08-12 09:47:32 -07:00
"""
tljh_jupyterhub_config = os.path.join(GIT_REPO_PATH, "tljh", "jupyterhub_config.py")
output = subprocess.check_output(
[
f"{HUB_ENV_PREFIX}/bin/python3",
"-m",
"jupyterhub",
"--show-config",
"--config",
tljh_jupyterhub_config,
],
text=True,
)
assert "jupyterhub_config_set_by_simplest_plugin" in output
def test_tljh_config_post_install():
"""
Test that the provided tljh_config_post_install hook has made tljh recognize
additional tljh config.
"""
with open(CONFIG_FILE) as f:
tljh_config = yaml.load(f)
assert tljh_config["Test"]["tljh_config_set_by_simplest_plugin"]
2019-06-27 11:45:36 +02:00
def test_tljh_post_install():
2019-06-27 11:45:36 +02:00
"""
Test that the provided tljh_post_install hook has been executed by looking
for a specific file written.
2019-06-27 11:45:36 +02:00
"""
with open("test_tljh_post_install") as f:
content = f.read()
assert "file_written_by_simplest_plugin" in content
2019-12-03 09:43:16 +01:00
def test_tljh_new_user_create():
2019-12-03 09:43:16 +01:00
"""
Test that the provided tljh_new_user_create hook has been executed by
looking for a specific file written.
2019-12-03 09:43:16 +01:00
"""
# Trigger the hook by letting tljh's code create a user
username = "user1"
2020-01-13 18:38:47 +02:00
user.ensure_user(username)
with open("test_new_user_create") as f:
2019-12-03 09:43:16 +01:00
content = f.read()
assert "file_written_by_simplest_plugin" in content
assert username in content