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.
mitogen/tests/timing_test.py

24 lines
481 B
Python

#!/usr/bin/env python
import socket
import time
import unittest
import mitogen.master
import mitogen.utils
@mitogen.utils.with_broker
def do_stuff(broker):
context = mitogen.master.connect(broker)
t0 = time.time()
ncalls = 1000
for x in xrange(ncalls):
context.call(socket.gethostname)
return (1e6 * (time.time() - t0)) / ncalls
class LocalContextTimingTest(unittest.TestCase):
def test_timing(self):
self.assertLess(do_stuff(), 1000)