OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
guzzlehttp
/
promises
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:20 AM
rwxr-xr-x
📄
AggregateExceptionTest.php
422 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
CoroutineTest.php
3.59 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
CreateTest.php
1.57 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
EachPromiseTest.php
14.62 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
EachTest.php
904 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
FulfilledPromiseTest.php
3.01 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
IsTest.php
1.01 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
NotPromiseInstance.php
1009 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
PromiseTest.php
21.8 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
PropertyHelper.php
568 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
RejectedPromiseTest.php
3.96 KB
08/12/2024 10:33:20 AM
rw-r--r--
📄
RejectionExceptionTest.php
755 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
TaskQueueTest.php
872 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
Thennable.php
475 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
Thing1.php
268 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
Thing2.php
200 bytes
08/12/2024 10:33:20 AM
rw-r--r--
📄
UtilsTest.php
23.63 KB
08/12/2024 10:33:20 AM
rw-r--r--
Editing: RejectedPromiseTest.php
Close
<?php namespace GuzzleHttp\Promise\Tests; use GuzzleHttp\Promise as P; use GuzzleHttp\Promise\Promise; use GuzzleHttp\Promise\RejectedPromise; use PHPUnit\Framework\TestCase; /** * @covers GuzzleHttp\Promise\RejectedPromise */ class RejectedPromiseTest extends TestCase { public function testThrowsReasonWhenWaitedUpon() { $p = new RejectedPromise('foo'); $this->assertTrue(P\Is::rejected($p)); try { $p->wait(true); $this->fail(); } catch (\Exception $e) { $this->assertTrue(P\Is::rejected($p)); $this->assertStringContainsString('foo', $e->getMessage()); } } public function testCannotCancel() { $p = new RejectedPromise('foo'); $p->cancel(); $this->assertTrue(P\Is::rejected($p)); } /** * @exepctedExceptionMessage Cannot resolve a rejected promise */ public function testCannotResolve() { $this->expectException(\LogicException::class); $p = new RejectedPromise('foo'); $p->resolve('bar'); } /** * @expectedExceptionMessage Cannot reject a rejected promise */ public function testCannotReject() { $this->expectException(\LogicException::class); $p = new RejectedPromise('foo'); $p->reject('bar'); } public function testCanRejectWithSameValue() { $p = new RejectedPromise('foo'); $p->reject('foo'); $this->assertTrue(P\Is::rejected($p)); } public function testThrowsSpecificException() { $e = new \Exception(); $p = new RejectedPromise($e); try { $p->wait(true); $this->fail(); } catch (\Exception $e2) { $this->assertSame($e, $e2); } } public function testCannotResolveWithPromise() { $this->expectException(\InvalidArgumentException::class); new RejectedPromise(new Promise()); } public function testReturnsSelfWhenNoOnReject() { $p = new RejectedPromise('a'); $this->assertSame($p, $p->then()); } public function testInvokesOnRejectedAsynchronously() { $p = new RejectedPromise('a'); $r = null; $f = function ($reason) use (&$r) { $r = $reason; }; $p->then(null, $f); $this->assertNull($r); P\Utils::queue()->run(); $this->assertSame('a', $r); } public function testReturnsNewRejectedWhenOnRejectedFails() { $p = new RejectedPromise('a'); $f = function () { throw new \Exception('b'); }; $p2 = $p->then(null, $f); $this->assertNotSame($p, $p2); try { $p2->wait(); $this->fail(); } catch (\Exception $e) { $this->assertSame('b', $e->getMessage()); } } public function testWaitingIsNoOp() { $p = new RejectedPromise('a'); $p->wait(false); $this->assertTrue(P\Is::rejected($p)); } public function testOtherwiseIsSugarForRejections() { $p = new RejectedPromise('foo'); $p->otherwise(function ($v) use (&$c) { $c = $v; }); P\Utils::queue()->run(); $this->assertSame('foo', $c); } public function testCanResolveThenWithSuccess() { $actual = null; $p = new RejectedPromise('foo'); $p->otherwise(function ($v) { return $v . ' bar'; })->then(function ($v) use (&$actual) { $actual = $v; }); P\Utils::queue()->run(); $this->assertSame('foo bar', $actual); } public function testDoesNotTryToRejectTwiceDuringTrampoline() { $fp = new RejectedPromise('a'); $t1 = $fp->then(null, function ($v) { return $v . ' b'; }); $t1->resolve('why!'); $this->assertSame('why!', $t1->wait()); } }