Commit e2d3ac9b authored by David Wilson's avatar David Wilson

Fixup some more tests.

parent e66590f0
...@@ -9,14 +9,10 @@ def repr_stuff(): ...@@ -9,14 +9,10 @@ def repr_stuff():
return repr([__name__, 50]) return repr([__name__, 50])
def main(): def main(router):
broker = mitogen.master.Broker() context = router.local()
try: print context.call(repr_stuff)
context = mitogen.master.connect(broker)
print context.call(repr_stuff)
finally:
broker.shutdown()
broker.join()
if __name__ == '__main__' and mitogen.is_master: if __name__ == '__main__' and mitogen.is_master:
main() import mitogen.utils
mitogen.utils.run_with_router(main)
...@@ -11,17 +11,17 @@ import plain_old_module ...@@ -11,17 +11,17 @@ import plain_old_module
import simple_pkg.a import simple_pkg.a
class GoodModulesTest(testlib.BrokerMixin, unittest.TestCase): class GoodModulesTest(testlib.RouterMixin, unittest.TestCase):
def test_plain_old_module(self): def test_plain_old_module(self):
# The simplest case: a top-level module with no interesting imports or # The simplest case: a top-level module with no interesting imports or
# package machinery damage. # package machinery damage.
context = mitogen.master.connect(self.broker) context = self.router.local()
self.assertEquals(256, context.call(plain_old_module.pow, 2, 8)) self.assertEquals(256, context.call(plain_old_module.pow, 2, 8))
def test_simple_pkg(self): def test_simple_pkg(self):
# Ensure success of a simple package containing two submodules, one of # Ensure success of a simple package containing two submodules, one of
# which imports the other. # which imports the other.
context = mitogen.master.connect(self.broker) context = self.router.local()
self.assertEquals(3, self.assertEquals(3,
context.call(simple_pkg.a.subtract_one_add_two, 2)) context.call(simple_pkg.a.subtract_one_add_two, 2))
...@@ -38,15 +38,20 @@ class BrokenModulesTest(unittest.TestCase): ...@@ -38,15 +38,20 @@ class BrokenModulesTest(unittest.TestCase):
# Ensure we don't crash in the case of a module legitimately being # Ensure we don't crash in the case of a module legitimately being
# unavailable. Should never happen in the real world. # unavailable. Should never happen in the real world.
context = mock.Mock() router = mock.Mock()
responder = mitogen.master.ModuleResponder(context) responder = mitogen.master.ModuleResponder(router)
responder.get_module((50, 'non_existent_module')) responder._on_get_module(
self.assertEquals(1, len(context.enqueue.mock_calls)) mitogen.core.Message(
data='non_existent_module',
reply_to=50,
)
)
self.assertEquals(1, len(router.route.mock_calls))
call = context.enqueue.mock_calls[0] call = router.route.mock_calls[0]
reply_to, data = call[1] msg, = call[1]
self.assertEquals(50, reply_to) self.assertEquals(50, msg.handle)
self.assertTrue(data is None) self.assertTrue(msg.unpickle() is None)
def test_ansible_six_messed_up_path(self): def test_ansible_six_messed_up_path(self):
# The copy of six.py shipped with Ansible appears in a package whose # The copy of six.py shipped with Ansible appears in a package whose
...@@ -56,12 +61,17 @@ class BrokenModulesTest(unittest.TestCase): ...@@ -56,12 +61,17 @@ class BrokenModulesTest(unittest.TestCase):
# cause an attempt to request ansible.compat.six._six from the master. # cause an attempt to request ansible.compat.six._six from the master.
import six_brokenpkg import six_brokenpkg
context = mock.Mock() router = mock.Mock()
responder = mitogen.master.ModuleResponder(context) responder = mitogen.master.ModuleResponder(router)
responder.get_module((50, 'six_brokenpkg._six')) responder._on_get_module(
self.assertEquals(1, len(context.enqueue.mock_calls)) mitogen.core.Message(
data='six_brokenpkg._six',
reply_to=50,
)
)
self.assertEquals(1, len(router.route.mock_calls))
call = context.enqueue.mock_calls[0] call = router.route.mock_calls[0]
reply_to, data = call[1] msg, = call[1]
self.assertEquals(50, reply_to) self.assertEquals(50, msg.handle)
self.assertTrue(isinstance(data, tuple)) self.assertTrue(isinstance(msg.unpickle(), tuple))
...@@ -21,7 +21,11 @@ def set_debug(): ...@@ -21,7 +21,11 @@ def set_debug():
def data_path(suffix): def data_path(suffix):
return os.path.join(DATA_DIR, suffix) path = os.path.join(DATA_DIR, suffix)
if path.endswith('.key'):
# SSH is funny about private key permissions.
os.chmod(path, 0600)
return path
class DockerizedSshDaemon(object): class DockerizedSshDaemon(object):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment