Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
85018e87
Commit
85018e87
authored
3 years ago
by
Tore.Brede
Browse files
Options
Downloads
Patches
Plain Diff
GREG-208: Adding a test
parent
645a51bd
No related branches found
No related tags found
1 merge request
!297
GREG-208: Adding constraint to prevent identity duplicates
Pipeline
#120044
passed
3 years ago
Stage: venv update
Stage: tests and linting
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
greg/tests/api/test_person.py
+39
-0
39 additions, 0 deletions
greg/tests/api/test_person.py
gregui/api/serializers/identity.py
+0
-3
0 additions, 3 deletions
gregui/api/serializers/identity.py
with
39 additions
and
3 deletions
greg/tests/api/test_person.py
+
39
−
0
View file @
85018e87
...
@@ -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
This diff is collapsed.
Click to expand it.
gregui/api/serializers/identity.py
+
0
−
3
View file @
85018e87
...
@@ -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.)
...
...
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