Skip to content

Commit

Permalink
Check for problem detail return
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Nov 27, 2024
1 parent 102e9f6 commit 81622f2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/palace/manager/api/controller/opds_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
SearchFacets,
WorkList,
)
from palace.manager.util.flask_util import OPDSFeedResponse
from palace.manager.util.problem_detail import ProblemDetail


Expand Down Expand Up @@ -243,7 +244,7 @@ def crawlable_list_feed(self, list_name):

def _crawlable_feed(
self, title, url, worklist, annotator=None, feed_class=OPDSAcquisitionFeed
):
) -> OPDSFeedResponse | ProblemDetail:
"""Helper method to create a crawlable feed.
:param title: The title to use for the feed.
Expand All @@ -270,6 +271,8 @@ def _crawlable_feed(
worklist=worklist,
base_class=CrawlableFacets,
)
if isinstance(facets, ProblemDetail):
return facets
annotator = annotator or self.manager.annotator(worklist, facets=facets)

return feed_class.page(
Expand Down
23 changes: 21 additions & 2 deletions tests/manager/api/controller/test_crawlfeed.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from contextlib import contextmanager
from typing import Any
from unittest.mock import MagicMock
from unittest.mock import MagicMock, create_autospec

import feedparser
from flask import url_for
Expand All @@ -13,7 +13,11 @@
CrawlableFacets,
DynamicLane,
)
from palace.manager.api.problem_details import NO_SUCH_COLLECTION, NO_SUCH_LIST
from palace.manager.api.problem_details import (
NO_SUCH_COLLECTION,
NO_SUCH_LANE,
NO_SUCH_LIST,
)
from palace.manager.core.problem_details import INVALID_INPUT
from palace.manager.feed.acquisition import OPDSAcquisitionFeed
from palace.manager.feed.annotator.circulation import CirculationManagerAnnotator
Expand Down Expand Up @@ -226,6 +230,21 @@ def works(self, _db, facets, pagination, *args, **kwargs):
title="Lane title", url="Lane URL", worklist=mock_lane, feed_class=MockFeed
)

# Lane that cannot be accessed -> problem detail
inaccessible_lane = MockLane()
inaccessible_lane.accessible_to = create_autospec(
mock_lane.accessible_to, return_value=False
)
with circulation_fixture.request_context_with_library("/"):
response = circulation_fixture.manager.opds_feeds._crawlable_feed(
title="Lane title",
url="Lane URL",
worklist=inaccessible_lane,
feed_class=MockFeed,
)
assert isinstance(response, ProblemDetail)
assert NO_SUCH_LANE.uri == response.uri

# Bad pagination data -> problem detail
with circulation_fixture.app.test_request_context("/?size=a"):
response = circulation_fixture.manager.opds_feeds._crawlable_feed(
Expand Down

0 comments on commit 81622f2

Please sign in to comment.