forked from kward/shflags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshflags_parsing_quotes_test.sh
More file actions
executable file
·99 lines (84 loc) · 2.75 KB
/
shflags_parsing_quotes_test.sh
File metadata and controls
executable file
·99 lines (84 loc) · 2.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#! /bin/sh
# vim:et:ft=sh:sts=2:sw=2
#
# shFlags unit test for the flag definition methods
#
# Copyright 2008-2017 Kate Ward. All Rights Reserved.
# Released under the Apache 2.0 license.
#
# Author: kate.ward@forestent.com (Kate Ward)
# https://github.com/kward/shflags
#
### ShellCheck (http://www.shellcheck.net/)
# Disable source following.
# shellcheck disable=SC1090,SC1091
# TODO(kward): assert on FLAGS errors
# TODO(kward): testNonStandardIFS()
# Exit immediately if a pipeline or subshell exits with a non-zero status.
#set -e
# Treat unset variables as an error.
set -u
# These variables will be overridden by the test helpers.
returnF="${TMPDIR:-/tmp}/return"
stdoutF="${TMPDIR:-/tmp}/STDOUT"
stderrF="${TMPDIR:-/tmp}/STDERR"
# Load test helpers.
. ./shflags_test_helpers
testOptionStringsWithQuotes() {
_testValidOptionStrings -s "Single Quote Flag's Test"
_testValidOptionStrings -s "Double Quote \"Flag\" Test"
_testValidOptionStrings -s "Mixed Quote's \"Flag\" Test"
_testValidOptionStrings -s 'Mixed Quote'\''s "Flag" Test'
}
testArgumentStringsWithQuotes() {
_testValidArgumentStrings "Single Quote Flag's Test"
_testValidArgumentStrings "Double Quote \"Flag\" Test"
_testValidArgumentStrings "Mixed Quote's \"Flag\" Test"
}
_testValidOptionStrings() {
flag=$1
value=$2
FLAGS "${flag}" "${value}" >"${stdoutF}" 2>"${stderrF}"
r3turn=$?
assertTrue "'FLAGS ${flag} ${value}' returned a non-zero result (${r3turn})" \
${r3turn}
# shellcheck disable=SC2154
assertEquals "string (${value}) test failed." "${value}" "${FLAGS_str}"
if [ ${r3turn} -eq "${FLAGS_TRUE}" ]; then
assertFalse 'expected no output to STDERR' "[ -s '${stderrF}' ]"
else
# Validate that an error is thrown for unsupported getopt uses.
assertFatalMsg '.* spaces in options'
fi
th_showOutput ${r3turn} "${stdoutF}" "${stderrF}"
}
_testValidArgumentStrings() {
quoted_string="$1"
FLAGS "$quoted_string" >"${stdoutF}" 2>"${stderrF}"
r3turn=$?
assertTrue "'FLAGS $quoted_string' returned a non-zero result (${r3turn})" \
${r3turn}
eval set -- "${FLAGS_ARGV}"
assertEquals "$quoted_string" "$1"
}
oneTimeSetUp() {
th_oneTimeSetUp
if flags_getoptIsStd; then
th_warn 'Standard version of getopt found. Enhanced tests will be skipped.'
else
th_warn 'Enhanced version of getopt found. Standard tests will be skipped.'
fi
}
setUp() {
DEFINE_boolean bool false 'boolean test' 'b'
DEFINE_float float 0.0 'float test' 'f'
DEFINE_integer int 0 'integer test' 'i'
DEFINE_string str '' 'string test' 's'
}
tearDown() {
flags_reset
}
# Load and run shUnit2.
# shellcheck disable=SC2034
[ -n "${ZSH_VERSION:-}" ] && SHUNIT_PARENT=$0
. "${TH_SHUNIT}"