blob: 6153fcc0da1fe88812bc5dc9211dc606c21d392f (
plain) (
blame)
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
|
<?php
namespace React\Tests\Promise\Timer;
use React\Promise\Timer;
class FunctionRejectTest extends TestCase
{
public function testPromiseIsPendingWithoutRunningLoop()
{
$promise = Timer\reject(0.01, $this->loop);
$this->expectPromisePending($promise);
}
public function testPromiseExpiredIsPendingWithoutRunningLoop()
{
$promise = Timer\reject(-1, $this->loop);
$this->expectPromisePending($promise);
}
public function testPromiseWillBeRejectedOnTimeout()
{
$promise = Timer\reject(0.01, $this->loop);
$this->loop->run();
$this->expectPromiseRejected($promise);
}
public function testPromiseExpiredWillBeRejectedOnTimeout()
{
$promise = Timer\reject(-1, $this->loop);
$this->loop->run();
$this->expectPromiseRejected($promise);
}
public function testCancelingPromiseWillRejectTimer()
{
$promise = Timer\reject(0.01, $this->loop);
$promise->cancel();
$this->expectPromiseRejected($promise);
}
}
|