aboutsummaryrefslogtreecommitdiffstats
path: root/test/setup.sh
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/setup.sh
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/setup.sh')
-rw-r--r--test/setup.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/setup.sh b/test/setup.sh
new file mode 100644
index 0000000..636c7d6
--- /dev/null
+++ b/test/setup.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+mkdir -p "$BOSUN_DIR/app-foo/package.use"
+mkdir -p "$BOSUN_DIR/service-bar/package.use"
+mkdir -p "$BOSUN_DIR/service-bar/package.accept_keywords"
+mkdir -p "$BOSUN_DIR/host-baz"
+
+touch "$BOSUN_DIR/app-foo/package.use/30-app-foo"
+touch "$BOSUN_DIR/service-bar/package.use/20-service-bar"
+touch "$BOSUN_DIR/service-bar/package.accept_keywords/20-service-bar"
+touch "$BOSUN_DIR/host-baz/make.conf"
+
+mkdir -p "$BOSUN_DIR/../package.use"
+ln -s ../stow/app-foo/package.use/30-app-foo "$BOSUN_DIR/../package.use/30-app-foo"
+ln -s ../stow/service-bar/package.use/20-service-bar "$BOSUN_DIR/../package.use/20-service-bar"
+ln -s stow/service-bar/package.accept_keywords "$BOSUN_DIR/../package.accept_keywords"