Skip to content

Instantly share code, notes, and snippets.

@mvmocanu
Last active February 1, 2024 22:17
Show Gist options
  • Save mvmocanu/6020200 to your computer and use it in GitHub Desktop.
Save mvmocanu/6020200 to your computer and use it in GitHub Desktop.
def test_concurrently(times):
"""
Add this decorator to small pieces of code that you want to test
concurrently to make sure they don't raise exceptions when run at the
same time. E.g., some Django views that do a SELECT and then a subsequent
INSERT might fail when the INSERT assumes that the data has not changed
since the SELECT.
"""
def test_concurrently_decorator(test_func):
def wrapper(*args, **kwargs):
exceptions = []
import threading
def call_test_func():
try:
test_func(*args, **kwargs)
except Exception, e:
exceptions.append(e)
raise
threads = []
for i in range(times):
threads.append(threading.Thread()
for t in threads:
t.start()
for t in threads:
t.join()
if exceptions:
raise Exception('test_concurrently intercepted %s exceptions: %s' % (len(exceptions), exceptions))
return wrapper
return test_concurrently_decorator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment