2020-12-21 00:32:34 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var alternativeOperatorScenarios = []expressionScenario{
|
2021-05-28 06:59:02 +00:00
|
|
|
{
|
2021-09-02 05:36:23 +00:00
|
|
|
// to match jq - we do not use a readonly clone context on the LHS.
|
2021-05-28 06:59:02 +00:00
|
|
|
skipDoc: true,
|
|
|
|
expression: `.b // .c`,
|
|
|
|
document: `a: bridge`,
|
2021-09-02 05:36:23 +00:00
|
|
|
expected: []string{
|
|
|
|
"D0, P[c], (!!null)::null\n",
|
|
|
|
},
|
2021-05-28 06:59:02 +00:00
|
|
|
},
|
2021-05-16 04:36:13 +00:00
|
|
|
{
|
|
|
|
skipDoc: true,
|
|
|
|
expression: `(.b // "hello") as $x`,
|
|
|
|
document: `a: bridge`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (doc)::a: bridge\n",
|
|
|
|
},
|
|
|
|
},
|
2021-06-09 23:35:07 +00:00
|
|
|
{
|
|
|
|
skipDoc: true,
|
|
|
|
expression: `.a // .b`,
|
|
|
|
document: `a: 2`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[a], (!!int)::2\n",
|
|
|
|
},
|
|
|
|
},
|
2020-12-21 00:32:34 +00:00
|
|
|
{
|
|
|
|
description: "LHS is defined",
|
|
|
|
expression: `.a // "hello"`,
|
|
|
|
document: `{a: bridge}`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[a], (!!str)::bridge\n",
|
|
|
|
},
|
|
|
|
},
|
2021-04-13 00:42:20 +00:00
|
|
|
{
|
|
|
|
expression: `select(tag == "seq") // "cat"`,
|
|
|
|
skipDoc: true,
|
|
|
|
document: `a: frog`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (!!str)::cat\n",
|
|
|
|
},
|
|
|
|
},
|
2020-12-21 00:32:34 +00:00
|
|
|
{
|
|
|
|
description: "LHS is not defined",
|
|
|
|
expression: `.a // "hello"`,
|
|
|
|
document: `{}`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (!!str)::hello\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "LHS is null",
|
|
|
|
expression: `.a // "hello"`,
|
|
|
|
document: `{a: ~}`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (!!str)::hello\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "LHS is false",
|
|
|
|
expression: `.a // "hello"`,
|
|
|
|
document: `{a: false}`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (!!str)::hello\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "RHS is an expression",
|
|
|
|
expression: `.a // .b`,
|
|
|
|
document: `{a: false, b: cat}`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[b], (!!str)::cat\n",
|
|
|
|
},
|
|
|
|
},
|
2020-12-21 00:42:35 +00:00
|
|
|
{
|
|
|
|
skipDoc: true,
|
|
|
|
expression: `false // true`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (!!bool)::true\n",
|
|
|
|
},
|
|
|
|
},
|
2020-12-21 00:32:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestAlternativeOperatorScenarios(t *testing.T) {
|
|
|
|
for _, tt := range alternativeOperatorScenarios {
|
|
|
|
testScenario(t, &tt)
|
|
|
|
}
|
2021-11-03 02:54:09 +00:00
|
|
|
documentScenarios(t, "alternative-default-value", alternativeOperatorScenarios)
|
2020-12-21 00:32:34 +00:00
|
|
|
}
|