mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
49 lines
903 B
Go
49 lines
903 B
Go
|
package yqlib
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
var hasOperatorScenarios = []expressionScenario{
|
||
|
{
|
||
|
description: "Has map key",
|
||
|
document: `- a: "yes"
|
||
|
- a: ~
|
||
|
- a:
|
||
|
- b: nope
|
||
|
`,
|
||
|
expression: `.[] | has("a")`,
|
||
|
expected: []string{
|
||
|
"D0, P[0], (!!bool)::true\n",
|
||
|
"D0, P[1], (!!bool)::true\n",
|
||
|
"D0, P[2], (!!bool)::true\n",
|
||
|
"D0, P[3], (!!bool)::false\n",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
dontFormatInputForDoc: true,
|
||
|
description: "Has array index",
|
||
|
document: `- []
|
||
|
- [1]
|
||
|
- [1, 2]
|
||
|
- [1, null]
|
||
|
- [1, 2, 3]
|
||
|
`,
|
||
|
expression: `.[] | has(1)`,
|
||
|
expected: []string{
|
||
|
"D0, P[0], (!!bool)::false\n",
|
||
|
"D0, P[1], (!!bool)::false\n",
|
||
|
"D0, P[2], (!!bool)::true\n",
|
||
|
"D0, P[3], (!!bool)::true\n",
|
||
|
"D0, P[4], (!!bool)::true\n",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func TestHasOperatorScenarios(t *testing.T) {
|
||
|
for _, tt := range hasOperatorScenarios {
|
||
|
testScenario(t, &tt)
|
||
|
}
|
||
|
documentScenarios(t, "Has", hasOperatorScenarios)
|
||
|
}
|