Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 1 | # Very rudimentary test of threading module |
| 2 | |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 3 | import test.test_support |
Barry Warsaw | 04f357c | 2002-07-23 19:04:11 +0000 | [diff] [blame] | 4 | from test.test_support import verbose |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 5 | import random |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 6 | import sys |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 7 | import threading |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 8 | import thread |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 9 | import time |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 10 | import unittest |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 11 | |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 12 | # A trivial mutable counter. |
| 13 | class Counter(object): |
| 14 | def __init__(self): |
| 15 | self.value = 0 |
| 16 | def inc(self): |
| 17 | self.value += 1 |
| 18 | def dec(self): |
| 19 | self.value -= 1 |
| 20 | def get(self): |
| 21 | return self.value |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 22 | |
| 23 | class TestThread(threading.Thread): |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 24 | def __init__(self, name, testcase, sema, mutex, nrunning): |
| 25 | threading.Thread.__init__(self, name=name) |
| 26 | self.testcase = testcase |
| 27 | self.sema = sema |
| 28 | self.mutex = mutex |
| 29 | self.nrunning = nrunning |
| 30 | |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 31 | def run(self): |
Tim Peters | 02035bc | 2001-08-20 21:45:19 +0000 | [diff] [blame] | 32 | delay = random.random() * 2 |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 33 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 34 | print('task', self.getName(), 'will run for', delay, 'sec') |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 35 | |
| 36 | self.sema.acquire() |
| 37 | |
| 38 | self.mutex.acquire() |
| 39 | self.nrunning.inc() |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 40 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 41 | print(self.nrunning.get(), 'tasks are running') |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 42 | self.testcase.assert_(self.nrunning.get() <= 3) |
| 43 | self.mutex.release() |
| 44 | |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 45 | time.sleep(delay) |
| 46 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 47 | print('task', self.getName(), 'done') |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 48 | |
| 49 | self.mutex.acquire() |
| 50 | self.nrunning.dec() |
| 51 | self.testcase.assert_(self.nrunning.get() >= 0) |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 52 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 53 | print(self.getName(), 'is finished.', self.nrunning.get(), \ |
| 54 | 'tasks are running') |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 55 | self.mutex.release() |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 56 | |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 57 | self.sema.release() |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 58 | |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 59 | class ThreadTests(unittest.TestCase): |
Skip Montanaro | 4533f60 | 2001-08-20 20:28:48 +0000 | [diff] [blame] | 60 | |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 61 | # Create a bunch of threads, let each do some work, wait until all are |
| 62 | # done. |
| 63 | def test_various_ops(self): |
| 64 | # This takes about n/3 seconds to run (about n/3 clumps of tasks, |
| 65 | # times about 1 second per clump). |
| 66 | NUMTASKS = 10 |
| 67 | |
| 68 | # no more than 3 of the 10 can run at once |
| 69 | sema = threading.BoundedSemaphore(value=3) |
| 70 | mutex = threading.RLock() |
| 71 | numrunning = Counter() |
| 72 | |
| 73 | threads = [] |
| 74 | |
| 75 | for i in range(NUMTASKS): |
| 76 | t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning) |
| 77 | threads.append(t) |
| 78 | t.start() |
| 79 | |
| 80 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 81 | print('waiting for all tasks to complete') |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 82 | for t in threads: |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 83 | t.join(NUMTASKS) |
| 84 | self.assert_(not t.isAlive()) |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 85 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 86 | print('all tasks done') |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 87 | self.assertEqual(numrunning.get(), 0) |
| 88 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 89 | # run with a small(ish) thread stack size (256kB) |
| 90 | def test_various_ops_small_stack(self): |
| 91 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 92 | print('with 256kB thread stack size...') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 93 | try: |
| 94 | threading.stack_size(262144) |
| 95 | except thread.error: |
| 96 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 97 | print('platform does not support changing thread stack size') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 98 | return |
| 99 | self.test_various_ops() |
| 100 | threading.stack_size(0) |
| 101 | |
| 102 | # run with a large thread stack size (1MB) |
| 103 | def test_various_ops_large_stack(self): |
| 104 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 105 | print('with 1MB thread stack size...') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 106 | try: |
| 107 | threading.stack_size(0x100000) |
| 108 | except thread.error: |
| 109 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 110 | print('platform does not support changing thread stack size') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 111 | return |
| 112 | self.test_various_ops() |
| 113 | threading.stack_size(0) |
| 114 | |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 115 | def test_foreign_thread(self): |
| 116 | # Check that a "foreign" thread can use the threading module. |
| 117 | def f(mutex): |
| 118 | # Acquiring an RLock forces an entry for the foreign |
| 119 | # thread to get made in the threading._active map. |
| 120 | r = threading.RLock() |
| 121 | r.acquire() |
| 122 | r.release() |
| 123 | mutex.release() |
| 124 | |
| 125 | mutex = threading.Lock() |
| 126 | mutex.acquire() |
| 127 | tid = thread.start_new_thread(f, (mutex,)) |
| 128 | # Wait for the thread to finish. |
| 129 | mutex.acquire() |
| 130 | self.assert_(tid in threading._active) |
| 131 | self.assert_(isinstance(threading._active[tid], |
| 132 | threading._DummyThread)) |
| 133 | del threading._active[tid] |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 134 | |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 135 | # PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently) |
| 136 | # exposed at the Python level. This test relies on ctypes to get at it. |
| 137 | def test_PyThreadState_SetAsyncExc(self): |
| 138 | try: |
| 139 | import ctypes |
| 140 | except ImportError: |
| 141 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 142 | print("test_PyThreadState_SetAsyncExc can't import ctypes") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 143 | return # can't do anything |
| 144 | |
| 145 | set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc |
| 146 | |
| 147 | class AsyncExc(Exception): |
| 148 | pass |
| 149 | |
| 150 | exception = ctypes.py_object(AsyncExc) |
| 151 | |
| 152 | # `worker_started` is set by the thread when it's inside a try/except |
| 153 | # block waiting to catch the asynchronously set AsyncExc exception. |
| 154 | # `worker_saw_exception` is set by the thread upon catching that |
| 155 | # exception. |
| 156 | worker_started = threading.Event() |
| 157 | worker_saw_exception = threading.Event() |
| 158 | |
| 159 | class Worker(threading.Thread): |
| 160 | def run(self): |
| 161 | self.id = thread.get_ident() |
| 162 | self.finished = False |
| 163 | |
| 164 | try: |
| 165 | while True: |
| 166 | worker_started.set() |
| 167 | time.sleep(0.1) |
| 168 | except AsyncExc: |
| 169 | self.finished = True |
| 170 | worker_saw_exception.set() |
| 171 | |
| 172 | t = Worker() |
| 173 | t.setDaemon(True) # so if this fails, we don't hang Python at shutdown |
| 174 | t.start() |
| 175 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 176 | print(" started worker thread") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 177 | |
| 178 | # Try a thread id that doesn't make sense. |
| 179 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 180 | print(" trying nonsensical thread id") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 181 | result = set_async_exc(ctypes.c_long(-1), exception) |
| 182 | self.assertEqual(result, 0) # no thread states modified |
| 183 | |
| 184 | # Now raise an exception in the worker thread. |
| 185 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 186 | print(" waiting for worker thread to get started") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 187 | worker_started.wait() |
| 188 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 189 | print(" verifying worker hasn't exited") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 190 | self.assert_(not t.finished) |
| 191 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 192 | print(" attempting to raise asynch exception in worker") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 193 | result = set_async_exc(ctypes.c_long(t.id), exception) |
| 194 | self.assertEqual(result, 1) # one thread state modified |
| 195 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 196 | print(" waiting for worker to say it caught the exception") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 197 | worker_saw_exception.wait(timeout=10) |
| 198 | self.assert_(t.finished) |
| 199 | if verbose: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 200 | print(" all OK -- joining worker") |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 201 | if t.finished: |
| 202 | t.join() |
| 203 | # else the thread is still running, and we have no way to kill it |
| 204 | |
Christian Heimes | 7d2ff88 | 2007-11-30 14:35:04 +0000 | [diff] [blame] | 205 | def test_finalize_runnning_thread(self): |
| 206 | # Issue 1402: the PyGILState_Ensure / _Release functions may be called |
| 207 | # very late on python exit: on deallocation of a running thread for |
| 208 | # example. |
| 209 | try: |
| 210 | import ctypes |
| 211 | except ImportError: |
| 212 | if verbose: |
| 213 | print("test_finalize_with_runnning_thread can't import ctypes") |
| 214 | return # can't do anything |
| 215 | |
| 216 | import subprocess |
| 217 | rc = subprocess.call([sys.executable, "-c", """if 1: |
| 218 | import ctypes, sys, time, thread |
| 219 | |
| 220 | # Module globals are cleared before __del__ is run |
| 221 | # So we save the functions in class dict |
| 222 | class C: |
| 223 | ensure = ctypes.pythonapi.PyGILState_Ensure |
| 224 | release = ctypes.pythonapi.PyGILState_Release |
| 225 | def __del__(self): |
| 226 | state = self.ensure() |
| 227 | self.release(state) |
| 228 | |
| 229 | def waitingThread(): |
| 230 | x = C() |
| 231 | time.sleep(100) |
| 232 | |
| 233 | thread.start_new_thread(waitingThread, ()) |
| 234 | time.sleep(1) # be sure the other thread is waiting |
| 235 | sys.exit(42) |
| 236 | """]) |
| 237 | self.assertEqual(rc, 42) |
| 238 | |
Christian Heimes | 1af737c | 2008-01-23 08:24:23 +0000 | [diff] [blame] | 239 | def test_enumerate_after_join(self): |
| 240 | # Try hard to trigger #1703448: a thread is still returned in |
| 241 | # threading.enumerate() after it has been join()ed. |
| 242 | enum = threading.enumerate |
| 243 | old_interval = sys.getcheckinterval() |
| 244 | sys.setcheckinterval(1) |
| 245 | try: |
| 246 | for i in range(1, 1000): |
| 247 | t = threading.Thread(target=lambda: None) |
| 248 | t.start() |
| 249 | t.join() |
| 250 | l = enum() |
| 251 | self.assertFalse(t in l, |
| 252 | "#1703448 triggered after %d trials: %s" % (i, l)) |
| 253 | finally: |
| 254 | sys.setcheckinterval(old_interval) |
| 255 | |
| 256 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 257 | class ThreadingExceptionTests(unittest.TestCase): |
| 258 | # A RuntimeError should be raised if Thread.start() is called |
| 259 | # multiple times. |
| 260 | def test_start_thread_again(self): |
| 261 | thread = threading.Thread() |
| 262 | thread.start() |
| 263 | self.assertRaises(RuntimeError, thread.start) |
| 264 | |
| 265 | def test_releasing_unacquired_rlock(self): |
| 266 | rlock = threading.RLock() |
| 267 | self.assertRaises(RuntimeError, rlock.release) |
| 268 | |
| 269 | def test_waiting_on_unacquired_condition(self): |
| 270 | cond = threading.Condition() |
| 271 | self.assertRaises(RuntimeError, cond.wait) |
| 272 | |
| 273 | def test_notify_on_unacquired_condition(self): |
| 274 | cond = threading.Condition() |
| 275 | self.assertRaises(RuntimeError, cond.notify) |
| 276 | |
| 277 | def test_semaphore_with_negative_value(self): |
| 278 | self.assertRaises(ValueError, threading.Semaphore, value = -1) |
Christian Heimes | a37d4c6 | 2007-12-04 23:02:19 +0000 | [diff] [blame] | 279 | self.assertRaises(ValueError, threading.Semaphore, value = -sys.maxsize) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 280 | |
| 281 | def test_joining_current_thread(self): |
| 282 | currentThread = threading.currentThread() |
| 283 | self.assertRaises(RuntimeError, currentThread.join); |
| 284 | |
| 285 | def test_joining_inactive_thread(self): |
| 286 | thread = threading.Thread() |
| 287 | self.assertRaises(RuntimeError, thread.join) |
| 288 | |
| 289 | def test_daemonize_active_thread(self): |
| 290 | thread = threading.Thread() |
| 291 | thread.start() |
| 292 | self.assertRaises(RuntimeError, thread.setDaemon, True) |
| 293 | |
| 294 | |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 295 | def test_main(): |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 296 | test.test_support.run_unittest(ThreadTests, |
| 297 | ThreadingExceptionTests) |
Tim Peters | 84d5489 | 2005-01-08 06:03:17 +0000 | [diff] [blame] | 298 | |
| 299 | if __name__ == "__main__": |
| 300 | test_main() |