yq/pkg/yqlib/operator_load_test.go

51 lines
1.6 KiB
Go

package yqlib
import (
"testing"
)
var loadScenarios = []expressionScenario{
{
description: "Simple example",
document: `{myFile: "../../examples/thing.yml"}`,
expression: `load(.myFile)`,
expected: []string{
"D0, P[], (doc)::a: apple is included\nb: cool.\n",
},
},
{
description: "Replace node with referenced file",
subdescription: "Note that you can modify the filename in the load operator if needed.",
document: `{something: {file: "thing.yml"}}`,
expression: `.something |= load("../../examples/" + .file)`,
expected: []string{
"D0, P[], (doc)::{something: {a: apple is included, b: cool.}}\n",
},
},
{
description: "Replace _all_ nodes with referenced file",
subdescription: "Recursively match all the nodes (`..`) and then filter the ones that have a 'file' attribute. ",
document: `{something: {file: "thing.yml"}, over: {here: [{file: "thing.yml"}]}}`,
expression: `(.. | select(has("file"))) |= load("../../examples/" + .file)`,
expected: []string{
"D0, P[], (!!map)::{something: {a: apple is included, b: cool.}, over: {here: [{a: apple is included, b: cool.}]}}\n",
},
},
{
description: "Replace node with referenced file as string",
subdescription: "This will work for any text based file",
document: `{something: {file: "thing.yml"}}`,
expression: `.something |= strload("../../examples/" + .file)`,
expected: []string{
"D0, P[], (doc)::{something: \"a: apple is included\\nb: cool.\"}\n",
},
},
}
func TestLoadScenarios(t *testing.T) {
for _, tt := range loadScenarios {
testScenario(t, &tt)
}
documentScenarios(t, "load", loadScenarios)
}