Skip to content
Snippets Groups Projects
Verified Commit 60baef24 authored by Aleš Mrázek's avatar Aleš Mrázek Committed by Vladimír Čunát
Browse files

modeling/base_schema.py: empty lists not allowed

parent 6e3d72be
No related branches found
No related tags found
1 merge request!1451modeling: empty lists are not allowed
......@@ -294,6 +294,8 @@ class ObjectMapper:
try:
for i, val in enumerate(obj):
res.append(self.map_object(inner_type, val, object_path=f"{object_path}[{i}]"))
if len(res) == 0:
raise DataValidationError("empty list is not allowed", object_path)
except DataValidationError as e:
errs.append(e)
except TypeError as e:
......
......@@ -53,6 +53,14 @@ def test_parsing_str_invalid():
_TestStr(parse_yaml("v: false")) # bool
def test_parsing_list_empty():
class ListSchema(ConfigSchema):
empty: List[Any]
with raises(DataValidationError):
ListSchema(parse_yaml("empty: []"))
@pytest.mark.parametrize("typ,val", [(_TestInt, 5), (_TestBool, False), (_TestStr, "test")])
def test_parsing_nested(typ: Type[ConfigSchema], val: Any):
class UpperSchema(ConfigSchema):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment