-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(settings): API Field Checks for External Links History
- Loading branch information
Showing
3 changed files
with
44 additions
and
164 deletions.
There are no files selected for viewing
72 changes: 0 additions & 72 deletions
72
app/settings/tests/unit/external_links/test_external_links_core_history.py
This file was deleted.
Oops, something went wrong.
92 changes: 0 additions & 92 deletions
92
app/settings/tests/unit/external_links/test_external_links_history_permission.py
This file was deleted.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
app/settings/tests/unit/external_links/test_unit_external_links_history_api_v2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
from django.contrib.contenttypes.models import ContentType | ||
from django.test import TestCase | ||
|
||
from core.tests.abstract.test_unit_model_history_api_v2 import PrimaryModelHistoryAPI | ||
|
||
from settings.models.external_link_history import ExternalLink, ExternalLinkHistory | ||
|
||
|
||
|
||
class ModelHistoryAPI( | ||
PrimaryModelHistoryAPI, | ||
TestCase, | ||
): | ||
|
||
audit_model = ExternalLink | ||
|
||
model = ExternalLinkHistory | ||
|
||
@classmethod | ||
def setUpTestData(self): | ||
|
||
super().setUpTestData() | ||
|
||
self.audit_object = self.audit_model.objects.create( | ||
organization = self.organization, | ||
name = 'one', | ||
) | ||
|
||
|
||
self.history_entry = self.model.objects.create( | ||
organization = self.audit_object.organization, | ||
action = self.model.Actions.ADD, | ||
user = self.view_user, | ||
before = {}, | ||
after = {}, | ||
content_type = ContentType.objects.get( | ||
app_label = self.audit_object._meta.app_label, | ||
model = self.audit_object._meta.model_name, | ||
), | ||
model = self.audit_object, | ||
) | ||
|
||
|
||
self.make_request() |