getFuture(), Future::complete(2)])); } public function testTwoFirstThrowing(): void { self::assertSame(2, any([Future::error(new \Exception('foo')), Future::complete(2)])); } public function testTwoBothThrowing(): void { $this->expectException(CompositeException::class); $this->expectExceptionMessage('Multiple errors encountered (2); use "Amp\CompositeException::getReasons()" to retrieve the array of exceptions thrown:'); Future\any([Future::error(new \Exception('foo')), Future::error(new \RuntimeException('bar'))]); } public function testTwoGeneratorThrows(): void { self::assertSame(2, any((static function () { yield Future::error(new \Exception('foo')); yield Future::complete(2); })())); } public function testCancellation(): void { $this->expectException(CancelledException::class); $deferreds = \array_map(function (int $value) { $deferred = new DeferredFuture; EventLoop::delay($value / 10, fn () => $deferred->complete($value)); return $deferred; }, \range(1, 3)); any(\array_map( fn (DeferredFuture $deferred) => $deferred->getFuture(), $deferreds ), new TimeoutCancellation(0.05)); } public function testCompleteBeforeCancellation(): void { $deferreds = \array_map(function (int $value) { $deferred = new DeferredFuture; EventLoop::delay($value / 10, fn () => $deferred->complete($value)); return $deferred; }, \range(1, 3)); $deferred = new DeferredFuture; $deferred->error(new \Exception('foo')); \array_unshift($deferreds, $deferred); self::assertSame(1, any(\array_map( fn (DeferredFuture $deferred) => $deferred->getFuture(), $deferreds ), new TimeoutCancellation(0.2))); } }