mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
32 lines
625 B
Go
32 lines
625 B
Go
|
package yqlib
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
var pipeOperatorScenarios = []expressionScenario{
|
||
|
{
|
||
|
description: "Simple Pipe",
|
||
|
document: `{a: {b: cat}}`,
|
||
|
expression: `.a | .b`,
|
||
|
expected: []string{
|
||
|
"D0, P[a b], (!!str)::cat\n",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
description: "Multiple updates",
|
||
|
document: `{a: cow, b: sheep, c: same}`,
|
||
|
expression: `.a = "cat" | .b = "dog"`,
|
||
|
expected: []string{
|
||
|
"D0, P[], (doc)::{a: cat, b: dog, c: same}\n",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func TestPipeOperatorScenarios(t *testing.T) {
|
||
|
for _, tt := range pipeOperatorScenarios {
|
||
|
testScenario(t, &tt)
|
||
|
}
|
||
|
documentScenarios(t, "Pipe", pipeOperatorScenarios)
|
||
|
}
|