8ec727c1
曹明
初始化代码提交
|
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
|
<?php
declare (ticks = 1);
namespace Codeception\Subscriber;
use Codeception\Event\SuiteEvent;
use Codeception\Events;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class GracefulTermination implements EventSubscriberInterface
{
const SIGNAL_FUNC = 'pcntl_signal';
/**
* @var SuiteEvent
*/
protected $suiteEvent;
public function handleSuite(SuiteEvent $event)
{
if (PHP_MAJOR_VERSION === 7) {
if (PHP_MINOR_VERSION === 0) {
return; // skip for PHP 7.0: https://github.com/Codeception/Codeception/issues/3607
}
pcntl_async_signals(true);
}
if (function_exists(self::SIGNAL_FUNC)) {
pcntl_signal(SIGTERM, [$this, 'terminate']);
pcntl_signal(SIGINT, [$this, 'terminate']);
}
$this->suiteEvent = $event;
}
public function terminate()
{
if ($this->suiteEvent) {
$this->suiteEvent->getResult()->stopOnError(true);
$this->suiteEvent->getResult()->stopOnFailure(true);
}
throw new \RuntimeException(
"\n\n---------------------------\nTESTS EXECUTION TERMINATED\n---------------------------\n"
);
}
public static function getSubscribedEvents()
{
if (!function_exists(self::SIGNAL_FUNC)) {
return [];
}
return [Events::SUITE_BEFORE => 'handleSuite'];
}
}
|