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
|
<?php namespace GuzzleHttp\Tests\Promise;
use GuzzleHttp\Promise\Promise; use GuzzleHttp\Promise\FulfilledPromise;
/** * @covers GuzzleHttp\Promise\FulfilledPromise */ class FulfilledPromiseTest extends \PHPUnit_Framework_TestCase { public function testReturnsValueWhenWaitedUpon() { $p = new FulfilledPromise('foo'); $this->assertEquals('fulfilled', $p->getState()); $this->assertEquals('foo', $p->wait(true)); }
public function testCannotCancel() { $p = new FulfilledPromise('foo'); $this->assertEquals('fulfilled', $p->getState()); $p->cancel(); $this->assertEquals('foo', $p->wait()); }
/** * @expectedException \LogicException * @exepctedExceptionMessage Cannot resolve a fulfilled promise */ public function testCannotResolve() { $p = new FulfilledPromise('foo'); $p->resolve('bar'); }
/** * @expectedException \LogicException * @exepctedExceptionMessage Cannot reject a fulfilled promise */ public function testCannotReject() { $p = new FulfilledPromise('foo'); $p->reject('bar'); }
public function testCanResolveWithSameValue() { $p = new FulfilledPromise('foo'); $p->resolve('foo'); }
/** * @expectedException \InvalidArgumentException */ public function testCannotResolveWithPromise() { new FulfilledPromise(new Promise()); }
public function testReturnsSelfWhenNoOnFulfilled() { $p = new FulfilledPromise('a'); $this->assertSame($p, $p->then()); }
public function testAsynchronouslyInvokesOnFulfilled() { $p = new FulfilledPromise('a'); $r = null; $f = function ($d) use (&$r) { $r = $d; }; $p2 = $p->then($f); $this->assertNotSame($p, $p2); $this->assertNull($r); \GuzzleHttp\Promise\queue()->run(); $this->assertEquals('a', $r); }
public function testReturnsNewRejectedWhenOnFulfilledFails() { $p = new FulfilledPromise('a'); $f = function () { throw new \Exception('b'); }; $p2 = $p->then($f); $this->assertNotSame($p, $p2); try { $p2->wait(); $this->fail(); } catch (\Exception $e) { $this->assertEquals('b', $e->getMessage()); } }
public function testOtherwiseIsSugarForRejections() { $c = null; $p = new FulfilledPromise('foo'); $p->otherwise(function ($v) use (&$c) { $c = $v; }); $this->assertNull($c); }
public function testDoesNotTryToFulfillTwiceDuringTrampoline() { $fp = new FulfilledPromise('a'); $t1 = $fp->then(function ($v) { return $v . ' b'; }); $t1->resolve('why!'); $this->assertEquals('why!', $t1->wait()); } }
|