Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add validation of view builder during registration #6

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/dbally/_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,15 @@ def build_dogs_df_view():
if non_default_args and builder is None:
raise ValueError("Builder function is required for views with non-default arguments")

builder = builder or view

# instantiate view to check if the builder is correct
view_instance = builder()
if not isinstance(view_instance, view):
raise ValueError(f"The builder function for view {name} must return an instance of {view.__name__}")

self._views[name] = view
self._builders[name] = builder or view
self._builders[name] = builder

def get(self, name: str) -> AbstractBaseView:
"""
Expand Down
27 changes: 26 additions & 1 deletion tests/unit/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ def builder():
assert len(collection.list()) == 3

view = collection.get("MockViewWithAttributes")
mocked_builder.assert_called_once()
mocked_builder.assert_called()
assert mocked_builder.call_count == 2 # one during registration and one during get
assert isinstance(view, MockViewWithAttributes)
assert view.foo == "bar"

Expand All @@ -157,6 +158,30 @@ def test_error_when_view_with_non_default_args(collection: Collection) -> None:
assert True


def test_error_when_view_builder_with_wrong_return_type(collection: Collection) -> None:
"""
Tests that the add method raises an exception when the view builder returns a wrong type
"""

def builder():
return MockView1()

with pytest.raises(ValueError):
collection.add(MockViewWithAttributes, builder=builder)


def test_error_when_view_incorrect_builder(collection: Collection) -> None:
"""
Tests that the add method raises an exception when the the builder itself raises an exception
"""

def builder():
raise ValueError("foo")

with pytest.raises(ValueError):
collection.add(MockViewWithAttributes, builder=builder)


@pytest.fixture(name="collection_feedback")
def mock_collection_feedback_loop() -> Collection:
"""
Expand Down
Loading