blob: 7170f60f1c0906bec3771eea5f70b38556f9d43e [file] [log] [blame]
Antoine Pitrou4c8ce842013-09-01 19:51:49 +02001"""
2Tests for the threading module.
3"""
Skip Montanaro4533f602001-08-20 20:28:48 +00004
Benjamin Petersonee8712c2008-05-20 21:35:26 +00005import test.support
Serhiy Storchaka5cfc79d2014-02-07 10:06:39 +02006from test.support import verbose, strip_python_stderr, import_module, cpython_only
Antoine Pitrou8e6e0fd2012-04-19 23:55:01 +02007from test.script_helper import assert_python_ok
8
Skip Montanaro4533f602001-08-20 20:28:48 +00009import random
Georg Brandl0c77a822008-06-10 16:37:50 +000010import re
Guido van Rossumcd16bf62007-06-13 18:07:49 +000011import sys
Antoine Pitrouc4d78642011-05-05 20:17:32 +020012_thread = import_module('_thread')
13threading = import_module('threading')
Skip Montanaro4533f602001-08-20 20:28:48 +000014import time
Tim Peters84d54892005-01-08 06:03:17 +000015import unittest
Christian Heimesd3eb5a152008-02-24 00:38:49 +000016import weakref
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +000017import os
Antoine Pitrouc4d78642011-05-05 20:17:32 +020018from test.script_helper import assert_python_ok, assert_python_failure
Gregory P. Smith4b129d22011-01-04 00:51:50 +000019import subprocess
Skip Montanaro4533f602001-08-20 20:28:48 +000020
Antoine Pitrou557934f2009-11-06 22:41:14 +000021from test import lock_tests
22
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +030023
24# Between fork() and exec(), only async-safe functions are allowed (issues
25# #12316 and #11870), and fork() from a worker thread is known to trigger
26# problems with some operating systems (issue #3863): skip problematic tests
27# on platforms known to behave badly.
28platforms_to_skip = ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5',
29 'hp-ux11')
30
31
Tim Peters84d54892005-01-08 06:03:17 +000032# A trivial mutable counter.
33class Counter(object):
34 def __init__(self):
35 self.value = 0
36 def inc(self):
37 self.value += 1
38 def dec(self):
39 self.value -= 1
40 def get(self):
41 return self.value
Skip Montanaro4533f602001-08-20 20:28:48 +000042
43class TestThread(threading.Thread):
Tim Peters84d54892005-01-08 06:03:17 +000044 def __init__(self, name, testcase, sema, mutex, nrunning):
45 threading.Thread.__init__(self, name=name)
46 self.testcase = testcase
47 self.sema = sema
48 self.mutex = mutex
49 self.nrunning = nrunning
50
Skip Montanaro4533f602001-08-20 20:28:48 +000051 def run(self):
Christian Heimes4fbc72b2008-03-22 00:47:35 +000052 delay = random.random() / 10000.0
Skip Montanaro4533f602001-08-20 20:28:48 +000053 if verbose:
Jeffrey Yasskinca674122008-03-29 05:06:52 +000054 print('task %s will run for %.1f usec' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000055 (self.name, delay * 1e6))
Tim Peters84d54892005-01-08 06:03:17 +000056
Christian Heimes4fbc72b2008-03-22 00:47:35 +000057 with self.sema:
58 with self.mutex:
59 self.nrunning.inc()
60 if verbose:
61 print(self.nrunning.get(), 'tasks are running')
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000062 self.testcase.assertTrue(self.nrunning.get() <= 3)
Tim Peters84d54892005-01-08 06:03:17 +000063
Christian Heimes4fbc72b2008-03-22 00:47:35 +000064 time.sleep(delay)
65 if verbose:
Benjamin Petersonfdbea962008-08-18 17:33:47 +000066 print('task', self.name, 'done')
Benjamin Peterson672b8032008-06-11 19:14:14 +000067
Christian Heimes4fbc72b2008-03-22 00:47:35 +000068 with self.mutex:
69 self.nrunning.dec()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000070 self.testcase.assertTrue(self.nrunning.get() >= 0)
Christian Heimes4fbc72b2008-03-22 00:47:35 +000071 if verbose:
72 print('%s is finished. %d tasks are running' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000073 (self.name, self.nrunning.get()))
Benjamin Peterson672b8032008-06-11 19:14:14 +000074
Skip Montanaro4533f602001-08-20 20:28:48 +000075
Antoine Pitroub0e9bd42009-10-27 20:05:26 +000076class BaseTestCase(unittest.TestCase):
77 def setUp(self):
78 self._threads = test.support.threading_setup()
79
80 def tearDown(self):
81 test.support.threading_cleanup(*self._threads)
82 test.support.reap_children()
83
84
85class ThreadTests(BaseTestCase):
Skip Montanaro4533f602001-08-20 20:28:48 +000086
Tim Peters84d54892005-01-08 06:03:17 +000087 # Create a bunch of threads, let each do some work, wait until all are
88 # done.
89 def test_various_ops(self):
90 # This takes about n/3 seconds to run (about n/3 clumps of tasks,
91 # times about 1 second per clump).
92 NUMTASKS = 10
93
94 # no more than 3 of the 10 can run at once
95 sema = threading.BoundedSemaphore(value=3)
96 mutex = threading.RLock()
97 numrunning = Counter()
98
99 threads = []
100
101 for i in range(NUMTASKS):
102 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning)
103 threads.append(t)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000104 self.assertEqual(t.ident, None)
105 self.assertTrue(re.match('<TestThread\(.*, initial\)>', repr(t)))
Tim Peters84d54892005-01-08 06:03:17 +0000106 t.start()
107
108 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000109 print('waiting for all tasks to complete')
Tim Peters84d54892005-01-08 06:03:17 +0000110 for t in threads:
Antoine Pitrou5da7e792013-09-08 13:19:06 +0200111 t.join()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000112 self.assertTrue(not t.is_alive())
113 self.assertNotEqual(t.ident, 0)
Benjamin Petersond23f8222009-04-05 19:13:16 +0000114 self.assertFalse(t.ident is None)
Brett Cannon3f5f2262010-07-23 15:50:52 +0000115 self.assertTrue(re.match('<TestThread\(.*, stopped -?\d+\)>',
116 repr(t)))
Tim Peters84d54892005-01-08 06:03:17 +0000117 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000118 print('all tasks done')
Tim Peters84d54892005-01-08 06:03:17 +0000119 self.assertEqual(numrunning.get(), 0)
120
Benjamin Petersond23f8222009-04-05 19:13:16 +0000121 def test_ident_of_no_threading_threads(self):
122 # The ident still must work for the main thread and dummy threads.
123 self.assertFalse(threading.currentThread().ident is None)
124 def f():
125 ident.append(threading.currentThread().ident)
126 done.set()
127 done = threading.Event()
128 ident = []
129 _thread.start_new_thread(f, ())
130 done.wait()
131 self.assertFalse(ident[0] is None)
Antoine Pitrouca13a0d2009-11-08 00:30:04 +0000132 # Kill the "immortal" _DummyThread
133 del threading._active[ident[0]]
Benjamin Petersond23f8222009-04-05 19:13:16 +0000134
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000135 # run with a small(ish) thread stack size (256kB)
136 def test_various_ops_small_stack(self):
137 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000138 print('with 256kB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000139 try:
140 threading.stack_size(262144)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000141 except _thread.error:
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000142 raise unittest.SkipTest(
143 'platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000144 self.test_various_ops()
145 threading.stack_size(0)
146
147 # run with a large thread stack size (1MB)
148 def test_various_ops_large_stack(self):
149 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000150 print('with 1MB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000151 try:
152 threading.stack_size(0x100000)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000153 except _thread.error:
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000154 raise unittest.SkipTest(
155 'platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000156 self.test_various_ops()
157 threading.stack_size(0)
158
Tim Peters711906e2005-01-08 07:30:42 +0000159 def test_foreign_thread(self):
160 # Check that a "foreign" thread can use the threading module.
161 def f(mutex):
Antoine Pitroub0872682009-11-09 16:08:16 +0000162 # Calling current_thread() forces an entry for the foreign
Tim Peters711906e2005-01-08 07:30:42 +0000163 # thread to get made in the threading._active map.
Antoine Pitroub0872682009-11-09 16:08:16 +0000164 threading.current_thread()
Tim Peters711906e2005-01-08 07:30:42 +0000165 mutex.release()
166
167 mutex = threading.Lock()
168 mutex.acquire()
Georg Brandl2067bfd2008-05-25 13:05:15 +0000169 tid = _thread.start_new_thread(f, (mutex,))
Tim Peters711906e2005-01-08 07:30:42 +0000170 # Wait for the thread to finish.
171 mutex.acquire()
Benjamin Peterson577473f2010-01-19 00:09:57 +0000172 self.assertIn(tid, threading._active)
Ezio Melottie9615932010-01-24 19:26:24 +0000173 self.assertIsInstance(threading._active[tid], threading._DummyThread)
Tim Peters711906e2005-01-08 07:30:42 +0000174 del threading._active[tid]
Tim Peters84d54892005-01-08 06:03:17 +0000175
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000176 # PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)
177 # exposed at the Python level. This test relies on ctypes to get at it.
178 def test_PyThreadState_SetAsyncExc(self):
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200179 ctypes = import_module("ctypes")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000180
181 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
182
183 class AsyncExc(Exception):
184 pass
185
186 exception = ctypes.py_object(AsyncExc)
187
Antoine Pitroube4d8092009-10-18 18:27:17 +0000188 # First check it works when setting the exception from the same thread.
Victor Stinner2a129742011-05-30 23:02:52 +0200189 tid = threading.get_ident()
Antoine Pitroube4d8092009-10-18 18:27:17 +0000190
191 try:
192 result = set_async_exc(ctypes.c_long(tid), exception)
193 # The exception is async, so we might have to keep the VM busy until
194 # it notices.
195 while True:
196 pass
197 except AsyncExc:
198 pass
199 else:
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000200 # This code is unreachable but it reflects the intent. If we wanted
201 # to be smarter the above loop wouldn't be infinite.
Antoine Pitroube4d8092009-10-18 18:27:17 +0000202 self.fail("AsyncExc not raised")
203 try:
204 self.assertEqual(result, 1) # one thread state modified
205 except UnboundLocalError:
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000206 # The exception was raised too quickly for us to get the result.
Antoine Pitroube4d8092009-10-18 18:27:17 +0000207 pass
208
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000209 # `worker_started` is set by the thread when it's inside a try/except
210 # block waiting to catch the asynchronously set AsyncExc exception.
211 # `worker_saw_exception` is set by the thread upon catching that
212 # exception.
213 worker_started = threading.Event()
214 worker_saw_exception = threading.Event()
215
216 class Worker(threading.Thread):
217 def run(self):
Victor Stinner2a129742011-05-30 23:02:52 +0200218 self.id = threading.get_ident()
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000219 self.finished = False
220
221 try:
222 while True:
223 worker_started.set()
224 time.sleep(0.1)
225 except AsyncExc:
226 self.finished = True
227 worker_saw_exception.set()
228
229 t = Worker()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000230 t.daemon = True # so if this fails, we don't hang Python at shutdown
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000231 t.start()
232 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000233 print(" started worker thread")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000234
235 # Try a thread id that doesn't make sense.
236 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000237 print(" trying nonsensical thread id")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000238 result = set_async_exc(ctypes.c_long(-1), exception)
239 self.assertEqual(result, 0) # no thread states modified
240
241 # Now raise an exception in the worker thread.
242 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000243 print(" waiting for worker thread to get started")
Benjamin Petersond23f8222009-04-05 19:13:16 +0000244 ret = worker_started.wait()
245 self.assertTrue(ret)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000246 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000247 print(" verifying worker hasn't exited")
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000248 self.assertTrue(not t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000249 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000250 print(" attempting to raise asynch exception in worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000251 result = set_async_exc(ctypes.c_long(t.id), exception)
252 self.assertEqual(result, 1) # one thread state modified
253 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000254 print(" waiting for worker to say it caught the exception")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000255 worker_saw_exception.wait(timeout=10)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000256 self.assertTrue(t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000257 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000258 print(" all OK -- joining worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000259 if t.finished:
260 t.join()
261 # else the thread is still running, and we have no way to kill it
262
Gregory P. Smith3fdd9642010-02-28 18:57:46 +0000263 def test_limbo_cleanup(self):
264 # Issue 7481: Failure to start thread should cleanup the limbo map.
265 def fail_new_thread(*args):
266 raise threading.ThreadError()
267 _start_new_thread = threading._start_new_thread
268 threading._start_new_thread = fail_new_thread
269 try:
270 t = threading.Thread(target=lambda: None)
Gregory P. Smithf50f1682010-03-01 03:13:36 +0000271 self.assertRaises(threading.ThreadError, t.start)
272 self.assertFalse(
273 t in threading._limbo,
274 "Failed to cleanup _limbo map on failure of Thread.start().")
Gregory P. Smith3fdd9642010-02-28 18:57:46 +0000275 finally:
276 threading._start_new_thread = _start_new_thread
277
Christian Heimes7d2ff882007-11-30 14:35:04 +0000278 def test_finalize_runnning_thread(self):
279 # Issue 1402: the PyGILState_Ensure / _Release functions may be called
280 # very late on python exit: on deallocation of a running thread for
281 # example.
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200282 import_module("ctypes")
Christian Heimes7d2ff882007-11-30 14:35:04 +0000283
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200284 rc, out, err = assert_python_failure("-c", """if 1:
Georg Brandl2067bfd2008-05-25 13:05:15 +0000285 import ctypes, sys, time, _thread
Christian Heimes7d2ff882007-11-30 14:35:04 +0000286
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000287 # This lock is used as a simple event variable.
Georg Brandl2067bfd2008-05-25 13:05:15 +0000288 ready = _thread.allocate_lock()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000289 ready.acquire()
290
Christian Heimes7d2ff882007-11-30 14:35:04 +0000291 # Module globals are cleared before __del__ is run
292 # So we save the functions in class dict
293 class C:
294 ensure = ctypes.pythonapi.PyGILState_Ensure
295 release = ctypes.pythonapi.PyGILState_Release
296 def __del__(self):
297 state = self.ensure()
298 self.release(state)
299
300 def waitingThread():
301 x = C()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000302 ready.release()
Christian Heimes7d2ff882007-11-30 14:35:04 +0000303 time.sleep(100)
304
Georg Brandl2067bfd2008-05-25 13:05:15 +0000305 _thread.start_new_thread(waitingThread, ())
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000306 ready.acquire() # Be sure the other thread is waiting.
Christian Heimes7d2ff882007-11-30 14:35:04 +0000307 sys.exit(42)
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200308 """)
Christian Heimes7d2ff882007-11-30 14:35:04 +0000309 self.assertEqual(rc, 42)
310
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000311 def test_finalize_with_trace(self):
312 # Issue1733757
313 # Avoid a deadlock when sys.settrace steps into threading._shutdown
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200314 assert_python_ok("-c", """if 1:
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000315 import sys, threading
316
317 # A deadlock-killer, to prevent the
318 # testsuite to hang forever
319 def killer():
320 import os, time
321 time.sleep(2)
322 print('program blocked; aborting')
323 os._exit(2)
324 t = threading.Thread(target=killer)
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000325 t.daemon = True
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000326 t.start()
327
328 # This is the trace function
329 def func(frame, event, arg):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000330 threading.current_thread()
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000331 return func
332
333 sys.settrace(func)
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200334 """)
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000335
Antoine Pitrou011bd622009-10-20 21:52:47 +0000336 def test_join_nondaemon_on_shutdown(self):
337 # Issue 1722344
338 # Raising SystemExit skipped threading._shutdown
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200339 rc, out, err = assert_python_ok("-c", """if 1:
Antoine Pitrou011bd622009-10-20 21:52:47 +0000340 import threading
341 from time import sleep
342
343 def child():
344 sleep(1)
345 # As a non-daemon thread we SHOULD wake up and nothing
346 # should be torn down yet
347 print("Woke up, sleep function is:", sleep)
348
349 threading.Thread(target=child).start()
350 raise SystemExit
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200351 """)
352 self.assertEqual(out.strip(),
Antoine Pitrou899d1c62009-10-23 21:55:36 +0000353 b"Woke up, sleep function is: <built-in function sleep>")
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200354 self.assertEqual(err, b"")
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000355
Christian Heimes1af737c2008-01-23 08:24:23 +0000356 def test_enumerate_after_join(self):
357 # Try hard to trigger #1703448: a thread is still returned in
358 # threading.enumerate() after it has been join()ed.
359 enum = threading.enumerate
Antoine Pitrouc3b07572009-11-13 22:19:19 +0000360 old_interval = sys.getswitchinterval()
Christian Heimes1af737c2008-01-23 08:24:23 +0000361 try:
Jeffrey Yasskinca674122008-03-29 05:06:52 +0000362 for i in range(1, 100):
Antoine Pitrouc3b07572009-11-13 22:19:19 +0000363 sys.setswitchinterval(i * 0.0002)
Christian Heimes1af737c2008-01-23 08:24:23 +0000364 t = threading.Thread(target=lambda: None)
365 t.start()
366 t.join()
367 l = enum()
Ezio Melottib58e0bd2010-01-23 15:40:09 +0000368 self.assertNotIn(t, l,
Christian Heimes1af737c2008-01-23 08:24:23 +0000369 "#1703448 triggered after %d trials: %s" % (i, l))
370 finally:
Antoine Pitrouc3b07572009-11-13 22:19:19 +0000371 sys.setswitchinterval(old_interval)
Christian Heimes1af737c2008-01-23 08:24:23 +0000372
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000373 def test_no_refcycle_through_target(self):
374 class RunSelfFunction(object):
375 def __init__(self, should_raise):
376 # The links in this refcycle from Thread back to self
377 # should be cleaned up when the thread completes.
378 self.should_raise = should_raise
379 self.thread = threading.Thread(target=self._run,
380 args=(self,),
381 kwargs={'yet_another':self})
382 self.thread.start()
383
384 def _run(self, other_ref, yet_another):
385 if self.should_raise:
386 raise SystemExit
387
388 cyclic_object = RunSelfFunction(should_raise=False)
389 weak_cyclic_object = weakref.ref(cyclic_object)
390 cyclic_object.thread.join()
391 del cyclic_object
Raymond Hettinger7beae8a2011-01-06 05:34:17 +0000392 self.assertIsNone(weak_cyclic_object(),
Ezio Melottib3aedd42010-11-20 19:04:17 +0000393 msg=('%d references still around' %
394 sys.getrefcount(weak_cyclic_object())))
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000395
396 raising_cyclic_object = RunSelfFunction(should_raise=True)
397 weak_raising_cyclic_object = weakref.ref(raising_cyclic_object)
398 raising_cyclic_object.thread.join()
399 del raising_cyclic_object
Raymond Hettinger7beae8a2011-01-06 05:34:17 +0000400 self.assertIsNone(weak_raising_cyclic_object(),
Ezio Melottib3aedd42010-11-20 19:04:17 +0000401 msg=('%d references still around' %
402 sys.getrefcount(weak_raising_cyclic_object())))
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000403
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000404 def test_old_threading_api(self):
405 # Just a quick sanity check to make sure the old method names are
406 # still present
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000407 t = threading.Thread()
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000408 t.isDaemon()
409 t.setDaemon(True)
410 t.getName()
411 t.setName("name")
412 t.isAlive()
413 e = threading.Event()
414 e.isSet()
415 threading.activeCount()
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000416
Brian Curtin81a4a6a2010-07-23 16:30:10 +0000417 def test_repr_daemon(self):
418 t = threading.Thread()
419 self.assertFalse('daemon' in repr(t))
420 t.daemon = True
421 self.assertTrue('daemon' in repr(t))
Brett Cannon3f5f2262010-07-23 15:50:52 +0000422
Antoine Pitrou0bd4deb2011-02-25 22:07:43 +0000423 def test_deamon_param(self):
424 t = threading.Thread()
425 self.assertFalse(t.daemon)
426 t = threading.Thread(daemon=False)
427 self.assertFalse(t.daemon)
428 t = threading.Thread(daemon=True)
429 self.assertTrue(t.daemon)
430
Antoine Pitrou8e6e0fd2012-04-19 23:55:01 +0200431 @unittest.skipUnless(hasattr(os, 'fork'), 'test needs fork()')
432 def test_dummy_thread_after_fork(self):
433 # Issue #14308: a dummy thread in the active list doesn't mess up
434 # the after-fork mechanism.
435 code = """if 1:
436 import _thread, threading, os, time
437
438 def background_thread(evt):
439 # Creates and registers the _DummyThread instance
440 threading.current_thread()
441 evt.set()
442 time.sleep(10)
443
444 evt = threading.Event()
445 _thread.start_new_thread(background_thread, (evt,))
446 evt.wait()
447 assert threading.active_count() == 2, threading.active_count()
448 if os.fork() == 0:
449 assert threading.active_count() == 1, threading.active_count()
450 os._exit(0)
451 else:
452 os.wait()
453 """
454 _, out, err = assert_python_ok("-c", code)
455 self.assertEqual(out, b'')
456 self.assertEqual(err, b'')
457
Charles-François Natali9939cc82013-08-30 23:32:53 +0200458 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
459 def test_is_alive_after_fork(self):
460 # Try hard to trigger #18418: is_alive() could sometimes be True on
461 # threads that vanished after a fork.
462 old_interval = sys.getswitchinterval()
463 self.addCleanup(sys.setswitchinterval, old_interval)
464
465 # Make the bug more likely to manifest.
466 sys.setswitchinterval(1e-6)
467
468 for i in range(20):
469 t = threading.Thread(target=lambda: None)
470 t.start()
471 self.addCleanup(t.join)
472 pid = os.fork()
473 if pid == 0:
474 os._exit(1 if t.is_alive() else 0)
475 else:
476 pid, status = os.waitpid(pid, 0)
477 self.assertEqual(0, status)
478
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300479 def test_main_thread(self):
480 main = threading.main_thread()
481 self.assertEqual(main.name, 'MainThread')
482 self.assertEqual(main.ident, threading.current_thread().ident)
483 self.assertEqual(main.ident, threading.get_ident())
484
485 def f():
486 self.assertNotEqual(threading.main_thread().ident,
487 threading.current_thread().ident)
488 th = threading.Thread(target=f)
489 th.start()
490 th.join()
491
492 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
493 @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid()")
494 def test_main_thread_after_fork(self):
495 code = """if 1:
496 import os, threading
497
498 pid = os.fork()
499 if pid == 0:
500 main = threading.main_thread()
501 print(main.name)
502 print(main.ident == threading.current_thread().ident)
503 print(main.ident == threading.get_ident())
504 else:
505 os.waitpid(pid, 0)
506 """
507 _, out, err = assert_python_ok("-c", code)
508 data = out.decode().replace('\r', '')
509 self.assertEqual(err, b"")
510 self.assertEqual(data, "MainThread\nTrue\nTrue\n")
511
512 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
513 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
514 @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid()")
515 def test_main_thread_after_fork_from_nonmain_thread(self):
516 code = """if 1:
517 import os, threading, sys
518
519 def f():
520 pid = os.fork()
521 if pid == 0:
522 main = threading.main_thread()
523 print(main.name)
524 print(main.ident == threading.current_thread().ident)
525 print(main.ident == threading.get_ident())
526 # stdout is fully buffered because not a tty,
527 # we have to flush before exit.
528 sys.stdout.flush()
529 else:
530 os.waitpid(pid, 0)
531
532 th = threading.Thread(target=f)
533 th.start()
534 th.join()
535 """
536 _, out, err = assert_python_ok("-c", code)
537 data = out.decode().replace('\r', '')
538 self.assertEqual(err, b"")
539 self.assertEqual(data, "Thread-1\nTrue\nTrue\n")
540
Antoine Pitrou7b476992013-09-07 23:38:37 +0200541 def test_tstate_lock(self):
542 # Test an implementation detail of Thread objects.
543 started = _thread.allocate_lock()
544 finish = _thread.allocate_lock()
545 started.acquire()
546 finish.acquire()
547 def f():
548 started.release()
549 finish.acquire()
550 time.sleep(0.01)
551 # The tstate lock is None until the thread is started
552 t = threading.Thread(target=f)
553 self.assertIs(t._tstate_lock, None)
554 t.start()
555 started.acquire()
556 self.assertTrue(t.is_alive())
557 # The tstate lock can't be acquired when the thread is running
558 # (or suspended).
559 tstate_lock = t._tstate_lock
560 self.assertFalse(tstate_lock.acquire(timeout=0), False)
561 finish.release()
562 # When the thread ends, the state_lock can be successfully
563 # acquired.
564 self.assertTrue(tstate_lock.acquire(timeout=5), False)
565 # But is_alive() is still True: we hold _tstate_lock now, which
566 # prevents is_alive() from knowing the thread's end-of-life C code
567 # is done.
568 self.assertTrue(t.is_alive())
569 # Let is_alive() find out the C code is done.
570 tstate_lock.release()
571 self.assertFalse(t.is_alive())
572 # And verify the thread disposed of _tstate_lock.
573 self.assertTrue(t._tstate_lock is None)
574
Tim Peters72460fa2013-09-09 18:48:24 -0500575 def test_repr_stopped(self):
576 # Verify that "stopped" shows up in repr(Thread) appropriately.
577 started = _thread.allocate_lock()
578 finish = _thread.allocate_lock()
579 started.acquire()
580 finish.acquire()
581 def f():
582 started.release()
583 finish.acquire()
584 t = threading.Thread(target=f)
585 t.start()
586 started.acquire()
587 self.assertIn("started", repr(t))
588 finish.release()
589 # "stopped" should appear in the repr in a reasonable amount of time.
590 # Implementation detail: as of this writing, that's trivially true
591 # if .join() is called, and almost trivially true if .is_alive() is
592 # called. The detail we're testing here is that "stopped" shows up
593 # "all on its own".
594 LOOKING_FOR = "stopped"
595 for i in range(500):
596 if LOOKING_FOR in repr(t):
597 break
598 time.sleep(0.01)
599 self.assertIn(LOOKING_FOR, repr(t)) # we waited at least 5 seconds
Christian Heimes1af737c2008-01-23 08:24:23 +0000600
Tim Peters7634e1c2013-10-08 20:55:51 -0500601 def test_BoundedSemaphore_limit(self):
Tim Peters3d1b7a02013-10-08 21:29:27 -0500602 # BoundedSemaphore should raise ValueError if released too often.
603 for limit in range(1, 10):
604 bs = threading.BoundedSemaphore(limit)
605 threads = [threading.Thread(target=bs.acquire)
606 for _ in range(limit)]
607 for t in threads:
608 t.start()
609 for t in threads:
610 t.join()
611 threads = [threading.Thread(target=bs.release)
612 for _ in range(limit)]
613 for t in threads:
614 t.start()
615 for t in threads:
616 t.join()
617 self.assertRaises(ValueError, bs.release)
Tim Peters7634e1c2013-10-08 20:55:51 -0500618
Serhiy Storchakaf28ba362014-02-07 10:10:55 +0200619 @cpython_only
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100620 def test_frame_tstate_tracing(self):
621 # Issue #14432: Crash when a generator is created in a C thread that is
622 # destroyed while the generator is still used. The issue was that a
623 # generator contains a frame, and the frame kept a reference to the
624 # Python state of the destroyed C thread. The crash occurs when a trace
625 # function is setup.
626
627 def noop_trace(frame, event, arg):
628 # no operation
629 return noop_trace
630
631 def generator():
632 while 1:
633 yield "genereator"
634
635 def callback():
636 if callback.gen is None:
637 callback.gen = generator()
638 return next(callback.gen)
639 callback.gen = None
640
641 old_trace = sys.gettrace()
642 sys.settrace(noop_trace)
643 try:
644 # Install a trace function
645 threading.settrace(noop_trace)
646
647 # Create a generator in a C thread which exits after the call
Serhiy Storchakaf28ba362014-02-07 10:10:55 +0200648 import _testcapi
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100649 _testcapi.call_in_temporary_c_thread(callback)
650
651 # Call the generator in a different Python thread, check that the
652 # generator didn't keep a reference to the destroyed thread state
653 for test in range(3):
654 # The trace function is still called here
655 callback()
656 finally:
657 sys.settrace(old_trace)
658
Victor Stinner45956b92013-11-12 16:37:55 +0100659
Antoine Pitroub0e9bd42009-10-27 20:05:26 +0000660class ThreadJoinOnShutdown(BaseTestCase):
Jesse Nollera8513972008-07-17 16:49:17 +0000661
662 def _run_and_join(self, script):
663 script = """if 1:
664 import sys, os, time, threading
665
666 # a thread, which waits for the main program to terminate
667 def joiningfunc(mainthread):
668 mainthread.join()
669 print('end of thread')
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000670 # stdout is fully buffered because not a tty, we have to flush
671 # before exit.
672 sys.stdout.flush()
Jesse Nollera8513972008-07-17 16:49:17 +0000673 \n""" + script
674
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200675 rc, out, err = assert_python_ok("-c", script)
676 data = out.decode().replace('\r', '')
Benjamin Petersonad703dc2008-07-17 17:02:57 +0000677 self.assertEqual(data, "end of main\nend of thread\n")
Jesse Nollera8513972008-07-17 16:49:17 +0000678
679 def test_1_join_on_shutdown(self):
680 # The usual case: on exit, wait for a non-daemon thread
681 script = """if 1:
682 import os
683 t = threading.Thread(target=joiningfunc,
684 args=(threading.current_thread(),))
685 t.start()
686 time.sleep(0.1)
687 print('end of main')
688 """
689 self._run_and_join(script)
690
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000691 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
Victor Stinner26d31862011-07-01 14:26:24 +0200692 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Jesse Nollera8513972008-07-17 16:49:17 +0000693 def test_2_join_in_forked_process(self):
694 # Like the test above, but from a forked interpreter
Jesse Nollera8513972008-07-17 16:49:17 +0000695 script = """if 1:
696 childpid = os.fork()
697 if childpid != 0:
698 os.waitpid(childpid, 0)
699 sys.exit(0)
700
701 t = threading.Thread(target=joiningfunc,
702 args=(threading.current_thread(),))
703 t.start()
704 print('end of main')
705 """
706 self._run_and_join(script)
707
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000708 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
Victor Stinner26d31862011-07-01 14:26:24 +0200709 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000710 def test_3_join_in_forked_from_thread(self):
Jesse Nollera8513972008-07-17 16:49:17 +0000711 # Like the test above, but fork() was called from a worker thread
712 # In the forked process, the main Thread object must be marked as stopped.
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000713
Jesse Nollera8513972008-07-17 16:49:17 +0000714 script = """if 1:
715 main_thread = threading.current_thread()
716 def worker():
717 childpid = os.fork()
718 if childpid != 0:
719 os.waitpid(childpid, 0)
720 sys.exit(0)
721
722 t = threading.Thread(target=joiningfunc,
723 args=(main_thread,))
724 print('end of main')
725 t.start()
726 t.join() # Should not block: main_thread is already stopped
727
728 w = threading.Thread(target=worker)
729 w.start()
730 """
731 self._run_and_join(script)
732
Victor Stinner26d31862011-07-01 14:26:24 +0200733 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Tim Petersc363a232013-09-08 18:44:40 -0500734 def test_4_daemon_threads(self):
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200735 # Check that a daemon thread cannot crash the interpreter on shutdown
736 # by manipulating internal structures that are being disposed of in
737 # the main thread.
738 script = """if True:
739 import os
740 import random
741 import sys
742 import time
743 import threading
744
745 thread_has_run = set()
746
747 def random_io():
748 '''Loop for a while sleeping random tiny amounts and doing some I/O.'''
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200749 while True:
Victor Stinnera6d2c762011-06-30 18:20:11 +0200750 in_f = open(os.__file__, 'rb')
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200751 stuff = in_f.read(200)
Victor Stinnera6d2c762011-06-30 18:20:11 +0200752 null_f = open(os.devnull, 'wb')
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200753 null_f.write(stuff)
754 time.sleep(random.random() / 1995)
755 null_f.close()
756 in_f.close()
757 thread_has_run.add(threading.current_thread())
758
759 def main():
760 count = 0
761 for _ in range(40):
762 new_thread = threading.Thread(target=random_io)
763 new_thread.daemon = True
764 new_thread.start()
765 count += 1
766 while len(thread_has_run) < count:
767 time.sleep(0.001)
768 # Trigger process shutdown
769 sys.exit(0)
770
771 main()
772 """
773 rc, out, err = assert_python_ok('-c', script)
774 self.assertFalse(err)
775
Charles-François Natali6d0d24e2012-02-02 20:31:42 +0100776 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
Charles-François Natalib2c9e9a2012-02-08 21:29:11 +0100777 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Charles-François Natali6d0d24e2012-02-02 20:31:42 +0100778 def test_reinit_tls_after_fork(self):
779 # Issue #13817: fork() would deadlock in a multithreaded program with
780 # the ad-hoc TLS implementation.
781
782 def do_fork_and_wait():
783 # just fork a child process and wait it
784 pid = os.fork()
785 if pid > 0:
786 os.waitpid(pid, 0)
787 else:
788 os._exit(0)
789
790 # start a bunch of threads that will fork() child processes
791 threads = []
792 for i in range(16):
793 t = threading.Thread(target=do_fork_and_wait)
794 threads.append(t)
795 t.start()
796
797 for t in threads:
798 t.join()
799
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200800 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
801 def test_clear_threads_states_after_fork(self):
802 # Issue #17094: check that threads states are cleared after fork()
803
804 # start a bunch of threads
805 threads = []
806 for i in range(16):
807 t = threading.Thread(target=lambda : time.sleep(0.3))
808 threads.append(t)
809 t.start()
810
811 pid = os.fork()
812 if pid == 0:
813 # check that threads states have been cleared
814 if len(sys._current_frames()) == 1:
815 os._exit(0)
816 else:
817 os._exit(1)
818 else:
819 _, status = os.waitpid(pid, 0)
820 self.assertEqual(0, status)
821
822 for t in threads:
823 t.join()
824
Jesse Nollera8513972008-07-17 16:49:17 +0000825
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200826class SubinterpThreadingTests(BaseTestCase):
827
828 def test_threads_join(self):
829 # Non-daemon threads should be joined at subinterpreter shutdown
830 # (issue #18808)
831 r, w = os.pipe()
832 self.addCleanup(os.close, r)
833 self.addCleanup(os.close, w)
834 code = r"""if 1:
835 import os
836 import threading
837 import time
838
839 def f():
840 # Sleep a bit so that the thread is still running when
841 # Py_EndInterpreter is called.
842 time.sleep(0.05)
843 os.write(%d, b"x")
844 threading.Thread(target=f).start()
845 """ % (w,)
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100846 ret = test.support.run_in_subinterp(code)
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200847 self.assertEqual(ret, 0)
848 # The thread was joined properly.
849 self.assertEqual(os.read(r, 1), b"x")
850
Antoine Pitrou7b476992013-09-07 23:38:37 +0200851 def test_threads_join_2(self):
852 # Same as above, but a delay gets introduced after the thread's
853 # Python code returned but before the thread state is deleted.
854 # To achieve this, we register a thread-local object which sleeps
855 # a bit when deallocated.
856 r, w = os.pipe()
857 self.addCleanup(os.close, r)
858 self.addCleanup(os.close, w)
859 code = r"""if 1:
860 import os
861 import threading
862 import time
863
864 class Sleeper:
865 def __del__(self):
866 time.sleep(0.05)
867
868 tls = threading.local()
869
870 def f():
871 # Sleep a bit so that the thread is still running when
872 # Py_EndInterpreter is called.
873 time.sleep(0.05)
874 tls.x = Sleeper()
875 os.write(%d, b"x")
876 threading.Thread(target=f).start()
877 """ % (w,)
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100878 ret = test.support.run_in_subinterp(code)
Antoine Pitrou7b476992013-09-07 23:38:37 +0200879 self.assertEqual(ret, 0)
880 # The thread was joined properly.
881 self.assertEqual(os.read(r, 1), b"x")
882
Serhiy Storchaka5cfc79d2014-02-07 10:06:39 +0200883 @cpython_only
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200884 def test_daemon_threads_fatal_error(self):
885 subinterp_code = r"""if 1:
886 import os
887 import threading
888 import time
889
890 def f():
891 # Make sure the daemon thread is still running when
892 # Py_EndInterpreter is called.
893 time.sleep(10)
894 threading.Thread(target=f, daemon=True).start()
895 """
896 script = r"""if 1:
897 import _testcapi
898
899 _testcapi.run_in_subinterp(%r)
900 """ % (subinterp_code,)
Antoine Pitrou77e904e2013-10-08 23:04:32 +0200901 with test.support.SuppressCrashReport():
902 rc, out, err = assert_python_failure("-c", script)
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200903 self.assertIn("Fatal Python error: Py_EndInterpreter: "
904 "not the last thread", err.decode())
905
906
Antoine Pitroub0e9bd42009-10-27 20:05:26 +0000907class ThreadingExceptionTests(BaseTestCase):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000908 # A RuntimeError should be raised if Thread.start() is called
909 # multiple times.
910 def test_start_thread_again(self):
911 thread = threading.Thread()
912 thread.start()
913 self.assertRaises(RuntimeError, thread.start)
914
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000915 def test_joining_current_thread(self):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000916 current_thread = threading.current_thread()
917 self.assertRaises(RuntimeError, current_thread.join);
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000918
919 def test_joining_inactive_thread(self):
920 thread = threading.Thread()
921 self.assertRaises(RuntimeError, thread.join)
922
923 def test_daemonize_active_thread(self):
924 thread = threading.Thread()
925 thread.start()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000926 self.assertRaises(RuntimeError, setattr, thread, "daemon", True)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000927
Antoine Pitroufcf81fd2011-02-28 22:03:34 +0000928 def test_releasing_unacquired_lock(self):
929 lock = threading.Lock()
930 self.assertRaises(RuntimeError, lock.release)
931
Benjamin Petersond541d3f2012-10-13 11:46:44 -0400932 @unittest.skipUnless(sys.platform == 'darwin' and test.support.python_is_optimized(),
933 'test macosx problem')
Ned Deily9a7c5242011-05-28 00:19:56 -0700934 def test_recursion_limit(self):
935 # Issue 9670
936 # test that excessive recursion within a non-main thread causes
937 # an exception rather than crashing the interpreter on platforms
938 # like Mac OS X or FreeBSD which have small default stack sizes
939 # for threads
940 script = """if True:
941 import threading
942
943 def recurse():
944 return recurse()
945
946 def outer():
947 try:
948 recurse()
949 except RuntimeError:
950 pass
951
952 w = threading.Thread(target=outer)
953 w.start()
954 w.join()
955 print('end of main thread')
956 """
957 expected_output = "end of main thread\n"
958 p = subprocess.Popen([sys.executable, "-c", script],
Antoine Pitroub8b6a682012-06-29 19:40:35 +0200959 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Ned Deily9a7c5242011-05-28 00:19:56 -0700960 stdout, stderr = p.communicate()
961 data = stdout.decode().replace('\r', '')
Antoine Pitroub8b6a682012-06-29 19:40:35 +0200962 self.assertEqual(p.returncode, 0, "Unexpected error: " + stderr.decode())
Ned Deily9a7c5242011-05-28 00:19:56 -0700963 self.assertEqual(data, expected_output)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000964
R David Murray19aeb432013-03-30 17:19:38 -0400965class TimerTests(BaseTestCase):
966
967 def setUp(self):
968 BaseTestCase.setUp(self)
969 self.callback_args = []
970 self.callback_event = threading.Event()
971
972 def test_init_immutable_default_args(self):
973 # Issue 17435: constructor defaults were mutable objects, they could be
974 # mutated via the object attributes and affect other Timer objects.
975 timer1 = threading.Timer(0.01, self._callback_spy)
976 timer1.start()
977 self.callback_event.wait()
978 timer1.args.append("blah")
979 timer1.kwargs["foo"] = "bar"
980 self.callback_event.clear()
981 timer2 = threading.Timer(0.01, self._callback_spy)
982 timer2.start()
983 self.callback_event.wait()
984 self.assertEqual(len(self.callback_args), 2)
985 self.assertEqual(self.callback_args, [((), {}), ((), {})])
986
987 def _callback_spy(self, *args, **kwargs):
988 self.callback_args.append((args[:], kwargs.copy()))
989 self.callback_event.set()
990
Antoine Pitrou557934f2009-11-06 22:41:14 +0000991class LockTests(lock_tests.LockTests):
992 locktype = staticmethod(threading.Lock)
993
Antoine Pitrou434736a2009-11-10 18:46:01 +0000994class PyRLockTests(lock_tests.RLockTests):
995 locktype = staticmethod(threading._PyRLock)
996
Charles-François Natali6b671b22012-01-28 11:36:04 +0100997@unittest.skipIf(threading._CRLock is None, 'RLock not implemented in C')
Antoine Pitrou434736a2009-11-10 18:46:01 +0000998class CRLockTests(lock_tests.RLockTests):
999 locktype = staticmethod(threading._CRLock)
Antoine Pitrou557934f2009-11-06 22:41:14 +00001000
1001class EventTests(lock_tests.EventTests):
1002 eventtype = staticmethod(threading.Event)
1003
1004class ConditionAsRLockTests(lock_tests.RLockTests):
1005 # An Condition uses an RLock by default and exports its API.
1006 locktype = staticmethod(threading.Condition)
1007
1008class ConditionTests(lock_tests.ConditionTests):
1009 condtype = staticmethod(threading.Condition)
1010
1011class SemaphoreTests(lock_tests.SemaphoreTests):
1012 semtype = staticmethod(threading.Semaphore)
1013
1014class BoundedSemaphoreTests(lock_tests.BoundedSemaphoreTests):
1015 semtype = staticmethod(threading.BoundedSemaphore)
1016
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +00001017class BarrierTests(lock_tests.BarrierTests):
1018 barriertype = staticmethod(threading.Barrier)
Antoine Pitrou557934f2009-11-06 22:41:14 +00001019
Tim Peters84d54892005-01-08 06:03:17 +00001020if __name__ == "__main__":
R David Murray19aeb432013-03-30 17:19:38 -04001021 unittest.main()