Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pass session_id during Websocket connect #1440

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions jupyter_server/gateway/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ async def connect(self):
url_escape(self.kernel_id),
"channels",
)
if self.session_id:
ws_url += f"?session_id={url_escape(self.session_id)}"
self.log.info(f"Connecting to {ws_url}")
kwargs: dict[str, Any] = {}
kwargs = GatewayClient.instance().load_connection_args(**kwargs)
Expand Down
36 changes: 36 additions & 0 deletions tests/test_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ async def mock_gateway_request(url, **kwargs):


mocked_gateway = patch("jupyter_server.gateway.managers.gateway_request", mock_gateway_request)
mock_gateway_ws_url = "ws://mock-gateway-server:8889"
mock_gateway_url = "http://mock-gateway-server:8889"
mock_http_user = "alice"

Expand Down Expand Up @@ -733,6 +734,41 @@ async def test_websocket_connection_closed(init_gateway, jp_serverapp, jp_fetch,
pytest.fail(f"Logs contain an error: {message}")


@patch("tornado.websocket.websocket_connect", mock_websocket_connect())
async def test_websocket_connection_with_session_id(init_gateway, jp_serverapp, jp_fetch, caplog):
# Create the session and kernel and get the kernel manager...
kernel_id = await create_kernel(jp_fetch, "kspec_foo")
km: GatewayKernelManager = jp_serverapp.kernel_manager.get_kernel(kernel_id)

# Create the KernelWebsocketHandler...
request = HTTPServerRequest("foo", "GET")
request.connection = MagicMock()
handler = KernelWebsocketHandler(jp_serverapp.web_app, request)
# Create the GatewayWebSocketConnection and attach it to the handler...
with mocked_gateway:
conn = GatewayWebSocketConnection(parent=km, websocket_handler=handler)
handler.connection = conn
await conn.connect()
assert conn.session_id != None
expected_ws_url = (
f"{mock_gateway_ws_url}/api/kernels/{kernel_id}/channels?session_id={conn.session_id}"
)
assert (
expected_ws_url in caplog.text
), "WebSocket URL does not contain the expected session_id."

# Processing websocket messages happens in separate coroutines and any
# errors in that process will show up in logs, but not bubble up to the
# caller.
#
# To check for these, we wait for the server to stop and then check the
# logs for errors.
await jp_serverapp._cleanup()
for _, level, message in caplog.record_tuples:
if level >= logging.ERROR:
pytest.fail(f"Logs contain an error: {message}")


#
# Test methods below...
#
Expand Down
Loading