mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
38 lines
834 B
Go
38 lines
834 B
Go
package yqlib
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var parentOperatorScenarios = []expressionScenario{
|
|
{
|
|
description: "Simple example",
|
|
document: `a: {nested: cat}`,
|
|
expression: `.a.nested | parent`,
|
|
expected: []string{
|
|
"D0, P[a], (!!map)::{nested: cat}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Parent of nested matches",
|
|
document: `{a: {fruit: apple, name: bob}, b: {fruit: banana, name: sam}}`,
|
|
expression: `.. | select(. == "banana") | parent`,
|
|
expected: []string{
|
|
"D0, P[b], (!!map)::{fruit: banana, name: sam}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "No parent",
|
|
document: `{}`,
|
|
expression: `parent`,
|
|
expected: []string{},
|
|
},
|
|
}
|
|
|
|
func TestParentOperatorScenarios(t *testing.T) {
|
|
for _, tt := range parentOperatorScenarios {
|
|
testScenario(t, &tt)
|
|
}
|
|
documentOperatorScenarios(t, "parent", parentOperatorScenarios)
|
|
}
|