2020-11-24 02:07:19 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var addOperatorScenarios = []expressionScenario{
|
2020-11-27 23:41:09 +00:00
|
|
|
{
|
2020-11-28 00:24:16 +00:00
|
|
|
description: "Concatenate and assign arrays",
|
|
|
|
document: `{a: {val: thing, b: [cat,dog]}}`,
|
|
|
|
expression: ".a.b += [\"cow\"]",
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (doc)::{a: {val: thing, b: [cat, dog, cow]}}\n",
|
|
|
|
},
|
2020-11-27 23:41:09 +00:00
|
|
|
},
|
2020-11-24 02:07:19 +00:00
|
|
|
{
|
|
|
|
description: "Concatenate arrays",
|
|
|
|
document: `{a: [1,2], b: [3,4]}`,
|
|
|
|
expression: `.a + .b`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[a], (!!seq)::[1, 2, 3, 4]\n",
|
|
|
|
},
|
|
|
|
},
|
2020-12-21 00:54:03 +00:00
|
|
|
{
|
|
|
|
skipDoc: true,
|
|
|
|
expression: `[1] + ([2], [3])`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (!!seq)::- 1\n- 2\n",
|
|
|
|
"D0, P[], (!!seq)::- 1\n- 3\n",
|
|
|
|
},
|
|
|
|
},
|
2020-11-24 02:07:19 +00:00
|
|
|
{
|
|
|
|
description: "Concatenate null to array",
|
|
|
|
document: `{a: [1,2]}`,
|
|
|
|
expression: `.a + null`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[a], (!!seq)::[1, 2]\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Add object to array",
|
|
|
|
document: `{a: [1,2], c: {cat: meow}}`,
|
|
|
|
expression: `.a + .c`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[a], (!!seq)::[1, 2, {cat: meow}]\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Add string to array",
|
|
|
|
document: `{a: [1,2]}`,
|
|
|
|
expression: `.a + "hello"`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[a], (!!seq)::[1, 2, hello]\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Update array (append)",
|
|
|
|
document: `{a: [1,2], b: [3,4]}`,
|
|
|
|
expression: `.a = .a + .b`,
|
|
|
|
expected: []string{
|
|
|
|
"D0, P[], (doc)::{a: [1, 2, 3, 4], b: [3, 4]}\n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAddOperatorScenarios(t *testing.T) {
|
|
|
|
for _, tt := range addOperatorScenarios {
|
|
|
|
testScenario(t, &tt)
|
|
|
|
}
|
|
|
|
documentScenarios(t, "Add", addOperatorScenarios)
|
|
|
|
}
|