Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 1 | import os |
| 2 | import unittest |
Guido van Rossum | b26a1b4 | 1998-05-20 17:05:52 +0000 | [diff] [blame] | 3 | import random |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 4 | from test import support |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 5 | thread = support.import_module('_thread') |
Guido van Rossum | cc54417 | 1994-04-14 20:28:41 +0000 | [diff] [blame] | 6 | import time |
Gregory P. Smith | 24cec9f | 2010-03-01 06:18:41 +0000 | [diff] [blame] | 7 | import sys |
Antoine Pitrou | 65c9c64 | 2009-10-30 17:25:12 +0000 | [diff] [blame] | 8 | import weakref |
Guido van Rossum | cc54417 | 1994-04-14 20:28:41 +0000 | [diff] [blame] | 9 | |
Antoine Pitrou | 557934f | 2009-11-06 22:41:14 +0000 | [diff] [blame] | 10 | from test import lock_tests |
Guido van Rossum | cc54417 | 1994-04-14 20:28:41 +0000 | [diff] [blame] | 11 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 12 | NUMTASKS = 10 |
| 13 | NUMTRIPS = 3 |
Guido van Rossum | d3b6842 | 1994-05-23 12:17:36 +0000 | [diff] [blame] | 14 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 15 | _print_mutex = thread.allocate_lock() |
| 16 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 17 | def verbose_print(arg): |
| 18 | """Helper function for printing out debugging output.""" |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 19 | if support.verbose: |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 20 | with _print_mutex: |
| 21 | print(arg) |
Guido van Rossum | cc54417 | 1994-04-14 20:28:41 +0000 | [diff] [blame] | 22 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 23 | class BasicThreadTest(unittest.TestCase): |
Guido van Rossum | cc54417 | 1994-04-14 20:28:41 +0000 | [diff] [blame] | 24 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 25 | def setUp(self): |
| 26 | self.done_mutex = thread.allocate_lock() |
| 27 | self.done_mutex.acquire() |
| 28 | self.running_mutex = thread.allocate_lock() |
| 29 | self.random_mutex = thread.allocate_lock() |
Antoine Pitrou | 97115d1 | 2009-10-23 18:34:17 +0000 | [diff] [blame] | 30 | self.created = 0 |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 31 | self.running = 0 |
| 32 | self.next_ident = 0 |
Guido van Rossum | cc54417 | 1994-04-14 20:28:41 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | d3b6842 | 1994-05-23 12:17:36 +0000 | [diff] [blame] | 34 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 35 | class ThreadRunningTests(BasicThreadTest): |
| 36 | |
| 37 | def newtask(self): |
| 38 | with self.running_mutex: |
| 39 | self.next_ident += 1 |
| 40 | verbose_print("creating task %s" % self.next_ident) |
| 41 | thread.start_new_thread(self.task, (self.next_ident,)) |
Antoine Pitrou | 97115d1 | 2009-10-23 18:34:17 +0000 | [diff] [blame] | 42 | self.created += 1 |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 43 | self.running += 1 |
| 44 | |
| 45 | def task(self, ident): |
| 46 | with self.random_mutex: |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 47 | delay = random.random() / 10000.0 |
| 48 | verbose_print("task %s will run for %sus" % (ident, round(delay*1e6))) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 49 | time.sleep(delay) |
| 50 | verbose_print("task %s done" % ident) |
| 51 | with self.running_mutex: |
| 52 | self.running -= 1 |
Antoine Pitrou | 97115d1 | 2009-10-23 18:34:17 +0000 | [diff] [blame] | 53 | if self.created == NUMTASKS and self.running == 0: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 54 | self.done_mutex.release() |
| 55 | |
| 56 | def test_starting_threads(self): |
| 57 | # Basic test for thread creation. |
| 58 | for i in range(NUMTASKS): |
| 59 | self.newtask() |
| 60 | verbose_print("waiting for tasks to complete...") |
| 61 | self.done_mutex.acquire() |
| 62 | verbose_print("all tasks done") |
| 63 | |
| 64 | def test_stack_size(self): |
| 65 | # Various stack size tests. |
Florent Xicluna | 6709c0c | 2010-03-20 00:21:04 +0000 | [diff] [blame] | 66 | self.assertEqual(thread.stack_size(), 0, "initial stack size is not 0") |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 67 | |
| 68 | thread.stack_size(0) |
Florent Xicluna | 6709c0c | 2010-03-20 00:21:04 +0000 | [diff] [blame] | 69 | self.assertEqual(thread.stack_size(), 0, "stack_size not reset to default") |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 70 | |
| 71 | if os.name not in ("nt", "os2", "posix"): |
| 72 | return |
| 73 | |
| 74 | tss_supported = True |
| 75 | try: |
| 76 | thread.stack_size(4096) |
| 77 | except ValueError: |
| 78 | verbose_print("caught expected ValueError setting " |
| 79 | "stack_size(4096)") |
| 80 | except thread.error: |
| 81 | tss_supported = False |
| 82 | verbose_print("platform does not support changing thread stack " |
| 83 | "size") |
| 84 | |
| 85 | if tss_supported: |
| 86 | fail_msg = "stack_size(%d) failed - should succeed" |
| 87 | for tss in (262144, 0x100000, 0): |
| 88 | thread.stack_size(tss) |
Florent Xicluna | 6709c0c | 2010-03-20 00:21:04 +0000 | [diff] [blame] | 89 | self.assertEqual(thread.stack_size(), tss, fail_msg % tss) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 90 | verbose_print("successfully set stack_size(%d)" % tss) |
| 91 | |
| 92 | for tss in (262144, 0x100000): |
| 93 | verbose_print("trying stack_size = (%d)" % tss) |
| 94 | self.next_ident = 0 |
Antoine Pitrou | 97115d1 | 2009-10-23 18:34:17 +0000 | [diff] [blame] | 95 | self.created = 0 |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 96 | for i in range(NUMTASKS): |
| 97 | self.newtask() |
| 98 | |
| 99 | verbose_print("waiting for all tasks to complete") |
| 100 | self.done_mutex.acquire() |
| 101 | verbose_print("all tasks done") |
| 102 | |
| 103 | thread.stack_size(0) |
| 104 | |
Antoine Pitrou | 65c9c64 | 2009-10-30 17:25:12 +0000 | [diff] [blame] | 105 | def test__count(self): |
| 106 | # Test the _count() function. |
| 107 | orig = thread._count() |
| 108 | mut = thread.allocate_lock() |
| 109 | mut.acquire() |
| 110 | started = [] |
| 111 | def task(): |
| 112 | started.append(None) |
| 113 | mut.acquire() |
| 114 | mut.release() |
| 115 | thread.start_new_thread(task, ()) |
| 116 | while not started: |
| 117 | time.sleep(0.01) |
Florent Xicluna | 6709c0c | 2010-03-20 00:21:04 +0000 | [diff] [blame] | 118 | self.assertEqual(thread._count(), orig + 1) |
Antoine Pitrou | 65c9c64 | 2009-10-30 17:25:12 +0000 | [diff] [blame] | 119 | # Allow the task to finish. |
| 120 | mut.release() |
| 121 | # The only reliable way to be sure that the thread ended from the |
| 122 | # interpreter's point of view is to wait for the function object to be |
| 123 | # destroyed. |
| 124 | done = [] |
| 125 | wr = weakref.ref(task, lambda _: done.append(None)) |
| 126 | del task |
| 127 | while not done: |
| 128 | time.sleep(0.01) |
Florent Xicluna | 6709c0c | 2010-03-20 00:21:04 +0000 | [diff] [blame] | 129 | self.assertEqual(thread._count(), orig) |
Antoine Pitrou | 65c9c64 | 2009-10-30 17:25:12 +0000 | [diff] [blame] | 130 | |
Benjamin Peterson | e900096 | 2012-04-02 11:15:17 -0400 | [diff] [blame] | 131 | def test_save_exception_state_on_error(self): |
| 132 | # See issue #14474 |
| 133 | def task(): |
| 134 | started.release() |
Benjamin Peterson | e900096 | 2012-04-02 11:15:17 -0400 | [diff] [blame] | 135 | raise SyntaxError |
| 136 | def mywrite(self, *args): |
| 137 | try: |
| 138 | raise ValueError |
| 139 | except ValueError: |
| 140 | pass |
| 141 | real_write(self, *args) |
| 142 | c = thread._count() |
| 143 | started = thread.allocate_lock() |
| 144 | with support.captured_output("stderr") as stderr: |
| 145 | real_write = stderr.write |
| 146 | stderr.write = mywrite |
| 147 | started.acquire() |
| 148 | thread.start_new_thread(task, ()) |
| 149 | started.acquire() |
| 150 | while thread._count() > c: |
Benjamin Peterson | 7a436c5 | 2012-04-23 10:08:14 -0400 | [diff] [blame] | 151 | time.sleep(0.01) |
Benjamin Peterson | e900096 | 2012-04-02 11:15:17 -0400 | [diff] [blame] | 152 | self.assertIn("Traceback", stderr.getvalue()) |
| 153 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 154 | |
| 155 | class Barrier: |
| 156 | def __init__(self, num_threads): |
| 157 | self.num_threads = num_threads |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 158 | self.waiting = 0 |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 159 | self.checkin_mutex = thread.allocate_lock() |
| 160 | self.checkout_mutex = thread.allocate_lock() |
| 161 | self.checkout_mutex.acquire() |
Guido van Rossum | d3b6842 | 1994-05-23 12:17:36 +0000 | [diff] [blame] | 162 | |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 163 | def enter(self): |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 164 | self.checkin_mutex.acquire() |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 165 | self.waiting = self.waiting + 1 |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 166 | if self.waiting == self.num_threads: |
| 167 | self.waiting = self.num_threads - 1 |
| 168 | self.checkout_mutex.release() |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 169 | return |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 170 | self.checkin_mutex.release() |
Guido van Rossum | d3b6842 | 1994-05-23 12:17:36 +0000 | [diff] [blame] | 171 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 172 | self.checkout_mutex.acquire() |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 173 | self.waiting = self.waiting - 1 |
| 174 | if self.waiting == 0: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 175 | self.checkin_mutex.release() |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 176 | return |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 177 | self.checkout_mutex.release() |
Guido van Rossum | d3b6842 | 1994-05-23 12:17:36 +0000 | [diff] [blame] | 178 | |
Guido van Rossum | d3b6842 | 1994-05-23 12:17:36 +0000 | [diff] [blame] | 179 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 180 | class BarrierTest(BasicThreadTest): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 181 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 182 | def test_barrier(self): |
| 183 | self.bar = Barrier(NUMTASKS) |
| 184 | self.running = NUMTASKS |
| 185 | for i in range(NUMTASKS): |
| 186 | thread.start_new_thread(self.task2, (i,)) |
| 187 | verbose_print("waiting for tasks to end") |
| 188 | self.done_mutex.acquire() |
| 189 | verbose_print("tasks done") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 190 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 191 | def task2(self, ident): |
| 192 | for i in range(NUMTRIPS): |
| 193 | if ident == 0: |
| 194 | # give it a good chance to enter the next |
| 195 | # barrier before the others are all out |
| 196 | # of the current one |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 197 | delay = 0 |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 198 | else: |
| 199 | with self.random_mutex: |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 200 | delay = random.random() / 10000.0 |
| 201 | verbose_print("task %s will run for %sus" % |
| 202 | (ident, round(delay * 1e6))) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 203 | time.sleep(delay) |
| 204 | verbose_print("task %s entering %s" % (ident, i)) |
| 205 | self.bar.enter() |
| 206 | verbose_print("task %s leaving barrier" % ident) |
| 207 | with self.running_mutex: |
| 208 | self.running -= 1 |
| 209 | # Must release mutex before releasing done, else the main thread can |
| 210 | # exit and set mutex to None as part of global teardown; then |
| 211 | # mutex.release() raises AttributeError. |
| 212 | finished = self.running == 0 |
| 213 | if finished: |
| 214 | self.done_mutex.release() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 215 | |
Antoine Pitrou | 557934f | 2009-11-06 22:41:14 +0000 | [diff] [blame] | 216 | class LockTests(lock_tests.LockTests): |
| 217 | locktype = thread.allocate_lock |
| 218 | |
| 219 | |
Gregory P. Smith | 24cec9f | 2010-03-01 06:18:41 +0000 | [diff] [blame] | 220 | class TestForkInThread(unittest.TestCase): |
| 221 | def setUp(self): |
| 222 | self.read_fd, self.write_fd = os.pipe() |
| 223 | |
| 224 | @unittest.skipIf(sys.platform.startswith('win'), |
Florent Xicluna | 6709c0c | 2010-03-20 00:21:04 +0000 | [diff] [blame] | 225 | "This test is only appropriate for POSIX-like systems.") |
| 226 | @support.reap_threads |
Gregory P. Smith | 24cec9f | 2010-03-01 06:18:41 +0000 | [diff] [blame] | 227 | def test_forkinthread(self): |
| 228 | def thread1(): |
| 229 | try: |
| 230 | pid = os.fork() # fork in a thread |
| 231 | except RuntimeError: |
| 232 | os._exit(1) # exit the child |
| 233 | |
| 234 | if pid == 0: # child |
| 235 | try: |
| 236 | os.close(self.read_fd) |
| 237 | os.write(self.write_fd, b"OK") |
| 238 | finally: |
| 239 | os._exit(0) |
| 240 | else: # parent |
| 241 | os.close(self.write_fd) |
| 242 | |
| 243 | thread.start_new_thread(thread1, ()) |
| 244 | self.assertEqual(os.read(self.read_fd, 2), b"OK", |
| 245 | "Unable to fork() in thread") |
| 246 | |
| 247 | def tearDown(self): |
| 248 | try: |
| 249 | os.close(self.read_fd) |
| 250 | except OSError: |
| 251 | pass |
| 252 | |
| 253 | try: |
| 254 | os.close(self.write_fd) |
| 255 | except OSError: |
| 256 | pass |
| 257 | |
| 258 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 259 | def test_main(): |
Gregory P. Smith | 24cec9f | 2010-03-01 06:18:41 +0000 | [diff] [blame] | 260 | support.run_unittest(ThreadRunningTests, BarrierTest, LockTests, |
| 261 | TestForkInThread) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 262 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 263 | if __name__ == "__main__": |
| 264 | test_main() |