mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 03:00:38 +00:00
46 lines
766 B
Go
46 lines
766 B
Go
package yaml
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
func TestStringSlice(t *testing.T) {
|
|
var tests = []struct {
|
|
yaml string
|
|
want []string
|
|
}{
|
|
{
|
|
yaml: "hello world",
|
|
want: []string{"hello world"},
|
|
},
|
|
{
|
|
yaml: "[ hello, world ]",
|
|
want: []string{"hello", "world"},
|
|
},
|
|
{
|
|
yaml: "42",
|
|
want: []string{"42"},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
var got StringSlice
|
|
|
|
if err := yaml.Unmarshal([]byte(test.yaml), &got); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if !reflect.DeepEqual([]string(got), test.want) {
|
|
t.Errorf("Got slice %v want %v", got, test.want)
|
|
}
|
|
}
|
|
|
|
var got StringSlice
|
|
if err := yaml.Unmarshal([]byte("{}"), &got); err == nil {
|
|
t.Errorf("Want error unmarshaling invalid string or slice value.")
|
|
}
|
|
}
|