aboutsummaryrefslogtreecommitdiffstats
path: root/test/01-add.test
diff options
context:
space:
mode:
authorWolfgang Müller2021-03-10 17:09:13 +0100
committerWolfgang Müller2021-03-10 17:09:13 +0100
commit3bce19d12d93f1b27e7d2f2acbef0926417d5390 (patch)
tree3700afd21af95a0904be6aaf3378fc75e3955b10 /test/01-add.test
parent1d767c0bdd6476a4ba9a998b8953ec8b9ad9f21c (diff)
downloadbosun-3bce19d12d93f1b27e7d2f2acbef0926417d5390.tar.gz
Add a first draft of the test suite1.3.0
The introduction of a test suite makes future changes easier to troubleshoot and verify. Whilst this is only a first draft, it should be stable enough to be used in normal development and should cover the entirety of bosun's functionality.
Diffstat (limited to 'test/01-add.test')
-rw-r--r--test/01-add.test31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/01-add.test b/test/01-add.test
new file mode 100644
index 0000000..b4d223f
--- /dev/null
+++ b/test/01-add.test
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+header "bosun add"
+
+assert success "add host-baz" "$BOSUN_CMD" add host-baz
+
+want <<EOF
+./make.conf -> stow/host-baz/make.conf
+./package.accept_keywords -> stow/service-bar/package.accept_keywords
+./package.use/20-service-bar -> ../stow/service-bar/package.use/20-service-bar
+./package.use/30-app-foo -> ../stow/app-foo/package.use/30-app-foo
+EOF
+
+have_links
+assert_output_matches "adds role 'host-baz'"
+
+want <<EOF
+bosun: this command requires at least one role
+EOF
+
+assert failure "add" "$BOSUN_CMD" add
+assert_output_matches "prints error message"
+
+want <<EOF
+bosun: no such role 'role-missing' in $BOSUN_DIR
+EOF
+
+assert failure "add role-missing" "$BOSUN_CMD" add role-missing
+assert_output_matches "prints error message"
+
+end