mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 01:54:09 +00:00
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
import sys
|
|
from pathlib import Path
|
|
from subprocess import run
|
|
|
|
from ruamel.yaml import YAML
|
|
|
|
yaml = YAML(typ="safe")
|
|
|
|
here = Path(__file__).absolute().parent
|
|
root = here.parent
|
|
|
|
|
|
def test_rest_api_version_is_updated():
|
|
"""Checks that the version in JupyterHub's REST API definition file
|
|
(rest-api.yml) is matching the JupyterHub version."""
|
|
version_py = root.joinpath("jupyterhub", "_version.py")
|
|
rest_api_yaml = root.joinpath("docs", "source", "_static", "rest-api.yml")
|
|
ns = {}
|
|
with version_py.open() as f:
|
|
exec(f.read(), {}, ns)
|
|
jupyterhub_version = ns["__version__"]
|
|
|
|
with rest_api_yaml.open() as f:
|
|
rest_api = yaml.load(f)
|
|
rest_api_version = rest_api["info"]["version"]
|
|
|
|
assert jupyterhub_version == rest_api_version
|
|
|
|
|
|
def test_rest_api_rbac_scope_descriptions_are_updated():
|
|
"""Checks that the RBAC scope descriptions in JupyterHub's REST API
|
|
definition file (rest-api.yml) as can be updated by generate-scope-table.py
|
|
matches what is committed."""
|
|
run([sys.executable, "source/rbac/generate-scope-table.py"], cwd=here, check=True)
|
|
run(
|
|
[
|
|
"git",
|
|
"--no-pager",
|
|
"diff",
|
|
"--color=always",
|
|
"--exit-code",
|
|
str(here.joinpath("source", "_static", "rest-api.yml")),
|
|
],
|
|
cwd=here,
|
|
check=True,
|
|
)
|