Skip to content
Snippets Groups Projects
Commit 85018e87 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-208: Adding a test

parent 645a51bd
No related branches found
No related tags found
1 merge request!297GREG-208: Adding constraint to prevent identity duplicates
Pipeline #120044 passed
...@@ -7,6 +7,8 @@ from rest_framework.reverse import reverse ...@@ -7,6 +7,8 @@ from rest_framework.reverse import reverse
from rest_framework.status import HTTP_200_OK from rest_framework.status import HTTP_200_OK
from rest_framework.test import APIClient from rest_framework.test import APIClient
from django.utils import timezone
from greg.models import ( from greg.models import (
Consent, Consent,
Identity, Identity,
...@@ -594,3 +596,40 @@ def test_person_consent_add_invalid_choice_fails( ...@@ -594,3 +596,40 @@ def test_person_consent_add_invalid_choice_fails(
# No consent should have been added to the person # No consent should have been added to the person
consents_for_person = client.get(url).json()["results"] consents_for_person = client.get(url).json()["results"]
assert len(consents_for_person) == 0 assert len(consents_for_person) == 0
@pytest.mark.django_db
def test_identity_post_fails_if_duplicate(client, person, person_foo):
response = client.get(
reverse("v1:person_identity-list", kwargs={"person_id": person.id})
)
results = response.json()["results"]
assert len(results) == 0
Identity.objects.create(
person=person_foo,
type=Identity.IdentityType.NORWEGIAN_NATIONAL_ID_NUMBER,
source="Test source",
value="12345678901",
verified_at=timezone.now() - datetime.timedelta(days=205),
)
data = {
"type": Identity.IdentityType.NORWEGIAN_NATIONAL_ID_NUMBER,
"source": "Test source",
"value": person_foo.fnr.value,
}
response = client.post(
reverse("v1:person_identity-list", kwargs={"person_id": person.id}),
data=data,
)
# The request should fail
assert response.status_code == status.HTTP_400_BAD_REQUEST
response = client.get(
reverse("v1:person_identity-list", kwargs={"person_id": person.id})
)
results = response.json()["results"]
# No national ID should have been added
assert len(results) == 0
...@@ -48,9 +48,6 @@ class IdentitySerializer(serializers.ModelSerializer): ...@@ -48,9 +48,6 @@ class IdentitySerializer(serializers.ModelSerializer):
Note: Get requests do not use this method, making it safe. Note: Get requests do not use this method, making it safe.
""" """
# TODO Check for duplicate value
# Prevent nin verification. (This will only trigger if someone is posting the # Prevent nin verification. (This will only trigger if someone is posting the
# requests themselves. The frontend has its own setting disabling the button # requests themselves. The frontend has its own setting disabling the button
# used against this endpoint.) # used against this endpoint.)
......
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