Skip to content
Snippets Groups Projects
Commit 2d6606b0 authored by ml bonhomme's avatar ml bonhomme :bee: Committed by Erwan Rouchet
Browse files

Replace default Element not found message with ElementRetrieve

parent b339f174
No related branches found
No related tags found
1 merge request!2437Replace default Element not found message with ElementRetrieve
......@@ -21,6 +21,7 @@ from django.db.models import (
prefetch_related_objects,
)
from django.db.models.functions import Cast
from django.http import Http404
from django.shortcuts import get_object_or_404
from django.utils.functional import cached_property
from drf_spectacular.types import OpenApiTypes
......@@ -1291,7 +1292,11 @@ class ElementRetrieve(ACLMixin, RetrieveUpdateDestroyAPIView):
def get_object(self):
# Prevent duplicating database request
if not hasattr(self, "element"):
self.element = super().get_object()
try:
self.element = super().get_object()
except Http404:
# Replacing the default "No Element matches the given query" message
raise Http404(f"Element {self.kwargs['pk']} not found.")
return self.element
def get_queryset(self):
......
......@@ -25,6 +25,12 @@ class TestRetrieveElements(FixtureAPITestCase):
super().setUp()
self.page = self.corpus.elements.get(name="Volume 1, page 1r")
def test_get_element_does_not_exist(self):
with self.assertNumQueries(1):
response = self.client.get(reverse("api:element-retrieve", kwargs={"pk": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"}))
self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND)
self.assertEqual(response.json(), {"detail": "Element aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa not found."})
def test_get_element(self):
ml_class = MLClass.objects.create(name="text", corpus=self.corpus)
classification = self.vol.classifications.create(worker_version=self.worker_version, worker_run=self.worker_run, ml_class=ml_class, confidence=0.8)
......
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