co-phpunit 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env php
  2. <?php
  3. declare (strict_types=1);
  4. /*
  5. * This file is part of PHPUnit.
  6. *
  7. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  8. *
  9. * For the full copyright and license information, please view the LICENSE
  10. * file that was distributed with this source code.
  11. */
  12. if (version_compare('7.3.0', PHP_VERSION, '>')) {
  13. fwrite(STDERR, sprintf('This version of PHPUnit requires PHP >= 7.3.' . PHP_EOL . 'You are using PHP %s (%s).' . PHP_EOL, PHP_VERSION, PHP_BINARY));
  14. die(1);
  15. }
  16. if (!ini_get('date.timezone')) {
  17. ini_set('date.timezone', 'UTC');
  18. }
  19. foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
  20. if (file_exists($file)) {
  21. define('PHPUNIT_COMPOSER_INSTALL', $file);
  22. break;
  23. }
  24. }
  25. unset($file);
  26. if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
  27. fwrite(STDERR, 'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL . ' composer install' . PHP_EOL . PHP_EOL . 'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL);
  28. die(1);
  29. }
  30. $options = getopt('', array('prepend:'));
  31. if (isset($options['prepend'])) {
  32. require $options['prepend'];
  33. }
  34. unset($options);
  35. require PHPUNIT_COMPOSER_INSTALL;
  36. $code = 0;
  37. Swoole\Coroutine::set(['hook_flags' => SWOOLE_HOOK_ALL, 'exit_condition' => function () {
  38. return Swoole\Coroutine::stats()['coroutine_num'] === 0;
  39. }]);
  40. Swoole\Coroutine\run(function () use(&$code) {
  41. $code = PHPUnit\TextUI\Command::main(false);
  42. Swoole\Timer::clearAll();
  43. Hyperf\Utils\Coordinator\CoordinatorManager::until(Hyperf\Utils\Coordinator\Constants::WORKER_EXIT)->resume();
  44. });
  45. die($code);