mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-13 23:30:40 +00:00
29 lines
543 B
Go
29 lines
543 B
Go
package drone
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestSplitWithEscaping(t *testing.T) {
|
|
tests := []struct {
|
|
Input string
|
|
Output []string
|
|
}{
|
|
{"", []string{}},
|
|
{"a,b", []string{"a", "b"}},
|
|
{",,,", []string{"", "", "", ""}},
|
|
{",a\\,", []string{"", "a,"}},
|
|
{"a,b\\,c\\\\d,e", []string{"a", "b,c\\\\d", "e"}},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
strings := splitWithEscaping(test.Input, ",", "\\")
|
|
got, want := strings, test.Output
|
|
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Errorf("Got tag %v, want %v", got, want)
|
|
}
|
|
}
|
|
}
|