summaryrefslogtreecommitdiff
path: root/tests/temporal-worker.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/temporal-worker.php')
-rw-r--r--tests/temporal-worker.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/temporal-worker.php b/tests/temporal-worker.php
new file mode 100644
index 00000000..5c9c80e6
--- /dev/null
+++ b/tests/temporal-worker.php
@@ -0,0 +1,34 @@
+<?php
+
+declare(strict_types=1);
+
+require __DIR__ . '/vendor/autoload.php';
+
+/**
+ * @param string $dir
+ * @return array<string>
+ */
+$getClasses = static function (string $dir): iterable {
+ $files = glob($dir . '/*.php');
+
+ foreach ($files as $file) {
+ yield substr(basename($file), 0, -4);
+ }
+};
+
+$factory = \Temporal\WorkerFactory::create();
+
+$worker = $factory->newWorker('default');
+
+// register all workflows
+foreach ($getClasses(__DIR__ . '/src/Workflow') as $name) {
+ $worker->registerWorkflowTypes('Temporal\\Tests\\Workflow\\' . $name);
+}
+
+// register all activity
+foreach ($getClasses(__DIR__ . '/src/Activity') as $name) {
+ $class = 'Temporal\\Tests\\Activity\\' . $name;
+ $worker->registerActivityImplementations(new $class);
+}
+
+$factory->run();