yq/test/utils.go

61 lines
1.7 KiB
Go
Raw Normal View History

package test
2015-10-10 08:18:54 +00:00
import (
"bufio"
"bytes"
2015-10-10 08:18:54 +00:00
"fmt"
"reflect"
2015-10-10 08:18:54 +00:00
"testing"
"github.com/pkg/diff"
"github.com/pkg/diff/write"
2015-10-10 08:18:54 +00:00
)
2022-10-25 02:30:38 +00:00
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{}) {
2018-05-04 15:47:08 +00:00
t.Helper()
2015-10-10 08:18:54 +00:00
if expectedValue != actualValue {
2022-10-25 02:30:38 +00:00
printDifference(t, expectedValue, actualValue)
2015-10-10 08:18:54 +00:00
}
}
func AssertResultComplex(t *testing.T, expectedValue interface{}, actualValue interface{}) {
2018-05-04 15:47:08 +00:00
t.Helper()
if !reflect.DeepEqual(expectedValue, actualValue) {
2022-10-25 02:30:38 +00:00
printDifference(t, expectedValue, actualValue)
}
}
2020-10-16 01:29:26 +00:00
func AssertResultComplexWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
t.Helper()
if !reflect.DeepEqual(expectedValue, actualValue) {
t.Error(context)
2022-10-25 02:30:38 +00:00
printDifference(t, expectedValue, actualValue)
2020-10-16 01:29:26 +00:00
}
}
func AssertResultWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
2018-05-04 15:47:08 +00:00
t.Helper()
opts := []write.Option{write.TerminalColor()}
2015-10-10 08:18:54 +00:00
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())
}
2015-10-10 08:18:54 +00:00
}
}