blob: f977a7fbbee16aca44510aec9bd65fc362ddf1f2 [file] [log] [blame]
Skip Montanaro4533f602001-08-20 20:28:48 +00001# Very rudimentary test of threading module
2
Benjamin Petersonee8712c2008-05-20 21:35:26 +00003import test.support
Benjamin Petersonfcf5d632008-10-16 23:24:44 +00004from test.support import verbose
Gregory P. Smith4b129d22011-01-04 00:51:50 +00005import os
Skip Montanaro4533f602001-08-20 20:28:48 +00006import random
Georg Brandl0c77a822008-06-10 16:37:50 +00007import re
Guido van Rossumcd16bf62007-06-13 18:07:49 +00008import sys
Skip Montanaro4533f602001-08-20 20:28:48 +00009import threading
Georg Brandl2067bfd2008-05-25 13:05:15 +000010import _thread
Skip Montanaro4533f602001-08-20 20:28:48 +000011import time
Tim Peters84d54892005-01-08 06:03:17 +000012import unittest
Christian Heimesd3eb5a152008-02-24 00:38:49 +000013import weakref
Gregory P. Smith4b129d22011-01-04 00:51:50 +000014import subprocess
Skip Montanaro4533f602001-08-20 20:28:48 +000015
Antoine Pitrou959f3e52009-11-09 16:52:46 +000016from test import lock_tests
17
Tim Peters84d54892005-01-08 06:03:17 +000018# A trivial mutable counter.
19class Counter(object):
20 def __init__(self):
21 self.value = 0
22 def inc(self):
23 self.value += 1
24 def dec(self):
25 self.value -= 1
26 def get(self):
27 return self.value
Skip Montanaro4533f602001-08-20 20:28:48 +000028
29class TestThread(threading.Thread):
Tim Peters84d54892005-01-08 06:03:17 +000030 def __init__(self, name, testcase, sema, mutex, nrunning):
31 threading.Thread.__init__(self, name=name)
32 self.testcase = testcase
33 self.sema = sema
34 self.mutex = mutex
35 self.nrunning = nrunning
36
Skip Montanaro4533f602001-08-20 20:28:48 +000037 def run(self):
Christian Heimes4fbc72b2008-03-22 00:47:35 +000038 delay = random.random() / 10000.0
Skip Montanaro4533f602001-08-20 20:28:48 +000039 if verbose:
Jeffrey Yasskinca674122008-03-29 05:06:52 +000040 print('task %s will run for %.1f usec' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000041 (self.name, delay * 1e6))
Tim Peters84d54892005-01-08 06:03:17 +000042
Christian Heimes4fbc72b2008-03-22 00:47:35 +000043 with self.sema:
44 with self.mutex:
45 self.nrunning.inc()
46 if verbose:
47 print(self.nrunning.get(), 'tasks are running')
Georg Brandlab91fde2009-08-13 08:51:18 +000048 self.testcase.assertTrue(self.nrunning.get() <= 3)
Tim Peters84d54892005-01-08 06:03:17 +000049
Christian Heimes4fbc72b2008-03-22 00:47:35 +000050 time.sleep(delay)
51 if verbose:
Benjamin Petersonfdbea962008-08-18 17:33:47 +000052 print('task', self.name, 'done')
Benjamin Peterson672b8032008-06-11 19:14:14 +000053
Christian Heimes4fbc72b2008-03-22 00:47:35 +000054 with self.mutex:
55 self.nrunning.dec()
Georg Brandlab91fde2009-08-13 08:51:18 +000056 self.testcase.assertTrue(self.nrunning.get() >= 0)
Christian Heimes4fbc72b2008-03-22 00:47:35 +000057 if verbose:
58 print('%s is finished. %d tasks are running' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000059 (self.name, self.nrunning.get()))
Benjamin Peterson672b8032008-06-11 19:14:14 +000060
Skip Montanaro4533f602001-08-20 20:28:48 +000061
Tim Peters84d54892005-01-08 06:03:17 +000062class ThreadTests(unittest.TestCase):
Skip Montanaro4533f602001-08-20 20:28:48 +000063
Tim Peters84d54892005-01-08 06:03:17 +000064 # Create a bunch of threads, let each do some work, wait until all are
65 # done.
66 def test_various_ops(self):
67 # This takes about n/3 seconds to run (about n/3 clumps of tasks,
68 # times about 1 second per clump).
69 NUMTASKS = 10
70
71 # no more than 3 of the 10 can run at once
72 sema = threading.BoundedSemaphore(value=3)
73 mutex = threading.RLock()
74 numrunning = Counter()
75
76 threads = []
77
78 for i in range(NUMTASKS):
79 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning)
80 threads.append(t)
Georg Brandlab91fde2009-08-13 08:51:18 +000081 self.assertEqual(t.ident, None)
82 self.assertTrue(re.match('<TestThread\(.*, initial\)>', repr(t)))
Tim Peters84d54892005-01-08 06:03:17 +000083 t.start()
84
85 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +000086 print('waiting for all tasks to complete')
Tim Peters84d54892005-01-08 06:03:17 +000087 for t in threads:
Tim Peters711906e2005-01-08 07:30:42 +000088 t.join(NUMTASKS)
Georg Brandlab91fde2009-08-13 08:51:18 +000089 self.assertTrue(not t.is_alive())
90 self.assertNotEqual(t.ident, 0)
Benjamin Petersond23f8222009-04-05 19:13:16 +000091 self.assertFalse(t.ident is None)
Georg Brandlab91fde2009-08-13 08:51:18 +000092 self.assertTrue(re.match('<TestThread\(.*, \w+ -?\d+\)>', repr(t)))
Tim Peters84d54892005-01-08 06:03:17 +000093 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +000094 print('all tasks done')
Tim Peters84d54892005-01-08 06:03:17 +000095 self.assertEqual(numrunning.get(), 0)
96
Benjamin Petersond23f8222009-04-05 19:13:16 +000097 def test_ident_of_no_threading_threads(self):
98 # The ident still must work for the main thread and dummy threads.
99 self.assertFalse(threading.currentThread().ident is None)
100 def f():
101 ident.append(threading.currentThread().ident)
102 done.set()
103 done = threading.Event()
104 ident = []
105 _thread.start_new_thread(f, ())
106 done.wait()
107 self.assertFalse(ident[0] is None)
Antoine Pitroudebfafd2009-11-08 00:36:36 +0000108 # Kill the "immortal" _DummyThread
109 del threading._active[ident[0]]
Benjamin Petersond23f8222009-04-05 19:13:16 +0000110
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000111 # run with a small(ish) thread stack size (256kB)
112 def test_various_ops_small_stack(self):
113 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000114 print('with 256kB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000115 try:
116 threading.stack_size(262144)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000117 except _thread.error:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000118 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000119 print('platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000120 return
121 self.test_various_ops()
122 threading.stack_size(0)
123
124 # run with a large thread stack size (1MB)
125 def test_various_ops_large_stack(self):
126 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000127 print('with 1MB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000128 try:
129 threading.stack_size(0x100000)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000130 except _thread.error:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000131 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000132 print('platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000133 return
134 self.test_various_ops()
135 threading.stack_size(0)
136
Tim Peters711906e2005-01-08 07:30:42 +0000137 def test_foreign_thread(self):
138 # Check that a "foreign" thread can use the threading module.
139 def f(mutex):
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000140 # Calling current_thread() forces an entry for the foreign
Tim Peters711906e2005-01-08 07:30:42 +0000141 # thread to get made in the threading._active map.
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000142 threading.current_thread()
Tim Peters711906e2005-01-08 07:30:42 +0000143 mutex.release()
144
145 mutex = threading.Lock()
146 mutex.acquire()
Georg Brandl2067bfd2008-05-25 13:05:15 +0000147 tid = _thread.start_new_thread(f, (mutex,))
Tim Peters711906e2005-01-08 07:30:42 +0000148 # Wait for the thread to finish.
149 mutex.acquire()
Georg Brandlab91fde2009-08-13 08:51:18 +0000150 self.assertTrue(tid in threading._active)
151 self.assertTrue(isinstance(threading._active[tid],
Tim Peters711906e2005-01-08 07:30:42 +0000152 threading._DummyThread))
153 del threading._active[tid]
Tim Peters84d54892005-01-08 06:03:17 +0000154
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000155 # PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)
156 # exposed at the Python level. This test relies on ctypes to get at it.
157 def test_PyThreadState_SetAsyncExc(self):
158 try:
159 import ctypes
160 except ImportError:
161 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000162 print("test_PyThreadState_SetAsyncExc can't import ctypes")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000163 return # can't do anything
164
165 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
166
167 class AsyncExc(Exception):
168 pass
169
170 exception = ctypes.py_object(AsyncExc)
171
172 # `worker_started` is set by the thread when it's inside a try/except
173 # block waiting to catch the asynchronously set AsyncExc exception.
174 # `worker_saw_exception` is set by the thread upon catching that
175 # exception.
176 worker_started = threading.Event()
177 worker_saw_exception = threading.Event()
178
179 class Worker(threading.Thread):
180 def run(self):
Georg Brandl2067bfd2008-05-25 13:05:15 +0000181 self.id = _thread.get_ident()
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000182 self.finished = False
183
184 try:
185 while True:
186 worker_started.set()
187 time.sleep(0.1)
188 except AsyncExc:
189 self.finished = True
190 worker_saw_exception.set()
191
192 t = Worker()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000193 t.daemon = True # so if this fails, we don't hang Python at shutdown
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000194 t.start()
195 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000196 print(" started worker thread")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000197
198 # Try a thread id that doesn't make sense.
199 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000200 print(" trying nonsensical thread id")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000201 result = set_async_exc(ctypes.c_long(-1), exception)
202 self.assertEqual(result, 0) # no thread states modified
203
204 # Now raise an exception in the worker thread.
205 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000206 print(" waiting for worker thread to get started")
Benjamin Petersond23f8222009-04-05 19:13:16 +0000207 ret = worker_started.wait()
208 self.assertTrue(ret)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000209 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000210 print(" verifying worker hasn't exited")
Georg Brandlab91fde2009-08-13 08:51:18 +0000211 self.assertTrue(not t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000212 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000213 print(" attempting to raise asynch exception in worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000214 result = set_async_exc(ctypes.c_long(t.id), exception)
215 self.assertEqual(result, 1) # one thread state modified
216 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000217 print(" waiting for worker to say it caught the exception")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000218 worker_saw_exception.wait(timeout=10)
Georg Brandlab91fde2009-08-13 08:51:18 +0000219 self.assertTrue(t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000220 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000221 print(" all OK -- joining worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000222 if t.finished:
223 t.join()
224 # else the thread is still running, and we have no way to kill it
225
Gregory P. Smith31d12ca2010-02-28 19:21:42 +0000226 def test_limbo_cleanup(self):
227 # Issue 7481: Failure to start thread should cleanup the limbo map.
228 def fail_new_thread(*args):
229 raise threading.ThreadError()
230 _start_new_thread = threading._start_new_thread
231 threading._start_new_thread = fail_new_thread
232 try:
233 t = threading.Thread(target=lambda: None)
Gregory P. Smithff318642010-03-01 03:19:29 +0000234 self.assertRaises(threading.ThreadError, t.start)
235 self.assertFalse(
236 t in threading._limbo,
237 "Failed to cleanup _limbo map on failure of Thread.start().")
Gregory P. Smith31d12ca2010-02-28 19:21:42 +0000238 finally:
239 threading._start_new_thread = _start_new_thread
240
Christian Heimes7d2ff882007-11-30 14:35:04 +0000241 def test_finalize_runnning_thread(self):
242 # Issue 1402: the PyGILState_Ensure / _Release functions may be called
243 # very late on python exit: on deallocation of a running thread for
244 # example.
245 try:
246 import ctypes
247 except ImportError:
248 if verbose:
249 print("test_finalize_with_runnning_thread can't import ctypes")
250 return # can't do anything
251
Christian Heimes7d2ff882007-11-30 14:35:04 +0000252 rc = subprocess.call([sys.executable, "-c", """if 1:
Georg Brandl2067bfd2008-05-25 13:05:15 +0000253 import ctypes, sys, time, _thread
Christian Heimes7d2ff882007-11-30 14:35:04 +0000254
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000255 # This lock is used as a simple event variable.
Georg Brandl2067bfd2008-05-25 13:05:15 +0000256 ready = _thread.allocate_lock()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000257 ready.acquire()
258
Christian Heimes7d2ff882007-11-30 14:35:04 +0000259 # Module globals are cleared before __del__ is run
260 # So we save the functions in class dict
261 class C:
262 ensure = ctypes.pythonapi.PyGILState_Ensure
263 release = ctypes.pythonapi.PyGILState_Release
264 def __del__(self):
265 state = self.ensure()
266 self.release(state)
267
268 def waitingThread():
269 x = C()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000270 ready.release()
Christian Heimes7d2ff882007-11-30 14:35:04 +0000271 time.sleep(100)
272
Georg Brandl2067bfd2008-05-25 13:05:15 +0000273 _thread.start_new_thread(waitingThread, ())
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000274 ready.acquire() # Be sure the other thread is waiting.
Christian Heimes7d2ff882007-11-30 14:35:04 +0000275 sys.exit(42)
276 """])
277 self.assertEqual(rc, 42)
278
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000279 def test_finalize_with_trace(self):
280 # Issue1733757
281 # Avoid a deadlock when sys.settrace steps into threading._shutdown
Antoine Pitrou4a5dd5c2010-09-20 11:17:39 +0000282 p = subprocess.Popen([sys.executable, "-c", """if 1:
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000283 import sys, threading
284
285 # A deadlock-killer, to prevent the
286 # testsuite to hang forever
287 def killer():
288 import os, time
289 time.sleep(2)
290 print('program blocked; aborting')
291 os._exit(2)
292 t = threading.Thread(target=killer)
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000293 t.daemon = True
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000294 t.start()
295
296 # This is the trace function
297 def func(frame, event, arg):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000298 threading.current_thread()
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000299 return func
300
301 sys.settrace(func)
Antoine Pitrou4a5dd5c2010-09-20 11:17:39 +0000302 """],
303 stdout=subprocess.PIPE,
304 stderr=subprocess.PIPE)
305 stdout, stderr = p.communicate()
306 rc = p.returncode
Georg Brandlab91fde2009-08-13 08:51:18 +0000307 self.assertFalse(rc == 2, "interpreted was blocked")
Antoine Pitrou4a5dd5c2010-09-20 11:17:39 +0000308 self.assertTrue(rc == 0,
309 "Unexpected error: " + ascii(stderr))
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000310
Antoine Pitroucefb3162009-10-20 22:08:36 +0000311 def test_join_nondaemon_on_shutdown(self):
312 # Issue 1722344
313 # Raising SystemExit skipped threading._shutdown
Antoine Pitroucefb3162009-10-20 22:08:36 +0000314 p = subprocess.Popen([sys.executable, "-c", """if 1:
315 import threading
316 from time import sleep
317
318 def child():
319 sleep(1)
320 # As a non-daemon thread we SHOULD wake up and nothing
321 # should be torn down yet
322 print("Woke up, sleep function is:", sleep)
323
324 threading.Thread(target=child).start()
325 raise SystemExit
326 """],
327 stdout=subprocess.PIPE,
328 stderr=subprocess.PIPE)
329 stdout, stderr = p.communicate()
Antoine Pitrouf6779fb2009-10-23 22:06:37 +0000330 self.assertEqual(stdout.strip(),
331 b"Woke up, sleep function is: <built-in function sleep>")
Antoine Pitroucefb3162009-10-20 22:08:36 +0000332 stderr = re.sub(br"^\[\d+ refs\]", b"", stderr, re.MULTILINE).strip()
333 self.assertEqual(stderr, b"")
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000334
Christian Heimes1af737c2008-01-23 08:24:23 +0000335 def test_enumerate_after_join(self):
336 # Try hard to trigger #1703448: a thread is still returned in
337 # threading.enumerate() after it has been join()ed.
338 enum = threading.enumerate
339 old_interval = sys.getcheckinterval()
Christian Heimes1af737c2008-01-23 08:24:23 +0000340 try:
Jeffrey Yasskinca674122008-03-29 05:06:52 +0000341 for i in range(1, 100):
342 # Try a couple times at each thread-switching interval
343 # to get more interleavings.
344 sys.setcheckinterval(i // 5)
Christian Heimes1af737c2008-01-23 08:24:23 +0000345 t = threading.Thread(target=lambda: None)
346 t.start()
347 t.join()
348 l = enum()
349 self.assertFalse(t in l,
350 "#1703448 triggered after %d trials: %s" % (i, l))
351 finally:
352 sys.setcheckinterval(old_interval)
353
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000354 def test_no_refcycle_through_target(self):
355 class RunSelfFunction(object):
356 def __init__(self, should_raise):
357 # The links in this refcycle from Thread back to self
358 # should be cleaned up when the thread completes.
359 self.should_raise = should_raise
360 self.thread = threading.Thread(target=self._run,
361 args=(self,),
362 kwargs={'yet_another':self})
363 self.thread.start()
364
365 def _run(self, other_ref, yet_another):
366 if self.should_raise:
367 raise SystemExit
368
369 cyclic_object = RunSelfFunction(should_raise=False)
370 weak_cyclic_object = weakref.ref(cyclic_object)
371 cyclic_object.thread.join()
372 del cyclic_object
Ezio Melotti19f2aeb2010-11-21 01:30:29 +0000373 self.assertEqual(None, weak_cyclic_object(),
374 msg=('%d references still around' %
375 sys.getrefcount(weak_cyclic_object())))
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000376
377 raising_cyclic_object = RunSelfFunction(should_raise=True)
378 weak_raising_cyclic_object = weakref.ref(raising_cyclic_object)
379 raising_cyclic_object.thread.join()
380 del raising_cyclic_object
Ezio Melotti19f2aeb2010-11-21 01:30:29 +0000381 self.assertEqual(None, weak_raising_cyclic_object(),
382 msg=('%d references still around' %
383 sys.getrefcount(weak_raising_cyclic_object())))
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000384
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000385 def test_old_threading_api(self):
386 # Just a quick sanity check to make sure the old method names are
387 # still present
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000388 t = threading.Thread()
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000389 t.isDaemon()
390 t.setDaemon(True)
391 t.getName()
392 t.setName("name")
393 t.isAlive()
394 e = threading.Event()
395 e.isSet()
396 threading.activeCount()
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000397
Christian Heimes1af737c2008-01-23 08:24:23 +0000398
Jesse Nollera8513972008-07-17 16:49:17 +0000399class ThreadJoinOnShutdown(unittest.TestCase):
400
401 def _run_and_join(self, script):
402 script = """if 1:
403 import sys, os, time, threading
404
405 # a thread, which waits for the main program to terminate
406 def joiningfunc(mainthread):
407 mainthread.join()
408 print('end of thread')
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000409 # stdout is fully buffered because not a tty, we have to flush
410 # before exit.
411 sys.stdout.flush()
Jesse Nollera8513972008-07-17 16:49:17 +0000412 \n""" + script
413
Jesse Nollera8513972008-07-17 16:49:17 +0000414 p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE)
415 rc = p.wait()
Benjamin Petersonad703dc2008-07-17 17:02:57 +0000416 data = p.stdout.read().decode().replace('\r', '')
Brian Curtine509ff42010-11-02 04:01:17 +0000417 p.stdout.close()
Benjamin Petersonad703dc2008-07-17 17:02:57 +0000418 self.assertEqual(data, "end of main\nend of thread\n")
Georg Brandlab91fde2009-08-13 08:51:18 +0000419 self.assertFalse(rc == 2, "interpreter was blocked")
420 self.assertTrue(rc == 0, "Unexpected error")
Jesse Nollera8513972008-07-17 16:49:17 +0000421
422 def test_1_join_on_shutdown(self):
423 # The usual case: on exit, wait for a non-daemon thread
424 script = """if 1:
425 import os
426 t = threading.Thread(target=joiningfunc,
427 args=(threading.current_thread(),))
428 t.start()
429 time.sleep(0.1)
430 print('end of main')
431 """
432 self._run_and_join(script)
433
434
435 def test_2_join_in_forked_process(self):
436 # Like the test above, but from a forked interpreter
437 import os
438 if not hasattr(os, 'fork'):
439 return
440 script = """if 1:
441 childpid = os.fork()
442 if childpid != 0:
443 os.waitpid(childpid, 0)
444 sys.exit(0)
445
446 t = threading.Thread(target=joiningfunc,
447 args=(threading.current_thread(),))
448 t.start()
449 print('end of main')
450 """
451 self._run_and_join(script)
452
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000453 def test_3_join_in_forked_from_thread(self):
Jesse Nollera8513972008-07-17 16:49:17 +0000454 # Like the test above, but fork() was called from a worker thread
455 # In the forked process, the main Thread object must be marked as stopped.
456 import os
457 if not hasattr(os, 'fork'):
458 return
Benjamin Petersonbcd8ac32008-10-10 22:20:52 +0000459 # Skip platforms with known problems forking from a worker thread.
460 # See http://bugs.python.org/issue3863.
Gregory P. Smith397cd8a2010-10-17 04:23:21 +0000461 if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5',
462 'os2emx'):
R. David Murray9948da02009-10-26 03:27:32 +0000463 print('Skipping test_3_join_in_forked_from_thread'
464 ' due to known OS bugs on', sys.platform, file=sys.stderr)
Benjamin Petersonbcd8ac32008-10-10 22:20:52 +0000465 return
Jesse Nollera8513972008-07-17 16:49:17 +0000466 script = """if 1:
467 main_thread = threading.current_thread()
468 def worker():
469 childpid = os.fork()
470 if childpid != 0:
471 os.waitpid(childpid, 0)
472 sys.exit(0)
473
474 t = threading.Thread(target=joiningfunc,
475 args=(main_thread,))
476 print('end of main')
477 t.start()
478 t.join() # Should not block: main_thread is already stopped
479
480 w = threading.Thread(target=worker)
481 w.start()
482 """
483 self._run_and_join(script)
484
Gregory P. Smith4b129d22011-01-04 00:51:50 +0000485 def assertScriptHasOutput(self, script, expected_output):
486 p = subprocess.Popen([sys.executable, "-c", script],
487 stdout=subprocess.PIPE)
488 rc = p.wait()
489 data = p.stdout.read().decode().replace('\r', '')
490 self.assertEqual(rc, 0, "Unexpected error")
491 self.assertEqual(data, expected_output)
492
493 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
494 def test_4_joining_across_fork_in_worker_thread(self):
495 # There used to be a possible deadlock when forking from a child
496 # thread. See http://bugs.python.org/issue6643.
497
498 # Skip platforms with known problems forking from a worker thread.
499 # See http://bugs.python.org/issue3863.
500 if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
501 raise unittest.SkipTest('due to known OS bugs on ' + sys.platform)
502
503 # The script takes the following steps:
504 # - The main thread in the parent process starts a new thread and then
505 # tries to join it.
506 # - The join operation acquires the Lock inside the thread's _block
507 # Condition. (See threading.py:Thread.join().)
508 # - We stub out the acquire method on the condition to force it to wait
509 # until the child thread forks. (See LOCK ACQUIRED HERE)
510 # - The child thread forks. (See LOCK HELD and WORKER THREAD FORKS
511 # HERE)
512 # - The main thread of the parent process enters Condition.wait(),
513 # which releases the lock on the child thread.
514 # - The child process returns. Without the necessary fix, when the
515 # main thread of the child process (which used to be the child thread
516 # in the parent process) attempts to exit, it will try to acquire the
517 # lock in the Thread._block Condition object and hang, because the
518 # lock was held across the fork.
519
520 script = """if 1:
521 import os, time, threading
522
523 finish_join = False
524 start_fork = False
525
526 def worker():
527 # Wait until this thread's lock is acquired before forking to
528 # create the deadlock.
529 global finish_join
530 while not start_fork:
531 time.sleep(0.01)
532 # LOCK HELD: Main thread holds lock across this call.
533 childpid = os.fork()
534 finish_join = True
535 if childpid != 0:
536 # Parent process just waits for child.
537 os.waitpid(childpid, 0)
538 # Child process should just return.
539
540 w = threading.Thread(target=worker)
541
542 # Stub out the private condition variable's lock acquire method.
543 # This acquires the lock and then waits until the child has forked
544 # before returning, which will release the lock soon after. If
545 # someone else tries to fix this test case by acquiring this lock
Ezio Melotti13925002011-03-16 11:05:33 +0200546 # before forking instead of resetting it, the test case will
Gregory P. Smith4b129d22011-01-04 00:51:50 +0000547 # deadlock when it shouldn't.
548 condition = w._block
549 orig_acquire = condition.acquire
550 call_count_lock = threading.Lock()
551 call_count = 0
552 def my_acquire():
553 global call_count
554 global start_fork
555 orig_acquire() # LOCK ACQUIRED HERE
556 start_fork = True
557 if call_count == 0:
558 while not finish_join:
559 time.sleep(0.01) # WORKER THREAD FORKS HERE
560 with call_count_lock:
561 call_count += 1
562 condition.acquire = my_acquire
563
564 w.start()
565 w.join()
566 print('end of main')
567 """
568 self.assertScriptHasOutput(script, "end of main\n")
569
570 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
571 def test_5_clear_waiter_locks_to_avoid_crash(self):
572 # Check that a spawned thread that forks doesn't segfault on certain
573 # platforms, namely OS X. This used to happen if there was a waiter
574 # lock in the thread's condition variable's waiters list. Even though
575 # we know the lock will be held across the fork, it is not safe to
576 # release locks held across forks on all platforms, so releasing the
577 # waiter lock caused a segfault on OS X. Furthermore, since locks on
578 # OS X are (as of this writing) implemented with a mutex + condition
579 # variable instead of a semaphore, while we know that the Python-level
580 # lock will be acquired, we can't know if the internal mutex will be
581 # acquired at the time of the fork.
582
583 # Skip platforms with known problems forking from a worker thread.
584 # See http://bugs.python.org/issue3863.
585 if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
586 raise unittest.SkipTest('due to known OS bugs on ' + sys.platform)
587 script = """if True:
588 import os, time, threading
589
590 start_fork = False
591
592 def worker():
593 # Wait until the main thread has attempted to join this thread
594 # before continuing.
595 while not start_fork:
596 time.sleep(0.01)
597 childpid = os.fork()
598 if childpid != 0:
599 # Parent process just waits for child.
600 (cpid, rc) = os.waitpid(childpid, 0)
601 assert cpid == childpid
602 assert rc == 0
603 print('end of worker thread')
604 else:
605 # Child process should just return.
606 pass
607
608 w = threading.Thread(target=worker)
609
610 # Stub out the private condition variable's _release_save method.
611 # This releases the condition's lock and flips the global that
612 # causes the worker to fork. At this point, the problematic waiter
613 # lock has been acquired once by the waiter and has been put onto
614 # the waiters list.
615 condition = w._block
616 orig_release_save = condition._release_save
617 def my_release_save():
618 global start_fork
619 orig_release_save()
620 # Waiter lock held here, condition lock released.
621 start_fork = True
622 condition._release_save = my_release_save
623
624 w.start()
625 w.join()
626 print('end of main thread')
627 """
628 output = "end of worker thread\nend of main thread\n"
629 self.assertScriptHasOutput(script, output)
630
Jesse Nollera8513972008-07-17 16:49:17 +0000631
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000632class ThreadingExceptionTests(unittest.TestCase):
633 # A RuntimeError should be raised if Thread.start() is called
634 # multiple times.
635 def test_start_thread_again(self):
636 thread = threading.Thread()
637 thread.start()
638 self.assertRaises(RuntimeError, thread.start)
639
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000640 def test_joining_current_thread(self):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000641 current_thread = threading.current_thread()
642 self.assertRaises(RuntimeError, current_thread.join);
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000643
644 def test_joining_inactive_thread(self):
645 thread = threading.Thread()
646 self.assertRaises(RuntimeError, thread.join)
647
648 def test_daemonize_active_thread(self):
649 thread = threading.Thread()
650 thread.start()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000651 self.assertRaises(RuntimeError, setattr, thread, "daemon", True)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000652
653
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000654class LockTests(lock_tests.LockTests):
655 locktype = staticmethod(threading.Lock)
656
657class RLockTests(lock_tests.RLockTests):
658 locktype = staticmethod(threading.RLock)
659
660class EventTests(lock_tests.EventTests):
661 eventtype = staticmethod(threading.Event)
662
663class ConditionAsRLockTests(lock_tests.RLockTests):
664 # An Condition uses an RLock by default and exports its API.
665 locktype = staticmethod(threading.Condition)
666
667class ConditionTests(lock_tests.ConditionTests):
668 condtype = staticmethod(threading.Condition)
669
670class SemaphoreTests(lock_tests.SemaphoreTests):
671 semtype = staticmethod(threading.Semaphore)
672
673class BoundedSemaphoreTests(lock_tests.BoundedSemaphoreTests):
674 semtype = staticmethod(threading.BoundedSemaphore)
675
676
Tim Peters84d54892005-01-08 06:03:17 +0000677def test_main():
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000678 test.support.run_unittest(LockTests, RLockTests, EventTests,
679 ConditionAsRLockTests, ConditionTests,
680 SemaphoreTests, BoundedSemaphoreTests,
681 ThreadTests,
682 ThreadJoinOnShutdown,
683 ThreadingExceptionTests,
684 )
Tim Peters84d54892005-01-08 06:03:17 +0000685
686if __name__ == "__main__":
687 test_main()