forked from gruntwork-io/bash-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
string.bats
189 lines (153 loc) · 4.71 KB
/
string.bats
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/usr/bin/env bats
source "$BATS_TEST_DIRNAME/../modules/bash-commons/src/string.sh"
load "test-helper"
@test "string_contains haystack empty needle empty, match" {
run string_contains "" ""
assert_success
}
@test "string_contains haystack empty needle has value, no match" {
run string_contains "" "foo"
assert_failure
}
@test "string_contains haystack has value, needle empty, match" {
run string_contains "foo" ""
assert_success
}
@test "string_contains haystack has value, needle has value, no match" {
run string_contains "foo" "bar"
assert_failure
}
@test "string_contains haystack has value, needle has value, exact match" {
run string_contains "foo" "foo"
assert_success
}
@test "string_contains haystack has value, needle has value, internal match" {
run string_contains "foo bar baz" "bar"
assert_success
}
@test "string_multiline_contains haystack empty needle empty, match" {
run string_multiline_contains "" ""
assert_success
}
@test "string_multiline_contains haystack empty needle has value, no match" {
run string_multiline_contains "" "foo"
assert_failure
}
@test "string_multiline_contains haystack has value, needle empty, match" {
run string_multiline_contains "foo" ""
assert_success
}
@test "string_multiline_contains haystack has value, needle has value, no match" {
run string_multiline_contains "foo" "bar"
assert_failure
}
@test "string_multiline_contains haystack has value, needle has value, exact match" {
run string_multiline_contains "foo" "foo"
assert_success
}
@test "string_multiline_contains haystack has value, needle has value, internal match" {
run string_multiline_contains "foo bar baz" "bar"
assert_success
}
@test "string_multiline_contains haystack has multiline value, needle has value, internal match" {
local readonly multiline=$(echo -e "foo\nbar\nbaz")
run string_multiline_contains "$multiline" "bar"
assert_success
}
@test "string_multiline_contains haystack has multiline value, needle has value, no match" {
local readonly multiline=$(echo -e "foo\na bar b\nbaz")
run string_multiline_contains "$multiline" "bar"
assert_success
}
@test "string_multiline_contains haystack has multiline value, needle has value, regex match" {
local readonly multiline=$(echo -e "foo\na bar b\nbaz")
run string_multiline_contains "$multiline" ".*bar.*"
assert_success
}
@test "string_to_uppercase input lowercase" {
run string_to_uppercase "foo"
assert_success
assert_output "FOO"
}
@test "string_to_uppercase input uppercase" {
run string_to_uppercase "FOO"
assert_success
assert_output "FOO"
}
@test "string_to_uppercase input mixed" {
run string_to_uppercase "fOo"
assert_success
assert_output "FOO"
}
@test "string_strip_prefix empty string, empty prefix" {
run string_strip_prefix "" ""
assert_success
assert_output ""
}
@test "string_strip_prefix empty string, non empty prefix" {
run string_strip_prefix "" "foo"
assert_success
assert_output ""
}
@test "string_strip_prefix non empty string, empty prefix" {
run string_strip_prefix "foo" ""
assert_success
assert_output "foo"
}
@test "string_strip_prefix non empty string, non empty prefix, no match" {
run string_strip_prefix "foo" "bar"
assert_success
assert_output "foo"
}
@test "string_strip_prefix non empty string, non empty prefix, exact match" {
run string_strip_prefix "foo=bar" "foo="
assert_success
assert_output "bar"
}
@test "string_strip_prefix non empty string, non empty prefix, wildcard match" {
run string_strip_prefix "foo=bar" "*="
assert_success
assert_output "bar"
}
@test "string_strip_suffix empty string, empty suffix" {
run string_strip_suffix "" ""
assert_success
assert_output ""
}
@test "string_strip_suffix empty string, non empty suffix" {
run string_strip_suffix "" "foo"
assert_success
assert_output ""
}
@test "string_strip_suffix non empty string, empty suffix" {
run string_strip_suffix "foo" ""
assert_success
assert_output "foo"
}
@test "string_strip_suffix non empty string, non empty suffix, no match" {
run string_strip_suffix "foo" "bar"
assert_success
assert_output "foo"
}
@test "string_strip_suffix non empty string, non empty suffix, exact match" {
run string_strip_suffix "foo=bar" "=bar"
assert_success
assert_output "foo"
}
@test "string_strip_suffix non empty string, non empty suffix, wildcard match" {
run string_strip_suffix "foo=bar" "=*"
assert_success
assert_output "foo"
}
@test "string_is_empty_or_null empty string" {
run string_is_empty_or_null ""
assert_success
}
@test "string_is_empty_or_null null string" {
run string_is_empty_or_null "null"
assert_success
}
@test "string_is_empty_or_null non empty string" {
run string_is_empty_or_null "foo"
assert_failure
}