mirror of https://github.com/tidwall/gjson.git
Merge pull request #291 from janisz/master
Handle modifiers with options
This commit is contained in:
commit
8bf80a300b
2
gjson.go
2
gjson.go
|
@ -945,7 +945,7 @@ func isDotPiperChar(s string) bool {
|
|||
// check that the next component is *not* a modifier.
|
||||
i := 1
|
||||
for ; i < len(s); i++ {
|
||||
if s[i] == '.' || s[i] == '|' {
|
||||
if s[i] == '.' || s[i] == '|' || s[i] == ':' {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2554,3 +2554,22 @@ func TestIndexAtSymbol(t *testing.T) {
|
|||
}`
|
||||
assert(t, Get(json, "@context.@vocab").Index == 85)
|
||||
}
|
||||
|
||||
func TestDeepModifierWithOptions(t *testing.T) {
|
||||
rawJson := `{"x":[{"y":[{"z":{"b":1, "c": 2, "a": 3}}]}]}`
|
||||
jsonPathExpr := `x.#.y.#.z.@pretty:{"sortKeys":true}`
|
||||
results := GetManyBytes([]byte(rawJson), jsonPathExpr)
|
||||
assert(t, len(results) == 1)
|
||||
actual := results[0].Raw
|
||||
expected := `[[{
|
||||
"a": 3,
|
||||
"b": 1,
|
||||
"c": 2
|
||||
}
|
||||
]]`
|
||||
if expected != actual {
|
||||
t.Fatal(strconv.Quote(rawJson) + "\n\t" +
|
||||
expected + "\n\t" +
|
||||
actual + "\n\t<<< MISMATCH >>>")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue