blob: 339cec216e056b6e69181c099d8f8a9c3ba0158d [file] [log] [blame]
Thomas Woutersed03b412007-08-28 21:37:11 +00001import unittest
2from test import test_support
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003from contextlib import closing, nested
Christian Heimescc47b052008-03-25 14:56:36 +00004import gc
Christian Heimes4fbc72b2008-03-22 00:47:35 +00005import pickle
6import select
Guido van Rossum4f17e3e1995-03-16 15:07:38 +00007import signal
Christian Heimes4fbc72b2008-03-22 00:47:35 +00008import subprocess
9import traceback
Christian Heimesc06950e2008-02-28 21:17:00 +000010import sys, os, time, errno
11
12if sys.platform[:3] in ('win', 'os2') or sys.platform == 'riscos':
13 raise test_support.TestSkipped("Can't test signal on %s" % \
14 sys.platform)
15
Guido van Rossumcc5a91d1997-04-16 00:29:15 +000016
Armin Rigo8b2cbfd2004-08-07 21:27:43 +000017class HandlerBCalled(Exception):
18 pass
Guido van Rossum4f17e3e1995-03-16 15:07:38 +000019
Christian Heimes4fbc72b2008-03-22 00:47:35 +000020
21def exit_subprocess():
22 """Use os._exit(0) to exit the current subprocess.
23
24 Otherwise, the test catches the SystemExit and continues executing
25 in parallel with the original test, so you wind up with an
26 exponential number of tests running concurrently.
27 """
28 os._exit(0)
29
30
Benjamin Petersonad9d48d2008-04-02 21:49:44 +000031def ignoring_eintr(__func, *args, **kwargs):
32 try:
33 return __func(*args, **kwargs)
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +000034 except EnvironmentError as e:
35 if e.errno != errno.EINTR:
Benjamin Petersonad9d48d2008-04-02 21:49:44 +000036 raise
37 return None
38
39
Thomas Woutersed03b412007-08-28 21:37:11 +000040class InterProcessSignalTests(unittest.TestCase):
41 MAX_DURATION = 20 # Entire test should last at most 20 sec.
Guido van Rossum4f17e3e1995-03-16 15:07:38 +000042
Christian Heimescc47b052008-03-25 14:56:36 +000043 def setUp(self):
44 self.using_gc = gc.isenabled()
45 gc.disable()
46
47 def tearDown(self):
48 if self.using_gc:
49 gc.enable()
50
Christian Heimes5e696852008-04-09 08:37:03 +000051 def format_frame(self, frame, limit=None):
52 return ''.join(traceback.format_stack(frame, limit=limit))
53
54 def handlerA(self, signum, frame):
Thomas Woutersed03b412007-08-28 21:37:11 +000055 self.a_called = True
56 if test_support.verbose:
Christian Heimes5e696852008-04-09 08:37:03 +000057 print("handlerA invoked from signal %s at:\n%s" % (
58 signum, self.format_frame(frame, limit=1)))
Guido van Rossum4f17e3e1995-03-16 15:07:38 +000059
Christian Heimes5e696852008-04-09 08:37:03 +000060 def handlerB(self, signum, frame):
Thomas Woutersed03b412007-08-28 21:37:11 +000061 self.b_called = True
62 if test_support.verbose:
Christian Heimes5e696852008-04-09 08:37:03 +000063 print ("handlerB invoked from signal %s at:\n%s" % (
64 signum, self.format_frame(frame, limit=1)))
65 raise HandlerBCalled(signum, self.format_frame(frame))
Neal Norwitz9730bcb2006-01-23 07:50:06 +000066
Christian Heimes4fbc72b2008-03-22 00:47:35 +000067 def wait(self, child):
68 """Wait for child to finish, ignoring EINTR."""
69 while True:
70 try:
71 child.wait()
72 return
73 except OSError as e:
74 if e.errno != errno.EINTR:
75 raise
Fred Drake004d5e62000-10-23 17:22:08 +000076
Christian Heimes4fbc72b2008-03-22 00:47:35 +000077 def run_test(self):
78 # Install handlers. This function runs in a sub-process, so we
79 # don't worry about re-setting the default handlers.
80 signal.signal(signal.SIGHUP, self.handlerA)
81 signal.signal(signal.SIGUSR1, self.handlerB)
82 signal.signal(signal.SIGUSR2, signal.SIG_IGN)
83 signal.signal(signal.SIGALRM, signal.default_int_handler)
Michael W. Hudson5c26e862004-06-11 18:09:28 +000084
Christian Heimes4fbc72b2008-03-22 00:47:35 +000085 # Variables the signals will modify:
86 self.a_called = False
87 self.b_called = False
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000088
Christian Heimes4fbc72b2008-03-22 00:47:35 +000089 # Let the sub-processes know who to send signals to.
90 pid = os.getpid()
Thomas Woutersed03b412007-08-28 21:37:11 +000091 if test_support.verbose:
92 print("test runner's pid is", pid)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000093
Benjamin Petersonad9d48d2008-04-02 21:49:44 +000094 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
95 if child:
96 self.wait(child)
97 if not self.a_called:
98 time.sleep(1) # Give the signal time to be delivered.
Christian Heimes4fbc72b2008-03-22 00:47:35 +000099 self.assertTrue(self.a_called)
100 self.assertFalse(self.b_called)
101 self.a_called = False
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000102
Christian Heimes5e696852008-04-09 08:37:03 +0000103 # Make sure the signal isn't delivered while the previous
104 # Popen object is being destroyed, because __del__ swallows
105 # exceptions.
106 del child
Thomas Woutersed03b412007-08-28 21:37:11 +0000107 try:
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
109 # This wait should be interrupted by the signal's exception.
110 self.wait(child)
Benjamin Petersonad9d48d2008-04-02 21:49:44 +0000111 time.sleep(1) # Give the signal time to be delivered.
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000112 self.fail('HandlerBCalled exception not thrown')
113 except HandlerBCalled:
114 self.assertTrue(self.b_called)
115 self.assertFalse(self.a_called)
Thomas Woutersed03b412007-08-28 21:37:11 +0000116 if test_support.verbose:
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000117 print("HandlerBCalled exception caught")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000118
Benjamin Petersonad9d48d2008-04-02 21:49:44 +0000119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)])
120 if child:
121 self.wait(child) # Nothing should happen.
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000122
123 try:
124 signal.alarm(1)
125 # The race condition in pause doesn't matter in this case,
126 # since alarm is going to raise a KeyboardException, which
127 # will skip the call.
128 signal.pause()
Benjamin Petersonad9d48d2008-04-02 21:49:44 +0000129 # But if another signal arrives before the alarm, pause
130 # may return early.
131 time.sleep(1)
Thomas Woutersed03b412007-08-28 21:37:11 +0000132 except KeyboardInterrupt:
133 if test_support.verbose:
134 print("KeyboardInterrupt (the alarm() went off)")
Thomas Woutersed03b412007-08-28 21:37:11 +0000135 except:
Benjamin Petersonad9d48d2008-04-02 21:49:44 +0000136 self.fail("Some other exception woke us from pause: %s" %
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000137 traceback.format_exc())
138 else:
Benjamin Petersonad9d48d2008-04-02 21:49:44 +0000139 self.fail("pause returned of its own accord, and the signal"
140 " didn't arrive after another second.")
Thomas Woutersed03b412007-08-28 21:37:11 +0000141
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000142 def test_main(self):
143 # This function spawns a child process to insulate the main
144 # test-running process from all the signals. It then
145 # communicates with that child process over a pipe and
146 # re-raises information about any exceptions the child
147 # throws. The real work happens in self.run_test().
148 os_done_r, os_done_w = os.pipe()
149 with nested(closing(os.fdopen(os_done_r, 'rb')),
150 closing(os.fdopen(os_done_w, 'wb'))) as (done_r, done_w):
151 child = os.fork()
152 if child == 0:
153 # In the child process; run the test and report results
154 # through the pipe.
155 try:
156 done_r.close()
157 # Have to close done_w again here because
158 # exit_subprocess() will skip the enclosing with block.
159 with closing(done_w):
160 try:
161 self.run_test()
162 except:
163 pickle.dump(traceback.format_exc(), done_w)
164 else:
165 pickle.dump(None, done_w)
166 except:
167 print('Uh oh, raised from pickle.')
168 traceback.print_exc()
169 finally:
170 exit_subprocess()
171
172 done_w.close()
173 # Block for up to MAX_DURATION seconds for the test to finish.
174 r, w, x = select.select([done_r], [], [], self.MAX_DURATION)
175 if done_r in r:
176 tb = pickle.load(done_r)
177 if tb:
178 self.fail(tb)
179 else:
180 os.kill(child, signal.SIGKILL)
181 self.fail('Test deadlocked after %d seconds.' %
182 self.MAX_DURATION)
Thomas Woutersed03b412007-08-28 21:37:11 +0000183
184
185class BasicSignalTests(unittest.TestCase):
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000186 def trivial_signal_handler(self, *args):
187 pass
188
Thomas Woutersed03b412007-08-28 21:37:11 +0000189 def test_out_of_range_signal_number_raises_error(self):
190 self.assertRaises(ValueError, signal.getsignal, 4242)
191
Thomas Woutersed03b412007-08-28 21:37:11 +0000192 self.assertRaises(ValueError, signal.signal, 4242,
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000193 self.trivial_signal_handler)
Thomas Woutersed03b412007-08-28 21:37:11 +0000194
195 def test_setting_signal_handler_to_none_raises_error(self):
196 self.assertRaises(TypeError, signal.signal,
197 signal.SIGUSR1, None)
198
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000199 def test_getsignal(self):
200 hup = signal.signal(signal.SIGHUP, self.trivial_signal_handler)
201 self.assertEquals(signal.getsignal(signal.SIGHUP),
202 self.trivial_signal_handler)
203 signal.signal(signal.SIGHUP, hup)
204 self.assertEquals(signal.getsignal(signal.SIGHUP), hup)
205
206
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000207class WakeupSignalTests(unittest.TestCase):
208 TIMEOUT_FULL = 10
209 TIMEOUT_HALF = 5
210
211 def test_wakeup_fd_early(self):
212 import select
213
214 signal.alarm(1)
215 before_time = time.time()
216 # We attempt to get a signal during the sleep,
217 # before select is called
218 time.sleep(self.TIMEOUT_FULL)
219 mid_time = time.time()
220 self.assert_(mid_time - before_time < self.TIMEOUT_HALF)
221 select.select([self.read], [], [], self.TIMEOUT_FULL)
222 after_time = time.time()
223 self.assert_(after_time - mid_time < self.TIMEOUT_HALF)
224
225 def test_wakeup_fd_during(self):
226 import select
227
228 signal.alarm(1)
229 before_time = time.time()
230 # We attempt to get a signal during the select call
231 self.assertRaises(select.error, select.select,
232 [self.read], [], [], self.TIMEOUT_FULL)
233 after_time = time.time()
234 self.assert_(after_time - before_time < self.TIMEOUT_HALF)
235
236 def setUp(self):
237 import fcntl
238
239 self.alrm = signal.signal(signal.SIGALRM, lambda x,y:None)
240 self.read, self.write = os.pipe()
241 flags = fcntl.fcntl(self.write, fcntl.F_GETFL, 0)
242 flags = flags | os.O_NONBLOCK
243 fcntl.fcntl(self.write, fcntl.F_SETFL, flags)
244 self.old_wakeup = signal.set_wakeup_fd(self.write)
245
246 def tearDown(self):
247 signal.set_wakeup_fd(self.old_wakeup)
248 os.close(self.read)
249 os.close(self.write)
250 signal.signal(signal.SIGALRM, self.alrm)
251
Christian Heimes8640e742008-02-23 16:23:06 +0000252class SiginterruptTest(unittest.TestCase):
253 signum = signal.SIGUSR1
254 def readpipe_interrupted(self, cb):
255 r, w = os.pipe()
256 ppid = os.getpid()
257 pid = os.fork()
258
259 oldhandler = signal.signal(self.signum, lambda x,y: None)
260 cb()
261 if pid==0:
262 # child code: sleep, kill, sleep. and then exit,
263 # which closes the pipe from which the parent process reads
264 try:
265 time.sleep(0.2)
266 os.kill(ppid, self.signum)
267 time.sleep(0.2)
268 finally:
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000269 exit_subprocess()
Christian Heimes8640e742008-02-23 16:23:06 +0000270
271 try:
272 os.close(w)
273
274 try:
275 d=os.read(r, 1)
276 return False
277 except OSError as err:
278 if err.errno != errno.EINTR:
279 raise
280 return True
281 finally:
282 signal.signal(self.signum, oldhandler)
283 os.waitpid(pid, 0)
284
285 def test_without_siginterrupt(self):
286 i=self.readpipe_interrupted(lambda: None)
287 self.assertEquals(i, True)
288
289 def test_siginterrupt_on(self):
290 i=self.readpipe_interrupted(lambda: signal.siginterrupt(self.signum, 1))
291 self.assertEquals(i, True)
292
293 def test_siginterrupt_off(self):
294 i=self.readpipe_interrupted(lambda: signal.siginterrupt(self.signum, 0))
295 self.assertEquals(i, False)
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000296
Martin v. Löwis823725e2008-03-24 13:39:54 +0000297class ItimerTest(unittest.TestCase):
298 def setUp(self):
299 self.hndl_called = False
300 self.hndl_count = 0
301 self.itimer = None
Christian Heimescc47b052008-03-25 14:56:36 +0000302 self.old_alarm = signal.signal(signal.SIGALRM, self.sig_alrm)
Martin v. Löwis823725e2008-03-24 13:39:54 +0000303
304 def tearDown(self):
Christian Heimescc47b052008-03-25 14:56:36 +0000305 signal.signal(signal.SIGALRM, self.old_alarm)
Martin v. Löwis823725e2008-03-24 13:39:54 +0000306 if self.itimer is not None: # test_itimer_exc doesn't change this attr
307 # just ensure that itimer is stopped
308 signal.setitimer(self.itimer, 0)
309
310 def sig_alrm(self, *args):
311 self.hndl_called = True
312 if test_support.verbose:
313 print("SIGALRM handler invoked", args)
314
315 def sig_vtalrm(self, *args):
316 self.hndl_called = True
317
318 if self.hndl_count > 3:
319 # it shouldn't be here, because it should have been disabled.
320 raise signal.ItimerError("setitimer didn't disable ITIMER_VIRTUAL "
321 "timer.")
322 elif self.hndl_count == 3:
323 # disable ITIMER_VIRTUAL, this function shouldn't be called anymore
324 signal.setitimer(signal.ITIMER_VIRTUAL, 0)
325 if test_support.verbose:
326 print("last SIGVTALRM handler call")
327
328 self.hndl_count += 1
329
330 if test_support.verbose:
331 print("SIGVTALRM handler invoked", args)
332
333 def sig_prof(self, *args):
334 self.hndl_called = True
335 signal.setitimer(signal.ITIMER_PROF, 0)
336
337 if test_support.verbose:
338 print("SIGPROF handler invoked", args)
339
340 def test_itimer_exc(self):
341 # XXX I'm assuming -1 is an invalid itimer, but maybe some platform
342 # defines it ?
343 self.assertRaises(signal.ItimerError, signal.setitimer, -1, 0)
Christian Heimescc47b052008-03-25 14:56:36 +0000344 # Negative times are treated as zero on some platforms.
345 if 0:
346 self.assertRaises(signal.ItimerError,
347 signal.setitimer, signal.ITIMER_REAL, -1)
Martin v. Löwis823725e2008-03-24 13:39:54 +0000348
349 def test_itimer_real(self):
350 self.itimer = signal.ITIMER_REAL
Martin v. Löwis823725e2008-03-24 13:39:54 +0000351 signal.setitimer(self.itimer, 1.0)
352 if test_support.verbose:
353 print("\ncall pause()...")
354 signal.pause()
355
356 self.assertEqual(self.hndl_called, True)
357
358 def test_itimer_virtual(self):
359 self.itimer = signal.ITIMER_VIRTUAL
360 signal.signal(signal.SIGVTALRM, self.sig_vtalrm)
361 signal.setitimer(self.itimer, 0.3, 0.2)
362
363 for i in range(100000000):
364 if signal.getitimer(self.itimer) == (0.0, 0.0):
365 break # sig_vtalrm handler stopped this itimer
366
367 # virtual itimer should be (0.0, 0.0) now
368 self.assertEquals(signal.getitimer(self.itimer), (0.0, 0.0))
369 # and the handler should have been called
370 self.assertEquals(self.hndl_called, True)
371
372 def test_itimer_prof(self):
373 self.itimer = signal.ITIMER_PROF
374 signal.signal(signal.SIGPROF, self.sig_prof)
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000375 signal.setitimer(self.itimer, 0.2, 0.2)
Martin v. Löwis823725e2008-03-24 13:39:54 +0000376
377 for i in range(100000000):
378 if signal.getitimer(self.itimer) == (0.0, 0.0):
379 break # sig_prof handler stopped this itimer
380
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000381 # profiling itimer should be (0.0, 0.0) now
382 self.assertEquals(signal.getitimer(self.itimer), (0.0, 0.0))
383 # and the handler should have been called
Martin v. Löwis823725e2008-03-24 13:39:54 +0000384 self.assertEqual(self.hndl_called, True)
385
Thomas Woutersed03b412007-08-28 21:37:11 +0000386def test_main():
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000387 test_support.run_unittest(BasicSignalTests, InterProcessSignalTests,
Martin v. Löwis823725e2008-03-24 13:39:54 +0000388 WakeupSignalTests, SiginterruptTest, ItimerTest)
Thomas Woutersed03b412007-08-28 21:37:11 +0000389
390
391if __name__ == "__main__":
392 test_main()