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.
53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
import os
|
|
import unittest2
|
|
|
|
import mitogen
|
|
|
|
import testlib
|
|
|
|
|
|
class ConstructorTest(testlib.RouterMixin, testlib.TestCase):
|
|
def test_okay(self):
|
|
stub_path = testlib.data_path('stubs/stub-podman.py')
|
|
|
|
context = self.router.podman(
|
|
container='container_name',
|
|
podman_path=stub_path,
|
|
)
|
|
stream = self.router.stream_by_id(context.context_id)
|
|
|
|
argv = eval(context.call(os.getenv, 'ORIGINAL_ARGV'))
|
|
expected_call = [
|
|
stub_path,
|
|
'exec',
|
|
'--interactive',
|
|
'--',
|
|
'container_name',
|
|
stream.conn.options.python_path
|
|
]
|
|
self.assertEquals(argv[:len(expected_call)], expected_call)
|
|
|
|
context = self.router.podman(
|
|
container='container_name',
|
|
podman_path=stub_path,
|
|
username='some_user',
|
|
)
|
|
stream = self.router.stream_by_id(context.context_id)
|
|
|
|
argv = eval(context.call(os.getenv, 'ORIGINAL_ARGV'))
|
|
expected_call = [
|
|
stub_path,
|
|
'exec',
|
|
'--user=some_user',
|
|
'--interactive',
|
|
'--',
|
|
'container_name',
|
|
stream.conn.options.python_path
|
|
]
|
|
self.assertEquals(argv[:len(expected_call)], expected_call)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|