-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Smoke unit test for redis migrations #9117
base: develop
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #9117 +/- ##
===========================================
+ Coverage 73.83% 73.90% +0.06%
===========================================
Files 431 432 +1
Lines 44804 44809 +5
Branches 3892 3892
===========================================
+ Hits 33081 33114 +33
+ Misses 11723 11695 -28
|
self.addCleanup(self.test_migration.cleanup) | ||
|
||
call_command("migrateredis") | ||
exp_migrations = { |
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.
- Could you please explain the purpose of generation test migration? why existing migrations are not enough? I do not really think that we need to modify/add files from
cvat/apps
when running tests. Otherwise, the generated files may not be removed e.g. when we stop debugging beforecleanup
is called. - Do I understand correctly that we need to update this test each time when a new Redis migration is added?
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.
All the existing migration files are correct, which means I cannot test a scenario where the tool throws LoaderError
.
Though, case 1 could be rewritten to use existing migration files
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.
we need to update this test each time when a new Redis migration is added?
I didn't get it, why would that be the case? Tests are using fake Redis database
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.
I didn't get it, why would that be the case? Tests are using fake Redis database
I'm talking about the case when we add one more redis migration. In that case the self.assertEqual(conn.smembers("cvat:applied_migrations"), exp_migrations)
will fail. Please, check that the expected by the test migration keys are added to cvat:applied_migrations
instead of comparing all set members.
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.
Yes totally makes sense, applied
self.assertEqual(conn.smembers("cvat:applied_migrations"), exp_migrations) | ||
self.test_migration.runner_mock.assert_called_once() | ||
|
||
def test_migration_not_applied(self, redis1, _): |
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.
I guess the more appropriate test should cover a case when migrateredis
is called with --check
arg.
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.
Makes sense
|
Motivation and context
Basic coverage for redis migrations support from #8898
How has this been tested?
Prepare
.py
migration file withclass Migration
is generated for each test in the directory of a django applicationMigration.run
classmethod is patched withunittest.Mock
to assertmock_calls
from the migration tool to confirm that the migration was discovered and appliedfakeredis
instance throughout the whole test suite since our main concern is the migration tool itself, not the Redis database.Case 1: Migration is added and applied successfully
000_first.py
with the following contents:In order for the stub to be discoverable by the migration tool, its name should start with numbers and it should contain a class
Migration
which is a subclass ofBaseMigration
.run
method with a mock.migrateredis.py
script withdjango.management.call_command('migrateredis')
engine.001_cleanup_scheduled_jobs
andredis_handler.001_first
are added as members to Redis setcvat:applied_migrations
run
mock was called onceCase 2: Migration is not added and not applied
fakeredis
after previous case000_second.py
with the following contents:Since the Migration class is not a subclass of BaseMigration, we expect that
LoaderError
is raisedcvat:applied_migrations
is an empty setMigration.run
is not calledChecklist
develop
branchLicense
Feel free to contact the maintainers if that's a concern.