| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Copyright (c) Jupyter Development Team.
- # Distributed under the terms of the Modified BSD License.
- import getpass
- import os
- from pathlib import Path
- from tempfile import NamedTemporaryFile, mkdtemp
- def configure_jupyter_server(c):
- """Helper to configure the Jupyter Server for integration testing
- with Galata.
- By default the tests will be executed in the OS temporary folder. You
- can override that folder by setting the environment variable ``JUPYTERLAB_GALATA_ROOT_DIR``.
- .. warning::
- Never use this configuration in production as it will remove all security protections.
- """
- # Test if we are running in a docker
- if getpass.getuser() == "jovyan":
- c.ServerApp.ip = "0.0.0.0" # noqa S104
- c.ServerApp.port = 8888
- c.ServerApp.port_retries = 0
- c.ServerApp.open_browser = False
- # Add test helpers extension shipped with JupyterLab.
- # You can replace the following line by the two following one
- # import jupyterlab
- # c.LabServerApp.extra_labextensions_path = str(Path(jupyterlab.__file__).parent / "galata")
- c.LabServerApp.extra_labextensions_path = str(Path(__file__).parent)
- c.LabApp.workspaces_dir = mkdtemp(prefix="galata-workspaces-")
- with NamedTemporaryFile(mode="w", delete=False) as tmp:
- tmp.write('PS1="$ "\n')
- rcfile_path = tmp.name
- c.ServerApp.terminado_settings = {"shell_command": ["/bin/bash", "--rcfile", rcfile_path]}
- c.ServerApp.root_dir = os.environ.get(
- "JUPYTERLAB_GALATA_ROOT_DIR", mkdtemp(prefix="galata-test-")
- )
- c.IdentityProvider.token = ""
- c.ServerApp.password = ""
- c.ServerApp.disable_check_xsrf = True
- c.LabApp.expose_app_in_browser = True
|