2021-10-22 01:00:47 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2021-10-22 01:37:47 +00:00
|
|
|
var encoderDecoderOperatorScenarios = []expressionScenario{
|
2021-10-22 01:00:47 +00:00
|
|
|
{
|
|
|
|
description: "Encode value as yaml string",
|
|
|
|
document: `{a: {cool: "thing"}}`,
|
|
|
|
expression: `.b = (.a | to_yaml)`,
|
|
|
|
expected: []string{
|
|
|
|
`D0, P[], (doc)::{a: {cool: "thing"}, b: "{cool: \"thing\"}\n"}
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Encode value as yaml string, using toyaml",
|
|
|
|
subdescription: "Does the same thing as to_yaml, matching jq naming convention.",
|
|
|
|
document: `{a: {cool: "thing"}}`,
|
|
|
|
expression: `.b = (.a | to_yaml)`,
|
|
|
|
expected: []string{
|
|
|
|
`D0, P[], (doc)::{a: {cool: "thing"}, b: "{cool: \"thing\"}\n"}
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Encode value as json string",
|
|
|
|
document: `{a: {cool: "thing"}}`,
|
|
|
|
expression: `.b = (.a | to_json)`,
|
|
|
|
expected: []string{
|
|
|
|
`D0, P[], (doc)::{a: {cool: "thing"}, b: "{\n \"cool\": \"thing\"\n}\n"}
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Encode value as props string",
|
|
|
|
document: `{a: {cool: "thing"}}`,
|
|
|
|
expression: `.b = (.a | to_props)`,
|
|
|
|
expected: []string{
|
|
|
|
`D0, P[], (doc)::{a: {cool: "thing"}, b: "cool = thing\n"}
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
},
|
2021-10-22 01:37:47 +00:00
|
|
|
{
|
|
|
|
description: "Decode a yaml encoded string",
|
|
|
|
document: `a: "foo: bar"`,
|
|
|
|
expression: `.b = (.a | from_yaml)`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (doc)::a: \"foo: bar\"\nb:\n foo: bar\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Update an encoded yaml string",
|
|
|
|
dontFormatInputForDoc: true,
|
|
|
|
document: "a: |\n foo: bar",
|
|
|
|
expression: `.a |= (from_yaml | .foo = "cat" | to_yaml)`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (doc)::a: |\n foo: cat\n",
|
|
|
|
},
|
|
|
|
},
|
2021-10-22 01:00:47 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 01:37:47 +00:00
|
|
|
func TestEncoderDecoderOperatorScenarios(t *testing.T) {
|
|
|
|
for _, tt := range encoderDecoderOperatorScenarios {
|
2021-10-22 01:00:47 +00:00
|
|
|
testScenario(t, &tt)
|
|
|
|
}
|
2021-10-22 01:37:47 +00:00
|
|
|
documentScenarios(t, "Encoder and Decoder", encoderDecoderOperatorScenarios)
|
2021-10-22 01:00:47 +00:00
|
|
|
}
|