16306: Move nginx temp dirs into a subdir.
[arvados.git] / services / api / test / fixtures / workflows.yml
index 20e8ed8cddeb7c2490c0dd4c05426bcab56a9644..2859e375a4949ff53e8f53b3458bc4e4fb02ad0a 100644 (file)
@@ -1,16 +1,20 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 workflow_with_definition_yml:
   uuid: zzzzz-7fd4e-validworkfloyml
   owner_uuid: zzzzz-tpzed-xurymjxw79nv3jz
   name: Valid workflow with name and desc
-  description: this workflow has a valid workflow yaml
+  description: this workflow has a valid definition yaml
   definition: "name: foo\ndesc: bar"
   created_at: 2016-08-15 12:00:00
 
 workflow_with_no_definition_yml:
   uuid: zzzzz-7fd4e-validbutnoyml00
   owner_uuid: zzzzz-tpzed-xurymjxw79nv3jz
-  name: Valid workflow with no workflow yaml
-  description: this workflow does not have a workflow yaml
+  name: Valid workflow with no definition yaml
+  description: this workflow does not have a definition yaml
   created_at: 2016-08-15 12:00:00
 
 workflow_with_no_name_and_desc:
@@ -25,7 +29,7 @@ workflow_with_input_specifications:
   name: Workflow with input specifications
   description: this workflow has inputs specified
   created_at: <%= 1.minute.ago.to_s(:db) %>
-  definition:
+  definition: |
     cwlVersion: v1.0
     class: CommandLineTool
     baseCommand:
@@ -44,3 +48,22 @@ workflow_with_input_specifications:
       inputBinding:
         position: 1
     outputs: []
+
+workflow_with_input_defaults:
+  uuid: zzzzz-7fd4e-validwithinput2
+  owner_uuid: zzzzz-j7d0g-zhxawtyetzwc5f0
+  name: Workflow with default input specifications
+  description: this workflow has inputs specified
+  created_at: <%= 1.minute.ago.to_s(:db) %>
+  definition: |
+    cwlVersion: v1.0
+    class: CommandLineTool
+    baseCommand:
+    - echo
+    inputs:
+    - type: string
+      id: ex_string
+    - type: string
+      id: ex_string_def
+      default: hello-testing-123
+    outputs: []