mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +00:00
Extracted out common test code
This commit is contained in:
parent
98751cf607
commit
5f09aabf4c
@ -2,22 +2,10 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/mikefarah/yaml/Godeps/_workspace/src/gopkg.in/yaml.v2"
|
|
||||||
"os"
|
|
||||||
"sort"
|
"sort"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func parseData(rawData string) map[interface{}]interface{} {
|
|
||||||
var parsedData map[interface{}]interface{}
|
|
||||||
err := yaml.Unmarshal([]byte(rawData), &parsedData)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println("Error parsing yaml: %v", err)
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
return parsedData
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestReadMap_simple(t *testing.T) {
|
func TestReadMap_simple(t *testing.T) {
|
||||||
var data = parseData(`
|
var data = parseData(`
|
||||||
---
|
---
|
||||||
@ -130,17 +118,3 @@ b:
|
|||||||
b := data["b"]
|
b := data["b"]
|
||||||
assertResult(t, "4", fmt.Sprintf("%v", b))
|
assertResult(t, "4", fmt.Sprintf("%v", b))
|
||||||
}
|
}
|
||||||
|
|
||||||
func assertResult(t *testing.T, expectedValue interface{}, actualValue interface{}) {
|
|
||||||
if expectedValue != actualValue {
|
|
||||||
t.Error("Expected <", expectedValue, "> but got <", actualValue, ">", fmt.Sprintf("%T", actualValue))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func assertResultWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
|
|
||||||
|
|
||||||
if expectedValue != actualValue {
|
|
||||||
t.Error(context)
|
|
||||||
t.Error(": expected <", expectedValue, "> but got <", actualValue, ">")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
32
utils_test.go
Normal file
32
utils_test.go
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/mikefarah/yaml/Godeps/_workspace/src/gopkg.in/yaml.v2"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func parseData(rawData string) map[interface{}]interface{} {
|
||||||
|
var parsedData map[interface{}]interface{}
|
||||||
|
err := yaml.Unmarshal([]byte(rawData), &parsedData)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error parsing yaml: %v", err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
return parsedData
|
||||||
|
}
|
||||||
|
|
||||||
|
func assertResult(t *testing.T, expectedValue interface{}, actualValue interface{}) {
|
||||||
|
if expectedValue != actualValue {
|
||||||
|
t.Error("Expected <", expectedValue, "> but got <", actualValue, ">", fmt.Sprintf("%T", actualValue))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func assertResultWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
|
||||||
|
|
||||||
|
if expectedValue != actualValue {
|
||||||
|
t.Error(context)
|
||||||
|
t.Error(": expected <", expectedValue, "> but got <", actualValue, ">")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user