You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
|
|
import os
|
|
import sys
|
|
|
|
import unittest2
|
|
|
|
import mitogen
|
|
|
|
import testlib
|
|
|
|
|
|
def get_sys_executable():
|
|
return sys.executable
|
|
|
|
|
|
def get_os_environ():
|
|
return dict(os.environ)
|
|
|
|
|
|
class ConstructionTest(testlib.RouterMixin, testlib.TestCase):
|
|
stub_python_path = testlib.data_path('stubs/stub-python.py')
|
|
|
|
def test_stream_name(self):
|
|
context = self.router.local()
|
|
pid = context.call(os.getpid)
|
|
self.assertEquals('local.%d' % (pid,), context.name)
|
|
|
|
def test_python_path_inherited(self):
|
|
context = self.router.local()
|
|
self.assertEquals(sys.executable, context.call(get_sys_executable))
|
|
|
|
def test_python_path_string(self):
|
|
context = self.router.local(
|
|
python_path=self.stub_python_path,
|
|
)
|
|
env = context.call(get_os_environ)
|
|
self.assertEquals('1', env['THIS_IS_STUB_PYTHON'])
|
|
|
|
def test_python_path_list(self):
|
|
context = self.router.local(
|
|
python_path=[
|
|
self.stub_python_path,
|
|
"magic_first_arg",
|
|
sys.executable
|
|
]
|
|
)
|
|
self.assertEquals(sys.executable, context.call(get_sys_executable))
|
|
env = context.call(get_os_environ)
|
|
self.assertEquals('magic_first_arg', env['STUB_PYTHON_FIRST_ARG'])
|
|
self.assertEquals('1', env['THIS_IS_STUB_PYTHON'])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|