aboutsummaryrefslogtreecommitdiff
path: root/tests/worker/startup.testscript
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-09-04 15:09:13 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-09-04 15:09:13 +0300
commitf399c3b02c8a97f20d92245cf6b3d0b6b0e1e874 (patch)
tree6d3207da4a3499910c50fcc53aab88c8dcb48311 /tests/worker/startup.testscript
parent273fa333112b16811d15755ebe55defb9508c073 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/worker/startup.testscript')
-rw-r--r--tests/worker/startup.testscript105
1 files changed, 105 insertions, 0 deletions
diff --git a/tests/worker/startup.testscript b/tests/worker/startup.testscript
new file mode 100644
index 0000000..e44a74b
--- /dev/null
+++ b/tests/worker/startup.testscript
@@ -0,0 +1,105 @@
+# file : tests/worker/startup.testscript
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+# license : TBC; see accompanying LICENSE file
+
+# Note: requires TFTP server (see buildfile).
+
+test.options = --startup
+tftp = 127.0.0.1:55123/test
+
+: fail-download
+:
+$* --tftp-host "$tftp/$@" 2>>"EOE" &manifest != 0;
+ curl: \(68\) TFTP: File Not Found
+ error: unable to download task manifest from tftp://$tftp/$@/manifest: input/output error
+ EOE
+diff -u - manifest <<EOO
+ : 1
+ name: unknown
+ version: 0
+ status: abnormal
+ EOO
+
+: fail-manifest
+:
+cat <': 1' >=manifest;
+$* --tftp-host "$tftp/$@" 2>>"EOE" != 0;
+ error: invalid task manifest: manifest:2:1: no task package name specified
+ EOE
+diff -u - manifest <<EOO
+ : 1
+ name: unknown
+ version: 0
+ status: abnormal
+ EOO
+
+: fail-env-search
+:
+cat <<EOI >=manifest;
+ : 1
+ name: libhello
+ version: 1.2.3
+ repository-url: https://pkg.example.org/1/
+ repository-type: pkg
+ machine: linux-gcc
+ target: x86_64-linux-gnu
+ EOI
+$* --environments $~ --tftp-host "$tftp/$@" 2>>"EOE" != 0;
+ error: no environment setup executable in $representation($~) for target 'x86_64-linux-gnu'
+ EOE
+diff -u - manifest <<EOO
+ : 1
+ name: libhello
+ version: 1.2.3
+ status: abnormal
+ EOO
+
+: fail-env-run
+:
+cat <<EOI >=x86_64-linux-gnu;
+ #!/bin/sh
+ echo "environment setup failed"
+ exit 1
+ EOI
+chmod ugo+x x86_64-linux-gnu;
+cat <<EOI >=manifest;
+ : 1
+ name: libhello
+ version: 1.2.3
+ repository-url: https://pkg.example.org/1/
+ repository-type: pkg
+ machine: linux-gcc
+ target: x86_64-linux-gnu
+ EOI
+$* --environments $~ --tftp-host "$tftp/$@" 2>>"EOE" != 0;
+ environment setup failed
+ error: process $~/x86_64-linux-gnu terminated with non-zero exit code
+ EOE
+diff -u - manifest <<EOO
+ : 1
+ name: libhello
+ version: 1.2.3
+ status: abnormal
+ EOO
+
+: pass
+:
+cat <<EOI >=x86_64-linux-gnu;
+ #!/bin/sh
+ echo "$1"
+ echo "$2"
+ EOI
+chmod ugo+x x86_64-linux-gnu;
+cat <<EOI >=manifest;
+ : 1
+ name: libhello
+ version: 1.2.3
+ repository-url: https://pkg.example.org/1/
+ repository-type: pkg
+ machine: linux-gcc
+ target: x86_64-linux-gnu
+ EOI
+$* --environments $~ --tftp-host "$tftp/$@" 2>>"EOE"
+ x86_64-linux-gnu
+ $0
+ EOE