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.
32 lines
678 B
Python
32 lines
678 B
Python
6 years ago
|
|
||
|
import os
|
||
|
|
||
|
import mitogen
|
||
|
import mitogen.parent
|
||
|
|
||
|
import unittest2
|
||
|
|
||
|
import testlib
|
||
|
|
||
|
|
||
|
class ConstructorTest(testlib.RouterMixin, testlib.TestCase):
|
||
|
jexec_path = testlib.data_path('stubs/stub-jexec.py')
|
||
|
|
||
|
def test_okay(self):
|
||
|
context = self.router.jail(
|
||
|
jexec_path=self.jexec_path,
|
||
|
container='somejail',
|
||
|
)
|
||
|
argv = eval(context.call(os.getenv, 'ORIGINAL_ARGV'))
|
||
|
self.assertEquals(argv[:4], [
|
||
|
self.jexec_path,
|
||
|
'-u',
|
||
|
'someuser',
|
||
|
'--',
|
||
|
])
|
||
|
self.assertEquals('1', context.call(os.getenv, 'THIS_IS_STUB_jail'))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest2.main()
|