yq/pkg/yqlib/lib_test.go

105 lines
1.8 KiB
Go
Raw Normal View History

package yqlib
2022-10-30 05:29:42 +00:00
import (
"testing"
"github.com/mikefarah/yq/v4/test"
yaml "gopkg.in/yaml.v3"
)
func TestGetLogger(t *testing.T) {
l := GetLogger()
if l != log {
t.Fatal("GetLogger should return the yq logger instance, not a copy")
}
}
2022-10-30 05:29:42 +00:00
type parseSnippetScenario struct {
2022-11-09 10:46:00 +00:00
snippet string
expected *yaml.Node
expectedError string
2022-10-30 05:29:42 +00:00
}
var parseSnippetScenarios = []parseSnippetScenario{
2022-11-09 10:46:00 +00:00
{
snippet: ":",
expectedError: "yaml: did not find expected key",
},
2022-10-30 05:29:42 +00:00
{
snippet: "",
expected: &yaml.Node{
Kind: yaml.ScalarNode,
Tag: "!!null",
},
},
2022-10-31 22:15:59 +00:00
{
snippet: "null",
expected: &yaml.Node{
Kind: yaml.ScalarNode,
Tag: "!!null",
Value: "null",
2022-11-15 00:35:31 +00:00
Line: 0,
Column: 0,
2022-10-31 22:15:59 +00:00
},
},
2022-10-30 05:29:42 +00:00
{
snippet: "3",
expected: &yaml.Node{
Kind: yaml.ScalarNode,
Tag: "!!int",
Value: "3",
2022-11-15 00:35:31 +00:00
Line: 0,
Column: 0,
2022-10-30 05:29:42 +00:00
},
},
{
snippet: "cat",
expected: &yaml.Node{
Kind: yaml.ScalarNode,
Tag: "!!str",
Value: "cat",
2022-11-15 00:35:31 +00:00
Line: 0,
Column: 0,
2022-10-30 05:29:42 +00:00
},
},
{
snippet: "3.1",
expected: &yaml.Node{
Kind: yaml.ScalarNode,
Tag: "!!float",
Value: "3.1",
2022-11-15 00:35:31 +00:00
Line: 0,
Column: 0,
2022-10-30 05:29:42 +00:00
},
},
{
snippet: "true",
expected: &yaml.Node{
Kind: yaml.ScalarNode,
Tag: "!!bool",
Value: "true",
2022-11-15 00:35:31 +00:00
Line: 0,
Column: 0,
2022-10-30 05:29:42 +00:00
},
},
}
func TestParseSnippet(t *testing.T) {
for _, tt := range parseSnippetScenarios {
actual, err := parseSnippet(tt.snippet)
2022-11-09 10:46:00 +00:00
if tt.expectedError != "" {
if err == nil {
t.Errorf("Expected error '%v' but it worked!", tt.expectedError)
} else {
test.AssertResultComplexWithContext(t, tt.expectedError, err.Error(), tt.snippet)
}
return
}
2022-10-30 05:29:42 +00:00
if err != nil {
t.Error(tt.snippet)
t.Error(err)
}
test.AssertResultComplexWithContext(t, tt.expected, actual, tt.snippet)
}
}