
In projects which dynamically determine whether to activate eventlet, it can be hard not to import a low level module like logging before eventlet. When logging is imported it initialises a threading.RLock which it uses to protect the logging configuration. If two greenthreads attempt to claim this lock, the second one will block the /native/ thread not just itself. As green systems usually only have one native thread, this will freeze the whole system. Search the GC for unsafe RLocks and replace their internal Lock with a safe one while monkey-patching. The tests pass, but were they to fail, the test process would never return. To deal with this, I've added a test dependency on subprocess32 which is a backport of the stdlib subprocess module from Python3. This offers a timeout option on Popen#communicate, which I've arbitrarily set at 30 seconds.
351 lines
11 KiB
Python
351 lines
11 KiB
Python
# package is named tests, not test, so it won't be confused with test in stdlib
|
|
from __future__ import print_function
|
|
|
|
import contextlib
|
|
import errno
|
|
import functools
|
|
import gc
|
|
import json
|
|
import os
|
|
try:
|
|
import resource
|
|
except ImportError:
|
|
resource = None
|
|
import signal
|
|
try:
|
|
import subprocess32 as subprocess # py2
|
|
except ImportError:
|
|
import subprocess # py3
|
|
import sys
|
|
import unittest
|
|
import warnings
|
|
|
|
from nose.plugins.skip import SkipTest
|
|
|
|
import eventlet
|
|
from eventlet import tpool
|
|
|
|
|
|
# convenience for importers
|
|
main = unittest.main
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def assert_raises(exc_type):
|
|
try:
|
|
yield
|
|
except exc_type:
|
|
pass
|
|
else:
|
|
name = str(exc_type)
|
|
try:
|
|
name = exc_type.__name__
|
|
except AttributeError:
|
|
pass
|
|
assert False, 'Expected exception {0}'.format(name)
|
|
|
|
|
|
def skipped(func, *decorator_args):
|
|
"""Decorator that marks a function as skipped.
|
|
"""
|
|
@functools.wraps(func)
|
|
def wrapped(*a, **k):
|
|
raise SkipTest(*decorator_args)
|
|
|
|
return wrapped
|
|
|
|
|
|
def skip_if(condition):
|
|
""" Decorator that skips a test if the *condition* evaluates True.
|
|
*condition* can be a boolean or a callable that accepts one argument.
|
|
The callable will be called with the function to be decorated, and
|
|
should return True to skip the test.
|
|
"""
|
|
def skipped_wrapper(func):
|
|
@functools.wraps(func)
|
|
def wrapped(*a, **kw):
|
|
if isinstance(condition, bool):
|
|
result = condition
|
|
else:
|
|
result = condition(func)
|
|
if result:
|
|
raise SkipTest()
|
|
else:
|
|
return func(*a, **kw)
|
|
return wrapped
|
|
return skipped_wrapper
|
|
|
|
|
|
def skip_unless(condition):
|
|
""" Decorator that skips a test if the *condition* does not return True.
|
|
*condition* can be a boolean or a callable that accepts one argument.
|
|
The callable will be called with the function to be decorated, and
|
|
should return True if the condition is satisfied.
|
|
"""
|
|
def skipped_wrapper(func):
|
|
@functools.wraps(func)
|
|
def wrapped(*a, **kw):
|
|
if isinstance(condition, bool):
|
|
result = condition
|
|
else:
|
|
result = condition(func)
|
|
if not result:
|
|
raise SkipTest()
|
|
else:
|
|
return func(*a, **kw)
|
|
return wrapped
|
|
return skipped_wrapper
|
|
|
|
|
|
def using_pyevent(_f):
|
|
from eventlet.hubs import get_hub
|
|
return 'pyevent' in type(get_hub()).__module__
|
|
|
|
|
|
def skip_with_pyevent(func):
|
|
""" Decorator that skips a test if we're using the pyevent hub."""
|
|
return skip_if(using_pyevent)(func)
|
|
|
|
|
|
def skip_on_windows(func):
|
|
""" Decorator that skips a test on Windows."""
|
|
return skip_if(sys.platform.startswith('win'))(func)
|
|
|
|
|
|
def skip_if_no_itimer(func):
|
|
""" Decorator that skips a test if the `itimer` module isn't found """
|
|
has_itimer = False
|
|
try:
|
|
import itimer
|
|
has_itimer = True
|
|
except ImportError:
|
|
pass
|
|
return skip_unless(has_itimer)(func)
|
|
|
|
|
|
def skip_if_no_ssl(func):
|
|
""" Decorator that skips a test if SSL is not available."""
|
|
try:
|
|
import eventlet.green.ssl
|
|
return func
|
|
except ImportError:
|
|
try:
|
|
import eventlet.green.OpenSSL
|
|
return func
|
|
except ImportError:
|
|
return skipped(func)
|
|
|
|
|
|
class TestIsTakingTooLong(Exception):
|
|
""" Custom exception class to be raised when a test's runtime exceeds a limit. """
|
|
pass
|
|
|
|
|
|
class LimitedTestCase(unittest.TestCase):
|
|
""" Unittest subclass that adds a timeout to all tests. Subclasses must
|
|
be sure to call the LimitedTestCase setUp and tearDown methods. The default
|
|
timeout is 1 second, change it by setting TEST_TIMEOUT to the desired
|
|
quantity."""
|
|
|
|
TEST_TIMEOUT = 1
|
|
|
|
def setUp(self):
|
|
self.previous_alarm = None
|
|
self.timer = eventlet.Timeout(self.TEST_TIMEOUT,
|
|
TestIsTakingTooLong(self.TEST_TIMEOUT))
|
|
|
|
def reset_timeout(self, new_timeout):
|
|
"""Changes the timeout duration; only has effect during one test.
|
|
`new_timeout` can be int or float.
|
|
"""
|
|
self.timer.cancel()
|
|
self.timer = eventlet.Timeout(new_timeout,
|
|
TestIsTakingTooLong(new_timeout))
|
|
|
|
def set_alarm(self, new_timeout):
|
|
"""Call this in the beginning of your test if you expect busy loops.
|
|
Only has effect during one test.
|
|
`new_timeout` must be int.
|
|
"""
|
|
def sig_alarm_handler(sig, frame):
|
|
# Could arm previous alarm but test is failed anyway
|
|
# seems to be no point in restoring previous state.
|
|
raise TestIsTakingTooLong(new_timeout)
|
|
|
|
self.previous_alarm = (
|
|
signal.signal(signal.SIGALRM, sig_alarm_handler),
|
|
signal.alarm(new_timeout),
|
|
)
|
|
|
|
def tearDown(self):
|
|
self.timer.cancel()
|
|
if self.previous_alarm:
|
|
signal.signal(signal.SIGALRM, self.previous_alarm[0])
|
|
signal.alarm(self.previous_alarm[1])
|
|
|
|
tpool.killall()
|
|
gc.collect()
|
|
eventlet.sleep(0)
|
|
verify_hub_empty()
|
|
|
|
def assert_less_than(self, a, b, msg=None):
|
|
msg = msg or "%s not less than %s" % (a, b)
|
|
assert a < b, msg
|
|
|
|
assertLessThan = assert_less_than
|
|
|
|
def assert_less_than_equal(self, a, b, msg=None):
|
|
msg = msg or "%s not less than or equal to %s" % (a, b)
|
|
assert a <= b, msg
|
|
|
|
assertLessThanEqual = assert_less_than_equal
|
|
|
|
|
|
def check_idle_cpu_usage(duration, allowed_part):
|
|
if resource is None:
|
|
# TODO: use https://code.google.com/p/psutil/
|
|
from nose.plugins.skip import SkipTest
|
|
raise SkipTest('CPU usage testing not supported (`import resource` failed)')
|
|
|
|
r1 = resource.getrusage(resource.RUSAGE_SELF)
|
|
eventlet.sleep(duration)
|
|
r2 = resource.getrusage(resource.RUSAGE_SELF)
|
|
utime = r2.ru_utime - r1.ru_utime
|
|
stime = r2.ru_stime - r1.ru_stime
|
|
|
|
# This check is reliably unreliable on Travis, presumably because of CPU
|
|
# resources being quite restricted by the build environment. The workaround
|
|
# is to apply an arbitrary factor that should be enough to make it work nicely.
|
|
if os.environ.get('TRAVIS') == 'true':
|
|
allowed_part *= 1.2
|
|
|
|
assert utime + stime < duration * allowed_part, \
|
|
"CPU usage over limit: user %.0f%% sys %.0f%% allowed %.0f%%" % (
|
|
utime / duration * 100, stime / duration * 100,
|
|
allowed_part * 100)
|
|
|
|
|
|
def verify_hub_empty():
|
|
|
|
def format_listener(listener):
|
|
return 'Listener %r for greenlet %r with run callback %r' % (
|
|
listener, listener.greenlet, getattr(listener.greenlet, 'run', None))
|
|
|
|
from eventlet import hubs
|
|
hub = hubs.get_hub()
|
|
readers = hub.get_readers()
|
|
writers = hub.get_writers()
|
|
num_readers = len(readers)
|
|
num_writers = len(writers)
|
|
num_timers = hub.get_timers_count()
|
|
assert num_readers == 0 and num_writers == 0, \
|
|
"Readers: %s (%d) Writers: %s (%d)" % (
|
|
', '.join(map(format_listener, readers)), num_readers,
|
|
', '.join(map(format_listener, writers)), num_writers,
|
|
)
|
|
|
|
|
|
def find_command(command):
|
|
for dir in os.getenv('PATH', '/usr/bin:/usr/sbin').split(os.pathsep):
|
|
p = os.path.join(dir, command)
|
|
if os.access(p, os.X_OK):
|
|
return p
|
|
raise IOError(errno.ENOENT, 'Command not found: %r' % command)
|
|
|
|
|
|
def silence_warnings(func):
|
|
def wrapper(*args, **kw):
|
|
warnings.simplefilter('ignore', DeprecationWarning)
|
|
try:
|
|
return func(*args, **kw)
|
|
finally:
|
|
warnings.simplefilter('default', DeprecationWarning)
|
|
wrapper.__name__ = func.__name__
|
|
return wrapper
|
|
|
|
|
|
def get_database_auth():
|
|
"""Retrieves a dict of connection parameters for connecting to test databases.
|
|
|
|
Authentication parameters are highly-machine specific, so
|
|
get_database_auth gets its information from either environment
|
|
variables or a config file. The environment variable is
|
|
"EVENTLET_DB_TEST_AUTH" and it should contain a json object. If
|
|
this environment variable is present, it's used and config files
|
|
are ignored. If it's not present, it looks in the local directory
|
|
(tests) and in the user's home directory for a file named
|
|
".test_dbauth", which contains a json map of parameters to the
|
|
connect function.
|
|
"""
|
|
retval = {
|
|
'MySQLdb': {'host': 'localhost', 'user': 'root', 'passwd': ''},
|
|
'psycopg2': {'user': 'test'},
|
|
}
|
|
|
|
if 'EVENTLET_DB_TEST_AUTH' in os.environ:
|
|
return json.loads(os.environ.get('EVENTLET_DB_TEST_AUTH'))
|
|
|
|
files = [os.path.join(os.path.dirname(__file__), '.test_dbauth'),
|
|
os.path.join(os.path.expanduser('~'), '.test_dbauth')]
|
|
for f in files:
|
|
try:
|
|
auth_utf8 = json.load(open(f))
|
|
# Have to convert unicode objects to str objects because
|
|
# mysqldb is dumb. Using a doubly-nested list comprehension
|
|
# because we know that the structure is a two-level dict.
|
|
return dict(
|
|
[(str(modname), dict(
|
|
[(str(k), str(v)) for k, v in connectargs.items()]))
|
|
for modname, connectargs in auth_utf8.items()])
|
|
except IOError:
|
|
pass
|
|
return retval
|
|
|
|
|
|
def run_python(path, env=None, args=None):
|
|
new_argv = [sys.executable]
|
|
new_env = os.environ.copy()
|
|
if path:
|
|
if not path.endswith('.py'):
|
|
path += '.py'
|
|
path = os.path.abspath(path)
|
|
new_argv.append(path)
|
|
src_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
new_env['PYTHONPATH'] = os.pathsep.join(sys.path + [src_dir])
|
|
if env:
|
|
new_env.update(env)
|
|
if args:
|
|
new_argv.extend(args)
|
|
p = subprocess.Popen(
|
|
new_argv,
|
|
env=new_env,
|
|
stderr=subprocess.STDOUT,
|
|
stdin=subprocess.PIPE,
|
|
stdout=subprocess.PIPE,
|
|
)
|
|
try:
|
|
output, _ = p.communicate(timeout=30)
|
|
except subprocess.TimeoutExpired:
|
|
p.kill()
|
|
output, _ = p.communicate(timeout=30)
|
|
return "{0}\nFAIL - timed out".format(output)
|
|
return output
|
|
|
|
|
|
def run_isolated(path, prefix='tests/isolated/', env=None, args=None):
|
|
output = run_python(prefix + path, env=env, args=args).rstrip()
|
|
if output.startswith(b'skip'):
|
|
parts = output.split(b':', 1)
|
|
skip_args = []
|
|
if len(parts) > 1:
|
|
skip_args.append(parts[1])
|
|
raise SkipTest(*skip_args)
|
|
ok = output == b'pass'
|
|
if not ok:
|
|
sys.stderr.write('Isolated test {0} output:\n---\n{1}\n---\n'.format(path, output.decode()))
|
|
assert ok, 'Expected single line "pass" in stdout'
|
|
|
|
|
|
certificate_file = os.path.join(os.path.dirname(__file__), 'test_server.crt')
|
|
private_key_file = os.path.join(os.path.dirname(__file__), 'test_server.key')
|