yq/pkg/yqlib/operator_document_index_tes...

59 lines
1.3 KiB
Go
Raw Normal View History

2020-11-06 01:11:38 +00:00
package yqlib
import (
"testing"
)
var documentIndexScenarios = []expressionScenario{
{
description: "Retrieve a document index",
document: "a: cat\n---\na: frog\n",
expression: `.a | documentIndex`,
expected: []string{
"D0, P[a], (!!int)::0\n",
"D1, P[a], (!!int)::1\n",
},
},
{
description: "Retrieve a document index, shorthand",
document: "a: cat\n---\na: frog\n",
expression: `.a | di`,
expected: []string{
"D0, P[a], (!!int)::0\n",
"D1, P[a], (!!int)::1\n",
},
},
2020-11-06 01:11:38 +00:00
{
description: "Filter by document index",
document: "a: cat\n---\na: frog\n",
2020-12-29 11:32:06 +00:00
expression: `select(documentIndex == 1)`,
2020-11-06 01:11:38 +00:00
expected: []string{
"D1, P[], (doc)::a: frog\n",
},
},
{
description: "Filter by document index shorthand",
document: "a: cat\n---\na: frog\n",
expression: `select(di == 1)`,
expected: []string{
"D1, P[], (doc)::a: frog\n",
},
},
2020-11-06 03:37:01 +00:00
{
description: "Print Document Index with matches",
document: "a: cat\n---\na: frog\n",
2020-12-29 11:32:06 +00:00
expression: `.a | ({"match": ., "doc": documentIndex})`,
2020-11-06 03:37:01 +00:00
expected: []string{
"D0, P[], (!!map)::match: cat\ndoc: 0\n",
2020-11-13 02:19:54 +00:00
"D0, P[], (!!map)::match: frog\ndoc: 1\n",
2020-11-06 03:37:01 +00:00
},
},
2020-11-06 01:11:38 +00:00
}
func TestDocumentIndexScenarios(t *testing.T) {
for _, tt := range documentIndexScenarios {
testScenario(t, &tt)
}
2021-12-21 04:02:07 +00:00
documentOperatorScenarios(t, "document-index", documentIndexScenarios)
2020-11-06 01:11:38 +00:00
}