| Current Path : /var/www/html/vendor/codeception/codeception/src/Codeception/Subscriber/ |
| Current File : /var/www/html/vendor/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php |
<?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';
const ASYNC_SIGNAL_HANDLING_FUNC = 'pcntl_async_signals';
/**
* @var SuiteEvent
*/
protected $suiteEvent;
public function handleSuite(SuiteEvent $event)
{
if (PHP_MAJOR_VERSION === 7 && PHP_MINOR_VERSION === 0) {
// skip for PHP 7.0: https://github.com/Codeception/Codeception/issues/3607
return;
}
if (function_exists(self::ASYNC_SIGNAL_HANDLING_FUNC)) {
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'];
}
}