summaryrefslogtreecommitdiff
path: root/jsonschema/tests/test_jsonschema_test_suite.py
blob: 82a3ebd8f3381d9dea404c7008949621c700582f (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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
"""
Test runner for the JSON Schema official test suite

Tests comprehensive correctness of each draft's validator.

See https://github.com/json-schema-org/JSON-Schema-Test-Suite for details.
"""

import sys

from jsonschema import (
    Draft3Validator,
    Draft4Validator,
    Draft6Validator,
    Draft7Validator,
    Draft202012Validator,
    draft3_format_checker,
    draft4_format_checker,
    draft6_format_checker,
    draft7_format_checker,
    draft202012_format_checker,
)
from jsonschema.tests._helpers import bug
from jsonschema.tests._suite import Suite

SUITE = Suite()
DRAFT3 = SUITE.version(name="draft3")
DRAFT4 = SUITE.version(name="draft4")
DRAFT6 = SUITE.version(name="draft6")
DRAFT7 = SUITE.version(name="draft7")
DRAFT202012 = SUITE.version(name="draft2020-12")


def skip(message, **kwargs):
    def skipper(test):
        if all(value == getattr(test, attr) for attr, value in kwargs.items()):
            return message
    return skipper


def missing_format(checker):
    def missing_format(test):
        schema = test.schema
        if (
            schema is True
            or schema is False
            or "format" not in schema
            or schema["format"] in checker.checkers
            or test.valid
        ):
            return

        return "Format checker {0!r} not found.".format(schema["format"])
    return missing_format


def complex_email_validation(test):
    if test.subject != "email":
        return

    message = "Complex email validation is (intentionally) unsupported."
    return skip(
        message=message,
        description="dot after local part is not valid",
    )(test) or skip(
        message=message,
        description="dot before local part is not valid",
    )(test) or skip(
        message=message,
        description="two subsequent dots inside local part are not valid",
    )(test)


is_narrow_build = sys.maxunicode == 2 ** 16 - 1
if is_narrow_build:  # pragma: no cover
    message = "Not running surrogate Unicode case, this Python is narrow."

    def narrow_unicode_build(test):  # pragma: no cover
        return skip(
            message=message,
            description=(
                "one supplementary Unicode code point is not long enough"
            ),
        )(test) or skip(
            message=message,
            description="two supplementary Unicode code points is long enough",
        )(test)
else:
    def narrow_unicode_build(test):  # pragma: no cover
        return


if sys.version_info < (3, 7):
    message = "datetime.date.fromisoformat is new in 3.7+"

    def missing_date_fromisoformat(test):
        return skip(
            message=message,
            subject="date",
            description="invalidates non-padded month dates",
        )(test) or skip(
            message=message,
            subject="date",
            description="invalidates non-padded day dates",
        )(test)
else:
    def missing_date_fromisoformat(test):
        return

allowed_leading_zeros = skip(
    message="This behavior is optional (and Python allows it)",
    subject="ipv4",
    description=(
        "leading zeroes should be rejected, as they are treated as octals"
    ),
)


def leap_second(test):
    return skip(
        message="Leap seconds are unsupported.",
        subject="time",
        description="a valid time string with leap second",
    )(test) or skip(
        message="Leap seconds are unsupported.",
        subject="time",
        description="a valid time string with leap second with offset",
    )(test)


TestDraft3 = DRAFT3.to_unittest_testcase(
    DRAFT3.tests(),
    DRAFT3.format_tests(),
    DRAFT3.optional_tests_of(name="bignum"),
    DRAFT3.optional_tests_of(name="non-bmp-regex"),
    DRAFT3.optional_tests_of(name="zeroTerminatedFloats"),
    Validator=Draft3Validator,
    format_checker=draft3_format_checker,
    skip=lambda test: (
        narrow_unicode_build(test)
        or missing_date_fromisoformat(test)
        or missing_format(draft3_format_checker)(test)
        or complex_email_validation(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": false} and {"a": 0} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": true} and {"a": 1} are unique',
        )(test)
    ),
)


TestDraft4 = DRAFT4.to_unittest_testcase(
    DRAFT4.tests(),
    DRAFT4.format_tests(),
    DRAFT4.optional_tests_of(name="bignum"),
    DRAFT4.optional_tests_of(name="non-bmp-regex"),
    DRAFT4.optional_tests_of(name="zeroTerminatedFloats"),
    Validator=Draft4Validator,
    format_checker=draft4_format_checker,
    skip=lambda test: (
        narrow_unicode_build(test)
        or missing_date_fromisoformat(test)
        or allowed_leading_zeros(test)
        or missing_format(draft4_format_checker)(test)
        or complex_email_validation(test)
        or skip(
            message=bug(),
            subject="ref",
            case_description="Recursive references between schemas",
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description="Location-independent identifier",
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description=(
                "Location-independent identifier with absolute URI"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description=(
                "Location-independent identifier with "
                "base URI change in subschema"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="match $ref to id",
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="no match on enum or $ref to id",
        )(test)
        or skip(
            message=bug(),
            subject="refRemote",
            case_description="base URI change - change folder in subschema",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": false} and {"a": 0} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": true} and {"a": 1} are unique',
        )(test)
    ),
)


TestDraft6 = DRAFT6.to_unittest_testcase(
    DRAFT6.tests(),
    DRAFT6.format_tests(),
    DRAFT6.optional_tests_of(name="bignum"),
    DRAFT6.optional_tests_of(name="non-bmp-regex"),
    Validator=Draft6Validator,
    format_checker=draft6_format_checker,
    skip=lambda test: (
        narrow_unicode_build(test)
        or missing_date_fromisoformat(test)
        or allowed_leading_zeros(test)
        or missing_format(draft6_format_checker)(test)
        or complex_email_validation(test)
        or skip(
            message=bug(),
            subject="ref",
            case_description="Recursive references between schemas",
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description="Location-independent identifier",
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description=(
                "Location-independent identifier with absolute URI"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description=(
                "Location-independent identifier with "
                "base URI change in subschema"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="match $ref to id",
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="no match on enum or $ref to id",
        )(test)
        or skip(
            message=bug(),
            subject="refRemote",
            case_description="base URI change - change folder in subschema",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": false} and {"a": 0} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": true} and {"a": 1} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description="const with [false] does not match [0]",
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description="const with [true] does not match [1]",
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description='const with {"a": false} does not match {"a": 0}',
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description='const with {"a": true} does not match {"a": 1}',
        )(test)
    ),
)


TestDraft7 = DRAFT7.to_unittest_testcase(
    DRAFT7.tests(),
    DRAFT7.format_tests(),
    DRAFT7.optional_tests_of(name="bignum"),
    DRAFT7.optional_tests_of(name="content"),
    DRAFT7.optional_tests_of(name="non-bmp-regex"),
    Validator=Draft7Validator,
    format_checker=draft7_format_checker,
    skip=lambda test: (
        narrow_unicode_build(test)
        or missing_date_fromisoformat(test)
        or allowed_leading_zeros(test)
        or leap_second(test)
        or missing_format(draft7_format_checker)(test)
        or complex_email_validation(test)
        or skip(
            message=bug(),
            subject="ref",
            case_description="Recursive references between schemas",
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description="Location-independent identifier",
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description=(
                "Location-independent identifier with absolute URI"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="ref",
            case_description=(
                "Location-independent identifier with "
                "base URI change in subschema"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="match $ref to id",
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="no match on enum or $ref to id",
        )(test)
        or skip(
            message=bug(),
            subject="refRemote",
            case_description="base URI change - change folder in subschema",
        )(test)
        or skip(
            message=bug(593),
            subject="content",
            valid=False,
            case_description=(
                "validation of string-encoded content based on media type"
            ),
        )(test)
        or skip(
            message=bug(593),
            subject="content",
            valid=False,
            case_description="validation of binary string-encoding",
        )(test)
        or skip(
            message=bug(593),
            subject="content",
            valid=False,
            case_description=(
                "validation of binary-encoded media type documents"
            ),
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": false} and {"a": 0} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": true} and {"a": 1} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description="const with [false] does not match [0]",
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description="const with [true] does not match [1]",
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description='const with {"a": false} does not match {"a": 0}',
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description='const with {"a": true} does not match {"a": 1}',
        )(test)
    ),
)


TestDraft202012 = DRAFT202012.to_unittest_testcase(
    DRAFT202012.tests(),
    DRAFT202012.format_tests(),
    DRAFT202012.optional_tests_of(name="bignum"),
    DRAFT202012.optional_tests_of(name="non-bmp-regex"),
    Validator=Draft202012Validator,
    format_checker=draft202012_format_checker,
    skip=lambda test: (
        narrow_unicode_build(test)
        or missing_date_fromisoformat(test)
        or allowed_leading_zeros(test)
        or leap_second(test)
        or missing_format(draft202012_format_checker)(test)
        or complex_email_validation(test)
        or skip(
            message=bug(),
            subject="ref",
            case_description="Recursive references between schemas",
        )(test)
        or skip(
            message=bug(371),
            subject="anchor",
            case_description="Location-independent identifier",
        )(test)
        or skip(
            message=bug(371),
            subject="anchor",
            case_description=(
                "Location-independent identifier with absolute URI"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="anchor",
            case_description=(
                "Location-independent identifier with "
                "base URI change in subschema"
            ),
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="match $ref to id",
        )(test)
        or skip(
            message=bug(371),
            subject="id",
            description="no match on enum or $ref to id",
        )(test)
        or skip(
            message=bug(),
            subject="refRemote",
            case_description="base URI change - change folder in subschema",
        )(test)
        or skip(
            message=bug(593),
            subject="content",
            valid=False,
            case_description=(
                "validation of string-encoded content based on media type"
            ),
        )(test)
        or skip(
            message=bug(593),
            subject="content",
            valid=False,
            case_description="validation of binary string-encoding",
        )(test)
        or skip(
            message=bug(593),
            subject="content",
            valid=False,
            case_description=(
                "validation of binary-encoded media type documents"
            ),
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="[1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [0] and [false] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description="nested [1] and [true] are unique",
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": false} and {"a": 0} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="uniqueItems",
            description='{"a": true} and {"a": 1} are unique',
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description="const with [false] does not match [0]",
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description="const with [true] does not match [1]",
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description='const with {"a": false} does not match {"a": 0}',
        )(test)
        or skip(
            message=bug(686),
            subject="const",
            case_description='const with {"a": true} does not match {"a": 1}',
        )(test)
    ),
)