2017-09-18 09:04:05 +00:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
import mitogen.core
|
|
|
|
import testlib
|
|
|
|
|
|
|
|
|
2017-10-01 10:00:43 +00:00
|
|
|
class ConstructorTest(testlib.RouterMixin, testlib.TestCase):
|
2017-09-18 09:04:05 +00:00
|
|
|
def test_constructor(self):
|
|
|
|
# issue 32
|
|
|
|
l1 = self.router.local()
|
|
|
|
chan = mitogen.core.Channel(self.router, l1, 123)
|
|
|
|
assert chan.router == self.router
|
|
|
|
assert chan.context == l1
|
|
|
|
assert chan.dst_handle == 123
|
|
|
|
assert chan.handle is not None
|
|
|
|
assert chan.handle > 0
|
2017-10-01 10:00:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|