mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-21 18:23:35 +00:00
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
from textwrap import dedent
|
|
|
|
from flaky import flaky
|
|
|
|
from .test_embed_kernel import setup_kernel
|
|
|
|
TIMEOUT = 15
|
|
|
|
|
|
@flaky(max_runs=3)
|
|
def test_ipython_start_kernel_userns():
|
|
cmd = dedent(
|
|
"""
|
|
from ipykernel.kernelapp import launch_new_instance
|
|
ns = {"tre": 123}
|
|
launch_new_instance(user_ns=ns)
|
|
"""
|
|
)
|
|
|
|
with setup_kernel(cmd) as client:
|
|
client.inspect("tre")
|
|
msg = client.get_shell_msg(timeout=TIMEOUT)
|
|
content = msg["content"]
|
|
assert content["found"]
|
|
text = content["data"]["text/plain"]
|
|
assert "123" in text
|
|
|
|
# user_module should be an instance of DummyMod
|
|
client.execute("usermod = get_ipython().user_module")
|
|
msg = client.get_shell_msg(timeout=TIMEOUT)
|
|
content = msg["content"]
|
|
assert content["status"] == "ok"
|
|
client.inspect("usermod")
|
|
msg = client.get_shell_msg(timeout=TIMEOUT)
|
|
content = msg["content"]
|
|
assert content["found"]
|
|
text = content["data"]["text/plain"]
|
|
assert "DummyMod" in text
|
|
|
|
|
|
@flaky(max_runs=3)
|
|
def test_ipython_start_kernel_no_userns():
|
|
# Issue #4188 - user_ns should be passed to shell as None, not {}
|
|
cmd = dedent(
|
|
"""
|
|
from ipykernel.kernelapp import launch_new_instance
|
|
launch_new_instance()
|
|
"""
|
|
)
|
|
|
|
with setup_kernel(cmd) as client:
|
|
# user_module should not be an instance of DummyMod
|
|
client.execute("usermod = get_ipython().user_module")
|
|
msg = client.get_shell_msg(timeout=TIMEOUT)
|
|
content = msg["content"]
|
|
assert content["status"] == "ok"
|
|
client.inspect("usermod")
|
|
msg = client.get_shell_msg(timeout=TIMEOUT)
|
|
content = msg["content"]
|
|
assert content["found"]
|
|
text = content["data"]["text/plain"]
|
|
assert "DummyMod" not in text
|