-
Notifications
You must be signed in to change notification settings - Fork 61
fix: settle await on first settled condition incl. rejection (#399) #785
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
xepozz
wants to merge
1
commit into
master
Choose a base branch
from
fix/issue-399-await-promise-settlement
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
233 changes: 233 additions & 0 deletions
233
tests/Unit/WorkflowContext/AwaitPromiseSettlementTestCase.php
This file contains hidden or 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,233 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| namespace Temporal\Tests\Unit\WorkflowContext; | ||
|
|
||
| use Temporal\Tests\Unit\Framework\WorkerFactoryMock; | ||
| use Temporal\Tests\Unit\Framework\WorkerMock; | ||
| use Temporal\Tests\Unit\AbstractUnit; | ||
| use Temporal\Worker\FeatureFlags; | ||
| use Temporal\Worker\WorkerFactoryInterface; | ||
| use Temporal\Worker\WorkerInterface; | ||
| use Temporal\Workflow; | ||
| use Temporal\Workflow\WorkflowMethod; | ||
|
|
||
| use function React\Promise\reject; | ||
| use function React\Promise\resolve; | ||
|
|
||
| final class AwaitPromiseSettlementTestCase extends AbstractUnit | ||
| { | ||
| private WorkerFactoryInterface $factory; | ||
| /** @var WorkerMock|WorkerInterface */ | ||
| private $worker; | ||
| private bool $flagBackup; | ||
|
|
||
| protected function setUp(): void | ||
| { | ||
| $this->flagBackup = FeatureFlags::$settleAwaitOnFirstSettledCondition; | ||
| $this->factory = WorkerFactoryMock::create(); | ||
| $this->worker = $this->factory->newWorker(); | ||
|
|
||
| parent::setUp(); | ||
| } | ||
|
|
||
| protected function tearDown(): void | ||
| { | ||
| FeatureFlags::$settleAwaitOnFirstSettledCondition = $this->flagBackup; | ||
|
|
||
| parent::tearDown(); | ||
| } | ||
|
|
||
| public function testClosureFalseTimesOut(): void | ||
| { | ||
| $this->addToAssertionCount(1); | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| $result = yield Workflow::awaitWithTimeout(5, static fn(): bool => false); | ||
|
|
||
| return $result === false ? 'TIMEOUT' : 'MET'; | ||
| } | ||
| } | ||
| ); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('TIMEOUT'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testClosureTrueUnblocks(): void | ||
| { | ||
| $this->addToAssertionCount(1); | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| $result = yield Workflow::awaitWithTimeout(5, static fn(): bool => true); | ||
|
|
||
| return $result === true ? 'MET' : 'TIMEOUT'; | ||
| } | ||
| } | ||
| ); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('MET'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testFulfilledPromiseUnblocks(): void | ||
| { | ||
| $this->addToAssertionCount(1); | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| $result = yield Workflow::awaitWithTimeout(5, resolve(true)); | ||
|
|
||
| return $result === true ? 'MET' : 'TIMEOUT'; | ||
| } | ||
| } | ||
| ); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('MET'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testSingleRejectedPromisePropagates(): void | ||
| { | ||
| $this->addToAssertionCount(1); | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| try { | ||
| yield Workflow::await(reject(new \RuntimeException('boom'))); | ||
| } catch (\Throwable) { | ||
| return 'THREW'; | ||
| } | ||
|
|
||
| return 'NO_THROW'; | ||
| } | ||
| } | ||
| ); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('THREW'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testEmptyAwaitFailsFast(): void | ||
| { | ||
| $this->addToAssertionCount(1); | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| try { | ||
| yield Workflow::await(); | ||
| } catch (\Throwable) { | ||
| return 'THREW'; | ||
| } | ||
|
|
||
| return 'NO_THROW'; | ||
| } | ||
| } | ||
| ); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('THREW'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testRejectedConditionPropagatesWhenFlagEnabled(): void | ||
| { | ||
| FeatureFlags::$settleAwaitOnFirstSettledCondition = true; | ||
| $this->addToAssertionCount(1); | ||
| $this->registerRejectingAwaitWithTimeoutWorkflow(); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('THREW'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testRejectedConditionIsIgnoredWhenFlagDisabled(): void | ||
| { | ||
| FeatureFlags::$settleAwaitOnFirstSettledCondition = false; | ||
| $this->addToAssertionCount(1); | ||
| $this->registerRejectingAwaitWithTimeoutWorkflow(); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('RESULT:false'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| public function testMultiConditionRejectPropagatesWhenFlagEnabled(): void | ||
| { | ||
| FeatureFlags::$settleAwaitOnFirstSettledCondition = true; | ||
| $this->addToAssertionCount(1); | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| try { | ||
| yield Workflow::awaitWithTimeout( | ||
| 5, | ||
| reject(new \RuntimeException('boom')), | ||
| static fn(): bool => false, | ||
| ); | ||
| } catch (\Throwable) { | ||
| return 'THREW'; | ||
| } | ||
|
|
||
| return 'NO_THROW'; | ||
| } | ||
| } | ||
| ); | ||
|
|
||
| $this->worker->runWorkflow('AwaitPromiseWorkflow'); | ||
| $this->worker->assertWorkflowReturns('THREW'); | ||
| $this->factory->run($this->worker); | ||
| } | ||
|
|
||
| private function registerRejectingAwaitWithTimeoutWorkflow(): void | ||
| { | ||
| $this->worker->registerWorkflowObject( | ||
| new | ||
| #[Workflow\WorkflowInterface] | ||
| class { | ||
| #[WorkflowMethod(name: 'AwaitPromiseWorkflow')] | ||
| public function handler(): iterable | ||
| { | ||
| try { | ||
| $result = yield Workflow::awaitWithTimeout(5, reject(new \RuntimeException('boom'))); | ||
| } catch (\Throwable) { | ||
| return 'THREW'; | ||
| } | ||
|
|
||
| return 'RESULT:' . \var_export($result, true); | ||
| } | ||
| } | ||
| ); | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When the feature flag is enabled and a rejected promise wins a race that also contains a closure or
Mutex, this only removes the condition group from$awaits; it does not reject theDeferredobjects created byScopeContext::addCondition(). Those deferreds were registered withScope::onAwait(), whose cancellation callback retains each deferred until it settles, but after the group is removed its callable can never settle it. A long-running workflow that catches and repeatedly retries these rejections therefore accumulates pending callbacks and promise chains until the scope ends; settle the group's deferreds before discarding it.Useful? React with 👍 / 👎.