blob: 32cedf475d4edd55e0ff08cc27d20aefc9299ef2 (
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
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
|
<?php
namespace React\Promise;
class CancellationQueueTest extends TestCase
{
/** @test */
public function acceptsSimpleCancellableThenable()
{
$p = new SimpleTestCancellableThenable();
$cancellationQueue = new CancellationQueue();
$cancellationQueue->enqueue($p);
$cancellationQueue();
$this->assertTrue($p->cancelCalled);
}
/** @test */
public function ignoresSimpleCancellable()
{
$p = new SimpleTestCancellable();
$cancellationQueue = new CancellationQueue();
$cancellationQueue->enqueue($p);
$cancellationQueue();
$this->assertFalse($p->cancelCalled);
}
/** @test */
public function callsCancelOnPromisesEnqueuedBeforeStart()
{
$d1 = $this->getCancellableDeferred();
$d2 = $this->getCancellableDeferred();
$cancellationQueue = new CancellationQueue();
$cancellationQueue->enqueue($d1->promise());
$cancellationQueue->enqueue($d2->promise());
$cancellationQueue();
}
/** @test */
public function callsCancelOnPromisesEnqueuedAfterStart()
{
$d1 = $this->getCancellableDeferred();
$d2 = $this->getCancellableDeferred();
$cancellationQueue = new CancellationQueue();
$cancellationQueue();
$cancellationQueue->enqueue($d2->promise());
$cancellationQueue->enqueue($d1->promise());
}
/** @test */
public function doesNotCallCancelTwiceWhenStartedTwice()
{
$d = $this->getCancellableDeferred();
$cancellationQueue = new CancellationQueue();
$cancellationQueue->enqueue($d->promise());
$cancellationQueue();
$cancellationQueue();
}
/** @test */
public function rethrowsExceptionsThrownFromCancel()
{
$this->setExpectedException('\Exception', 'test');
$mock = $this
->getMockBuilder('React\Promise\CancellablePromiseInterface')
->getMock();
$mock
->expects($this->once())
->method('cancel')
->will($this->throwException(new \Exception('test')));
$cancellationQueue = new CancellationQueue();
$cancellationQueue->enqueue($mock);
$cancellationQueue();
}
private function getCancellableDeferred()
{
$mock = $this->createCallableMock();
$mock
->expects($this->once())
->method('__invoke');
return new Deferred($mock);
}
}
|