diff options
Diffstat (limited to 'e2e-tests/jobs')
20 files changed, 56 insertions, 0 deletions
diff --git a/e2e-tests/jobs/boolean-false-input-value.yaml b/e2e-tests/jobs/boolean-false-input-value.yaml new file mode 100644 index 0000000..0729f40 --- /dev/null +++ b/e2e-tests/jobs/boolean-false-input-value.yaml @@ -0,0 +1,2 @@ +message: Hello world! +no-newline?: false diff --git a/e2e-tests/jobs/capture-output-file-with-parameter-reference.yaml b/e2e-tests/jobs/capture-output-file-with-parameter-reference.yaml new file mode 100644 index 0000000..892dbe7 --- /dev/null +++ b/e2e-tests/jobs/capture-output-file-with-parameter-reference.yaml @@ -0,0 +1,4 @@ +archive: + class: File + location: hello.tar +extractfile: hello.txt diff --git a/e2e-tests/jobs/capture-output-file.yaml b/e2e-tests/jobs/capture-output-file.yaml new file mode 100644 index 0000000..faf24d2 --- /dev/null +++ b/e2e-tests/jobs/capture-output-file.yaml @@ -0,0 +1,3 @@ +archive: + class: File + location: hello.tar diff --git a/e2e-tests/jobs/checksum.yaml b/e2e-tests/jobs/checksum.yaml new file mode 100644 index 0000000..dce679c --- /dev/null +++ b/e2e-tests/jobs/checksum.yaml @@ -0,0 +1,3 @@ +file: + class: File + location: hello.tar diff --git a/e2e-tests/jobs/command-line-tool-with-array-input.yaml b/e2e-tests/jobs/command-line-tool-with-array-input.yaml new file mode 100644 index 0000000..a0fc50c --- /dev/null +++ b/e2e-tests/jobs/command-line-tool-with-array-input.yaml @@ -0,0 +1,3 @@ +messages: + - foo + - bar diff --git a/e2e-tests/jobs/decompress-compile-run.yaml b/e2e-tests/jobs/decompress-compile-run.yaml new file mode 100644 index 0000000..e2a0b74 --- /dev/null +++ b/e2e-tests/jobs/decompress-compile-run.yaml @@ -0,0 +1,3 @@ +compressed_source: + class: File + location: hello.c.gz diff --git a/e2e-tests/jobs/empty.yaml b/e2e-tests/jobs/empty.yaml new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/e2e-tests/jobs/empty.yaml @@ -0,0 +1 @@ +{} diff --git a/e2e-tests/jobs/hello-world.yaml b/e2e-tests/jobs/hello-world.yaml new file mode 100644 index 0000000..5329e73 --- /dev/null +++ b/e2e-tests/jobs/hello-world.yaml @@ -0,0 +1 @@ +message: Hello world! diff --git a/e2e-tests/jobs/hello.c b/e2e-tests/jobs/hello.c new file mode 100644 index 0000000..07f4fc2 --- /dev/null +++ b/e2e-tests/jobs/hello.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main () +{ + printf("Hello World!\n"); + return 0; +} diff --git a/e2e-tests/jobs/hello.c.gz b/e2e-tests/jobs/hello.c.gz new file mode 100644 index 0000000..81c4d84 --- /dev/null +++ b/e2e-tests/jobs/hello.c.gz Binary files differdiff --git a/e2e-tests/jobs/hello.tar b/e2e-tests/jobs/hello.tar new file mode 100644 index 0000000..edcc4a8 --- /dev/null +++ b/e2e-tests/jobs/hello.tar Binary files differdiff --git a/e2e-tests/jobs/inline-javascript-requirement.yaml b/e2e-tests/jobs/inline-javascript-requirement.yaml new file mode 100644 index 0000000..73b1beb --- /dev/null +++ b/e2e-tests/jobs/inline-javascript-requirement.yaml @@ -0,0 +1 @@ +number: 13 diff --git a/e2e-tests/jobs/int-for-float-input.yaml b/e2e-tests/jobs/int-for-float-input.yaml new file mode 100644 index 0000000..0d12299 --- /dev/null +++ b/e2e-tests/jobs/int-for-float-input.yaml @@ -0,0 +1,2 @@ +message1: 1 +message2: 1.2 diff --git a/e2e-tests/jobs/prefix-arguments.yaml b/e2e-tests/jobs/prefix-arguments.yaml new file mode 100644 index 0000000..6e888d9 --- /dev/null +++ b/e2e-tests/jobs/prefix-arguments.yaml @@ -0,0 +1,2 @@ +separator: "," +last: 10 diff --git a/e2e-tests/jobs/scatter.yaml b/e2e-tests/jobs/scatter.yaml new file mode 100644 index 0000000..702d6f3 --- /dev/null +++ b/e2e-tests/jobs/scatter.yaml @@ -0,0 +1,5 @@ +message: foo +other_messages: + - bar + - foobar + - barbar diff --git a/e2e-tests/jobs/spell-check-dictionary b/e2e-tests/jobs/spell-check-dictionary new file mode 100644 index 0000000..71df044 --- /dev/null +++ b/e2e-tests/jobs/spell-check-dictionary @@ -0,0 +1,8 @@ +brown +dog +fox +jumps +lazy +over +quick +the \ No newline at end of file diff --git a/e2e-tests/jobs/spell-check-text.txt b/e2e-tests/jobs/spell-check-text.txt new file mode 100644 index 0000000..a116b9a --- /dev/null +++ b/e2e-tests/jobs/spell-check-text.txt @@ -0,0 +1 @@ +The quick brown fox jumps over the laazy dog. diff --git a/e2e-tests/jobs/spell-check.yaml b/e2e-tests/jobs/spell-check.yaml new file mode 100644 index 0000000..b01a8e1 --- /dev/null +++ b/e2e-tests/jobs/spell-check.yaml @@ -0,0 +1,6 @@ +text-file: + class: File + location: spell-check-text.txt +dictionary: + class: File + location: spell-check-dictionary diff --git a/e2e-tests/jobs/staging-input-files.yaml b/e2e-tests/jobs/staging-input-files.yaml new file mode 100644 index 0000000..94b5224 --- /dev/null +++ b/e2e-tests/jobs/staging-input-files.yaml @@ -0,0 +1,3 @@ +file: + class: File + location: hello.c diff --git a/e2e-tests/jobs/unseparated-prefix-arguments.yaml b/e2e-tests/jobs/unseparated-prefix-arguments.yaml new file mode 100644 index 0000000..e179c1b --- /dev/null +++ b/e2e-tests/jobs/unseparated-prefix-arguments.yaml @@ -0,0 +1 @@ +message: foo |
