summaryrefslogtreecommitdiff
path: root/tests/temporal/Workflow/CancelledNestedWorkflow.php
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-26 11:52:03 +0300
committerGitHub <[email protected]>2021-01-26 11:52:03 +0300
commite2266b80db47444ba5858c736833a8a81b1361ad (patch)
tree37e06810352752f88032f7d0eadb554fa18b98da /tests/temporal/Workflow/CancelledNestedWorkflow.php
parentfae4711e3548bfd2e34f13aabfaab6a5b4e317c6 (diff)
parenta392d962508e1bc9e497c8c4ef021425bc2c67c2 (diff)
Merge pull request #502 from spiral/plugin/temporalv2.0.0-beta12
plugin(temporal): Add temporal plugins set to the RR2
Diffstat (limited to 'tests/temporal/Workflow/CancelledNestedWorkflow.php')
-rw-r--r--tests/temporal/Workflow/CancelledNestedWorkflow.php72
1 files changed, 72 insertions, 0 deletions
diff --git a/tests/temporal/Workflow/CancelledNestedWorkflow.php b/tests/temporal/Workflow/CancelledNestedWorkflow.php
new file mode 100644
index 00000000..0c82f761
--- /dev/null
+++ b/tests/temporal/Workflow/CancelledNestedWorkflow.php
@@ -0,0 +1,72 @@
+<?php
+
+namespace Temporal\Tests\Workflow;
+
+use Temporal\Exception\Failure\CanceledFailure;
+use Temporal\Workflow;
+use Temporal\Workflow\WorkflowMethod;
+
+#[Workflow\WorkflowInterface]
+class CancelledNestedWorkflow
+{
+ private array $status = [];
+
+ #[Workflow\QueryMethod(name: 'getStatus')]
+ public function getStatus(): array
+ {
+ return $this->status;
+ }
+
+ #[WorkflowMethod(name: 'CancelledNestedWorkflow')]
+ public function handler()
+ {
+ $this->status[] = 'begin';
+ try {
+ yield Workflow::newCancellationScope(
+ function () {
+ $this->status[] = 'first scope';
+
+ $scope = Workflow::newCancellationScope(
+ function () {
+ $this->status[] = 'second scope';
+
+ try {
+ yield Workflow::timer(2);
+ } catch (CanceledFailure $e) {
+ $this->status[] = 'second scope cancelled';
+ throw $e;
+ }
+
+ $this->status[] = 'second scope done';
+ }
+ )->onCancel(
+ function () {
+ $this->status[] = 'close second scope';
+ }
+ );
+
+ try {
+ yield Workflow::timer(1);
+ } catch (CanceledFailure $e) {
+ $this->status[] = 'first scope cancelled';
+ throw $e;
+ }
+
+ $this->status[] = 'first scope done';
+
+ yield $scope;
+ }
+ )->onCancel(
+ function () {
+ $this->status[] = 'close first scope';
+ }
+ );
+ } catch (CanceledFailure $e) {
+ $this->status[] = 'close process';
+
+ return 'CANCELLED';
+ }
+
+ return 'OK';
+ }
+}