1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# -*- Mode: Python -*-
import os
import sys
import select
import signal
import time
import unittest
try:
from _thread import start_new_thread
start_new_thread # pyflakes
except ImportError:
# Python 2
from thread import start_new_thread
from gi.repository import GLib
from compathelper import _bytes
class TestMainLoop(unittest.TestCase):
def test_exception_handling(self):
pipe_r, pipe_w = os.pipe()
pid = os.fork()
if pid == 0:
os.close(pipe_w)
select.select([pipe_r], [], [])
os.close(pipe_r)
os._exit(1)
def child_died(pid, status, loop):
loop.quit()
raise Exception("deadbabe")
loop = GLib.MainLoop()
GLib.child_watch_add(GLib.PRIORITY_DEFAULT, pid, child_died, loop)
os.close(pipe_r)
os.write(pipe_w, _bytes("Y"))
os.close(pipe_w)
def excepthook(type, value, traceback):
self.assertTrue(type is Exception)
self.assertEqual(value.args[0], "deadbabe")
sys.excepthook = excepthook
try:
got_exception = False
try:
loop.run()
except:
got_exception = True
finally:
sys.excepthook = sys.__excepthook__
#
# The exception should be handled (by printing it)
# immediately on return from child_died() rather
# than here. See bug #303573
#
self.assertFalse(got_exception)
def test_concurrency(self):
def on_usr1(signum, frame):
pass
try:
# create a thread which will terminate upon SIGUSR1 by way of
# interrupting sleep()
orig_handler = signal.signal(signal.SIGUSR1, on_usr1)
start_new_thread(time.sleep, (10,))
# now create two main loops
loop1 = GLib.MainLoop()
loop2 = GLib.MainLoop()
GLib.timeout_add(100, lambda: os.kill(os.getpid(), signal.SIGUSR1))
GLib.timeout_add(500, loop1.quit)
loop1.run()
loop2.quit()
finally:
signal.signal(signal.SIGUSR1, orig_handler)
def test_sigint(self):
pid = os.fork()
if pid == 0:
time.sleep(0.5)
os.kill(os.getppid(), signal.SIGINT)
os._exit(0)
loop = GLib.MainLoop()
try:
loop.run()
self.fail('expected KeyboardInterrupt exception')
except KeyboardInterrupt:
pass
self.assertFalse(loop.is_running())
os.waitpid(pid, 0)
|