-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathStreamSelectLoopTest.php
232 lines (193 loc) · 6.35 KB
/
StreamSelectLoopTest.php
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
namespace React\Tests\EventLoop;
use React\EventLoop\LoopInterface;
use React\EventLoop\StreamSelectLoop;
class StreamSelectLoopTest extends AbstractLoopTest
{
/**
* @after
*/
protected function tearDownSignalHandlers()
{
parent::tearDown();
if (strncmp($this->getName(false), 'testSignal', 10) === 0 && extension_loaded('pcntl')) {
$this->resetSignalHandlers();
}
}
public function createLoop()
{
return new StreamSelectLoop();
}
public function testStreamSelectTimeoutEmulation()
{
$this->loop->addTimer(
0.05,
$this->expectCallableOnce()
);
$start = microtime(true);
$this->loop->run();
$end = microtime(true);
$interval = $end - $start;
$this->assertGreaterThan(0.04, $interval);
}
public function testStreamSelectReportsWarningForStreamWithFilter()
{
if (defined('HHVM_VERSION')) {
$this->markTestSkipped('Not supported on legacy HHVM');
}
$stream = tmpfile();
stream_filter_append($stream, 'string.rot13');
$this->loop->addReadStream($stream, $this->expectCallableNever());
$loop = $this->loop;
$this->loop->futureTick(function () use ($loop, $stream) {
$loop->futureTick(function () use ($loop, $stream) {
$loop->removeReadStream($stream);
});
});
$error = null;
$previous = set_error_handler(function ($_, $errstr) use (&$error) {
$error = $errstr;
return true;
});
try {
$this->loop->run();
} catch (\ValueError $e) {
// ignore ValueError for PHP 8+ due to empty stream array
}
restore_error_handler();
$this->assertNotNull($error);
$now = set_error_handler(function () {
return true;
});
restore_error_handler();
$this->assertEquals($previous, $now);
}
public function testStreamSelectThrowsWhenCustomErrorHandlerThrowsForStreamWithFilter()
{
if (defined('HHVM_VERSION')) {
$this->markTestSkipped('Not supported on legacy HHVM');
}
$stream = tmpfile();
stream_filter_append($stream, 'string.rot13');
$this->loop->addReadStream($stream, $this->expectCallableNever());
$loop = $this->loop;
$this->loop->futureTick(function () use ($loop, $stream) {
$loop->futureTick(function () use ($loop, $stream) {
$loop->removeReadStream($stream);
});
});
$previous = set_error_handler(function ($_, $errstr) {
throw new \RuntimeException($errstr);
});
$e = null;
try {
$this->loop->run();
restore_error_handler();
$this->fail();
} catch (\RuntimeException $e) {
restore_error_handler();
} catch (\ValueError $e) {
restore_error_handler(); // PHP 8+
$e = $e->getPrevious();
}
$this->assertInstanceOf('RuntimeException', $e);
$now = set_error_handler(function () {
return true;
});
restore_error_handler();
$this->assertEquals($previous, $now);
}
public function signalProvider()
{
return array(
array('SIGUSR1'),
array('SIGHUP'),
array('SIGTERM'),
);
}
/**
* Test signal interrupt when no stream is attached to the loop
* @dataProvider signalProvider
* @requires extension pcntl
* @requires function pcntl_signal()
* @requires function pcntl_signal_dispatch()
*/
public function testSignalInterruptNoStream($signal)
{
// dispatch signal handler every 10ms for 0.1s
$check = $this->loop->addPeriodicTimer(0.01, function() {
pcntl_signal_dispatch();
});
$loop = $this->loop;
$loop->addTimer(0.1, function () use ($check, $loop) {
$loop->cancelTimer($check);
});
$handled = false;
$this->assertTrue(pcntl_signal(constant($signal), function () use (&$handled) {
$handled = true;
}));
// spawn external process to send signal to current process id
$this->forkSendSignal($signal);
$this->loop->run();
$this->assertTrue($handled);
}
/**
* Test signal interrupt when a stream is attached to the loop
* @dataProvider signalProvider
* @requires extension pcntl
* @requires function pcntl_signal()
* @requires function pcntl_signal_dispatch()
*/
public function testSignalInterruptWithStream($signal)
{
// dispatch signal handler every 10ms
$this->loop->addPeriodicTimer(0.01, function() {
pcntl_signal_dispatch();
});
// add stream to the loop
$loop = $this->loop;
list($writeStream, $readStream) = $this->createSocketPair();
$loop->addReadStream($readStream, function ($stream) use ($loop) {
$read = fgets($stream);
if ($read === "end loop\n") {
$loop->stop();
}
});
$this->loop->addTimer(0.1, function() use ($writeStream) {
fwrite($writeStream, "end loop\n");
});
$handled = false;
$this->assertTrue(pcntl_signal(constant($signal), function () use (&$handled) {
$handled = true;
}));
// spawn external process to send signal to current process id
$this->forkSendSignal($signal);
$this->loop->run();
$this->assertTrue($handled);
}
/**
* reset all signal handlers to default
*/
protected function resetSignalHandlers()
{
foreach($this->signalProvider() as $signal) {
pcntl_signal(constant($signal[0]), SIG_DFL);
}
}
/**
* fork child process to send signal to current process id
*/
protected function forkSendSignal($signal)
{
$currentPid = posix_getpid();
$childPid = pcntl_fork();
if ($childPid == -1) {
$this->fail("Failed to fork child process!");
} else if ($childPid === 0) {
// this is executed in the child process
usleep(20000);
posix_kill($currentPid, constant($signal));
die();
}
}
}