2021-11-16 04:29:16 +00:00
|
|
|
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)
|
|
|
|
}
|
2021-12-21 04:02:07 +00:00
|
|
|
documentOperatorScenarios(t, "load", loadScenarios)
|
2021-11-16 04:29:16 +00:00
|
|
|
}
|