summaryrefslogtreecommitdiff
path: root/tests/draft-next/properties.json
blob: 1ba4fe8edcfad8f4e7c33453e58e8e0bfc433e1b (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
[
    {
        "description": "object properties validation",
        "schema": {
            "$schema": "https://json-schema.org/draft/next/schema",
            "properties": {
                "foo": {"type": "integer"},
                "bar": {"type": "string"}
            }
        },
        "tests": [
            {
                "description": "both properties present and valid is valid",
                "data": {"foo": 1, "bar": "baz"},
                "valid": true
            },
            {
                "description": "one property invalid is invalid",
                "data": {"foo": 1, "bar": {}},
                "valid": false
            },
            {
                "description": "both properties invalid is invalid",
                "data": {"foo": [], "bar": {}},
                "valid": false
            },
            {
                "description": "doesn't invalidate other properties",
                "data": {"quux": []},
                "valid": true
            },
            {
                "description": "ignores arrays",
                "data": [],
                "valid": true
            },
            {
                "description": "ignores other non-objects",
                "data": 12,
                "valid": true
            }
        ]
    },
    {
        "description":
            "properties, patternProperties, additionalProperties interaction",
        "schema": {
            "$schema": "https://json-schema.org/draft/next/schema",
            "properties": {
                "foo": {"type": "array", "maxItems": 3},
                "bar": {"type": "array"}
            },
            "patternProperties": {"f.o": {"minItems": 2}},
            "additionalProperties": {"type": "integer"}
        },
        "tests": [
            {
                "description": "property validates property",
                "data": {"foo": [1, 2]},
                "valid": true
            },
            {
                "description": "property invalidates property",
                "data": {"foo": [1, 2, 3, 4]},
                "valid": false
            },
            {
                "description": "patternProperty invalidates property",
                "data": {"foo": []},
                "valid": false
            },
            {
                "description": "patternProperty validates nonproperty",
                "data": {"fxo": [1, 2]},
                "valid": true
            },
            {
                "description": "patternProperty invalidates nonproperty",
                "data": {"fxo": []},
                "valid": false
            },
            {
                "description": "additionalProperty ignores property",
                "data": {"bar": []},
                "valid": true
            },
            {
                "description": "additionalProperty validates others",
                "data": {"quux": 3},
                "valid": true
            },
            {
                "description": "additionalProperty invalidates others",
                "data": {"quux": "foo"},
                "valid": false
            }
        ]
    },
    {
        "description": "properties with boolean schema",
        "schema": {
            "$schema": "https://json-schema.org/draft/next/schema",
            "properties": {
                "foo": true,
                "bar": false
            }
        },
        "tests": [
            {
                "description": "no property present is valid",
                "data": {},
                "valid": true
            },
            {
                "description": "only 'true' property present is valid",
                "data": {"foo": 1},
                "valid": true
            },
            {
                "description": "only 'false' property present is invalid",
                "data": {"bar": 2},
                "valid": false
            },
            {
                "description": "both properties present is invalid",
                "data": {"foo": 1, "bar": 2},
                "valid": false
            }
        ]
    },
    {
        "description": "properties with escaped characters",
        "schema": {
            "$schema": "https://json-schema.org/draft/next/schema",
            "properties": {
                "foo\nbar": {"type": "number"},
                "foo\"bar": {"type": "number"},
                "foo\\bar": {"type": "number"},
                "foo\rbar": {"type": "number"},
                "foo\tbar": {"type": "number"},
                "foo\fbar": {"type": "number"}
            }
        },
        "tests": [
            {
                "description": "object with all numbers is valid",
                "data": {
                    "foo\nbar": 1,
                    "foo\"bar": 1,
                    "foo\\bar": 1,
                    "foo\rbar": 1,
                    "foo\tbar": 1,
                    "foo\fbar": 1
                },
                "valid": true
            },
            {
                "description": "object with strings is invalid",
                "data": {
                    "foo\nbar": "1",
                    "foo\"bar": "1",
                    "foo\\bar": "1",
                    "foo\rbar": "1",
                    "foo\tbar": "1",
                    "foo\fbar": "1"
                },
                "valid": false
            }
        ]
    },
    {
        "description": "properties with null valued instance properties",
        "schema": {
            "$schema": "https://json-schema.org/draft/next/schema",
            "properties": {
                "foo": {"type": "null"}
            }
        },
        "tests": [
            {
                "description": "allows null values",
                "data": {"foo": null},
                "valid": true
            }
        ]
    },
    {
        "description": "properties whose names are Javascript object property names",
        "comment": "Ensure JS implementations don't universally consider e.g. __proto__ to always be present in an object.",
        "schema": {
            "$schema": "https://json-schema.org/draft/next/schema",
            "properties": {
                "__proto__": {"type": "number"},
                "toString": {
                    "properties": { "length": { "type": "string" } }
                },
                "constructor": {"type": "number"}
            }
        },
        "tests": [
            {
                "description": "ignores arrays",
                "data": [],
                "valid": true
            },
            {
                "description": "ignores other non-objects",
                "data": 12,
                "valid": true
            },
            {
                "description": "none of the properties mentioned",
                "data": {},
                "valid": true
            },
            {
                "description": "__proto__ not valid",
                "data": { "__proto__": "foo" },
                "valid": false
            },
            {
                "description": "toString not valid",
                "data": { "toString": { "length": 37 } },
                "valid": false
            },
            {
                "description": "constructor not valid",
                "data": { "constructor": { "length": 37 } },
                "valid": false
            },
            {
                "description": "all present and valid",
                "data": { 
                    "__proto__": 12,
                    "toString": { "length": "foo" },
                    "constructor": 37
                },
                "valid": true
            }
        ]
    }
]