mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
package yqlib
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var fileOperatorScenarios = []expressionScenario{
|
|
{
|
|
description: "Get filename",
|
|
document: `{a: cat}`,
|
|
expression: `filename`,
|
|
expected: []string{
|
|
"D0, P[], (!!str)::sample.yml\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Get file index",
|
|
document: `{a: cat}`,
|
|
expression: `file_index`,
|
|
expected: []string{
|
|
"D0, P[], (!!int)::0\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Get file indices of multiple documents",
|
|
document: `{a: cat}`,
|
|
document2: `{a: cat}`,
|
|
expression: `file_index`,
|
|
expected: []string{
|
|
"D0, P[], (!!int)::0\n",
|
|
"D0, P[], (!!int)::1\n",
|
|
},
|
|
},
|
|
{
|
|
description: "Get file index alias",
|
|
document: `{a: cat}`,
|
|
expression: `fi`,
|
|
expected: []string{
|
|
"D0, P[], (!!int)::0\n",
|
|
},
|
|
},
|
|
{
|
|
skipDoc: true,
|
|
document: "a: cat\nb: dog",
|
|
expression: `.. lineComment |= filename`,
|
|
expected: []string{
|
|
"D0, P[], (!!map)::a: cat # sample.yml\nb: dog # sample.yml\n",
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestFileOperatorsScenarios(t *testing.T) {
|
|
for _, tt := range fileOperatorScenarios {
|
|
testScenario(t, &tt)
|
|
}
|
|
documentOperatorScenarios(t, "file-operators", fileOperatorScenarios)
|
|
}
|