-
Notifications
You must be signed in to change notification settings - Fork 10
refactor: simplify tabulator column handling and introduce primary ke… #188
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
44 changes: 44 additions & 0 deletions
44
src/django_smartbase_admin/audit/tests/test_fk_affected.py
This file contains hidden or 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 @@ | ||
| """``_extract_fk_affected`` must keep FK pks as they arrive (already | ||
| JSON-safe from serialization): int pks stay int, and non-int pks (UUID / | ||
| char) are kept as their string form instead of crashing on ``int(...)`` — | ||
| the regression that logged a noisy "Failed to create audit log" whenever a | ||
| FK pointed at a UUID-keyed model. | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| from django.contrib.auth.models import Permission | ||
| from django.test import SimpleTestCase | ||
|
|
||
| from django_smartbase_admin.audit.manager import _extract_fk_affected | ||
|
|
||
| # ``Permission.content_type`` is a ForeignKey; the related model's own pk | ||
| # type is irrelevant to the bug — only the value handed in matters. | ||
|
|
||
|
|
||
| class ExtractFkAffectedTests(SimpleTestCase): | ||
| def test_uuid_string_pk_kept_not_cast_to_int(self): | ||
| uid = "aa57f521-1c2b-4f3a-9d4e-5f6a7b8c9d0e" | ||
| affected = _extract_fk_affected( | ||
| Permission, | ||
| {"content_type": {"old": None, "new": uid, "new_display": "Queue X"}}, | ||
| ) | ||
| self.assertEqual( | ||
| affected, | ||
| [{"ct": "contenttypes.contenttype", "id": uid, "repr": "Queue X"}], | ||
| ) | ||
|
|
||
| def test_integer_pk_preserved_as_int(self): | ||
| affected = _extract_fk_affected( | ||
| Permission, | ||
| { | ||
| "content_type": { | ||
| "old": 7, | ||
| "new": 9, | ||
| "old_display": "A", | ||
| "new_display": "B", | ||
| } | ||
| }, | ||
| ) | ||
| self.assertEqual([a["id"] for a in affected], [7, 9]) | ||
| self.assertTrue(all(isinstance(a["id"], int) for a in affected)) |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.