-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunit.bash
63 lines (56 loc) · 1.47 KB
/
unit.bash
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
62
63
#!/bin/usr/env bash
import log
unit__asserts=0
unit::test() {
local test_name=$1
unit__asserts=0
export BASH_LIB_UNDER_TEST=1
log::info "Test $test_name"
"$1"
log::success " ${unit__asserts} assertions passed"
unset BASH_LIB_UNDER_TEST
}
unit::assert_eq() {
local actual=$1
local expected=$2
local msg=${3:-"Error message not provided"}
unit__asserts=$((unit__asserts + 1))
if [ "$actual" != "$expected" ];then
log::error "Assertion failed: $msg"
log::error " expectd \`$actual\` to be \`$expected\`"
log::error " at ${BASH_SOURCE[1]}:${BASH_LINENO[0]}"
exit 1
fi
}
unit::assert_success() {
local cmd=$1
shift
local args=("$@")
unit__asserts=$((unit__asserts + 1))
if ! $cmd "${args[@]}";then
log::error "Excpected $cmd ${args[*]} to succeed"
exit 1
fi
}
unit::assert_failed() {
local cmd=$1
shift
local args=("$@")
unit__asserts=$((unit__asserts + 1))
if $cmd "${args[@]}";then
log::error "Expected $cmd ${args[*]} to fail"
exit 1
fi
}
unit::assert_contain() {
local actual=$1
local contains=$2
local msg=${3:-"Error message not provided"}
unit__asserts=$((unit__asserts + 1))
if ! [[ $actual =~ $contains ]];then
log::error "Assertion failed: $msg"
log::error " expected \`$actual\` to contain \`$contains\`"
log::error " at ${BASH_SOURCE[1]}:${BASH_LINENO[0]}"
exit 1
fi
}