about summary refs log tree commit diff
path: root/test-data
diff options
context:
space:
mode:
Diffstat (limited to 'test-data')
-rw-r--r--test-data/foo0
-rw-r--r--test-data/input-file-with-location-only.yaml3
-rw-r--r--test-data/input-file-with-path-only.yaml3
-rw-r--r--test-data/workflow-with-a-file-input.cwl4
-rw-r--r--test-data/workflow-with-various-file-type-formals.cwl39
5 files changed, 49 insertions, 0 deletions
diff --git a/test-data/foo b/test-data/foo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/test-data/foo
diff --git a/test-data/input-file-with-location-only.yaml b/test-data/input-file-with-location-only.yaml
new file mode 100644
index 0000000..dccb850
--- /dev/null
+++ b/test-data/input-file-with-location-only.yaml
@@ -0,0 +1,3 @@
+foo:
+  class: File
+  location: foo
diff --git a/test-data/input-file-with-path-only.yaml b/test-data/input-file-with-path-only.yaml
new file mode 100644
index 0000000..04fdfcd
--- /dev/null
+++ b/test-data/input-file-with-path-only.yaml
@@ -0,0 +1,3 @@
+foo:
+  class: File
+  path: foo
diff --git a/test-data/workflow-with-a-file-input.cwl b/test-data/workflow-with-a-file-input.cwl
new file mode 100644
index 0000000..ba3ab95
--- /dev/null
+++ b/test-data/workflow-with-a-file-input.cwl
@@ -0,0 +1,4 @@
+class: Workflow
+inputs:
+  foo: File
+outputs: []
diff --git a/test-data/workflow-with-various-file-type-formals.cwl b/test-data/workflow-with-various-file-type-formals.cwl
new file mode 100644
index 0000000..762bf9f
--- /dev/null
+++ b/test-data/workflow-with-various-file-type-formals.cwl
@@ -0,0 +1,39 @@
+class: Workflow
+inputs:
+  infoo:
+    type: File
+    secondaryFiles:
+      - .bai
+  inbar:
+    type:
+      type: array
+      items: File
+    secondaryFiles:
+      - .bai
+  infoobar:
+    type:
+      type: array
+      items:
+        type: array
+        items: File
+    secondaryFiles:
+      - .bai
+outputs:
+  outfoo:
+    type: File
+    secondaryFiles:
+      - .bai
+  outbar:
+    type:
+      type: array
+      items: File
+    secondaryFiles:
+      - .bai
+  outfoobar:
+    type:
+      type: array
+      items:
+        type: array
+        items: File
+    secondaryFiles:
+      - .bai