-
Notifications
You must be signed in to change notification settings - Fork 14.8k
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
feat: cleanup permissions when db updated/deleted #17449
Conversation
Hey @jfrag1 this is great. It would be optimal if you could add some test cases too. Thank you! |
Codecov Report
@@ Coverage Diff @@
## master #17449 +/- ##
==========================================
+ Coverage 66.51% 66.54% +0.03%
==========================================
Files 1667 1667
Lines 64415 64448 +33
Branches 6503 6503
==========================================
+ Hits 42846 42890 +44
+ Misses 19884 19873 -11
Partials 1685 1685
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
@geido I added some tests. I'm not very familiar with Superset testing patterns/organization; please let me know if these are sufficient/in the right place :) |
Hello @jfrag1 thanks for that! I requested some more reviews. |
if old_db_name != database.database_name: | ||
security_manager.add_permission_view_menu("database_access", database.perm) | ||
for dataset in database.tables: | ||
security_manager.add_permission_view_menu( |
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.
missing test coverage, can you check?
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.
There are currently no tests covering these database update/delete commands - I spent about an hour looking into adding some, but I kept running into issues/couldn't figure out how to properly set everything up. I don't have the time right now to dive in and figure out how to add these missing tests.
647e4d7
to
80574e9
Compare
SUMMARY
Up until now, when deleting or renaming a database connection, permissions for the old connection name would persist. Additionally, when renaming a database connection, permissions for access on that database's existing datasets would not be created with the new connection name.
This PR introduces a way to clean up unneeded permissions after a database is renamed or deleted, and also ensures that permissions for a database's associated datasets are kept up-to-date if the database connection is renamed.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION