-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtest_single.sh
executable file
·61 lines (47 loc) · 1.1 KB
/
test_single.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
set -eo pipefail
echo ''
DEBUG=false
TMP_DIR="/tmp/.opnsense_test_$(date +%s)"
TMP_COL_DIR="$TMP_DIR/collections"
export ANSIBLE_INVENTORY_UNPARSED_WARNING=False
export ANSIBLE_LOCALHOST_WARNING=False
export ANSIBLE_NO_TARGET_SYSLOG=True
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ] || [ -z "$4" ]
then
echo 'Arguments:'
echo ' 1: firewall'
echo ' 2: api key file'
echo " 3: path to local collection - set to '0' to clone from github"
echo ' 4: name of test to run'
echo ' 5: if check-mode should be ran (optional; 0/1; default=1)'
echo ' 6: path to virtual environment (optional)'
echo ''
exit 1
else
export TEST_FIREWALL="$1"
export TEST_API_KEY="$2"
fi
LOCAL_COLLECTION="$3"
TEST="$4"
if [ -n "$5" ]
then
CHECK_MODE="$5"
else
CHECK_MODE='1'
fi
if [ -n "$6" ]
then
source "$6/bin/activate"
fi
if [[ "$DEBUG" == true ]]
then
VERBOSITY='-D -vvv'
else
VERBOSITY=''
fi
set -u
source "$(dirname "$0")/test_prep.sh" # shared between single/multi test
cd "$TMP_COL_DIR/ansible_collections/ansibleguy/opnsense"
run_test "$TEST" "$CHECK_MODE"
rm -rf "$TMP_DIR"