mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
42 lines
974 B
Go
42 lines
974 B
Go
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: "Filter by document index",
|
|
document: "a: cat\n---\na: frog\n",
|
|
expression: `select(. | documentIndex == 1)`,
|
|
expected: []string{
|
|
"D1, P[], (doc)::a: frog\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Print Document Index with matches",
|
|
document: "a: cat\n---\na: frog\n",
|
|
expression: `.a | ({"match": ., "doc": (. | documentIndex)})`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::match: cat\ndoc: 0\n",
|
|
"D0, P[], (!!map)::match: frog\ndoc: 1\n",
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestDocumentIndexScenarios(t *testing.T) {
|
|
for _, tt := range documentIndexScenarios {
|
|
testScenario(t, &tt)
|
|
}
|
|
documentScenarios(t, "Document Index", documentIndexScenarios)
|
|
}
|