2017-04-30 09:22:07 +00:00
|
|
|
package provider
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2017-06-03 12:56:25 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2017-04-30 09:22:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSplitAndTrimString(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
desc string
|
|
|
|
input string
|
|
|
|
expected []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "empty string",
|
|
|
|
input: "",
|
|
|
|
expected: nil,
|
|
|
|
}, {
|
|
|
|
desc: "one piece",
|
|
|
|
input: "foo",
|
|
|
|
expected: []string{"foo"},
|
|
|
|
}, {
|
|
|
|
desc: "two pieces",
|
|
|
|
input: "foo,bar",
|
|
|
|
expected: []string{"foo", "bar"},
|
|
|
|
}, {
|
|
|
|
desc: "three pieces",
|
|
|
|
input: "foo,bar,zoo",
|
|
|
|
expected: []string{"foo", "bar", "zoo"},
|
|
|
|
}, {
|
|
|
|
desc: "two pieces with whitespace",
|
|
|
|
input: " foo , bar ",
|
|
|
|
expected: []string{"foo", "bar"},
|
|
|
|
}, {
|
|
|
|
desc: "consecutive commas",
|
|
|
|
input: " foo ,, bar ",
|
|
|
|
expected: []string{"foo", "bar"},
|
|
|
|
}, {
|
2017-06-01 20:10:19 +00:00
|
|
|
desc: "consecutive commas with whitespace",
|
2017-04-30 09:22:07 +00:00
|
|
|
input: " foo , , bar ",
|
|
|
|
expected: []string{"foo", "bar"},
|
|
|
|
}, {
|
|
|
|
desc: "leading and trailing commas",
|
|
|
|
input: ",, foo , , bar,, , ",
|
|
|
|
expected: []string{"foo", "bar"},
|
|
|
|
}, {
|
|
|
|
desc: "no valid pieces",
|
|
|
|
input: ", , , ,, ,",
|
|
|
|
expected: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range cases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
actual := SplitAndTrimString(test.input)
|
|
|
|
assert.Equal(t, test.expected, actual)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|