-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson_path_access_test.exs
57 lines (46 loc) · 2.38 KB
/
json_path_access_test.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
defmodule JsonPathAccessTest do
use ExUnit.Case, async: true
doctest JsonPathAccess
alias JsonPathAccess
test "converts dot notation" do
assert ["property", "nested"] == JsonPathAccess.to_access("$.property.nested")
assert ["Property", "nest_Ed"] == JsonPathAccess.to_access("$.Property.nest_Ed")
assert ["number1"] == JsonPathAccess.to_access("$.number1")
assert :error = JsonPathAccess.to_access("$.1number")
end
test "converts dot wildcard notation" do
assert ["property", Access.all()] == JsonPathAccess.to_access("$.property.*")
assert ["property", Access.all()] == JsonPathAccess.to_access("$.property[*]")
end
test "converts bracket notation" do
assert ["property", "nested"] == JsonPathAccess.to_access("$['property']['nested']")
assert ["Property", "neSt_ed"] == JsonPathAccess.to_access("$['Property']['neSt_ed']")
assert ["Pro perty", "neSt.ed"] == JsonPathAccess.to_access("$['Pro perty']['neSt.ed']")
assert ["Pro perty", "neSt.ed"] == JsonPathAccess.to_access(~S($["Pro perty"]["neSt.ed"]))
end
test "converts a mix of dot and bracket notation" do
assert ["property", "nested", "another"] ==
JsonPathAccess.to_access("$['property'].nested['another']")
assert ["Property", "Nested", "ano_Ther"] ==
JsonPathAccess.to_access("$['Property'].Nested['ano_Ther']")
end
test "converts array index" do
assert ["property", Access.at(0)] == JsonPathAccess.to_access("$['property'][0]")
assert ["property", Access.at(1)] == JsonPathAccess.to_access("$.property[1]")
assert ["last", Access.at(-1)] == JsonPathAccess.to_access("$.last[-1]")
end
test "converts array slices" do
assert [Access.slice(1..2//1)] == JsonPathAccess.to_access("$[1:3]")
assert [Access.slice(1..4//1)] == JsonPathAccess.to_access("$[1:5:1]")
assert_raise ArgumentError, fn -> JsonPathAccess.to_access("$[5:1:-1]") end
end
test "converts list selectors" do
list = ~w(a b c d e f g)
assert ~w(b d b g) == get_in(list, JsonPathAccess.to_access("$[1, 3, 1, -1]"))
assert ["b", ["b", "c", "d"], "f"] == get_in(list, JsonPathAccess.to_access("$[1, 1:4, -2]"))
assert ~w(a B c D e f G) ==
update_in(list, JsonPathAccess.to_access("$[1, 3, -1]"), &String.upcase/1)
assert {["b", "d", "g"], ["a", "c", "e", "f"]} ==
pop_in(list, JsonPathAccess.to_access("$[1, 3, -1]"))
end
end