blob: 2ddc77b266b5429a939eef8689deccb647613869 [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 Storchakaa7930372016-07-03 22:27:26 +03006from test.support import (verbose, import_module, cpython_only,
7 requires_type_collecting)
Berker Peksagce643912015-05-06 06:33:17 +03008from test.support.script_helper import assert_python_ok, assert_python_failure
Antoine Pitrou8e6e0fd2012-04-19 23:55:01 +02009
Skip Montanaro4533f602001-08-20 20:28:48 +000010import random
Guido van Rossumcd16bf62007-06-13 18:07:49 +000011import sys
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020012import _thread
13import 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
Gregory P. Smith4b129d22011-01-04 00:51:50 +000018import subprocess
Skip Montanaro4533f602001-08-20 20:28:48 +000019
Antoine Pitrou557934f2009-11-06 22:41:14 +000020from test import lock_tests
Martin Panter19e69c52015-11-14 12:46:42 +000021from test import support
Antoine Pitrou557934f2009-11-06 22:41:14 +000022
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.
Victor Stinner13ff2452018-01-22 18:32:50 +010028platforms_to_skip = ('netbsd5', 'hp-ux11')
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +030029
30
Tim Peters84d54892005-01-08 06:03:17 +000031# A trivial mutable counter.
32class Counter(object):
33 def __init__(self):
34 self.value = 0
35 def inc(self):
36 self.value += 1
37 def dec(self):
38 self.value -= 1
39 def get(self):
40 return self.value
Skip Montanaro4533f602001-08-20 20:28:48 +000041
42class TestThread(threading.Thread):
Tim Peters84d54892005-01-08 06:03:17 +000043 def __init__(self, name, testcase, sema, mutex, nrunning):
44 threading.Thread.__init__(self, name=name)
45 self.testcase = testcase
46 self.sema = sema
47 self.mutex = mutex
48 self.nrunning = nrunning
49
Skip Montanaro4533f602001-08-20 20:28:48 +000050 def run(self):
Christian Heimes4fbc72b2008-03-22 00:47:35 +000051 delay = random.random() / 10000.0
Skip Montanaro4533f602001-08-20 20:28:48 +000052 if verbose:
Jeffrey Yasskinca674122008-03-29 05:06:52 +000053 print('task %s will run for %.1f usec' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000054 (self.name, delay * 1e6))
Tim Peters84d54892005-01-08 06:03:17 +000055
Christian Heimes4fbc72b2008-03-22 00:47:35 +000056 with self.sema:
57 with self.mutex:
58 self.nrunning.inc()
59 if verbose:
60 print(self.nrunning.get(), 'tasks are running')
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +020061 self.testcase.assertLessEqual(self.nrunning.get(), 3)
Tim Peters84d54892005-01-08 06:03:17 +000062
Christian Heimes4fbc72b2008-03-22 00:47:35 +000063 time.sleep(delay)
64 if verbose:
Benjamin Petersonfdbea962008-08-18 17:33:47 +000065 print('task', self.name, 'done')
Benjamin Peterson672b8032008-06-11 19:14:14 +000066
Christian Heimes4fbc72b2008-03-22 00:47:35 +000067 with self.mutex:
68 self.nrunning.dec()
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +020069 self.testcase.assertGreaterEqual(self.nrunning.get(), 0)
Christian Heimes4fbc72b2008-03-22 00:47:35 +000070 if verbose:
71 print('%s is finished. %d tasks are running' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000072 (self.name, self.nrunning.get()))
Benjamin Peterson672b8032008-06-11 19:14:14 +000073
Skip Montanaro4533f602001-08-20 20:28:48 +000074
Antoine Pitroub0e9bd42009-10-27 20:05:26 +000075class BaseTestCase(unittest.TestCase):
76 def setUp(self):
77 self._threads = test.support.threading_setup()
78
79 def tearDown(self):
80 test.support.threading_cleanup(*self._threads)
81 test.support.reap_children()
82
83
84class ThreadTests(BaseTestCase):
Skip Montanaro4533f602001-08-20 20:28:48 +000085
Tim Peters84d54892005-01-08 06:03:17 +000086 # Create a bunch of threads, let each do some work, wait until all are
87 # done.
88 def test_various_ops(self):
89 # This takes about n/3 seconds to run (about n/3 clumps of tasks,
90 # times about 1 second per clump).
91 NUMTASKS = 10
92
93 # no more than 3 of the 10 can run at once
94 sema = threading.BoundedSemaphore(value=3)
95 mutex = threading.RLock()
96 numrunning = Counter()
97
98 threads = []
99
100 for i in range(NUMTASKS):
101 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning)
102 threads.append(t)
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200103 self.assertIsNone(t.ident)
104 self.assertRegex(repr(t), r'^<TestThread\(.*, initial\)>$')
Tim Peters84d54892005-01-08 06:03:17 +0000105 t.start()
106
107 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000108 print('waiting for all tasks to complete')
Tim Peters84d54892005-01-08 06:03:17 +0000109 for t in threads:
Antoine Pitrou5da7e792013-09-08 13:19:06 +0200110 t.join()
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200111 self.assertFalse(t.is_alive())
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000112 self.assertNotEqual(t.ident, 0)
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200113 self.assertIsNotNone(t.ident)
114 self.assertRegex(repr(t), r'^<TestThread\(.*, stopped -?\d+\)>$')
Tim Peters84d54892005-01-08 06:03:17 +0000115 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000116 print('all tasks done')
Tim Peters84d54892005-01-08 06:03:17 +0000117 self.assertEqual(numrunning.get(), 0)
118
Benjamin Petersond23f8222009-04-05 19:13:16 +0000119 def test_ident_of_no_threading_threads(self):
120 # The ident still must work for the main thread and dummy threads.
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200121 self.assertIsNotNone(threading.currentThread().ident)
Benjamin Petersond23f8222009-04-05 19:13:16 +0000122 def f():
123 ident.append(threading.currentThread().ident)
124 done.set()
125 done = threading.Event()
126 ident = []
Victor Stinnerff40ecd2017-09-14 13:07:24 -0700127 with support.wait_threads_exit():
128 tid = _thread.start_new_thread(f, ())
129 done.wait()
130 self.assertEqual(ident[0], tid)
Antoine Pitrouca13a0d2009-11-08 00:30:04 +0000131 # Kill the "immortal" _DummyThread
132 del threading._active[ident[0]]
Benjamin Petersond23f8222009-04-05 19:13:16 +0000133
Victor Stinner8c663fd2017-11-08 14:44:44 -0800134 # run with a small(ish) thread stack size (256 KiB)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000135 def test_various_ops_small_stack(self):
136 if verbose:
Victor Stinner8c663fd2017-11-08 14:44:44 -0800137 print('with 256 KiB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000138 try:
139 threading.stack_size(262144)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000140 except _thread.error:
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000141 raise unittest.SkipTest(
142 'platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000143 self.test_various_ops()
144 threading.stack_size(0)
145
Victor Stinner8c663fd2017-11-08 14:44:44 -0800146 # run with a large thread stack size (1 MiB)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000147 def test_various_ops_large_stack(self):
148 if verbose:
Victor Stinner8c663fd2017-11-08 14:44:44 -0800149 print('with 1 MiB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000150 try:
151 threading.stack_size(0x100000)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000152 except _thread.error:
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000153 raise unittest.SkipTest(
154 'platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000155 self.test_various_ops()
156 threading.stack_size(0)
157
Tim Peters711906e2005-01-08 07:30:42 +0000158 def test_foreign_thread(self):
159 # Check that a "foreign" thread can use the threading module.
160 def f(mutex):
Antoine Pitroub0872682009-11-09 16:08:16 +0000161 # Calling current_thread() forces an entry for the foreign
Tim Peters711906e2005-01-08 07:30:42 +0000162 # thread to get made in the threading._active map.
Antoine Pitroub0872682009-11-09 16:08:16 +0000163 threading.current_thread()
Tim Peters711906e2005-01-08 07:30:42 +0000164 mutex.release()
165
166 mutex = threading.Lock()
167 mutex.acquire()
Victor Stinnerff40ecd2017-09-14 13:07:24 -0700168 with support.wait_threads_exit():
169 tid = _thread.start_new_thread(f, (mutex,))
170 # 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)
Xiang Zhangf3a9fab2017-02-27 11:01:30 +0800174 #Issue 29376
175 self.assertTrue(threading._active[tid].is_alive())
176 self.assertRegex(repr(threading._active[tid]), '_DummyThread')
Tim Peters711906e2005-01-08 07:30:42 +0000177 del threading._active[tid]
Tim Peters84d54892005-01-08 06:03:17 +0000178
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000179 # PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)
180 # exposed at the Python level. This test relies on ctypes to get at it.
181 def test_PyThreadState_SetAsyncExc(self):
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200182 ctypes = import_module("ctypes")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000183
184 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200185 set_async_exc.argtypes = (ctypes.c_ulong, ctypes.py_object)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000186
187 class AsyncExc(Exception):
188 pass
189
190 exception = ctypes.py_object(AsyncExc)
191
Antoine Pitroube4d8092009-10-18 18:27:17 +0000192 # First check it works when setting the exception from the same thread.
Victor Stinner2a129742011-05-30 23:02:52 +0200193 tid = threading.get_ident()
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200194 self.assertIsInstance(tid, int)
195 self.assertGreater(tid, 0)
Antoine Pitroube4d8092009-10-18 18:27:17 +0000196
197 try:
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200198 result = set_async_exc(tid, exception)
Antoine Pitroube4d8092009-10-18 18:27:17 +0000199 # The exception is async, so we might have to keep the VM busy until
200 # it notices.
201 while True:
202 pass
203 except AsyncExc:
204 pass
205 else:
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000206 # This code is unreachable but it reflects the intent. If we wanted
207 # to be smarter the above loop wouldn't be infinite.
Antoine Pitroube4d8092009-10-18 18:27:17 +0000208 self.fail("AsyncExc not raised")
209 try:
210 self.assertEqual(result, 1) # one thread state modified
211 except UnboundLocalError:
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000212 # The exception was raised too quickly for us to get the result.
Antoine Pitroube4d8092009-10-18 18:27:17 +0000213 pass
214
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000215 # `worker_started` is set by the thread when it's inside a try/except
216 # block waiting to catch the asynchronously set AsyncExc exception.
217 # `worker_saw_exception` is set by the thread upon catching that
218 # exception.
219 worker_started = threading.Event()
220 worker_saw_exception = threading.Event()
221
222 class Worker(threading.Thread):
223 def run(self):
Victor Stinner2a129742011-05-30 23:02:52 +0200224 self.id = threading.get_ident()
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000225 self.finished = False
226
227 try:
228 while True:
229 worker_started.set()
230 time.sleep(0.1)
231 except AsyncExc:
232 self.finished = True
233 worker_saw_exception.set()
234
235 t = Worker()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000236 t.daemon = True # so if this fails, we don't hang Python at shutdown
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000237 t.start()
238 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000239 print(" started worker thread")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000240
241 # Try a thread id that doesn't make sense.
242 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000243 print(" trying nonsensical thread id")
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200244 result = set_async_exc(-1, exception)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000245 self.assertEqual(result, 0) # no thread states modified
246
247 # Now raise an exception in the worker thread.
248 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000249 print(" waiting for worker thread to get started")
Benjamin Petersond23f8222009-04-05 19:13:16 +0000250 ret = worker_started.wait()
251 self.assertTrue(ret)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000252 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000253 print(" verifying worker hasn't exited")
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200254 self.assertFalse(t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000255 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000256 print(" attempting to raise asynch exception in worker")
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200257 result = set_async_exc(t.id, exception)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000258 self.assertEqual(result, 1) # one thread state modified
259 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000260 print(" waiting for worker to say it caught the exception")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000261 worker_saw_exception.wait(timeout=10)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000262 self.assertTrue(t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000263 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000264 print(" all OK -- joining worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000265 if t.finished:
266 t.join()
267 # else the thread is still running, and we have no way to kill it
268
Gregory P. Smith3fdd9642010-02-28 18:57:46 +0000269 def test_limbo_cleanup(self):
270 # Issue 7481: Failure to start thread should cleanup the limbo map.
271 def fail_new_thread(*args):
272 raise threading.ThreadError()
273 _start_new_thread = threading._start_new_thread
274 threading._start_new_thread = fail_new_thread
275 try:
276 t = threading.Thread(target=lambda: None)
Gregory P. Smithf50f1682010-03-01 03:13:36 +0000277 self.assertRaises(threading.ThreadError, t.start)
278 self.assertFalse(
279 t in threading._limbo,
280 "Failed to cleanup _limbo map on failure of Thread.start().")
Gregory P. Smith3fdd9642010-02-28 18:57:46 +0000281 finally:
282 threading._start_new_thread = _start_new_thread
283
Christian Heimes7d2ff882007-11-30 14:35:04 +0000284 def test_finalize_runnning_thread(self):
285 # Issue 1402: the PyGILState_Ensure / _Release functions may be called
286 # very late on python exit: on deallocation of a running thread for
287 # example.
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200288 import_module("ctypes")
Christian Heimes7d2ff882007-11-30 14:35:04 +0000289
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200290 rc, out, err = assert_python_failure("-c", """if 1:
Georg Brandl2067bfd2008-05-25 13:05:15 +0000291 import ctypes, sys, time, _thread
Christian Heimes7d2ff882007-11-30 14:35:04 +0000292
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000293 # This lock is used as a simple event variable.
Georg Brandl2067bfd2008-05-25 13:05:15 +0000294 ready = _thread.allocate_lock()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000295 ready.acquire()
296
Christian Heimes7d2ff882007-11-30 14:35:04 +0000297 # Module globals are cleared before __del__ is run
298 # So we save the functions in class dict
299 class C:
300 ensure = ctypes.pythonapi.PyGILState_Ensure
301 release = ctypes.pythonapi.PyGILState_Release
302 def __del__(self):
303 state = self.ensure()
304 self.release(state)
305
306 def waitingThread():
307 x = C()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000308 ready.release()
Christian Heimes7d2ff882007-11-30 14:35:04 +0000309 time.sleep(100)
310
Georg Brandl2067bfd2008-05-25 13:05:15 +0000311 _thread.start_new_thread(waitingThread, ())
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000312 ready.acquire() # Be sure the other thread is waiting.
Christian Heimes7d2ff882007-11-30 14:35:04 +0000313 sys.exit(42)
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200314 """)
Christian Heimes7d2ff882007-11-30 14:35:04 +0000315 self.assertEqual(rc, 42)
316
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000317 def test_finalize_with_trace(self):
318 # Issue1733757
319 # Avoid a deadlock when sys.settrace steps into threading._shutdown
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200320 assert_python_ok("-c", """if 1:
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000321 import sys, threading
322
323 # A deadlock-killer, to prevent the
324 # testsuite to hang forever
325 def killer():
326 import os, time
327 time.sleep(2)
328 print('program blocked; aborting')
329 os._exit(2)
330 t = threading.Thread(target=killer)
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000331 t.daemon = True
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000332 t.start()
333
334 # This is the trace function
335 def func(frame, event, arg):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000336 threading.current_thread()
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000337 return func
338
339 sys.settrace(func)
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200340 """)
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000341
Antoine Pitrou011bd622009-10-20 21:52:47 +0000342 def test_join_nondaemon_on_shutdown(self):
343 # Issue 1722344
344 # Raising SystemExit skipped threading._shutdown
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200345 rc, out, err = assert_python_ok("-c", """if 1:
Antoine Pitrou011bd622009-10-20 21:52:47 +0000346 import threading
347 from time import sleep
348
349 def child():
350 sleep(1)
351 # As a non-daemon thread we SHOULD wake up and nothing
352 # should be torn down yet
353 print("Woke up, sleep function is:", sleep)
354
355 threading.Thread(target=child).start()
356 raise SystemExit
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200357 """)
358 self.assertEqual(out.strip(),
Antoine Pitrou899d1c62009-10-23 21:55:36 +0000359 b"Woke up, sleep function is: <built-in function sleep>")
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200360 self.assertEqual(err, b"")
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000361
Christian Heimes1af737c2008-01-23 08:24:23 +0000362 def test_enumerate_after_join(self):
363 # Try hard to trigger #1703448: a thread is still returned in
364 # threading.enumerate() after it has been join()ed.
365 enum = threading.enumerate
Antoine Pitrouc3b07572009-11-13 22:19:19 +0000366 old_interval = sys.getswitchinterval()
Christian Heimes1af737c2008-01-23 08:24:23 +0000367 try:
Jeffrey Yasskinca674122008-03-29 05:06:52 +0000368 for i in range(1, 100):
Antoine Pitrouc3b07572009-11-13 22:19:19 +0000369 sys.setswitchinterval(i * 0.0002)
Christian Heimes1af737c2008-01-23 08:24:23 +0000370 t = threading.Thread(target=lambda: None)
371 t.start()
372 t.join()
373 l = enum()
Ezio Melottib58e0bd2010-01-23 15:40:09 +0000374 self.assertNotIn(t, l,
Christian Heimes1af737c2008-01-23 08:24:23 +0000375 "#1703448 triggered after %d trials: %s" % (i, l))
376 finally:
Antoine Pitrouc3b07572009-11-13 22:19:19 +0000377 sys.setswitchinterval(old_interval)
Christian Heimes1af737c2008-01-23 08:24:23 +0000378
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000379 def test_no_refcycle_through_target(self):
380 class RunSelfFunction(object):
381 def __init__(self, should_raise):
382 # The links in this refcycle from Thread back to self
383 # should be cleaned up when the thread completes.
384 self.should_raise = should_raise
385 self.thread = threading.Thread(target=self._run,
386 args=(self,),
387 kwargs={'yet_another':self})
388 self.thread.start()
389
390 def _run(self, other_ref, yet_another):
391 if self.should_raise:
392 raise SystemExit
393
394 cyclic_object = RunSelfFunction(should_raise=False)
395 weak_cyclic_object = weakref.ref(cyclic_object)
396 cyclic_object.thread.join()
397 del cyclic_object
Raymond Hettinger7beae8a2011-01-06 05:34:17 +0000398 self.assertIsNone(weak_cyclic_object(),
Ezio Melottib3aedd42010-11-20 19:04:17 +0000399 msg=('%d references still around' %
400 sys.getrefcount(weak_cyclic_object())))
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000401
402 raising_cyclic_object = RunSelfFunction(should_raise=True)
403 weak_raising_cyclic_object = weakref.ref(raising_cyclic_object)
404 raising_cyclic_object.thread.join()
405 del raising_cyclic_object
Raymond Hettinger7beae8a2011-01-06 05:34:17 +0000406 self.assertIsNone(weak_raising_cyclic_object(),
Ezio Melottib3aedd42010-11-20 19:04:17 +0000407 msg=('%d references still around' %
408 sys.getrefcount(weak_raising_cyclic_object())))
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000409
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000410 def test_old_threading_api(self):
411 # Just a quick sanity check to make sure the old method names are
412 # still present
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000413 t = threading.Thread()
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000414 t.isDaemon()
415 t.setDaemon(True)
416 t.getName()
417 t.setName("name")
Dong-hee Na89669ff2019-01-17 21:14:45 +0900418 with self.assertWarnsRegex(DeprecationWarning, 'use is_alive()'):
419 t.isAlive()
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000420 e = threading.Event()
421 e.isSet()
422 threading.activeCount()
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000423
Brian Curtin81a4a6a2010-07-23 16:30:10 +0000424 def test_repr_daemon(self):
425 t = threading.Thread()
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200426 self.assertNotIn('daemon', repr(t))
Brian Curtin81a4a6a2010-07-23 16:30:10 +0000427 t.daemon = True
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200428 self.assertIn('daemon', repr(t))
Brett Cannon3f5f2262010-07-23 15:50:52 +0000429
luzpaza5293b42017-11-05 07:37:50 -0600430 def test_daemon_param(self):
Antoine Pitrou0bd4deb2011-02-25 22:07:43 +0000431 t = threading.Thread()
432 self.assertFalse(t.daemon)
433 t = threading.Thread(daemon=False)
434 self.assertFalse(t.daemon)
435 t = threading.Thread(daemon=True)
436 self.assertTrue(t.daemon)
437
Antoine Pitrou8e6e0fd2012-04-19 23:55:01 +0200438 @unittest.skipUnless(hasattr(os, 'fork'), 'test needs fork()')
439 def test_dummy_thread_after_fork(self):
440 # Issue #14308: a dummy thread in the active list doesn't mess up
441 # the after-fork mechanism.
442 code = """if 1:
443 import _thread, threading, os, time
444
445 def background_thread(evt):
446 # Creates and registers the _DummyThread instance
447 threading.current_thread()
448 evt.set()
449 time.sleep(10)
450
451 evt = threading.Event()
452 _thread.start_new_thread(background_thread, (evt,))
453 evt.wait()
454 assert threading.active_count() == 2, threading.active_count()
455 if os.fork() == 0:
456 assert threading.active_count() == 1, threading.active_count()
457 os._exit(0)
458 else:
459 os.wait()
460 """
461 _, out, err = assert_python_ok("-c", code)
462 self.assertEqual(out, b'')
463 self.assertEqual(err, b'')
464
Charles-François Natali9939cc82013-08-30 23:32:53 +0200465 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
466 def test_is_alive_after_fork(self):
467 # Try hard to trigger #18418: is_alive() could sometimes be True on
468 # threads that vanished after a fork.
469 old_interval = sys.getswitchinterval()
470 self.addCleanup(sys.setswitchinterval, old_interval)
471
472 # Make the bug more likely to manifest.
Xavier de Gayecb9ab0f2016-12-08 12:21:00 +0100473 test.support.setswitchinterval(1e-6)
Charles-François Natali9939cc82013-08-30 23:32:53 +0200474
475 for i in range(20):
476 t = threading.Thread(target=lambda: None)
477 t.start()
Charles-François Natali9939cc82013-08-30 23:32:53 +0200478 pid = os.fork()
479 if pid == 0:
Victor Stinnerf8d05b32017-05-17 11:58:50 -0700480 os._exit(11 if t.is_alive() else 10)
Charles-François Natali9939cc82013-08-30 23:32:53 +0200481 else:
Victor Stinnerf8d05b32017-05-17 11:58:50 -0700482 t.join()
483
Charles-François Natali9939cc82013-08-30 23:32:53 +0200484 pid, status = os.waitpid(pid, 0)
Victor Stinnerf8d05b32017-05-17 11:58:50 -0700485 self.assertTrue(os.WIFEXITED(status))
486 self.assertEqual(10, os.WEXITSTATUS(status))
Charles-François Natali9939cc82013-08-30 23:32:53 +0200487
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300488 def test_main_thread(self):
489 main = threading.main_thread()
490 self.assertEqual(main.name, 'MainThread')
491 self.assertEqual(main.ident, threading.current_thread().ident)
492 self.assertEqual(main.ident, threading.get_ident())
493
494 def f():
495 self.assertNotEqual(threading.main_thread().ident,
496 threading.current_thread().ident)
497 th = threading.Thread(target=f)
498 th.start()
499 th.join()
500
501 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
502 @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid()")
503 def test_main_thread_after_fork(self):
504 code = """if 1:
505 import os, threading
506
507 pid = os.fork()
508 if pid == 0:
509 main = threading.main_thread()
510 print(main.name)
511 print(main.ident == threading.current_thread().ident)
512 print(main.ident == threading.get_ident())
513 else:
514 os.waitpid(pid, 0)
515 """
516 _, out, err = assert_python_ok("-c", code)
517 data = out.decode().replace('\r', '')
518 self.assertEqual(err, b"")
519 self.assertEqual(data, "MainThread\nTrue\nTrue\n")
520
521 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
522 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
523 @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid()")
524 def test_main_thread_after_fork_from_nonmain_thread(self):
525 code = """if 1:
526 import os, threading, sys
527
528 def f():
529 pid = os.fork()
530 if pid == 0:
531 main = threading.main_thread()
532 print(main.name)
533 print(main.ident == threading.current_thread().ident)
534 print(main.ident == threading.get_ident())
535 # stdout is fully buffered because not a tty,
536 # we have to flush before exit.
537 sys.stdout.flush()
538 else:
539 os.waitpid(pid, 0)
540
541 th = threading.Thread(target=f)
542 th.start()
543 th.join()
544 """
545 _, out, err = assert_python_ok("-c", code)
546 data = out.decode().replace('\r', '')
547 self.assertEqual(err, b"")
548 self.assertEqual(data, "Thread-1\nTrue\nTrue\n")
549
Zackery Spytz65d2f8c2018-10-12 02:31:21 -0600550 @requires_type_collecting
Antoine Pitrou1023dbb2017-10-02 16:42:15 +0200551 def test_main_thread_during_shutdown(self):
552 # bpo-31516: current_thread() should still point to the main thread
553 # at shutdown
554 code = """if 1:
555 import gc, threading
556
557 main_thread = threading.current_thread()
558 assert main_thread is threading.main_thread() # sanity check
559
560 class RefCycle:
561 def __init__(self):
562 self.cycle = self
563
564 def __del__(self):
565 print("GC:",
566 threading.current_thread() is main_thread,
567 threading.main_thread() is main_thread,
568 threading.enumerate() == [main_thread])
569
570 RefCycle()
571 gc.collect() # sanity check
572 x = RefCycle()
573 """
574 _, out, err = assert_python_ok("-c", code)
575 data = out.decode()
576 self.assertEqual(err, b"")
577 self.assertEqual(data.splitlines(),
578 ["GC: True True True"] * 2)
579
Antoine Pitrou7b476992013-09-07 23:38:37 +0200580 def test_tstate_lock(self):
581 # Test an implementation detail of Thread objects.
582 started = _thread.allocate_lock()
583 finish = _thread.allocate_lock()
584 started.acquire()
585 finish.acquire()
586 def f():
587 started.release()
588 finish.acquire()
589 time.sleep(0.01)
590 # The tstate lock is None until the thread is started
591 t = threading.Thread(target=f)
592 self.assertIs(t._tstate_lock, None)
593 t.start()
594 started.acquire()
595 self.assertTrue(t.is_alive())
596 # The tstate lock can't be acquired when the thread is running
597 # (or suspended).
598 tstate_lock = t._tstate_lock
599 self.assertFalse(tstate_lock.acquire(timeout=0), False)
600 finish.release()
601 # When the thread ends, the state_lock can be successfully
602 # acquired.
603 self.assertTrue(tstate_lock.acquire(timeout=5), False)
604 # But is_alive() is still True: we hold _tstate_lock now, which
605 # prevents is_alive() from knowing the thread's end-of-life C code
606 # is done.
607 self.assertTrue(t.is_alive())
608 # Let is_alive() find out the C code is done.
609 tstate_lock.release()
610 self.assertFalse(t.is_alive())
611 # And verify the thread disposed of _tstate_lock.
Serhiy Storchaka8c0f0c52016-03-14 10:28:59 +0200612 self.assertIsNone(t._tstate_lock)
Victor Stinnerb8c7be22017-09-14 13:05:21 -0700613 t.join()
Antoine Pitrou7b476992013-09-07 23:38:37 +0200614
Tim Peters72460fa2013-09-09 18:48:24 -0500615 def test_repr_stopped(self):
616 # Verify that "stopped" shows up in repr(Thread) appropriately.
617 started = _thread.allocate_lock()
618 finish = _thread.allocate_lock()
619 started.acquire()
620 finish.acquire()
621 def f():
622 started.release()
623 finish.acquire()
624 t = threading.Thread(target=f)
625 t.start()
626 started.acquire()
627 self.assertIn("started", repr(t))
628 finish.release()
629 # "stopped" should appear in the repr in a reasonable amount of time.
630 # Implementation detail: as of this writing, that's trivially true
631 # if .join() is called, and almost trivially true if .is_alive() is
632 # called. The detail we're testing here is that "stopped" shows up
633 # "all on its own".
634 LOOKING_FOR = "stopped"
635 for i in range(500):
636 if LOOKING_FOR in repr(t):
637 break
638 time.sleep(0.01)
639 self.assertIn(LOOKING_FOR, repr(t)) # we waited at least 5 seconds
Victor Stinnerb8c7be22017-09-14 13:05:21 -0700640 t.join()
Christian Heimes1af737c2008-01-23 08:24:23 +0000641
Tim Peters7634e1c2013-10-08 20:55:51 -0500642 def test_BoundedSemaphore_limit(self):
Tim Peters3d1b7a02013-10-08 21:29:27 -0500643 # BoundedSemaphore should raise ValueError if released too often.
644 for limit in range(1, 10):
645 bs = threading.BoundedSemaphore(limit)
646 threads = [threading.Thread(target=bs.acquire)
647 for _ in range(limit)]
648 for t in threads:
649 t.start()
650 for t in threads:
651 t.join()
652 threads = [threading.Thread(target=bs.release)
653 for _ in range(limit)]
654 for t in threads:
655 t.start()
656 for t in threads:
657 t.join()
658 self.assertRaises(ValueError, bs.release)
Tim Peters7634e1c2013-10-08 20:55:51 -0500659
Serhiy Storchakaf28ba362014-02-07 10:10:55 +0200660 @cpython_only
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100661 def test_frame_tstate_tracing(self):
662 # Issue #14432: Crash when a generator is created in a C thread that is
663 # destroyed while the generator is still used. The issue was that a
664 # generator contains a frame, and the frame kept a reference to the
665 # Python state of the destroyed C thread. The crash occurs when a trace
666 # function is setup.
667
668 def noop_trace(frame, event, arg):
669 # no operation
670 return noop_trace
671
672 def generator():
673 while 1:
Berker Peksag4882cac2015-04-14 09:30:01 +0300674 yield "generator"
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100675
676 def callback():
677 if callback.gen is None:
678 callback.gen = generator()
679 return next(callback.gen)
680 callback.gen = None
681
682 old_trace = sys.gettrace()
683 sys.settrace(noop_trace)
684 try:
685 # Install a trace function
686 threading.settrace(noop_trace)
687
688 # Create a generator in a C thread which exits after the call
Serhiy Storchakaf28ba362014-02-07 10:10:55 +0200689 import _testcapi
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100690 _testcapi.call_in_temporary_c_thread(callback)
691
692 # Call the generator in a different Python thread, check that the
693 # generator didn't keep a reference to the destroyed thread state
694 for test in range(3):
695 # The trace function is still called here
696 callback()
697 finally:
698 sys.settrace(old_trace)
699
Victor Stinner45956b92013-11-12 16:37:55 +0100700
Antoine Pitroub0e9bd42009-10-27 20:05:26 +0000701class ThreadJoinOnShutdown(BaseTestCase):
Jesse Nollera8513972008-07-17 16:49:17 +0000702
703 def _run_and_join(self, script):
704 script = """if 1:
705 import sys, os, time, threading
706
707 # a thread, which waits for the main program to terminate
708 def joiningfunc(mainthread):
709 mainthread.join()
710 print('end of thread')
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000711 # stdout is fully buffered because not a tty, we have to flush
712 # before exit.
713 sys.stdout.flush()
Jesse Nollera8513972008-07-17 16:49:17 +0000714 \n""" + script
715
Antoine Pitrouc4d78642011-05-05 20:17:32 +0200716 rc, out, err = assert_python_ok("-c", script)
717 data = out.decode().replace('\r', '')
Benjamin Petersonad703dc2008-07-17 17:02:57 +0000718 self.assertEqual(data, "end of main\nend of thread\n")
Jesse Nollera8513972008-07-17 16:49:17 +0000719
720 def test_1_join_on_shutdown(self):
721 # The usual case: on exit, wait for a non-daemon thread
722 script = """if 1:
723 import os
724 t = threading.Thread(target=joiningfunc,
725 args=(threading.current_thread(),))
726 t.start()
727 time.sleep(0.1)
728 print('end of main')
729 """
730 self._run_and_join(script)
731
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000732 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
Victor Stinner26d31862011-07-01 14:26:24 +0200733 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Jesse Nollera8513972008-07-17 16:49:17 +0000734 def test_2_join_in_forked_process(self):
735 # Like the test above, but from a forked interpreter
Jesse Nollera8513972008-07-17 16:49:17 +0000736 script = """if 1:
737 childpid = os.fork()
738 if childpid != 0:
739 os.waitpid(childpid, 0)
740 sys.exit(0)
741
742 t = threading.Thread(target=joiningfunc,
743 args=(threading.current_thread(),))
744 t.start()
745 print('end of main')
746 """
747 self._run_and_join(script)
748
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000749 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
Victor Stinner26d31862011-07-01 14:26:24 +0200750 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000751 def test_3_join_in_forked_from_thread(self):
Jesse Nollera8513972008-07-17 16:49:17 +0000752 # Like the test above, but fork() was called from a worker thread
753 # In the forked process, the main Thread object must be marked as stopped.
Alexandre Vassalotti93f2cd22009-07-22 04:54:52 +0000754
Jesse Nollera8513972008-07-17 16:49:17 +0000755 script = """if 1:
756 main_thread = threading.current_thread()
757 def worker():
758 childpid = os.fork()
759 if childpid != 0:
760 os.waitpid(childpid, 0)
761 sys.exit(0)
762
763 t = threading.Thread(target=joiningfunc,
764 args=(main_thread,))
765 print('end of main')
766 t.start()
767 t.join() # Should not block: main_thread is already stopped
768
769 w = threading.Thread(target=worker)
770 w.start()
771 """
772 self._run_and_join(script)
773
Victor Stinner26d31862011-07-01 14:26:24 +0200774 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Tim Petersc363a232013-09-08 18:44:40 -0500775 def test_4_daemon_threads(self):
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200776 # Check that a daemon thread cannot crash the interpreter on shutdown
777 # by manipulating internal structures that are being disposed of in
778 # the main thread.
779 script = """if True:
780 import os
781 import random
782 import sys
783 import time
784 import threading
785
786 thread_has_run = set()
787
788 def random_io():
789 '''Loop for a while sleeping random tiny amounts and doing some I/O.'''
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200790 while True:
Serhiy Storchaka5b10b982019-03-05 10:06:26 +0200791 with open(os.__file__, 'rb') as in_f:
792 stuff = in_f.read(200)
793 with open(os.devnull, 'wb') as null_f:
794 null_f.write(stuff)
795 time.sleep(random.random() / 1995)
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200796 thread_has_run.add(threading.current_thread())
797
798 def main():
799 count = 0
800 for _ in range(40):
801 new_thread = threading.Thread(target=random_io)
802 new_thread.daemon = True
803 new_thread.start()
804 count += 1
805 while len(thread_has_run) < count:
806 time.sleep(0.001)
807 # Trigger process shutdown
808 sys.exit(0)
809
810 main()
811 """
812 rc, out, err = assert_python_ok('-c', script)
813 self.assertFalse(err)
814
Charles-François Natali6d0d24e2012-02-02 20:31:42 +0100815 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
Charles-François Natalib2c9e9a2012-02-08 21:29:11 +0100816 @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
Charles-François Natali6d0d24e2012-02-02 20:31:42 +0100817 def test_reinit_tls_after_fork(self):
818 # Issue #13817: fork() would deadlock in a multithreaded program with
819 # the ad-hoc TLS implementation.
820
821 def do_fork_and_wait():
822 # just fork a child process and wait it
823 pid = os.fork()
824 if pid > 0:
825 os.waitpid(pid, 0)
826 else:
827 os._exit(0)
828
829 # start a bunch of threads that will fork() child processes
830 threads = []
831 for i in range(16):
832 t = threading.Thread(target=do_fork_and_wait)
833 threads.append(t)
834 t.start()
835
836 for t in threads:
837 t.join()
838
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200839 @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()")
840 def test_clear_threads_states_after_fork(self):
841 # Issue #17094: check that threads states are cleared after fork()
842
843 # start a bunch of threads
844 threads = []
845 for i in range(16):
846 t = threading.Thread(target=lambda : time.sleep(0.3))
847 threads.append(t)
848 t.start()
849
850 pid = os.fork()
851 if pid == 0:
852 # check that threads states have been cleared
853 if len(sys._current_frames()) == 1:
854 os._exit(0)
855 else:
856 os._exit(1)
857 else:
858 _, status = os.waitpid(pid, 0)
859 self.assertEqual(0, status)
860
861 for t in threads:
862 t.join()
863
Jesse Nollera8513972008-07-17 16:49:17 +0000864
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200865class SubinterpThreadingTests(BaseTestCase):
866
867 def test_threads_join(self):
868 # Non-daemon threads should be joined at subinterpreter shutdown
869 # (issue #18808)
870 r, w = os.pipe()
871 self.addCleanup(os.close, r)
872 self.addCleanup(os.close, w)
873 code = r"""if 1:
874 import os
875 import threading
876 import time
877
878 def f():
879 # Sleep a bit so that the thread is still running when
880 # Py_EndInterpreter is called.
881 time.sleep(0.05)
882 os.write(%d, b"x")
883 threading.Thread(target=f).start()
884 """ % (w,)
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100885 ret = test.support.run_in_subinterp(code)
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200886 self.assertEqual(ret, 0)
887 # The thread was joined properly.
888 self.assertEqual(os.read(r, 1), b"x")
889
Antoine Pitrou7b476992013-09-07 23:38:37 +0200890 def test_threads_join_2(self):
891 # Same as above, but a delay gets introduced after the thread's
892 # Python code returned but before the thread state is deleted.
893 # To achieve this, we register a thread-local object which sleeps
894 # a bit when deallocated.
895 r, w = os.pipe()
896 self.addCleanup(os.close, r)
897 self.addCleanup(os.close, w)
898 code = r"""if 1:
899 import os
900 import threading
901 import time
902
903 class Sleeper:
904 def __del__(self):
905 time.sleep(0.05)
906
907 tls = threading.local()
908
909 def f():
910 # Sleep a bit so that the thread is still running when
911 # Py_EndInterpreter is called.
912 time.sleep(0.05)
913 tls.x = Sleeper()
914 os.write(%d, b"x")
915 threading.Thread(target=f).start()
916 """ % (w,)
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100917 ret = test.support.run_in_subinterp(code)
Antoine Pitrou7b476992013-09-07 23:38:37 +0200918 self.assertEqual(ret, 0)
919 # The thread was joined properly.
920 self.assertEqual(os.read(r, 1), b"x")
921
Serhiy Storchaka5cfc79d2014-02-07 10:06:39 +0200922 @cpython_only
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200923 def test_daemon_threads_fatal_error(self):
924 subinterp_code = r"""if 1:
925 import os
926 import threading
927 import time
928
929 def f():
930 # Make sure the daemon thread is still running when
931 # Py_EndInterpreter is called.
932 time.sleep(10)
933 threading.Thread(target=f, daemon=True).start()
934 """
935 script = r"""if 1:
936 import _testcapi
937
938 _testcapi.run_in_subinterp(%r)
939 """ % (subinterp_code,)
Antoine Pitrou77e904e2013-10-08 23:04:32 +0200940 with test.support.SuppressCrashReport():
941 rc, out, err = assert_python_failure("-c", script)
Antoine Pitrou7eaf3f72013-08-25 19:48:18 +0200942 self.assertIn("Fatal Python error: Py_EndInterpreter: "
943 "not the last thread", err.decode())
944
945
Antoine Pitroub0e9bd42009-10-27 20:05:26 +0000946class ThreadingExceptionTests(BaseTestCase):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000947 # A RuntimeError should be raised if Thread.start() is called
948 # multiple times.
949 def test_start_thread_again(self):
950 thread = threading.Thread()
951 thread.start()
952 self.assertRaises(RuntimeError, thread.start)
Victor Stinnerb8c7be22017-09-14 13:05:21 -0700953 thread.join()
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000954
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000955 def test_joining_current_thread(self):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000956 current_thread = threading.current_thread()
957 self.assertRaises(RuntimeError, current_thread.join);
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000958
959 def test_joining_inactive_thread(self):
960 thread = threading.Thread()
961 self.assertRaises(RuntimeError, thread.join)
962
963 def test_daemonize_active_thread(self):
964 thread = threading.Thread()
965 thread.start()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000966 self.assertRaises(RuntimeError, setattr, thread, "daemon", True)
Victor Stinnerb8c7be22017-09-14 13:05:21 -0700967 thread.join()
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000968
Antoine Pitroufcf81fd2011-02-28 22:03:34 +0000969 def test_releasing_unacquired_lock(self):
970 lock = threading.Lock()
971 self.assertRaises(RuntimeError, lock.release)
972
Benjamin Petersond541d3f2012-10-13 11:46:44 -0400973 @unittest.skipUnless(sys.platform == 'darwin' and test.support.python_is_optimized(),
974 'test macosx problem')
Ned Deily9a7c5242011-05-28 00:19:56 -0700975 def test_recursion_limit(self):
976 # Issue 9670
977 # test that excessive recursion within a non-main thread causes
978 # an exception rather than crashing the interpreter on platforms
979 # like Mac OS X or FreeBSD which have small default stack sizes
980 # for threads
981 script = """if True:
982 import threading
983
984 def recurse():
985 return recurse()
986
987 def outer():
988 try:
989 recurse()
Yury Selivanovf488fb42015-07-03 01:04:23 -0400990 except RecursionError:
Ned Deily9a7c5242011-05-28 00:19:56 -0700991 pass
992
993 w = threading.Thread(target=outer)
994 w.start()
995 w.join()
996 print('end of main thread')
997 """
998 expected_output = "end of main thread\n"
999 p = subprocess.Popen([sys.executable, "-c", script],
Antoine Pitroub8b6a682012-06-29 19:40:35 +02001000 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Ned Deily9a7c5242011-05-28 00:19:56 -07001001 stdout, stderr = p.communicate()
1002 data = stdout.decode().replace('\r', '')
Antoine Pitroub8b6a682012-06-29 19:40:35 +02001003 self.assertEqual(p.returncode, 0, "Unexpected error: " + stderr.decode())
Ned Deily9a7c5242011-05-28 00:19:56 -07001004 self.assertEqual(data, expected_output)
Guido van Rossumcd16bf62007-06-13 18:07:49 +00001005
Serhiy Storchaka52005c22014-09-21 22:08:13 +03001006 def test_print_exception(self):
1007 script = r"""if True:
1008 import threading
1009 import time
1010
1011 running = False
1012 def run():
1013 global running
1014 running = True
1015 while running:
1016 time.sleep(0.01)
1017 1/0
1018 t = threading.Thread(target=run)
1019 t.start()
1020 while not running:
1021 time.sleep(0.01)
1022 running = False
1023 t.join()
1024 """
1025 rc, out, err = assert_python_ok("-c", script)
1026 self.assertEqual(out, b'')
1027 err = err.decode()
1028 self.assertIn("Exception in thread", err)
1029 self.assertIn("Traceback (most recent call last):", err)
1030 self.assertIn("ZeroDivisionError", err)
1031 self.assertNotIn("Unhandled exception", err)
1032
Serhiy Storchakaa7930372016-07-03 22:27:26 +03001033 @requires_type_collecting
Serhiy Storchaka52005c22014-09-21 22:08:13 +03001034 def test_print_exception_stderr_is_none_1(self):
1035 script = r"""if True:
1036 import sys
1037 import threading
1038 import time
1039
1040 running = False
1041 def run():
1042 global running
1043 running = True
1044 while running:
1045 time.sleep(0.01)
1046 1/0
1047 t = threading.Thread(target=run)
1048 t.start()
1049 while not running:
1050 time.sleep(0.01)
1051 sys.stderr = None
1052 running = False
1053 t.join()
1054 """
1055 rc, out, err = assert_python_ok("-c", script)
1056 self.assertEqual(out, b'')
1057 err = err.decode()
1058 self.assertIn("Exception in thread", err)
1059 self.assertIn("Traceback (most recent call last):", err)
1060 self.assertIn("ZeroDivisionError", err)
1061 self.assertNotIn("Unhandled exception", err)
1062
1063 def test_print_exception_stderr_is_none_2(self):
1064 script = r"""if True:
1065 import sys
1066 import threading
1067 import time
1068
1069 running = False
1070 def run():
1071 global running
1072 running = True
1073 while running:
1074 time.sleep(0.01)
1075 1/0
1076 sys.stderr = None
1077 t = threading.Thread(target=run)
1078 t.start()
1079 while not running:
1080 time.sleep(0.01)
1081 running = False
1082 t.join()
1083 """
1084 rc, out, err = assert_python_ok("-c", script)
1085 self.assertEqual(out, b'')
1086 self.assertNotIn("Unhandled exception", err.decode())
1087
Victor Stinnereec93312016-08-18 18:13:10 +02001088 def test_bare_raise_in_brand_new_thread(self):
1089 def bare_raise():
1090 raise
1091
1092 class Issue27558(threading.Thread):
1093 exc = None
1094
1095 def run(self):
1096 try:
1097 bare_raise()
1098 except Exception as exc:
1099 self.exc = exc
1100
1101 thread = Issue27558()
1102 thread.start()
1103 thread.join()
1104 self.assertIsNotNone(thread.exc)
1105 self.assertIsInstance(thread.exc, RuntimeError)
Victor Stinner3d284c02017-08-19 01:54:42 +02001106 # explicitly break the reference cycle to not leak a dangling thread
1107 thread.exc = None
Serhiy Storchaka52005c22014-09-21 22:08:13 +03001108
R David Murray19aeb432013-03-30 17:19:38 -04001109class TimerTests(BaseTestCase):
1110
1111 def setUp(self):
1112 BaseTestCase.setUp(self)
1113 self.callback_args = []
1114 self.callback_event = threading.Event()
1115
1116 def test_init_immutable_default_args(self):
1117 # Issue 17435: constructor defaults were mutable objects, they could be
1118 # mutated via the object attributes and affect other Timer objects.
1119 timer1 = threading.Timer(0.01, self._callback_spy)
1120 timer1.start()
1121 self.callback_event.wait()
1122 timer1.args.append("blah")
1123 timer1.kwargs["foo"] = "bar"
1124 self.callback_event.clear()
1125 timer2 = threading.Timer(0.01, self._callback_spy)
1126 timer2.start()
1127 self.callback_event.wait()
1128 self.assertEqual(len(self.callback_args), 2)
1129 self.assertEqual(self.callback_args, [((), {}), ((), {})])
Victor Stinnerda3e5cf2017-09-15 05:37:42 -07001130 timer1.join()
1131 timer2.join()
R David Murray19aeb432013-03-30 17:19:38 -04001132
1133 def _callback_spy(self, *args, **kwargs):
1134 self.callback_args.append((args[:], kwargs.copy()))
1135 self.callback_event.set()
1136
Antoine Pitrou557934f2009-11-06 22:41:14 +00001137class LockTests(lock_tests.LockTests):
1138 locktype = staticmethod(threading.Lock)
1139
Antoine Pitrou434736a2009-11-10 18:46:01 +00001140class PyRLockTests(lock_tests.RLockTests):
1141 locktype = staticmethod(threading._PyRLock)
1142
Charles-François Natali6b671b22012-01-28 11:36:04 +01001143@unittest.skipIf(threading._CRLock is None, 'RLock not implemented in C')
Antoine Pitrou434736a2009-11-10 18:46:01 +00001144class CRLockTests(lock_tests.RLockTests):
1145 locktype = staticmethod(threading._CRLock)
Antoine Pitrou557934f2009-11-06 22:41:14 +00001146
1147class EventTests(lock_tests.EventTests):
1148 eventtype = staticmethod(threading.Event)
1149
1150class ConditionAsRLockTests(lock_tests.RLockTests):
Serhiy Storchaka6a7b3a72016-04-17 08:32:47 +03001151 # Condition uses an RLock by default and exports its API.
Antoine Pitrou557934f2009-11-06 22:41:14 +00001152 locktype = staticmethod(threading.Condition)
1153
1154class ConditionTests(lock_tests.ConditionTests):
1155 condtype = staticmethod(threading.Condition)
1156
1157class SemaphoreTests(lock_tests.SemaphoreTests):
1158 semtype = staticmethod(threading.Semaphore)
1159
1160class BoundedSemaphoreTests(lock_tests.BoundedSemaphoreTests):
1161 semtype = staticmethod(threading.BoundedSemaphore)
1162
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +00001163class BarrierTests(lock_tests.BarrierTests):
1164 barriertype = staticmethod(threading.Barrier)
Antoine Pitrou557934f2009-11-06 22:41:14 +00001165
Martin Panter19e69c52015-11-14 12:46:42 +00001166class MiscTestCase(unittest.TestCase):
1167 def test__all__(self):
1168 extra = {"ThreadError"}
1169 blacklist = {'currentThread', 'activeCount'}
1170 support.check__all__(self, threading, ('threading', '_thread'),
1171 extra=extra, blacklist=blacklist)
1172
Tim Peters84d54892005-01-08 06:03:17 +00001173if __name__ == "__main__":
R David Murray19aeb432013-03-30 17:19:38 -04001174 unittest.main()