mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
c5f80a105d
Adds the ability to append a value to an array instead of having to know the index of the values within the array. Resolves: #17
44 lines
953 B
Go
44 lines
953 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var parsePathsTests = []struct {
|
|
path string
|
|
expectedPaths []string
|
|
}{
|
|
{"a.b", []string{"a", "b"}},
|
|
{"a.b[0]", []string{"a", "b", "0"}},
|
|
{"a.b.d[+]", []string{"a", "b", "d", "+"}},
|
|
}
|
|
|
|
func TestParsePath(t *testing.T) {
|
|
for _, tt := range parsePathsTests {
|
|
assertResultComplex(t, tt.expectedPaths, parsePath(tt.path))
|
|
}
|
|
}
|
|
|
|
var nextYamlPathTests = []struct {
|
|
path string
|
|
expectedElement string
|
|
expectedRemaining string
|
|
}{
|
|
{"a.b", "a", "b"},
|
|
{"a", "a", ""},
|
|
{"a.b.c", "a", "b.c"},
|
|
{"\"a.b\".c", "a.b", "c"},
|
|
{"a.\"b.c\".d", "a", "\"b.c\".d"},
|
|
{"[1].a.d", "1", "a.d"},
|
|
{"a[0].c", "a", "[0].c"},
|
|
{"[0]", "0", ""},
|
|
}
|
|
|
|
func TestNextYamlPath(t *testing.T) {
|
|
for _, tt := range nextYamlPathTests {
|
|
var element, remaining = nextYamlPath(tt.path)
|
|
assertResultWithContext(t, tt.expectedElement, element, tt)
|
|
assertResultWithContext(t, tt.expectedRemaining, remaining, tt)
|
|
}
|
|
}
|