Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
2d6606b0
Commit
2d6606b0
authored
6 months ago
by
ml bonhomme
Committed by
Erwan Rouchet
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Replace default Element not found message with ElementRetrieve
parent
b339f174
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2437
Replace default Element not found message with ElementRetrieve
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arkindex/documents/api/elements.py
+6
-1
6 additions, 1 deletion
arkindex/documents/api/elements.py
arkindex/documents/tests/test_retrieve_elements.py
+6
-0
6 additions, 0 deletions
arkindex/documents/tests/test_retrieve_elements.py
with
12 additions
and
1 deletion
arkindex/documents/api/elements.py
+
6
−
1
View file @
2d6606b0
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
arkindex/documents/tests/test_retrieve_elements.py
+
6
−
0
View file @
2d6606b0
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment