-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCoroutineTest.php
109 lines (95 loc) · 3.24 KB
/
CoroutineTest.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
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace HyperfTest\Coroutine;
use Exception;
use Hyperf\Context\ApplicationContext;
use Hyperf\Contract\StdoutLoggerInterface;
use Hyperf\Coroutine\Coroutine;
use Hyperf\Engine\Channel;
use Hyperf\Engine\Exception\CoroutineDestroyedException;
use Hyperf\ExceptionHandler\Formatter\FormatterInterface;
use Mockery;
use PHPUnit\Framework\Attributes\CoversNothing;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;
use Throwable;
use function Hyperf\Coroutine\defer;
use function Hyperf\Coroutine\go;
use function Hyperf\Coroutine\run;
/**
* @internal
* @coversNothing
*/
#[CoversNothing]
class CoroutineTest extends TestCase
{
protected function tearDown(): void
{
Mockery::close();
}
public function testCoroutineParentId()
{
$pid = Coroutine::id();
Coroutine::create(function () use ($pid) {
$this->assertSame($pid, Coroutine::parentId());
$pid = Coroutine::id();
$id = Coroutine::create(function () use ($pid) {
$this->assertSame($pid, Coroutine::parentId(Coroutine::id()));
usleep(1000);
});
Coroutine::create(function () use ($pid) {
$this->assertSame($pid, Coroutine::parentId());
});
$this->assertSame($pid, Coroutine::parentId($id));
});
}
public function testCoroutineParentIdHasBeenDestroyed()
{
$id = Coroutine::create(function () {
});
try {
Coroutine::parentId($id);
$this->assertTrue(false);
} catch (Throwable $exception) {
$this->assertInstanceOf(CoroutineDestroyedException::class, $exception);
}
}
#[Group('NonCoroutine')]
public function testCoroutineInTopCoroutine()
{
run(function () {
$this->assertSame(0, Coroutine::parentId());
});
}
public function testCoroutineAndDeferWithException()
{
$container = Mockery::mock(ContainerInterface::class);
ApplicationContext::setContainer($container);
$container->shouldReceive('has')->withAnyArgs()->andReturnTrue();
$container->shouldReceive('get')->with(StdoutLoggerInterface::class)->andReturn($logger = Mockery::mock(StdoutLoggerInterface::class));
$logger->shouldReceive('warning')->with('unit')->twice()->andReturnNull();
$container->shouldReceive('get')->with(FormatterInterface::class)->andReturn($formatter = Mockery::mock(FormatterInterface::class));
$formatter->shouldReceive('format')->with($exception = new Exception())->twice()->andReturn('unit');
$chan = new Channel(1);
go(static function () use ($chan, $exception) {
defer(static function () use ($chan, $exception) {
try {
throw $exception;
} finally {
$chan->push(1);
}
});
throw $exception;
});
$this->assertTrue(true);
}
}