mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Asio;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Asio;
|
|
use Psl\Exception\InvariantViolationException;
|
|
|
|
class WrapTest extends TestCase
|
|
{
|
|
public function testWrapException(): void
|
|
{
|
|
$exception = new \Exception('foo');
|
|
$wrapper = Asio\wrap(static function () use ($exception): void {
|
|
throw $exception;
|
|
});
|
|
self::assertFalse($wrapper->isSucceeded());
|
|
self::assertTrue($wrapper->isFailed());
|
|
self::assertSame($exception, $wrapper->getException());
|
|
|
|
$this->expectExceptionObject($exception);
|
|
|
|
$wrapper->getResult();
|
|
}
|
|
|
|
public function testWrapResult(): void
|
|
{
|
|
$wrapper = Asio\wrap(static function (): string {
|
|
return 'foo';
|
|
});
|
|
self::assertTrue($wrapper->isSucceeded());
|
|
self::assertFalse($wrapper->isFailed());
|
|
self::assertSame('foo', $wrapper->getResult());
|
|
|
|
$this->expectException(InvariantViolationException::class);
|
|
$this->expectExceptionMessage('No exception thrown');
|
|
|
|
$wrapper->getException();
|
|
}
|
|
}
|