yq/data_navigator_test.go

144 lines
2.8 KiB
Go
Raw Normal View History

2015-09-28 01:39:16 +00:00
package main
import (
2015-09-28 02:00:38 +00:00
"fmt"
"gopkg.in/yaml.v2"
"os"
2015-10-05 23:01:33 +00:00
"sort"
2015-09-28 02:00:38 +00:00
"testing"
2015-09-28 01:39:16 +00:00
)
func parseData(rawData string) map[interface{}]interface{} {
var parsedData map[interface{}]interface{}
err := yaml.Unmarshal([]byte(rawData), &parsedData)
2015-09-28 02:00:38 +00:00
if err != nil {
fmt.Println("Error parsing yaml: %v", err)
os.Exit(1)
}
return parsedData
2015-09-28 01:39:16 +00:00
}
func TestReadMap_simple(t *testing.T) {
var data = parseData(`
---
b:
c: 2
`)
assertResult(t, 2, readMap(data, "b", []string{"c"}))
2015-09-28 01:39:16 +00:00
}
2015-10-05 23:01:33 +00:00
func TestReadMap_splat(t *testing.T) {
var data = parseData(`
---
mapSplat:
item1: things
item2: whatever
`)
assertResult(t, "[things whatever]", fmt.Sprintf("%v", readMap(data, "mapSplat", []string{"*"})))
}
func TestReadMap_deep_splat(t *testing.T) {
var data = parseData(`
---
mapSplatDeep:
item1:
cats: bananas
item2:
cats: apples
`)
var result = readMap(data, "mapSplatDeep", []string{"*", "cats"}).([]interface{})
var actual = []string{result[0].(string), result[1].(string)}
sort.Strings(actual)
assertResult(t, "[apples bananas]", fmt.Sprintf("%v", actual))
}
2015-10-03 07:06:33 +00:00
func TestReadMap_key_doesnt_exist(t *testing.T) {
var data = parseData(`
---
b:
c: 2
`)
assertResult(t, nil, readMap(data, "b.x.f", []string{"c"}))
2015-10-03 07:06:33 +00:00
}
func TestReadMap_recurse_against_string(t *testing.T) {
var data = parseData(`
---
a: cat
`)
assertResult(t, nil, readMap(data, "a", []string{"b"}))
}
2015-10-03 07:06:33 +00:00
func TestReadMap_with_array(t *testing.T) {
var data = parseData(`
---
b:
d:
- 3
- 4
`)
assertResult(t, 4, readMap(data, "b", []string{"d", "1"}))
2015-09-28 01:39:16 +00:00
}
2015-10-03 07:06:33 +00:00
func TestReadMap_with_array_out_of_bounds(t *testing.T) {
var data = parseData(`
---
b:
d:
- 3
- 4
`)
assertResult(t, nil, readMap(data, "b", []string{"d", "3"}))
}
2015-10-05 03:41:01 +00:00
func TestReadMap_with_array_splat(t *testing.T) {
var data = parseData(`
e:
-
name: Fred
thing: cat
-
name: Sam
thing: dog
`)
assertResult(t, "[Fred Sam]", fmt.Sprintf("%v", readMap(data, "e", []string{"*", "name"})))
2015-10-05 03:41:01 +00:00
}
func TestWrite_simple(t *testing.T) {
var data = parseData(`
b:
c: 2
`)
write(data, "b", []string{"c"}, "4")
b := data["b"].(map[interface{}]interface{})
2015-10-01 04:43:57 +00:00
assertResult(t, "4", b["c"].(string))
}
func TestWrite_with_no_tail(t *testing.T) {
var data = parseData(`
b:
c: 2
`)
write(data, "b", []string{}, "4")
b := data["b"]
assertResult(t, "4", fmt.Sprintf("%v", b))
}
2015-10-01 04:43:57 +00:00
func assertResult(t *testing.T, expectedValue interface{}, actualValue interface{}) {
2015-10-01 05:20:07 +00:00
if expectedValue != actualValue {
2015-10-05 03:41:01 +00:00
t.Error("Expected <", expectedValue, "> but got <", actualValue, ">", fmt.Sprintf("%T", actualValue))
}
}
2015-10-01 05:20:07 +00:00
2015-10-03 05:10:29 +00:00
func assertResultWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
2015-10-05 03:41:01 +00:00
2015-10-01 05:20:07 +00:00
if expectedValue != actualValue {
2015-10-03 05:10:29 +00:00
t.Error(context)
t.Error(": expected <", expectedValue, "> but got <", actualValue, ">")
2015-10-01 05:20:07 +00:00
}
}