@@ -240,6 +240,30 @@ def test_basic_type_formats(
240
240
241
241
assert result == unmarshalled
242
242
243
+ @pytest .mark .parametrize (
244
+ "type,format,value" ,
245
+ [
246
+ ("string" , "float" , "test" ),
247
+ ("string" , "double" , "test" ),
248
+ ("number" , "date" , 3 ),
249
+ ("number" , "date-time" , 3 ),
250
+ ("number" , "uuid" , 3 ),
251
+ ],
252
+ )
253
+ def test_basic_type_formats_ignored (
254
+ self , unmarshallers_factory , type , format , value
255
+ ):
256
+ schema = {
257
+ "type" : type ,
258
+ "format" : format ,
259
+ }
260
+ spec = Spec .from_dict (schema , validator = None )
261
+ unmarshaller = unmarshallers_factory .create (spec )
262
+
263
+ result = unmarshaller .unmarshal (value )
264
+
265
+ assert result == value
266
+
243
267
@pytest .mark .parametrize (
244
268
"type,format,value" ,
245
269
[
@@ -268,7 +292,8 @@ def test_basic_type_formats_invalid(
268
292
@pytest .mark .parametrize (
269
293
"value,expected" ,
270
294
[
271
- ("dGVzdA==" , "test" ),
295
+ ("dGVzdA==" , b"test" ),
296
+ ("test" , b"\xb5 \xeb -" ),
272
297
],
273
298
)
274
299
def test_string_byte (self , unmarshallers_factory , value , expected ):
@@ -374,23 +399,17 @@ def test_string_uuid_invalid(self, unmarshallers_factory):
374
399
assert len (exc_info .value .schema_errors ) == 1
375
400
assert f"is not a 'uuid'" in exc_info .value .schema_errors [0 ].message
376
401
377
- @pytest .mark .xfail (
378
- reason = (
379
- "Formats raise error for other types. "
380
- "See https://github.com/python-openapi/openapi-schema-validator/issues/66"
381
- )
382
- )
383
402
@pytest .mark .parametrize (
384
403
"type,format,value,expected" ,
385
404
[
386
405
("string" , "float" , "test" , "test" ),
387
406
("string" , "double" , "test" , "test" ),
388
- ("string " , "byte" , "test" , "test" ),
389
- ("integer" , "date" , "10" , 10 ),
390
- ("integer" , "date-time" , "10" , 10 ),
407
+ ("integer " , "byte" , 10 , 10 ),
408
+ ("integer" , "date" , 10 , 10 ),
409
+ ("integer" , "date-time" , 10 , 10 ),
391
410
("string" , "int32" , "test" , "test" ),
392
411
("string" , "int64" , "test" , "test" ),
393
- ("integer" , "password" , "10" , 10 ),
412
+ ("integer" , "password" , 10 , 10 ),
394
413
],
395
414
)
396
415
def test_formats_ignored (
@@ -1679,7 +1698,7 @@ def test_not_nullable(self, unmarshallers_factory, type):
1679
1698
@pytest .mark .parametrize (
1680
1699
"type,format,value,unmarshalled" ,
1681
1700
[
1682
- ("string" , "byte" , "dGVzdA==" , "test" ),
1701
+ ("string" , "byte" , "dGVzdA==" , b "test" ),
1683
1702
("string" , "binary" , b"test" , b"test" ),
1684
1703
],
1685
1704
)
@@ -1728,7 +1747,8 @@ def test_basic_type_oas30_formats_invalid(
1728
1747
reason = (
1729
1748
"OAS 3.0 string type checker allows byte. "
1730
1749
"See https://github.com/python-openapi/openapi-schema-validator/issues/64"
1731
- )
1750
+ ),
1751
+ strict = True ,
1732
1752
)
1733
1753
def test_string_format_binary_invalid (self , unmarshallers_factory ):
1734
1754
schema = {
@@ -1748,7 +1768,8 @@ def test_string_format_binary_invalid(self, unmarshallers_factory):
1748
1768
reason = (
1749
1769
"Rraises TypeError not SchemaError. "
1750
1770
"See ttps://github.com/python-openapi/openapi-schema-validator/issues/65"
1751
- )
1771
+ ),
1772
+ strict = True ,
1752
1773
)
1753
1774
@pytest .mark .parametrize (
1754
1775
"types,value" ,
@@ -1928,7 +1949,8 @@ def unmarshallers_factory(self):
1928
1949
reason = (
1929
1950
"OpenAPI 3.1 schema validator uses OpenAPI 3.0 format checker."
1930
1951
"See https://github.com/python-openapi/openapi-core/issues/506"
1931
- )
1952
+ ),
1953
+ strict = True ,
1932
1954
)
1933
1955
@pytest .mark .parametrize (
1934
1956
"type,format" ,
0 commit comments