|
2 | 2 | /** For Swoole coroutine tests */
|
3 | 3 |
|
4 | 4 | use PHPUnit\TextUI\Command;
|
| 5 | +use Swoft\Stdlib\Helper\Sys; |
5 | 6 | use Swoole\Coroutine;
|
6 |
| -use Swoole\ExitException; |
7 |
| - |
8 |
| -Coroutine::set([ |
9 |
| - 'log_level' => SWOOLE_LOG_INFO, |
10 |
| - 'trace_flags' => 0 |
11 |
| -]); |
| 7 | +use Swoole\Process; |
12 | 8 |
|
13 | 9 | /*
|
14 | 10 | * This file is part of PHPUnit.
|
|
42 | 38 | }
|
43 | 39 |
|
44 | 40 | if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
|
45 |
| - fwrite(STDERR, |
46 |
| - '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); |
47 |
| - die(1); |
48 |
| -} |
| 41 | + $tips = <<<TXT |
| 42 | +You need to set up the project dependencies using Composer: |
| 43 | + composer install |
| 44 | +You can learn all about Composer on https://getcomposer.org/ |
| 45 | +TXT; |
49 | 46 |
|
50 |
| -if (array_reverse(explode('/', __DIR__))[0] ?? '' === 'tests') { |
51 |
| - $vendor_dir = dirname(PHPUNIT_COMPOSER_INSTALL); |
52 |
| - $bin_unit = "{$vendor_dir}/bin/phpunit"; |
53 |
| - $unit_uint = "{$vendor_dir}/phpunit/phpunit/phpunit"; |
54 |
| - if (file_exists($bin_unit)) { |
55 |
| - @unlink($bin_unit); |
56 |
| - @symlink(__FILE__, $bin_unit); |
57 |
| - } |
58 |
| - if (file_exists($unit_uint)) { |
59 |
| - @unlink($unit_uint); |
60 |
| - @symlink(__FILE__, $unit_uint); |
61 |
| - } |
| 47 | + fwrite(STDERR, $tips . PHP_EOL); |
| 48 | + die(1); |
62 | 49 | }
|
63 | 50 |
|
64 | 51 | if (!in_array('-c', $_SERVER['argv'], true)) {
|
|
68 | 55 |
|
69 | 56 | require PHPUNIT_COMPOSER_INSTALL;
|
70 | 57 |
|
| 58 | +// php run.php -c src/tcp-server/phpunit.xml |
| 59 | +// SWOFT_TEST_TCP_SERVER=1 |
| 60 | +if (1 === (int)getenv('SWOFT_TEST_SERVER')) { |
| 61 | + // Output: "php is /usr/local/bin/php" |
| 62 | + [$ok, $ret,] = Sys::run('type php'); |
| 63 | + if (0 !== $ok) { |
| 64 | + exit('php not found'); |
| 65 | + } |
| 66 | + |
| 67 | + $type = 'tcp'; |
| 68 | + $php = substr(trim($ret), 7); |
| 69 | + $proc = new Process(function (Process $proc) use ($php, $type) { |
| 70 | + // $proc->exec($php, [ $dir . '/test/bin/swoft', 'ws:start'); |
| 71 | + $proc->exec($php, ['test/bin/swoft', $type . ':start']); |
| 72 | + }); |
| 73 | + $pid = $proc->start(); |
| 74 | + echo "Swoft test server started, PID $pid\n"; |
| 75 | + |
| 76 | + // wait server starting... |
| 77 | + sleep(2); |
| 78 | + echo file_get_contents('http://127.0.0.1:28308/hi'); |
| 79 | +} |
| 80 | + |
71 | 81 | $status = 0;
|
| 82 | + |
| 83 | +Coroutine::set([ |
| 84 | + 'log_level' => SWOOLE_LOG_INFO, |
| 85 | + 'trace_flags' => 0 |
| 86 | +]); |
72 | 87 | \Swoft\Co::run(function () {
|
73 | 88 | // Status
|
74 | 89 | global $status;
|
75 | 90 |
|
76 | 91 | try {
|
77 | 92 | $status = Command::main(false);
|
78 |
| - } catch (ExitException $e) { |
| 93 | + } catch (Throwable $e) { |
79 | 94 | $status = $e->getCode();
|
80 | 95 | echo 'ExitException: ' . $e->getMessage(), "\n";
|
81 | 96 | }
|
82 | 97 | });
|
83 | 98 |
|
| 99 | +if (isset($pid) && $pid > 0) { |
| 100 | + echo "Stop server on tests end. PID $pid"; |
| 101 | + $ok = Process::kill($pid, 15); |
| 102 | + echo $ok ? " OK\n" : " FAIL\n"; |
| 103 | +} |
| 104 | + |
84 | 105 | exit($status);
|
0 commit comments