Skip to content

Commit 10f58f5

Browse files
committedJul 27, 2021
fix: fix duplicated-error not being parsed correctly
1 parent dc6e1a1 commit 10f58f5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed
 

‎drf_kit/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, serializer, integrity_error):
1616
self.engine = self._get_engine(integrity_error=self.integrity_error)
1717
self.constraints, self.values = self._parse_error()
1818

19-
model_name = {self.model.__class__.__name__}
19+
model_name = self.model.__name__
2020
violation = " and ".join([f"{constraint}={value}" for constraint, value in zip(self.constraints, self.values)])
2121
message = f"A {model_name} with `{violation}` already exists."
2222
super().__init__(message=message, code=status.HTTP_409_CONFLICT)

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "drf-kit"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
description = "DRF Toolkit"
55
authors = ["eduK <pd@eduk.com>"]
66
packages = [

‎test_app/tests/tests_views/test_bulk_views.py

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ def test_post_endpoint_with_existing(self):
2424
response = self.client.post(url, data=data, format="json")
2525

2626
self.assertEqual(409, response.status_code)
27+
expected = "A House with `id=42` already exists."
28+
self.assertResponseMatch(expected=expected, received=response.json()["errors"])
2729

2830
houses = models.House.objects.all()
2931
self.assertEqual(4, houses.count())

‎test_app/tests/tests_views/tests_crud_views.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ def setUp(self):
1414
super().setUp()
1515
self.houses = self._set_up_houses()
1616

17-
def _simulate_integrity_error(self):
17+
def _simulate_integrity_error(self, constraint="(id)=(42)"):
1818
# IntegrityError by duplicate key is a very rare exception because the serializer
1919
# validators pre-check before committing them to the database
2020
# Then we have to simulate this error happening
2121
klass_name = "drf_kit.serializers.BaseModelSerializer.create"
2222
error = IntegrityError(
23-
"duplicate key value violates unique constraint potato\n" "DETAIL: Key (id)=(42) already exists."
23+
"duplicate key value violates unique constraint potato\n" f"DETAIL: Key {constraint} already exists."
2424
)
2525
return patch(klass_name, side_effect=error)
2626

@@ -83,6 +83,8 @@ def test_post_endpoint_with_existing(self):
8383
response = self.client.post(url, data=data)
8484

8585
self.assertEqual(409, response.status_code)
86+
expected = "A House with `id=42` already exists."
87+
self.assertResponseMatch(expected=expected, received=response.json()["errors"])
8688

8789
houses = models.House.objects.all()
8890
self.assertEqual(4, houses.count())

0 commit comments

Comments
 (0)
Please sign in to comment.