forked from alexanderepstein/Bash-Snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqrify.bats
More file actions
executable file
·46 lines (36 loc) · 1.32 KB
/
Copy pathqrify.bats
File metadata and controls
executable file
·46 lines (36 loc) · 1.32 KB
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
#!/usr/bin/env bats
@test "Testing qrify tool" {
echo qrify
}
@test "Check for latest version of bash-snippets on update" {
if [[ "$(uname)" == "Linux" ]];then
run qrify update
[ "$status" -eq 0 ]
[ "$output" = "Bash-Snippets is already the latest version" ]
fi
}
@test "The -h option should print usage" {
run qrify -h
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Qrify" ]
}
@test "Getting the qr code for a test string" {
run qrify this is a test string
[ "$status" -eq 0 ]
[ "${lines[0]}" = "█████████████████████████████████" ]
[ "${lines[1]}" = "█████████████████████████████████" ]
[ "${lines[2]}" = "████ ▄▄▄▄▄ ██▀▄████ ██ ▄▄▄▄▄ ████" ]
[ "${lines[3]}" = "████ █ █ █▄▀█▄▀█ ▀▀█ █ █ ████" ]
[ "${lines[4]}" = "████ █▄▄▄█ ██▄▀▀ ▄ ▀█ █▄▄▄█ ████" ]
}
@test "No arguments prints usage instructions" {
run qrify
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Qrify" ]
}
@test "Get the tools version with -v" {
run qrify -v
[ "$status" -eq 0 ]
result=$( echo $(qrify -v) | grep -Eo "Version")
[ "$result" = "Version" ]
}