blob: 639e42bcc2a04940c6b0a4ac5180e214fbf3361f [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
Skip Montanaro4533f602001-08-20 20:28:48 +00005import random
Georg Brandl0c77a822008-06-10 16:37:50 +00006import re
Guido van Rossumcd16bf62007-06-13 18:07:49 +00007import sys
Skip Montanaro4533f602001-08-20 20:28:48 +00008import threading
Georg Brandl2067bfd2008-05-25 13:05:15 +00009import _thread
Skip Montanaro4533f602001-08-20 20:28:48 +000010import time
Tim Peters84d54892005-01-08 06:03:17 +000011import unittest
Christian Heimesd3eb5a152008-02-24 00:38:49 +000012import weakref
Skip Montanaro4533f602001-08-20 20:28:48 +000013
Antoine Pitrou959f3e52009-11-09 16:52:46 +000014from test import lock_tests
15
Tim Peters84d54892005-01-08 06:03:17 +000016# A trivial mutable counter.
17class Counter(object):
18 def __init__(self):
19 self.value = 0
20 def inc(self):
21 self.value += 1
22 def dec(self):
23 self.value -= 1
24 def get(self):
25 return self.value
Skip Montanaro4533f602001-08-20 20:28:48 +000026
27class TestThread(threading.Thread):
Tim Peters84d54892005-01-08 06:03:17 +000028 def __init__(self, name, testcase, sema, mutex, nrunning):
29 threading.Thread.__init__(self, name=name)
30 self.testcase = testcase
31 self.sema = sema
32 self.mutex = mutex
33 self.nrunning = nrunning
34
Skip Montanaro4533f602001-08-20 20:28:48 +000035 def run(self):
Christian Heimes4fbc72b2008-03-22 00:47:35 +000036 delay = random.random() / 10000.0
Skip Montanaro4533f602001-08-20 20:28:48 +000037 if verbose:
Jeffrey Yasskinca674122008-03-29 05:06:52 +000038 print('task %s will run for %.1f usec' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000039 (self.name, delay * 1e6))
Tim Peters84d54892005-01-08 06:03:17 +000040
Christian Heimes4fbc72b2008-03-22 00:47:35 +000041 with self.sema:
42 with self.mutex:
43 self.nrunning.inc()
44 if verbose:
45 print(self.nrunning.get(), 'tasks are running')
Georg Brandlab91fde2009-08-13 08:51:18 +000046 self.testcase.assertTrue(self.nrunning.get() <= 3)
Tim Peters84d54892005-01-08 06:03:17 +000047
Christian Heimes4fbc72b2008-03-22 00:47:35 +000048 time.sleep(delay)
49 if verbose:
Benjamin Petersonfdbea962008-08-18 17:33:47 +000050 print('task', self.name, 'done')
Benjamin Peterson672b8032008-06-11 19:14:14 +000051
Christian Heimes4fbc72b2008-03-22 00:47:35 +000052 with self.mutex:
53 self.nrunning.dec()
Georg Brandlab91fde2009-08-13 08:51:18 +000054 self.testcase.assertTrue(self.nrunning.get() >= 0)
Christian Heimes4fbc72b2008-03-22 00:47:35 +000055 if verbose:
56 print('%s is finished. %d tasks are running' %
Benjamin Petersonfdbea962008-08-18 17:33:47 +000057 (self.name, self.nrunning.get()))
Benjamin Peterson672b8032008-06-11 19:14:14 +000058
Skip Montanaro4533f602001-08-20 20:28:48 +000059
Tim Peters84d54892005-01-08 06:03:17 +000060class ThreadTests(unittest.TestCase):
Skip Montanaro4533f602001-08-20 20:28:48 +000061
Tim Peters84d54892005-01-08 06:03:17 +000062 # Create a bunch of threads, let each do some work, wait until all are
63 # done.
64 def test_various_ops(self):
65 # This takes about n/3 seconds to run (about n/3 clumps of tasks,
66 # times about 1 second per clump).
67 NUMTASKS = 10
68
69 # no more than 3 of the 10 can run at once
70 sema = threading.BoundedSemaphore(value=3)
71 mutex = threading.RLock()
72 numrunning = Counter()
73
74 threads = []
75
76 for i in range(NUMTASKS):
77 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning)
78 threads.append(t)
Georg Brandlab91fde2009-08-13 08:51:18 +000079 self.assertEqual(t.ident, None)
80 self.assertTrue(re.match('<TestThread\(.*, initial\)>', repr(t)))
Tim Peters84d54892005-01-08 06:03:17 +000081 t.start()
82
83 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +000084 print('waiting for all tasks to complete')
Tim Peters84d54892005-01-08 06:03:17 +000085 for t in threads:
Tim Peters711906e2005-01-08 07:30:42 +000086 t.join(NUMTASKS)
Georg Brandlab91fde2009-08-13 08:51:18 +000087 self.assertTrue(not t.is_alive())
88 self.assertNotEqual(t.ident, 0)
Benjamin Petersond23f8222009-04-05 19:13:16 +000089 self.assertFalse(t.ident is None)
Georg Brandlab91fde2009-08-13 08:51:18 +000090 self.assertTrue(re.match('<TestThread\(.*, \w+ -?\d+\)>', repr(t)))
Tim Peters84d54892005-01-08 06:03:17 +000091 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +000092 print('all tasks done')
Tim Peters84d54892005-01-08 06:03:17 +000093 self.assertEqual(numrunning.get(), 0)
94
Benjamin Petersond23f8222009-04-05 19:13:16 +000095 def test_ident_of_no_threading_threads(self):
96 # The ident still must work for the main thread and dummy threads.
97 self.assertFalse(threading.currentThread().ident is None)
98 def f():
99 ident.append(threading.currentThread().ident)
100 done.set()
101 done = threading.Event()
102 ident = []
103 _thread.start_new_thread(f, ())
104 done.wait()
105 self.assertFalse(ident[0] is None)
Antoine Pitroudebfafd2009-11-08 00:36:36 +0000106 # Kill the "immortal" _DummyThread
107 del threading._active[ident[0]]
Benjamin Petersond23f8222009-04-05 19:13:16 +0000108
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000109 # run with a small(ish) thread stack size (256kB)
110 def test_various_ops_small_stack(self):
111 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000112 print('with 256kB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000113 try:
114 threading.stack_size(262144)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000115 except _thread.error:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000116 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000117 print('platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000118 return
119 self.test_various_ops()
120 threading.stack_size(0)
121
122 # run with a large thread stack size (1MB)
123 def test_various_ops_large_stack(self):
124 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000125 print('with 1MB thread stack size...')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000126 try:
127 threading.stack_size(0x100000)
Georg Brandl2067bfd2008-05-25 13:05:15 +0000128 except _thread.error:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000129 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000130 print('platform does not support changing thread stack size')
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000131 return
132 self.test_various_ops()
133 threading.stack_size(0)
134
Tim Peters711906e2005-01-08 07:30:42 +0000135 def test_foreign_thread(self):
136 # Check that a "foreign" thread can use the threading module.
137 def f(mutex):
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000138 # Calling current_thread() forces an entry for the foreign
Tim Peters711906e2005-01-08 07:30:42 +0000139 # thread to get made in the threading._active map.
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000140 threading.current_thread()
Tim Peters711906e2005-01-08 07:30:42 +0000141 mutex.release()
142
143 mutex = threading.Lock()
144 mutex.acquire()
Georg Brandl2067bfd2008-05-25 13:05:15 +0000145 tid = _thread.start_new_thread(f, (mutex,))
Tim Peters711906e2005-01-08 07:30:42 +0000146 # Wait for the thread to finish.
147 mutex.acquire()
Georg Brandlab91fde2009-08-13 08:51:18 +0000148 self.assertTrue(tid in threading._active)
149 self.assertTrue(isinstance(threading._active[tid],
Tim Peters711906e2005-01-08 07:30:42 +0000150 threading._DummyThread))
151 del threading._active[tid]
Tim Peters84d54892005-01-08 06:03:17 +0000152
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000153 # PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)
154 # exposed at the Python level. This test relies on ctypes to get at it.
155 def test_PyThreadState_SetAsyncExc(self):
156 try:
157 import ctypes
158 except ImportError:
159 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000160 print("test_PyThreadState_SetAsyncExc can't import ctypes")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000161 return # can't do anything
162
163 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
164
165 class AsyncExc(Exception):
166 pass
167
168 exception = ctypes.py_object(AsyncExc)
169
170 # `worker_started` is set by the thread when it's inside a try/except
171 # block waiting to catch the asynchronously set AsyncExc exception.
172 # `worker_saw_exception` is set by the thread upon catching that
173 # exception.
174 worker_started = threading.Event()
175 worker_saw_exception = threading.Event()
176
177 class Worker(threading.Thread):
178 def run(self):
Georg Brandl2067bfd2008-05-25 13:05:15 +0000179 self.id = _thread.get_ident()
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000180 self.finished = False
181
182 try:
183 while True:
184 worker_started.set()
185 time.sleep(0.1)
186 except AsyncExc:
187 self.finished = True
188 worker_saw_exception.set()
189
190 t = Worker()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000191 t.daemon = True # so if this fails, we don't hang Python at shutdown
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000192 t.start()
193 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000194 print(" started worker thread")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000195
196 # Try a thread id that doesn't make sense.
197 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000198 print(" trying nonsensical thread id")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000199 result = set_async_exc(ctypes.c_long(-1), exception)
200 self.assertEqual(result, 0) # no thread states modified
201
202 # Now raise an exception in the worker thread.
203 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000204 print(" waiting for worker thread to get started")
Benjamin Petersond23f8222009-04-05 19:13:16 +0000205 ret = worker_started.wait()
206 self.assertTrue(ret)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000207 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000208 print(" verifying worker hasn't exited")
Georg Brandlab91fde2009-08-13 08:51:18 +0000209 self.assertTrue(not t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000210 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000211 print(" attempting to raise asynch exception in worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000212 result = set_async_exc(ctypes.c_long(t.id), exception)
213 self.assertEqual(result, 1) # one thread state modified
214 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000215 print(" waiting for worker to say it caught the exception")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000216 worker_saw_exception.wait(timeout=10)
Georg Brandlab91fde2009-08-13 08:51:18 +0000217 self.assertTrue(t.finished)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000218 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000219 print(" all OK -- joining worker")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000220 if t.finished:
221 t.join()
222 # else the thread is still running, and we have no way to kill it
223
Gregory P. Smith31d12ca2010-02-28 19:21:42 +0000224 def test_limbo_cleanup(self):
225 # Issue 7481: Failure to start thread should cleanup the limbo map.
226 def fail_new_thread(*args):
227 raise threading.ThreadError()
228 _start_new_thread = threading._start_new_thread
229 threading._start_new_thread = fail_new_thread
230 try:
231 t = threading.Thread(target=lambda: None)
232 try:
233 t.start()
234 assert False
235 except threading.ThreadError:
236 self.assertFalse(
237 t in threading._limbo,
238 "Failed to cleanup _limbo map on failure of Thread.start()."
239 )
240 finally:
241 threading._start_new_thread = _start_new_thread
242
Christian Heimes7d2ff882007-11-30 14:35:04 +0000243 def test_finalize_runnning_thread(self):
244 # Issue 1402: the PyGILState_Ensure / _Release functions may be called
245 # very late on python exit: on deallocation of a running thread for
246 # example.
247 try:
248 import ctypes
249 except ImportError:
250 if verbose:
251 print("test_finalize_with_runnning_thread can't import ctypes")
252 return # can't do anything
253
254 import subprocess
255 rc = subprocess.call([sys.executable, "-c", """if 1:
Georg Brandl2067bfd2008-05-25 13:05:15 +0000256 import ctypes, sys, time, _thread
Christian Heimes7d2ff882007-11-30 14:35:04 +0000257
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000258 # This lock is used as a simple event variable.
Georg Brandl2067bfd2008-05-25 13:05:15 +0000259 ready = _thread.allocate_lock()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000260 ready.acquire()
261
Christian Heimes7d2ff882007-11-30 14:35:04 +0000262 # Module globals are cleared before __del__ is run
263 # So we save the functions in class dict
264 class C:
265 ensure = ctypes.pythonapi.PyGILState_Ensure
266 release = ctypes.pythonapi.PyGILState_Release
267 def __del__(self):
268 state = self.ensure()
269 self.release(state)
270
271 def waitingThread():
272 x = C()
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000273 ready.release()
Christian Heimes7d2ff882007-11-30 14:35:04 +0000274 time.sleep(100)
275
Georg Brandl2067bfd2008-05-25 13:05:15 +0000276 _thread.start_new_thread(waitingThread, ())
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000277 ready.acquire() # Be sure the other thread is waiting.
Christian Heimes7d2ff882007-11-30 14:35:04 +0000278 sys.exit(42)
279 """])
280 self.assertEqual(rc, 42)
281
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000282 def test_finalize_with_trace(self):
283 # Issue1733757
284 # Avoid a deadlock when sys.settrace steps into threading._shutdown
285 import subprocess
286 rc = subprocess.call([sys.executable, "-c", """if 1:
287 import sys, threading
288
289 # A deadlock-killer, to prevent the
290 # testsuite to hang forever
291 def killer():
292 import os, time
293 time.sleep(2)
294 print('program blocked; aborting')
295 os._exit(2)
296 t = threading.Thread(target=killer)
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000297 t.daemon = True
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000298 t.start()
299
300 # This is the trace function
301 def func(frame, event, arg):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000302 threading.current_thread()
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000303 return func
304
305 sys.settrace(func)
306 """])
Georg Brandlab91fde2009-08-13 08:51:18 +0000307 self.assertFalse(rc == 2, "interpreted was blocked")
308 self.assertTrue(rc == 0, "Unexpected error")
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000309
Antoine Pitroucefb3162009-10-20 22:08:36 +0000310 def test_join_nondaemon_on_shutdown(self):
311 # Issue 1722344
312 # Raising SystemExit skipped threading._shutdown
313 import subprocess
314 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
Christian Heimesbbe741d2008-03-28 10:53:29 +0000373 self.assertEquals(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
Christian Heimesbbe741d2008-03-28 10:53:29 +0000381 self.assertEquals(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
414 import subprocess
415 p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE)
416 rc = p.wait()
Benjamin Petersonad703dc2008-07-17 17:02:57 +0000417 data = p.stdout.read().decode().replace('\r', '')
418 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.
461 if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
R. David Murray9948da02009-10-26 03:27:32 +0000462 print('Skipping test_3_join_in_forked_from_thread'
463 ' due to known OS bugs on', sys.platform, file=sys.stderr)
Benjamin Petersonbcd8ac32008-10-10 22:20:52 +0000464 return
Jesse Nollera8513972008-07-17 16:49:17 +0000465 script = """if 1:
466 main_thread = threading.current_thread()
467 def worker():
468 childpid = os.fork()
469 if childpid != 0:
470 os.waitpid(childpid, 0)
471 sys.exit(0)
472
473 t = threading.Thread(target=joiningfunc,
474 args=(main_thread,))
475 print('end of main')
476 t.start()
477 t.join() # Should not block: main_thread is already stopped
478
479 w = threading.Thread(target=worker)
480 w.start()
481 """
482 self._run_and_join(script)
483
484
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000485class ThreadingExceptionTests(unittest.TestCase):
486 # A RuntimeError should be raised if Thread.start() is called
487 # multiple times.
488 def test_start_thread_again(self):
489 thread = threading.Thread()
490 thread.start()
491 self.assertRaises(RuntimeError, thread.start)
492
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000493 def test_joining_current_thread(self):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000494 current_thread = threading.current_thread()
495 self.assertRaises(RuntimeError, current_thread.join);
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000496
497 def test_joining_inactive_thread(self):
498 thread = threading.Thread()
499 self.assertRaises(RuntimeError, thread.join)
500
501 def test_daemonize_active_thread(self):
502 thread = threading.Thread()
503 thread.start()
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000504 self.assertRaises(RuntimeError, setattr, thread, "daemon", True)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000505
506
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000507class LockTests(lock_tests.LockTests):
508 locktype = staticmethod(threading.Lock)
509
510class RLockTests(lock_tests.RLockTests):
511 locktype = staticmethod(threading.RLock)
512
513class EventTests(lock_tests.EventTests):
514 eventtype = staticmethod(threading.Event)
515
516class ConditionAsRLockTests(lock_tests.RLockTests):
517 # An Condition uses an RLock by default and exports its API.
518 locktype = staticmethod(threading.Condition)
519
520class ConditionTests(lock_tests.ConditionTests):
521 condtype = staticmethod(threading.Condition)
522
523class SemaphoreTests(lock_tests.SemaphoreTests):
524 semtype = staticmethod(threading.Semaphore)
525
526class BoundedSemaphoreTests(lock_tests.BoundedSemaphoreTests):
527 semtype = staticmethod(threading.BoundedSemaphore)
528
529
Tim Peters84d54892005-01-08 06:03:17 +0000530def test_main():
Antoine Pitrou959f3e52009-11-09 16:52:46 +0000531 test.support.run_unittest(LockTests, RLockTests, EventTests,
532 ConditionAsRLockTests, ConditionTests,
533 SemaphoreTests, BoundedSemaphoreTests,
534 ThreadTests,
535 ThreadJoinOnShutdown,
536 ThreadingExceptionTests,
537 )
Tim Peters84d54892005-01-08 06:03:17 +0000538
539if __name__ == "__main__":
540 test_main()