mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
13d1bbb45f
Remove dependency on yaml.Node for internal AST representation. Yaml decoder is now just another decoder.
61 lines
1.7 KiB
Go
61 lines
1.7 KiB
Go
package test
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/pkg/diff"
|
|
"github.com/pkg/diff/write"
|
|
)
|
|
|
|
func printDifference(t *testing.T, expectedValue interface{}, actualValue interface{}) {
|
|
opts := []write.Option{write.TerminalColor()}
|
|
var differenceBuffer bytes.Buffer
|
|
expectedString := fmt.Sprintf("%v", expectedValue)
|
|
actualString := fmt.Sprintf("%v", actualValue)
|
|
if err := diff.Text("expected", "actual", expectedString, actualString, bufio.NewWriter(&differenceBuffer), opts...); err != nil {
|
|
t.Error(err)
|
|
} else {
|
|
t.Error(differenceBuffer.String())
|
|
}
|
|
}
|
|
|
|
func AssertResult(t *testing.T, expectedValue interface{}, actualValue interface{}) {
|
|
t.Helper()
|
|
if expectedValue != actualValue {
|
|
printDifference(t, expectedValue, actualValue)
|
|
}
|
|
}
|
|
|
|
func AssertResultComplex(t *testing.T, expectedValue interface{}, actualValue interface{}) {
|
|
t.Helper()
|
|
if !reflect.DeepEqual(expectedValue, actualValue) {
|
|
printDifference(t, expectedValue, actualValue)
|
|
}
|
|
}
|
|
|
|
func AssertResultComplexWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
|
|
t.Helper()
|
|
if !reflect.DeepEqual(expectedValue, actualValue) {
|
|
t.Error(context)
|
|
printDifference(t, expectedValue, actualValue)
|
|
}
|
|
}
|
|
|
|
func AssertResultWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
|
|
t.Helper()
|
|
opts := []write.Option{write.TerminalColor()}
|
|
if expectedValue != actualValue {
|
|
t.Error(context)
|
|
var differenceBuffer bytes.Buffer
|
|
if err := diff.Text("expected", "actual", expectedValue, actualValue, bufio.NewWriter(&differenceBuffer), opts...); err != nil {
|
|
t.Error(err)
|
|
} else {
|
|
t.Error(differenceBuffer.String())
|
|
}
|
|
}
|
|
}
|