summaryrefslogtreecommitdiff
path: root/tests/temporal/Activity
diff options
context:
space:
mode:
Diffstat (limited to 'tests/temporal/Activity')
-rw-r--r--tests/temporal/Activity/HeartBeatActivity.php58
-rw-r--r--tests/temporal/Activity/SimpleActivity.php63
2 files changed, 121 insertions, 0 deletions
diff --git a/tests/temporal/Activity/HeartBeatActivity.php b/tests/temporal/Activity/HeartBeatActivity.php
new file mode 100644
index 00000000..acf4a451
--- /dev/null
+++ b/tests/temporal/Activity/HeartBeatActivity.php
@@ -0,0 +1,58 @@
+<?php
+
+namespace Temporal\Tests\Activity;
+
+use Temporal\Activity;
+use Temporal\Activity\ActivityInterface;
+use Temporal\Activity\ActivityMethod;
+use Temporal\Roadrunner\Internal\Error;
+
+#[ActivityInterface(prefix: "HeartBeatActivity.")]
+class HeartBeatActivity
+{
+ #[ActivityMethod]
+ public function doSomething(
+ int $value
+ ): string {
+ Activity::heartbeat(['value' => $value]);
+ sleep($value);
+ return 'OK';
+ }
+
+ #[ActivityMethod]
+ public function slow(
+ string $value
+ ): string {
+ for ($i = 0; $i < 5; $i++) {
+ Activity::heartbeat(['value' => $i]);
+ sleep(1);
+ }
+
+ return 'OK';
+ }
+
+ #[ActivityMethod]
+ public function something(
+ string $value
+ ): string {
+ Activity::heartbeat(['value' => $value]);
+ sleep($value);
+ return 'OK';
+ }
+
+ #[ActivityMethod]
+ public function failedActivity(
+ int $value
+ ): string {
+ Activity::heartbeat(['value' => $value]);
+ if (Activity::getInfo()->attempt === 1) {
+ throw new \Error("failed");
+ }
+
+ if (!is_array(Activity::getHeartbeatDetails())) {
+ throw new \Error("no heartbeat details");
+ }
+
+ return 'OK!';
+ }
+} \ No newline at end of file
diff --git a/tests/temporal/Activity/SimpleActivity.php b/tests/temporal/Activity/SimpleActivity.php
new file mode 100644
index 00000000..576b126e
--- /dev/null
+++ b/tests/temporal/Activity/SimpleActivity.php
@@ -0,0 +1,63 @@
+<?php
+
+namespace Temporal\Tests\Activity;
+
+use Temporal\Activity\ActivityInterface;
+use Temporal\Activity\ActivityMethod;
+use Temporal\Api\Common\V1\WorkflowExecution;
+use Temporal\DataConverter\Bytes;
+use Temporal\Tests\DTO\Message;
+use Temporal\Tests\DTO\User;
+
+#[ActivityInterface(prefix: "SimpleActivity.")]
+class SimpleActivity
+{
+ #[ActivityMethod]
+ public function echo(
+ string $input
+ ): string {
+ return strtoupper($input);
+ }
+
+ #[ActivityMethod]
+ public function lower(
+ string $input
+ ): string {
+ return strtolower($input);
+ }
+
+ #[ActivityMethod]
+ public function greet(
+ User $user
+ ): Message {
+ return new Message(sprintf("Hello %s <%s>", $user->name, $user->email));
+ }
+
+ #[ActivityMethod]
+ public function slow(
+ string $input
+ ): string {
+ sleep(2);
+
+ return strtolower($input);
+ }
+
+ #[ActivityMethod]
+ public function sha512(
+ Bytes $input
+ ): string {
+ return hash("sha512", ($input->getData()));
+ }
+
+ public function updateRunID(WorkflowExecution $e): WorkflowExecution
+ {
+ $e->setRunId('updated');
+ return $e;
+ }
+
+ #[ActivityMethod]
+ public function fail()
+ {
+ throw new \Error("failed activity");
+ }
+} \ No newline at end of file