mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mikefarah/yq/v3/test"
|
|
yaml "gopkg.in/yaml.v3"
|
|
)
|
|
|
|
var parseStyleTests = []struct {
|
|
customStyle string
|
|
expectedStyle yaml.Style
|
|
}{
|
|
{"", 0},
|
|
{"tagged", yaml.TaggedStyle},
|
|
{"double", yaml.DoubleQuotedStyle},
|
|
{"single", yaml.SingleQuotedStyle},
|
|
{"folded", yaml.FoldedStyle},
|
|
{"flow", yaml.FlowStyle},
|
|
{"literal", yaml.LiteralStyle},
|
|
}
|
|
|
|
func TestValueParserStyleTag(t *testing.T) {
|
|
for _, tt := range parseStyleTests {
|
|
actual := NewValueParser().Parse("cat", "", tt.customStyle, "", false)
|
|
test.AssertResultWithContext(t, tt.expectedStyle, actual.Style, tt.customStyle)
|
|
}
|
|
}
|
|
|
|
var parseValueTests = []struct {
|
|
argument string
|
|
customTag string
|
|
expectedTag string
|
|
testDescription string
|
|
}{
|
|
{"true", "!!str", "!!str", "boolean forced as string"},
|
|
{"3", "!!int", "!!int", "int"},
|
|
{"cat", "", "", "default"},
|
|
}
|
|
|
|
func TestValueParserParse(t *testing.T) {
|
|
for _, tt := range parseValueTests {
|
|
actual := NewValueParser().Parse(tt.argument, tt.customTag, "", "", false)
|
|
test.AssertResultWithContext(t, tt.argument, actual.Value, tt.testDescription)
|
|
test.AssertResultWithContext(t, tt.expectedTag, actual.Tag, tt.testDescription)
|
|
test.AssertResult(t, yaml.ScalarNode, actual.Kind)
|
|
}
|
|
}
|
|
|
|
func TestValueParserParseEmptyArray(t *testing.T) {
|
|
actual := NewValueParser().Parse("[]", "", "", "", false)
|
|
test.AssertResult(t, "!!seq", actual.Tag)
|
|
test.AssertResult(t, yaml.SequenceNode, actual.Kind)
|
|
}
|
|
|
|
func TestValueParserParseAlias(t *testing.T) {
|
|
actual := NewValueParser().Parse("bob", "", "", "", true)
|
|
test.AssertResult(t, "bob", actual.Value)
|
|
test.AssertResult(t, yaml.AliasNode, actual.Kind)
|
|
}
|
|
|
|
func TestValueParserAnchorname(t *testing.T) {
|
|
actual := NewValueParser().Parse("caterpillar", "", "", "foo", false)
|
|
test.AssertResult(t, "foo", actual.Anchor)
|
|
}
|