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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
// Tideland Go Library - String Extensions - Unit Tests
//
// Copyright (C) 2015-2017 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
package stringex_test
//--------------------
// IMPORTS
//--------------------
import (
"strings"
"testing"
"github.com/tideland/golib/audit"
"github.com/tideland/golib/stringex"
)
//--------------------
// TESTS
//--------------------
// TestSplitFilter tests splitting with a filter.
func TestSplitFilter(t *testing.T) {
assert := audit.NewTestingAssertion(t, true)
tests := []struct {
name string
in string
sep string
filter func(string) bool
out []string
}{
{
"all fine",
"a/b/c",
"/",
func(p string) bool {
return p != ""
},
[]string{"a", "b", "c"},
}, {
"filter empty parts",
"/a/b//c/",
"/",
func(p string) bool {
return p != ""
},
[]string{"a", "b", "c"},
}, {
"filter all parts",
"a/b/c",
"/",
func(p string) bool {
return p == "x"
},
[]string{},
}, {
"filter empty input",
"",
"/",
func(p string) bool {
return true
},
[]string{""},
}, {
"filter not splitted",
"/a/b/c/",
"+",
func(p string) bool {
return p != ""
},
[]string{"/a/b/c/"},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
defer assert.SetFailable(t)()
out := stringex.SplitFilter(test.in, test.sep, test.filter)
assert.Equal(out, test.out)
})
}
}
// TestSplitMap tests spliting with a mapper.
func TestSplitMap(t *testing.T) {
assert := audit.NewTestingAssertion(t, true)
tests := []struct {
name string
in string
sep string
mapper func(string) (string, bool)
out []string
}{
{
"uppercase all",
"a/b/c",
"/",
func(p string) (string, bool) {
return strings.ToUpper(p), true
},
[]string{"A", "B", "C"},
}, {
"filter empty parts, uppercase the rest",
"/a/b//c/",
"/",
func(p string) (string, bool) {
if p != "" {
return strings.ToUpper(p), true
}
return "", false
},
[]string{"A", "B", "C"},
}, {
"filter all parts",
"a/b/c",
"/",
func(p string) (string, bool) {
return p, p == "x"
},
[]string{},
}, {
"encapsulate even empty input",
"",
"/",
func(p string) (string, bool) {
return "(" + p + ")", true
},
[]string{"()"},
}, {
"uppercase not splitted",
"/a/b/c/",
"+",
func(p string) (string, bool) {
return strings.ToUpper(p), true
},
[]string{"/A/B/C/"},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
defer assert.SetFailable(t)()
out := stringex.SplitMap(test.in, test.sep, test.mapper)
assert.Equal(out, test.out)
})
}
}
// TestMatches tests matching string.
func TestMatches(t *testing.T) {
assert := audit.NewTestingAssertion(t, true)
tests := []struct {
name string
pattern string
value string
ignoreCase bool
out bool
}{
{
"equal pattern and string without wildcards",
"quick brown fox",
"quick brown fox",
true,
true,
}, {
"unequal pattern and string without wildcards",
"quick brown fox",
"lazy dog",
true,
false,
}, {
"matching pattern with one question mark",
"quick brown f?x",
"quick brown fox",
true,
true,
}, {
"matching pattern with one asterisk",
"quick*fox",
"quick brown fox",
true,
true,
}, {
"matching pattern with char group",
"quick brown f[ao]x",
"quick brown fox",
true,
true,
}, {
"not-matching pattern with char group",
"quick brown f[eiu]x",
"quick brown fox",
true,
false,
}, {
"matching pattern with char range",
"quick brown f[a-u]x",
"quick brown fox",
true,
true,
}, {
"not-matching pattern with char range",
"quick brown f[^a-u]x",
"quick brown fox",
true,
false,
}, {
"matching pattern with char group not ignoring care",
"quick * F[aeiou]x",
"quick * Fox",
false,
true,
}, {
"not-matching pattern with char group not ignoring care",
"quick * F[aeiou]x",
"quick * fox",
false,
false,
}, {
"matching pattern with escape",
"quick \\* f\\[o\\]x",
"quick * f[o]x",
true,
true,
}, {
"not-matching pattern with escape",
"quick \\* f\\[o\\]x",
"quick brown fox",
true,
false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
defer assert.SetFailable(t)()
out := stringex.Matches(test.pattern, test.value, test.ignoreCase)
assert.Equal(out, test.out)
})
}
}
// EOF
|