mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package treeops
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var collectObjectOperatorScenarios = []expressionScenario{
|
|
{
|
|
document: `{name: Mike, age: 32}`,
|
|
expression: `{.name: .age}`,
|
|
expected: []string{
|
|
"D0, P[0], (!!map)::Mike: 32\n",
|
|
},
|
|
},
|
|
{
|
|
document: `{name: Mike, pets: [cat, dog]}`,
|
|
expression: `{.name: .pets[]}`,
|
|
expected: []string{
|
|
"D0, P[0], (!!map)::Mike: cat\n",
|
|
"D0, P[1], (!!map)::Mike: dog\n",
|
|
},
|
|
},
|
|
{
|
|
document: `{name: Mike, pets: [cat, dog], food: [hotdog, burger]}`,
|
|
expression: `{.name: .pets[], "f":.food[]}`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::Mike: cat\nf: hotdog\n",
|
|
"D0, P[], (!!map)::Mike: cat\nf: burger\n",
|
|
"D0, P[], (!!map)::Mike: dog\nf: hotdog\n",
|
|
"D0, P[], (!!map)::Mike: dog\nf: burger\n",
|
|
},
|
|
},
|
|
{
|
|
document: `{name: Mike, pets: {cows: [apl, bba]}}`,
|
|
expression: `{"a":.name, "b":.pets}`,
|
|
expected: []string{
|
|
`D0, P[], (!!map)::a: Mike
|
|
b: {cows: [apl, bba]}
|
|
`,
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestCollectObjectOperatorScenarios(t *testing.T) {
|
|
for _, tt := range collectObjectOperatorScenarios {
|
|
testScenario(t, &tt)
|
|
}
|
|
}
|