1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 21:34:45 +01:00
gojekyll/utils/yaml_test.go

37 lines
775 B
Go
Raw Normal View History

2017-07-09 22:17:20 +02:00
package utils
2017-06-23 00:26:16 +02:00
import (
"testing"
yaml "gopkg.in/yaml.v2"
2017-06-23 00:26:16 +02:00
"github.com/stretchr/testify/require"
)
const mapYaml = "a: 1\nb: 2"
const listYaml = "- a\n- b"
func TestUnmarshalYAML(t *testing.T) {
var d interface{}
err := UnmarshalYAMLInterface([]byte(mapYaml), &d)
require.NoError(t, err)
switch d := d.(type) {
case yaml.MapSlice:
2017-06-23 00:26:16 +02:00
require.Len(t, d, 2)
require.Equal(t, yaml.MapItem{Key: "a", Value: 1}, d[0])
2017-06-23 00:26:16 +02:00
default:
require.IsType(t, map[interface{}]interface{}{}, d)
2017-06-23 00:26:16 +02:00
}
err = UnmarshalYAMLInterface([]byte(listYaml), &d)
require.NoError(t, err)
require.IsType(t, d, []interface{}{})
switch d := d.(type) {
case []interface{}:
require.Len(t, d, 2)
require.Equal(t, "a", d[0])
default:
require.IsType(t, d, map[interface{}]interface{}{})
}
}