summaryrefslogtreecommitdiffstats
path: root/vendor/jsonpath_lib/tests/paths.rs
blob: 61da575ca0c8239288c786bc2133e9884649af94 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#[macro_use]
extern crate serde_json;

use common::{select_and_then_compare, setup};

mod common;

#[test]
fn dolla_token_in_path() {
    setup();

    select_and_then_compare(
        "$..$ref",
        json!({
                "Junk1": "This is a test to illustrate use of '$' in the attr for the expression $..['$ref'] ",
                "$ref": "Match Root",
                "Subset1":[
                    {"Junk2": "Data...",
                     "$ref": "Match Subset1"
                    }
                ],
                "hierachy1":{
                    "hierachy2.1":{
                        "hierachy2.1.1":{ "$ref":"Match 2.1.1"},
                        "hierachy2.1.2":{ "ref":"Match 2.1.2"},
                        "hierachy2.1.3":{ "ref":"No Match 2.1.3"},
                        "hierachy2.1.4":{ "$ref":"Match 2.1.4"},
                        "hierachy2.1.5":{ "ref":"No Match 2.1.5"}
                    },
                    "hierachy2.2":{
                        "hierachy2.2.1":{ "ref":"No Match 2.2.1"},
                        "hierachy2.2.2":{ "$ref":"Match 2.2.2"},
                        "hierachy2.2.3":{ "ref":"No Match 2.2.3"},
                        "hierachy2.2.4":{ "ref":"No Match 2.2.5"},
                        "hierachy2.2.5":{ "$ref":"Match 2.2.5"}
                    },
                    "hierachy2.3":{
                        "hierachy2.3.1":{ "ref":"No Match 2.3.1"},
                        "hierachy2.3.2":{ "ref":"No Match 2.3.2"},
                        "hierachy2.3.3":{ "ref":"No Match 2.3.3"},
                        "hierachy2.3.4":{ "ref":"No Match 2.3.4"},
                        "hierachy2.3.5":{ "ref":"No Match 2.3.5"},
                        "hierachy2.3.6":{
                            "hierachy2.3.6.1":{ "$ref":"Match 2.3.6.1"},
                            "hierachy2.3.6.2":{ "ref":"No Match 2.3.6.2"},
                            "hierachy2.3.6.3":{ "ref":"No Match 2.3.6.3"},
                            "hierachy2.3.6.4":{ "ref":"No Match 2.3.6.4"},
                            "hierachy2.3.6.5":{ "ref":"No Match 2.3.6.5"}
                            }
                        }
                }
            }),
        json!([
           "Match Root",
           "Match Subset1",
           "Match 2.1.1",
           "Match 2.1.4",
           "Match 2.2.2",
           "Match 2.2.5",
           "Match 2.3.6.1"
        ]),
    );

    select_and_then_compare(
        "$..['$ref']",
        json!({
                "Junk1": "This is a test to illustrate use of '$' in the attr for the expression $..['$ref'] ",
                "$ref": "Match Root",
                "Subset1":[
                    {"Junk2": "Data...",
                     "$ref": "Match Subset1"
                    }
                ],
                "hierachy1":{
                    "hierachy2.1":{
                        "hierachy2.1.1":{ "$ref":"Match 2.1.1"},
                        "hierachy2.1.2":{ "ref":"Match 2.1.2"},
                        "hierachy2.1.3":{ "ref":"No Match 2.1.3"},
                        "hierachy2.1.4":{ "$ref":"Match 2.1.4"},
                        "hierachy2.1.5":{ "ref":"No Match 2.1.5"}
                    },
                    "hierachy2.2":{
                        "hierachy2.2.1":{ "ref":"No Match 2.2.1"},
                        "hierachy2.2.2":{ "$ref":"Match 2.2.2"},
                        "hierachy2.2.3":{ "ref":"No Match 2.2.3"},
                        "hierachy2.2.4":{ "ref":"No Match 2.2.5"},
                        "hierachy2.2.5":{ "$ref":"Match 2.2.5"}
                    },
                    "hierachy2.3":{
                        "hierachy2.3.1":{ "ref":"No Match 2.3.1"},
                        "hierachy2.3.2":{ "ref":"No Match 2.3.2"},
                        "hierachy2.3.3":{ "ref":"No Match 2.3.3"},
                        "hierachy2.3.4":{ "ref":"No Match 2.3.4"},
                        "hierachy2.3.5":{ "ref":"No Match 2.3.5"},
                        "hierachy2.3.6":{
                            "hierachy2.3.6.1":{ "$ref":"Match 2.3.6.1"},
                            "hierachy2.3.6.2":{ "ref":"No Match 2.3.6.2"},
                            "hierachy2.3.6.3":{ "ref":"No Match 2.3.6.3"},
                            "hierachy2.3.6.4":{ "ref":"No Match 2.3.6.4"},
                            "hierachy2.3.6.5":{ "ref":"No Match 2.3.6.5"}
                            }
                        }
                }
            }),
        json!([
           "Match Root",
           "Match Subset1",
           "Match 2.1.1",
           "Match 2.1.4",
           "Match 2.2.2",
           "Match 2.2.5",
           "Match 2.3.6.1"
        ]),
    );
}