-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Functionally test enforcing Throwable as rejection
- Loading branch information
1 parent
e5b5af1
commit 3532885
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
namespace React\Promise; | ||
|
||
use stdClass; | ||
|
||
class FunctionalRejectTest extends TestCase | ||
{ | ||
public function nonThrowables() | ||
{ | ||
yield '1' => [1]; | ||
yield 'true' => [true]; | ||
yield 'stdClass' => [new stdClass()]; | ||
} | ||
|
||
/** | ||
* @test | ||
* @dataProvider nonThrowables | ||
*/ | ||
public function shouldThrowWhenCalledWithANonException($input) | ||
{ | ||
$errorCollector = new ErrorCollector(); | ||
$errorCollector->start(); | ||
|
||
(new Promise(function ($_, $reject) use ($input) { | ||
$reject($input); | ||
}))->done($this->expectCallableNever()); | ||
|
||
$errors = $errorCollector->stop(); | ||
|
||
$this->assertEquals(E_USER_ERROR, $errors[0]['errno']); | ||
$this->assertContains( | ||
'TypeError: Argument 1 passed to React\Promise\reject() must implement interface Throwable', | ||
$errors[0]['errstr'] | ||
); | ||
} | ||
} |