-
Notifications
You must be signed in to change notification settings - Fork 406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Organisation can't have a new Github integration when had a prior one deleted #3874
Changes from 2 commits
7f8422f
608c881
d70c4a7
044a250
f4efe2c
1aee49f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from rest_framework.exceptions import APIException | ||
|
||
|
||
class DuplicateGitHubIntegration(APIException): | ||
status_code = 400 | ||
default_detail = "Duplication error. The GitHub integration already created" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 3.2.25 on 2024-05-01 21:37 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('organisations', '0052_create_hubspot_organisation'), | ||
('github', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='githubconfiguration', | ||
name='organisation', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='github_config', to='organisations.organisation'), | ||
), | ||
migrations.AddConstraint( | ||
model_name='githubconfiguration', | ||
constraint=models.UniqueConstraint(fields=('organisation', 'installation_id'), name='unique_github_config_data'), | ||
), | ||
] |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -52,6 +52,62 @@ def test_create_github_configuration( | |||||||||||||||||||||||||||||
assert response.status_code == status.HTTP_201_CREATED | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@pytest.mark.parametrize( | ||||||||||||||||||||||||||||||
"client", | ||||||||||||||||||||||||||||||
[lazy_fixture("admin_master_api_key_client"), lazy_fixture("admin_client")], | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
def test_cannot_create_github_configuration_due_to_unique_constraint( | ||||||||||||||||||||||||||||||
client: APIClient, | ||||||||||||||||||||||||||||||
organisation: Organisation, | ||||||||||||||||||||||||||||||
github_configuration: GithubConfiguration, | ||||||||||||||||||||||||||||||
) -> None: | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||||||||||||||||||||||||||||||
# Given | ||||||||||||||||||||||||||||||
data = { | ||||||||||||||||||||||||||||||
"installation_id": 1234567, | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
url = reverse( | ||||||||||||||||||||||||||||||
"api-v1:organisations:integrations-github-list", | ||||||||||||||||||||||||||||||
kwargs={"organisation_pk": organisation.id}, | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
# When | ||||||||||||||||||||||||||||||
response = client.post(url, data) | ||||||||||||||||||||||||||||||
# Then | ||||||||||||||||||||||||||||||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
assert ( | ||||||||||||||||||||||||||||||
"Duplication error. The GitHub integration already created" | ||||||||||||||||||||||||||||||
in response.json()["detail"] | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@pytest.mark.parametrize( | ||||||||||||||||||||||||||||||
"client", | ||||||||||||||||||||||||||||||
[lazy_fixture("admin_master_api_key_client"), lazy_fixture("admin_client")], | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
def test_cannot_create_github_configuration_when_the_organization_already_has_an_integration( | ||||||||||||||||||||||||||||||
client: APIClient, | ||||||||||||||||||||||||||||||
organisation: Organisation, | ||||||||||||||||||||||||||||||
github_configuration: GithubConfiguration, | ||||||||||||||||||||||||||||||
) -> None: | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||||||||||||||||||||||||||||||
# Given | ||||||||||||||||||||||||||||||
data = { | ||||||||||||||||||||||||||||||
"installation_id": 7654321, | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
url = reverse( | ||||||||||||||||||||||||||||||
"api-v1:organisations:integrations-github-list", | ||||||||||||||||||||||||||||||
kwargs={"organisation_pk": organisation.id}, | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
# When | ||||||||||||||||||||||||||||||
response = client.post(url, data) | ||||||||||||||||||||||||||||||
# Then | ||||||||||||||||||||||||||||||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
assert ( | ||||||||||||||||||||||||||||||
"Duplication error. The GitHub integration already created" | ||||||||||||||||||||||||||||||
in response.json()["detail"] | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@pytest.mark.parametrize( | ||||||||||||||||||||||||||||||
"client", | ||||||||||||||||||||||||||||||
[lazy_fixture("admin_master_api_key_client"), lazy_fixture("admin_client")], | ||||||||||||||||||||||||||||||
|
@@ -182,7 +238,7 @@ def test_cannot_create_github_repository_due_to_unique_constraint( | |||||||||||||||||||||||||||||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
assert ( | ||||||||||||||||||||||||||||||
"Duplication error. The Github repository already linked" in response.json()[0] | ||||||||||||||||||||||||||||||
"Duplication error. The GitHub repository already linked" in response.json()[0] | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way of looking at the
IntegrityError
message in order to raiseDuplicateGitHubIntegration
only when the preconditions have been met?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done