Reinstate support for generic IndexView without model attribute

000d417ec9 (in #12236) skips the check that `self.model` is non-null in `is_searchable`. This means that it is no longer possible to define IndexView subclasses without a model property, which was previously valid - for example this one from wagtail-review:

ce2f6d814b/wagtail_review/views/admin.py (L98-L104)
pull/12293/head
Matt Westcott 2024-09-07 03:40:40 +01:00 zatwierdzone przez Matt Westcott
rodzic 467cced098
commit 7cad7c4f0e
4 zmienionych plików z 24 dodań i 1 usunięć

Wyświetl plik

@ -24,6 +24,19 @@ class TestGenericIndexView(WagtailTestUtils, TestCase):
self.assertEqual(h1.text.strip(), "Model with string type primary keys")
class TestGenericIndexViewWithoutModel(WagtailTestUtils, TestCase):
fixtures = ["test.json"]
def get(self, params={}):
return self.client.get(reverse("testapp_generic_index_without_model"), params)
def test_non_integer_primary_key(self):
response = self.get()
self.assertEqual(response.status_code, 200)
response_object_count = response.context_data["object_list"].count()
self.assertEqual(response_object_count, 3)
class TestGenericEditView(WagtailTestUtils, TestCase):
fixtures = ["test.json"]

Wyświetl plik

@ -98,7 +98,7 @@ class IndexView(
def is_searchable(self):
# Do not automatically enable search if the model is not indexed and
# search_fields is not defined.
if not class_is_indexed(self.model) and not self.search_fields:
if not (self.model and class_is_indexed(self.model)) and not self.search_fields:
return False
# Require the results-only view to be set up before enabling search

Wyświetl plik

@ -14,4 +14,9 @@ urlpatterns = [
views.TestDeleteView.as_view(),
name="testapp_generic_delete",
),
path(
"test-index-without-model/",
views.TestIndexViewWithoutModel.as_view(),
name="testapp_generic_index_without_model",
),
]

Wyświetl plik

@ -68,6 +68,11 @@ class TestIndexView(IndexView):
context_object_name = "test_object"
class TestIndexViewWithoutModel(IndexView):
def get_base_queryset(self):
return ModelWithStringTypePrimaryKey.objects.all()
class CustomModelEditForm(forms.ModelForm):
class Meta:
model = ModelWithStringTypePrimaryKey