yq/test/utils.go

93 lines
2.3 KiB
Go
Raw Normal View History

package test
2015-10-10 08:18:54 +00:00
import (
"bytes"
2015-10-10 08:18:54 +00:00
"fmt"
"io/ioutil"
2015-10-10 08:18:54 +00:00
"os"
"reflect"
"strings"
2015-10-10 08:18:54 +00:00
"testing"
2019-09-03 05:52:55 +00:00
"github.com/spf13/cobra"
2019-12-09 02:44:53 +00:00
yaml "gopkg.in/yaml.v3"
2015-10-10 08:18:54 +00:00
)
type resulter struct {
Error error
Output string
Command *cobra.Command
}
func RunCmd(c *cobra.Command, input string) resulter {
buf := new(bytes.Buffer)
c.SetOutput(buf)
c.SetArgs(strings.Split(input, " "))
err := c.Execute()
output := buf.String()
return resulter{err, output, c}
}
2019-12-09 02:44:53 +00:00
func ParseData(rawData string) yaml.Node {
var parsedData yaml.Node
2015-10-10 08:18:54 +00:00
err := yaml.Unmarshal([]byte(rawData), &parsedData)
if err != nil {
fmt.Printf("Error parsing yaml: %v\n", err)
2015-10-10 08:18:54 +00:00
os.Exit(1)
}
return parsedData
}
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 {
t.Error("Expected <", expectedValue, "> but got <", actualValue, ">", fmt.Sprintf("%T", actualValue))
}
}
func AssertResultComplex(t *testing.T, expectedValue interface{}, actualValue interface{}) {
2018-05-04 15:47:08 +00:00
t.Helper()
if !reflect.DeepEqual(expectedValue, actualValue) {
2020-09-20 12:47:57 +00:00
t.Error("\nExpected <", expectedValue, ">\nbut got <", actualValue, ">", fmt.Sprintf("%T", 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)
t.Error("\nExpected <", expectedValue, ">\nbut got <", actualValue, ">", fmt.Sprintf("%T", actualValue))
}
}
func AssertResultWithContext(t *testing.T, expectedValue interface{}, actualValue interface{}, context interface{}) {
2018-05-04 15:47:08 +00:00
t.Helper()
2015-10-10 08:18:54 +00:00
if expectedValue != actualValue {
t.Error(context)
t.Error(": expected <", expectedValue, "> but got <", actualValue, ">")
}
}
func WriteTempYamlFile(content string) string {
tmpfile, _ := ioutil.TempFile("", "testyaml")
defer func() {
_ = tmpfile.Close()
}()
_, _ = tmpfile.Write([]byte(content))
return tmpfile.Name()
}
func ReadTempYamlFile(name string) string {
// ignore CWE-22 gosec issue - that's more targetted for http based apps that run in a public directory,
// and ensuring that it's not possible to give a path to a file outside thar directory.
content, _ := ioutil.ReadFile(name) // #nosec
return string(content)
}
func RemoveTempYamlFile(name string) {
_ = os.Remove(name)
}