Adapt search tests since the simple backend is not so permissive as ElasticSearch

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2024-01-13 18:47:17 +01:00
parent dc56396012
commit 8222f3b781
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
3 changed files with 4 additions and 6 deletions

View File

@ -413,9 +413,7 @@ class TestRegistration(TestCase):
"""
Try to search some things.
"""
call_command("rebuild_index", "--noinput", "-v", 0)
response = self.client.get(reverse("haystack_search") + "?q=" + self.user.email)
response = self.client.get(reverse("haystack_search") + "?q=" + self.user.last_name)
self.assertEqual(response.status_code, 200)
self.assertTrue(response.context["object_list"])
@ -425,6 +423,6 @@ class TestRegistration(TestCase):
self.assertTrue(response.context["object_list"])
response = self.client.get(reverse("haystack_search") + "?q=" +
self.student.registration.get_student_class_display())
self.student.registration.school)
self.assertEqual(response.status_code, 200)
self.assertTrue(response.context["object_list"])

View File

@ -207,8 +207,6 @@ HAYSTACK_CONNECTIONS = {
}
}
HAYSTACK_SIGNAL_PROCESSOR = 'haystack.signals.RealtimeSignalProcessor'
_db_type = os.getenv('DJANGO_DB_TYPE', 'sqlite').lower()
if _db_type == 'mysql' or _db_type.startswith('postgres') or _db_type == 'psql': # pragma: no cover

View File

@ -47,3 +47,5 @@ HAYSTACK_CONNECTIONS = {
'INDEX_NAME': 'haystack',
}
}
HAYSTACK_SIGNAL_PROCESSOR = 'haystack.signals.RealtimeSignalProcessor'