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.
41 lines
973 B
Python
41 lines
973 B
Python
|
|
import mock
|
|
import unittest2
|
|
|
|
import mitogen.core
|
|
import mitogen.parent
|
|
|
|
import testlib
|
|
|
|
|
|
class HasParentAuthorityTest(testlib.TestCase):
|
|
func = staticmethod(mitogen.core.has_parent_authority)
|
|
|
|
def call(self, auth_id):
|
|
msg = mitogen.core.Message(auth_id=auth_id)
|
|
return self.func(msg)
|
|
|
|
@mock.patch('mitogen.context_id', 5555)
|
|
@mock.patch('mitogen.parent_ids', [111, 222])
|
|
def test_okay(self):
|
|
self.assertFalse(self.call(0))
|
|
self.assertTrue(self.call(5555))
|
|
self.assertTrue(self.call(111))
|
|
|
|
|
|
class IsImmediateChildTest(testlib.TestCase):
|
|
func = staticmethod(mitogen.core.has_parent_authority)
|
|
|
|
def call(self, auth_id, remote_id):
|
|
msg = mitogen.core.Message(auth_id=auth_id)
|
|
stream = mock.Mock(remote_id=remote_id)
|
|
return self.func(msg, stream)
|
|
|
|
def test_okay(self):
|
|
self.assertFalse(0, 1)
|
|
self.assertTrue(1, 1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|