##// END OF EJS Templates
mv IPython.zmq to IPython.kernel.zmq
mv IPython.zmq to IPython.kernel.zmq

File last commit:

r9372:37f32253
r9372:37f32253
Show More
test_kernelmanager.py
48 lines | 1.5 KiB | text/x-python | PythonLexer
/ IPython / kernel / zmq / tests / test_kernelmanager.py
Brian E. Granger
Final cleanup of kernelmanager...
r9151 """Tests for the notebook kernel and session manager"""
Brian Granger
Adding test for basic kernel manager.
r9126
Brian E. Granger
Fixing last few things with the test suite for kernel managers.
r9132 from subprocess import PIPE
Brian E. Granger
Fixing bug in kernelmanager tests that was causing tests to hang....
r9131 import time
Brian Granger
Adding test for basic kernel manager.
r9126 from unittest import TestCase
MinRK
skip ipc tests on Windows...
r9156 from IPython.testing import decorators as dec
Brian Granger
Adding test for basic kernel manager.
r9126 from IPython.config.loader import Config
MinRK
move zmq.KernelManagers into IPython.kernel
r9370 from IPython.kernel.kernelmanager import KernelManager
Brian Granger
Adding test for basic kernel manager.
r9126
class TestKernelManager(TestCase):
def _get_tcp_km(self):
return KernelManager()
def _get_ipc_km(self):
c = Config()
c.KernelManager.transport = 'ipc'
c.KernelManager.ip = 'test'
km = KernelManager(config=c)
return km
def _run_lifecycle(self, km):
Brian E. Granger
Fixing last few things with the test suite for kernel managers.
r9132 km.start_kernel(stdout=PIPE, stderr=PIPE)
Brian Granger
Adding test for basic kernel manager.
r9126 km.start_channels(shell=True, iopub=False, stdin=False, hb=False)
km.restart_kernel()
Brian E. Granger
Fixing bug in kernelmanager tests that was causing tests to hang....
r9131 # We need a delay here to give the restarting kernel a chance to
# restart. Otherwise, the interrupt will kill it, causing the test
# suite to hang. The reason it *hangs* is that the shutdown
# message for the restart sometimes hasn't been sent to the kernel.
# Because linger is oo on the shell channel, the context can't
# close until the message is sent to the kernel, which is not dead.
Brian E. Granger
Fixing last few things with the test suite for kernel managers.
r9132 time.sleep(1.0)
Brian Granger
Adding test for basic kernel manager.
r9126 km.interrupt_kernel()
self.assertTrue(isinstance(km, KernelManager))
km.shutdown_kernel()
km.shell_channel.stop()
Brian E. Granger
Fixing bug in kernelmanager tests that was causing tests to hang....
r9131 def test_tcp_lifecycle(self):
Brian Granger
Adding test for basic kernel manager.
r9126 km = self._get_tcp_km()
self._run_lifecycle(km)
MinRK
skip ipc tests on Windows...
r9156 @dec.skip_win32
Brian E. Granger
Fixing bug in kernelmanager tests that was causing tests to hang....
r9131 def testipc_lifecycle(self):
Brian Granger
Adding test for basic kernel manager.
r9126 km = self._get_ipc_km()
self._run_lifecycle(km)
Brian E. Granger
Fixing bug in kernelmanager tests that was causing tests to hang....
r9131