mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
112 lines
2.5 KiB
Go
112 lines
2.5 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var deleteOperatorScenarios = []expressionScenario{
|
|
{
|
|
description: "Delete entry in map",
|
|
document: `{a: cat, b: dog}`,
|
|
expression: `del(.b)`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::{a: cat}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Delete nested entry in map",
|
|
document: `{a: {a1: fred, a2: frood}}`,
|
|
expression: `del(.a.a1)`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::{a: {a2: frood}}\n",
|
|
},
|
|
},
|
|
{
|
|
skipDoc: true,
|
|
document: `{a: {a1: fred, a2: frood}}`,
|
|
expression: `del(.. | select(.=="frood"))`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::{a: {a1: fred}}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Delete entry in array",
|
|
document: `[1,2,3]`,
|
|
expression: `del(.[1])`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::[1, 3]\n",
|
|
},
|
|
},
|
|
{
|
|
skipDoc: true,
|
|
document: `a: [1,2,3]`,
|
|
expression: `del(.a[])`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::a: []\n",
|
|
},
|
|
},
|
|
{
|
|
skipDoc: true,
|
|
document: `a: [10,x,10, 10, x, 10]`,
|
|
expression: `del(.a[] | select(. == 10))`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::a: [x, x]\n",
|
|
},
|
|
},
|
|
{
|
|
skipDoc: true,
|
|
document: `a: {thing1: yep, thing2: cool, thing3: hi, b: {thing1: cool, great: huh}}`,
|
|
expression: `del(..)`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::{}\n",
|
|
},
|
|
},
|
|
{
|
|
skipDoc: true,
|
|
document: `a: {thing1: yep, thing2: cool, thing3: hi, b: {thing1: cool, great: huh}}`,
|
|
expression: `del(.. | select(tag == "!!map") | (.b.thing1,.thing2))`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::a: {thing1: yep, thing3: hi, b: {great: huh}}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Delete nested entry in array",
|
|
document: `[{a: cat, b: dog}]`,
|
|
expression: `del(.[0].a)`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::[{b: dog}]\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Delete no matches",
|
|
document: `{a: cat, b: dog}`,
|
|
expression: `del(.c)`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::{a: cat, b: dog}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Delete matching entries",
|
|
document: `{a: cat, b: dog, c: bat}`,
|
|
expression: `del( .[] | select(. == "*at") )`,
|
|
expected: []string{
|
|
"D0, P[], (doc)::{b: dog}\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Recursively delete matching keys",
|
|
document: `{a: {name: frog, b: {name: blog, age: 12}}}`,
|
|
expression: `del(.. | select(has("name")).name)`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::{a: {b: {age: 12}}}\n",
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestDeleteOperatorScenarios(t *testing.T) {
|
|
for _, tt := range deleteOperatorScenarios {
|
|
testScenario(t, &tt)
|
|
}
|
|
documentScenarios(t, "Delete", deleteOperatorScenarios)
|
|
}
|