Skip to content

Commit

Permalink
Merge pull request #291 from janisz/master
Browse files Browse the repository at this point in the history
Handle modifiers with options
  • Loading branch information
tidwall committed Aug 16, 2022
2 parents 475b403 + 9e84870 commit 8bf80a3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gjson.go
Expand Up @@ -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
}
}
Expand Down
19 changes: 19 additions & 0 deletions gjson_test.go
Expand Up @@ -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 >>>")
}
}

0 comments on commit 8bf80a3

Please sign in to comment.