Merge pull request #36 from HideyoshiNakazone/fix/required-array-field-not-honored

Fix/required array field not honored
This commit was merged in pull request #36.
This commit is contained in:
2025-08-18 23:00:59 -03:00
committed by GitHub
3 changed files with 46 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class ArrayTypeParser(GenericTypeParser):
mapped_properties = self.mappings_properties_builder(properties, **kwargs)
if "default" not in mapped_properties:
if "default" in properties or not kwargs.get("required", False):
mapped_properties["default_factory"] = self._build_default_factory(
properties.get("default"), wrapper_type
)

View File

@@ -59,7 +59,7 @@ class ObjectTypeParser(GenericTypeParser):
fields = {}
for name, prop in properties.items():
sub_property = kwargs.copy()
sub_property: TypeParserOptions = kwargs.copy()
sub_property["required"] = name in required_keys
parsed_type, parsed_properties = GenericTypeParser.type_from_properties(

View File

@@ -181,7 +181,7 @@ class TestSchemaConverter(TestCase):
self.assertEqual(model(is_active="true").is_active, True)
def test_validation_list(self):
def test_validation_list_with_valid_items(self):
schema = {
"title": "Person",
"description": "A person",
@@ -210,6 +210,46 @@ class TestSchemaConverter(TestCase):
with self.assertRaises(ValueError):
model(friends=["John", "Jane", "Invalid"])
def test_validation_list_with_missing_items(self):
model = SchemaConverter.build(
{
"title": "Person",
"description": "A person",
"type": "object",
"properties": {
"friends": {
"type": "array",
"items": {"type": "string"},
"minItems": 1,
"maxItems": 2,
"default": ["John", "Jane"],
},
},
}
)
self.assertEqual(model().friends, ["John", "Jane"])
model = SchemaConverter.build(
{
"title": "Person",
"description": "A person",
"type": "object",
"properties": {
"friends": {
"type": "array",
"items": {"type": "string"},
"minItems": 1,
"maxItems": 2,
},
},
"required": ["friends"],
}
)
with self.assertRaises(ValueError):
model()
def test_validation_object(self):
schema = {
"title": "Person",
@@ -235,6 +275,9 @@ class TestSchemaConverter(TestCase):
self.assertEqual(obj.address.street, "123 Main St")
self.assertEqual(obj.address.city, "Springfield")
with self.assertRaises(ValueError):
model()
def test_default_for_string(self):
schema = {
"title": "Person",