-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtest_validators.py
872 lines (764 loc) · 27.1 KB
/
test_validators.py
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
from base64 import b64encode
import pytest
from jsonschema import ValidationError
from referencing import Registry
from referencing import Resource
from referencing.jsonschema import DRAFT202012
from openapi_schema_validator import OAS30ReadValidator
from openapi_schema_validator import OAS30Validator
from openapi_schema_validator import OAS30WriteValidator
from openapi_schema_validator import OAS31Validator
from openapi_schema_validator import oas30_format_checker
from openapi_schema_validator import oas31_format_checker
class TestOAS30ValidatorFormatChecker:
@pytest.fixture
def format_checker(self):
return OAS30Validator.FORMAT_CHECKER
def test_required_checkers(self, format_checker):
required_formats_set = {
"int32",
"int64",
"float",
"double",
"byte",
"binary",
"date",
"date-time",
"password",
}
assert required_formats_set.issubset(
set(format_checker.checkers.keys())
)
class BaseTestOASValidatorValidate:
@pytest.mark.parametrize(
"format,value",
[
("int32", "test"),
("int32", True),
("int32", 3.12),
("int32", ["test"]),
("int64", "test"),
("int64", True),
("int64", 3.12),
("int64", ["test"]),
("float", "test"),
("float", 3),
("float", True),
("float", ["test"]),
("double", "test"),
("double", 3),
("double", True),
("double", ["test"]),
("password", 3.12),
("password", True),
("password", 3),
("password", ["test"]),
],
)
def test_formats_ignored(
self, format, value, validator_class, format_checker
):
schema = {"format": format}
validator = validator_class(schema, format_checker=format_checker)
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize("format", ["float", "double"])
@pytest.mark.parametrize("value", [3, 3.14, 1.0])
def test_number_float_and_double_valid(
self, format, value, validator_class, format_checker
):
schema = {"type": "number", "format": format}
validator = validator_class(schema, format_checker=format_checker)
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize("value", ["test"])
def test_string(self, validator_class, value):
schema = {"type": "string"}
validator = validator_class(schema)
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize("value", [True, 3, 3.12, None])
def test_string_invalid(self, validator_class, value):
schema = {"type": "string"}
validator = validator_class(schema)
with pytest.raises(ValidationError):
validator.validate(value)
def test_referencing(self, validator_class):
name_schema = Resource.from_contents(
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "string",
}
)
age_schema = DRAFT202012.create_resource(
{
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 120,
}
)
birth_date_schema = Resource.from_contents(
{
"type": "string",
"format": "date",
},
default_specification=DRAFT202012,
)
registry = Registry().with_resources(
[
("urn:name-schema", name_schema),
("urn:age-schema", age_schema),
("urn:birth-date-schema", birth_date_schema),
],
)
schema = {
"type": "object",
"required": ["name"],
"properties": {
"name": {"$ref": "urn:name-schema"},
"age": {"$ref": "urn:age-schema"},
"birth-date": {"$ref": "urn:birth-date-schema"},
},
"additionalProperties": False,
}
validator = validator_class(schema, registry=registry)
result = validator.validate({"name": "John", "age": 23}, schema)
assert result is None
class TestOAS30ValidatorValidate(BaseTestOASValidatorValidate):
@pytest.fixture
def validator_class(self):
return OAS30Validator
@pytest.fixture
def format_checker(self):
return oas30_format_checker
@pytest.mark.parametrize(
"format,value",
[
("binary", True),
("binary", 3),
("binary", 3.12),
("binary", ["test"]),
("byte", True),
("byte", 3),
("byte", 3.12),
("byte", ["test"]),
],
)
def test_oas30_formats_ignored(
self, format, value, validator_class, format_checker
):
schema = {"format": format}
validator = validator_class(schema, format_checker=format_checker)
result = validator.validate(value)
assert result is None
@pytest.mark.xfail(reason="OAS 3.0 string type checker allows byte")
@pytest.mark.parametrize("value", [b"test"])
def test_string_disallow_binary(self, validator_class, value):
schema = {"type": "string"}
validator = validator_class(schema)
with pytest.raises(ValidationError):
validator.validate(value)
@pytest.mark.parametrize("value", [b"test"])
def test_string_binary_valid(self, validator_class, format_checker, value):
schema = {"type": "string", "format": "binary"}
validator = validator_class(schema, format_checker=format_checker)
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize("value", ["test", True, 3, 3.12, None])
def test_string_binary_invalid(
self, validator_class, format_checker, value
):
schema = {"type": "string", "format": "binary"}
validator = validator_class(schema, format_checker=format_checker)
with pytest.raises(ValidationError):
validator.validate(value)
@pytest.mark.parametrize(
"schema_type",
[
"boolean",
"array",
"integer",
"number",
"string",
],
)
def test_null(self, validator_class, schema_type):
schema = {"type": schema_type}
validator = validator_class(schema)
value = None
with pytest.raises(ValidationError):
validator.validate(value)
@pytest.mark.parametrize("is_nullable", [True, False])
def test_nullable_untyped(self, validator_class, is_nullable):
schema = {"nullable": is_nullable}
validator = validator_class(schema)
value = None
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize(
"schema_type",
[
"boolean",
"array",
"integer",
"number",
"string",
],
)
def test_nullable(self, validator_class, schema_type):
schema = {"type": schema_type, "nullable": True}
validator = validator_class(schema)
value = None
result = validator.validate(value)
assert result is None
def test_nullable_enum_without_none(self, validator_class):
schema = {"type": "integer", "nullable": True, "enum": [1, 2, 3]}
validator = validator_class(schema)
value = None
with pytest.raises(ValidationError):
validator.validate(value)
def test_nullable_enum_with_none(self, validator_class):
schema = {"type": "integer", "nullable": True, "enum": [1, 2, 3, None]}
validator = validator_class(schema)
value = None
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize(
"value",
[
b64encode(b"string"),
b64encode(b"string").decode(),
],
)
def test_string_format_byte_valid(self, validator_class, value):
schema = {"type": "string", "format": "byte"}
validator = validator_class(
schema, format_checker=oas30_format_checker
)
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize("value", ["string", b"string"])
def test_string_format_byte_invalid(self, validator_class, value):
schema = {"type": "string", "format": "byte"}
validator = validator_class(
schema, format_checker=oas30_format_checker
)
with pytest.raises(ValidationError, match="is not a 'byte'"):
validator.validate(value)
def test_allof_required(self, validator_class):
schema = {
"allOf": [
{
"type": "object",
"properties": {"some_prop": {"type": "string"}},
},
{"type": "object", "required": ["some_prop"]},
]
}
validator = validator_class(
schema, format_checker=oas30_format_checker
)
with pytest.raises(
ValidationError, match="'some_prop' is a required property"
):
validator.validate({"another_prop": "bla"})
def test_required(self, validator_class):
schema = {
"type": "object",
"properties": {"some_prop": {"type": "string"}},
"required": ["some_prop"],
}
validator = validator_class(
schema, format_checker=oas30_format_checker
)
with pytest.raises(
ValidationError, match="'some_prop' is a required property"
):
validator.validate({"another_prop": "bla"})
assert validator.validate({"some_prop": "hello"}) is None
def test_oneof_required(self, validator_class):
instance = {
"n3IwfId": "string",
}
schema = {
"type": "object",
"properties": {
"n3IwfId": {"type": "string"},
"wagfId": {"type": "string"},
},
"oneOf": [
{"required": ["n3IwfId"]},
{"required": ["wagfId"]},
],
}
validator = validator_class(
schema, format_checker=oas30_format_checker
)
result = validator.validate(instance)
assert result is None
@pytest.mark.parametrize(
"schema_type",
[
"oneOf",
"anyOf",
"allOf",
],
)
def test_oneof_discriminator(self, validator_class, schema_type):
# We define a few components schemas
components = {
"MountainHiking": {
"type": "object",
"properties": {
"discipline": {
"type": "string",
# we allow both the explicitely matched mountain_hiking discipline
# and the implicitely matched MoutainHiking discipline
"enum": ["mountain_hiking", "MountainHiking"],
},
"length": {
"type": "integer",
},
},
"required": ["discipline", "length"],
},
"AlpineClimbing": {
"type": "object",
"properties": {
"discipline": {
"type": "string",
"enum": ["alpine_climbing"],
},
"height": {
"type": "integer",
},
},
"required": ["discipline", "height"],
},
"Route": {
# defined later
},
}
components["Route"][schema_type] = [
{"$ref": "#/components/schemas/MountainHiking"},
{"$ref": "#/components/schemas/AlpineClimbing"},
]
# Add the compoments in a minimalis schema
schema = {
"$ref": "#/components/schemas/Route",
"components": {"schemas": components},
}
if schema_type != "allOf":
# use jsonschema validator when no discriminator is defined
validator = validator_class(
schema, format_checker=oas30_format_checker
)
with pytest.raises(
ValidationError,
match="is not valid under any of the given schemas",
):
validator.validate(
{"something": "matching_none_of_the_schemas"}
)
assert False
if schema_type == "anyOf":
# use jsonschema validator when no discriminator is defined
validator = validator_class(
schema, format_checker=oas30_format_checker
)
with pytest.raises(
ValidationError,
match="is not valid under any of the given schemas",
):
validator.validate(
{"something": "matching_none_of_the_schemas"}
)
assert False
discriminator = {
"propertyName": "discipline",
"mapping": {
"mountain_hiking": "#/components/schemas/MountainHiking",
"alpine_climbing": "#/components/schemas/AlpineClimbing",
},
}
schema["components"]["schemas"]["Route"][
"discriminator"
] = discriminator
# Optional: check we return useful result when the schema is wrong
validator = validator_class(
schema, format_checker=oas30_format_checker
)
with pytest.raises(
ValidationError, match="does not contain discriminating property"
):
validator.validate({"something": "missing"})
assert False
# Check we get a non-generic, somehow usable, error message when a discriminated schema is failing
with pytest.raises(
ValidationError, match="'bad_string' is not of type 'integer'"
):
validator.validate(
{"discipline": "mountain_hiking", "length": "bad_string"}
)
assert False
# Check explicit MountainHiking resolution
validator.validate({"discipline": "mountain_hiking", "length": 10})
# Check implicit MountainHiking resolution
validator.validate({"discipline": "MountainHiking", "length": 10})
# Check non resolvable implicit schema
with pytest.raises(
ValidationError,
match="reference '#/components/schemas/other' could not be resolved",
):
result = validator.validate({"discipline": "other"})
assert False
@pytest.mark.parametrize("is_nullable", [True, False])
def test_nullable_ref(self, validator_class, is_nullable):
"""
Tests that a field that points to a schema reference is null checked based on the $ref schema rather than
on this schema
:param is_nullable: if the schema is marked as nullable. If not, validate an exception is raised on None
"""
schema = {
"$ref": "#/$defs/Pet",
"$defs": {
"NullableText": {"type": "string", "nullable": is_nullable},
"Pet": {
"properties": {
"testfield": {"$ref": "#/$defs/NullableText"},
},
},
},
}
validator = validator_class(
schema,
format_checker=oas30_format_checker,
)
result = validator.validate({"testfield": "John"})
assert result is None
if is_nullable:
result = validator.validate({"testfield": None})
assert result is None
else:
with pytest.raises(
ValidationError,
match="None for not nullable",
):
validator.validate({"testfield": None})
assert False
@pytest.mark.parametrize(
"schema_type, not_nullable_regex",
[
("oneOf", "None is not valid under any of the given schemas"),
("anyOf", "None is not valid under any of the given schemas"),
("allOf", "None for not nullable"),
],
)
@pytest.mark.parametrize("is_nullable", [True, False])
def test_nullable_schema_combos(
self, validator_class, is_nullable, schema_type, not_nullable_regex
):
"""
This test ensures that nullablilty semantics are correct for oneOf, anyOf and allOf
Specifically, nullable should checked on the children schemas
:param is_nullable: if the schema is marked as nullable. If not, validate an exception is raised on None
:param schema_type: the schema type to validate
:param not_nullable_regex: the expected raised exception if fields are marked as not nullable
"""
schema = {
"$ref": "#/$defs/Pet",
"$defs": {
"NullableText": {
"type": "string",
"nullable": (
False if schema_type == "oneOf" else is_nullable
),
},
"NullableEnum": {
"type": "string",
"nullable": is_nullable,
"enum": ["John", "Alice", None],
},
"Pet": {
"properties": {
"testfield": {
schema_type: [
{"$ref": "#/$defs/NullableText"},
{"$ref": "#/$defs/NullableEnum"},
]
}
},
},
},
}
validator = validator_class(
schema,
format_checker=oas30_format_checker,
)
if is_nullable:
result = validator.validate({"testfield": None})
assert result is None
else:
with pytest.raises(ValidationError, match=not_nullable_regex):
validator.validate({"testfield": None})
assert False
class TestOAS30ReadWriteValidatorValidate:
def test_read_only(self):
schema = {
"type": "object",
"properties": {"some_prop": {"type": "string", "readOnly": True}},
}
validator = OAS30WriteValidator(
schema,
format_checker=oas30_format_checker,
)
with pytest.raises(
ValidationError,
match="Tried to write read-only property with hello",
):
validator.validate({"some_prop": "hello"})
validator = OAS30ReadValidator(
schema,
format_checker=oas30_format_checker,
)
assert validator.validate({"some_prop": "hello"}) is None
validator = OAS30Validator(
schema,
format_checker=oas30_format_checker,
)
assert validator.validate({"some_prop": "hello"}) is None
def test_write_only(self):
schema = {
"type": "object",
"properties": {"some_prop": {"type": "string", "writeOnly": True}},
}
validator = OAS30ReadValidator(
schema,
format_checker=oas30_format_checker,
)
with pytest.raises(
ValidationError,
match="Tried to read write-only property with hello",
):
validator.validate({"some_prop": "hello"})
validator = OAS30WriteValidator(
schema,
format_checker=oas30_format_checker,
)
assert validator.validate({"some_prop": "hello"}) is None
validator = OAS30Validator(
schema,
format_checker=oas30_format_checker,
)
assert validator.validate({"some_prop": "hello"}) is None
def test_required_read_only(self):
schema = {
"type": "object",
"properties": {"some_prop": {"type": "string", "readOnly": True}},
"required": ["some_prop"],
}
validator = OAS30ReadValidator(
schema,
format_checker=oas30_format_checker,
)
with pytest.raises(
ValidationError, match="'some_prop' is a required property"
):
validator.validate({"another_prop": "hello"})
validator = OAS30WriteValidator(
schema,
format_checker=oas30_format_checker,
)
assert validator.validate({"another_prop": "hello"}) is None
def test_required_write_only(self):
schema = {
"type": "object",
"properties": {"some_prop": {"type": "string", "writeOnly": True}},
"required": ["some_prop"],
}
validator = OAS30WriteValidator(
schema,
format_checker=oas30_format_checker,
)
with pytest.raises(
ValidationError, match="'some_prop' is a required property"
):
validator.validate({"another_prop": "hello"})
validator = OAS30ReadValidator(
schema,
format_checker=oas30_format_checker,
)
assert validator.validate({"another_prop": "hello"}) is None
class TestOAS31ValidatorFormatChecker:
@pytest.fixture
def format_checker(self):
return OAS31Validator.FORMAT_CHECKER
def test_required_checkers(self, format_checker):
required_formats_set = {
# standard formats
"int32",
"int64",
"float",
"double",
"password",
}
assert required_formats_set.issubset(
set(format_checker.checkers.keys())
)
class TestOAS31ValidatorValidate(BaseTestOASValidatorValidate):
@pytest.fixture
def validator_class(self):
return OAS31Validator
@pytest.fixture
def format_checker(self):
return oas31_format_checker
@pytest.mark.parametrize("value", [b"test"])
def test_string_disallow_binary(self, validator_class, value):
schema = {"type": "string"}
validator = validator_class(schema)
with pytest.raises(ValidationError):
validator.validate(value)
@pytest.mark.parametrize(
"schema_type",
[
"boolean",
"array",
"integer",
"number",
"string",
],
)
def test_null(self, validator_class, schema_type):
schema = {"type": schema_type}
validator = validator_class(schema)
value = None
with pytest.raises(ValidationError):
validator.validate(value)
@pytest.mark.parametrize(
"schema_type",
[
"boolean",
"array",
"integer",
"number",
"string",
],
)
def test_nullable(self, validator_class, schema_type):
schema = {"type": [schema_type, "null"]}
validator = validator_class(schema)
value = None
result = validator.validate(value)
assert result is None
def test_schema_validation(self, validator_class, format_checker):
schema = {
"type": "object",
"required": ["name"],
"properties": {
"name": {"type": "string"},
"age": {
"type": "integer",
"format": "int32",
"minimum": 0,
"nullable": True,
},
"birth-date": {
"type": "string",
"format": "date",
},
},
"additionalProperties": False,
}
validator = validator_class(
schema,
format_checker=format_checker,
)
result = validator.validate({"name": "John", "age": 23})
assert result is None
with pytest.raises(ValidationError) as excinfo:
validator.validate({"name": "John", "city": "London"})
error = "Additional properties are not allowed ('city' was unexpected)"
assert error in str(excinfo.value)
with pytest.raises(ValidationError) as excinfo:
validator.validate({"name": "John", "birth-date": "-12"})
error = "'-12' is not a 'date'"
assert error in str(excinfo.value)
def test_schema_ref(self, validator_class, format_checker):
schema = {
"$ref": "#/$defs/Pet",
"$defs": {
"Pet": {
"required": ["id", "name"],
"properties": {
"id": {"type": "integer", "format": "int64"},
"name": {"type": "string"},
"tag": {"type": "string"},
},
}
},
}
validator = validator_class(
schema,
format_checker=format_checker,
)
result = validator.validate({"id": 1, "name": "John"})
assert result is None
with pytest.raises(ValidationError) as excinfo:
validator.validate({"name": "John"})
error = "'id' is a required property"
assert error in str(excinfo.value)
@pytest.mark.parametrize(
"value",
[
[1600, "Pennsylvania", "Avenue", "NW"],
[1600, "Pennsylvania", "Avenue"],
],
)
def test_array_prefixitems(self, validator_class, format_checker, value):
schema = {
"type": "array",
"prefixItems": [
{"type": "number"},
{"type": "string"},
{"enum": ["Street", "Avenue", "Boulevard"]},
{"enum": ["NW", "NE", "SW", "SE"]},
],
"items": False,
}
validator = validator_class(
schema,
format_checker=format_checker,
)
result = validator.validate(value)
assert result is None
@pytest.mark.parametrize(
"value",
[
[1600, "Pennsylvania", "Avenue", "NW", "Washington"],
],
)
def test_array_prefixitems_invalid(self, validator_class, value):
schema = {
"type": "array",
"prefixItems": [
{"type": "number"},
{"type": "string"},
{"enum": ["Street", "Avenue", "Boulevard"]},
{"enum": ["NW", "NE", "SW", "SE"]},
],
"items": False,
}
validator = validator_class(
schema,
format_checker=oas31_format_checker,
)
with pytest.raises(ValidationError) as excinfo:
validator.validate(value)
errors = [
# jsonschema < 4.20.0
"Expected at most 4 items, but found 5",
# jsonschema >= 4.20.0
"Expected at most 4 items but found 1 extra",
]
assert any(error in str(excinfo.value) for error in errors)