summaryrefslogtreecommitdiff
path: root/tests/temporal/Workflow/SagaWorkflow.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/temporal/Workflow/SagaWorkflow.php')
-rw-r--r--tests/temporal/Workflow/SagaWorkflow.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/temporal/Workflow/SagaWorkflow.php b/tests/temporal/Workflow/SagaWorkflow.php
deleted file mode 100644
index e47c0203..00000000
--- a/tests/temporal/Workflow/SagaWorkflow.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-/**
- * This file is part of Temporal package.
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Temporal\Tests\Workflow;
-
-use Temporal\Activity\ActivityOptions;
-use Temporal\Common\RetryOptions;
-use Temporal\Tests\Activity\SimpleActivity;
-use Temporal\Workflow;
-
-#[Workflow\WorkflowInterface]
-class SagaWorkflow
-{
- #[Workflow\WorkflowMethod(name: 'SagaWorkflow')]
- public function run()
- {
- $simple = Workflow::newActivityStub(
- SimpleActivity::class,
- ActivityOptions::new()
- ->withStartToCloseTimeout(60)
- ->withRetryOptions(RetryOptions::new()->withMaximumAttempts(1))
- );
-
- $saga = new Workflow\Saga();
- $saga->setParallelCompensation(true);
-
- try {
- yield $simple->echo('test');
- $saga->addCompensation(
- function () use ($simple) {
- yield $simple->echo('compensate echo');
- }
- );
-
- yield $simple->lower('TEST');
- $saga->addCompensation(
- function () use ($simple) {
- yield $simple->lower('COMPENSATE LOWER');
- }
- );
-
- yield $simple->fail();
- } catch (\Throwable $e) {
- yield $saga->compensate();
- throw $e;
- }
- }
-}