-
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4920 from kobotoolbox/add-import-cleanup-task
Add maintenance function to remove old import tasks
- Loading branch information
Showing
5 changed files
with
65 additions
and
9 deletions.
There are no files selected for viewing
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
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
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
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,33 @@ | ||
# coding: utf-8 | ||
from datetime import timedelta | ||
|
||
from django.contrib.auth import get_user_model | ||
from django.utils import timezone | ||
|
||
from kpi.maintenance_tasks import remove_old_import_tasks | ||
from kpi.models import ImportTask | ||
from kpi.tests.base_test_case import BaseTestCase | ||
|
||
|
||
class AssetImportTaskHousekeepingTest(BaseTestCase): | ||
fixtures = ['test_data'] | ||
|
||
def setUp(self): | ||
User = get_user_model() | ||
self.user = User.objects.get(username='someuser') | ||
|
||
def test_remove_old_import_tasks(self): | ||
old_task = ImportTask.objects.create( | ||
user=self.user, | ||
data='{}', | ||
) | ||
# Because of `auto_date_now`, we cannot specify created_date on creation | ||
old_task.date_created = timezone.now() - timedelta(days=95) | ||
old_task.save(update_fields=['date_created']) | ||
|
||
new_task = ImportTask.objects.create(user=self.user, data='{}') | ||
|
||
remove_old_import_tasks() | ||
|
||
assert ImportTask.objects.filter(id=new_task.id).exists() | ||
assert not ImportTask.objects.filter(id=old_task.id).exists() |
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,8 @@ | ||
from django.db.models import QuerySet | ||
|
||
|
||
def chunked_delete(queryset: QuerySet): | ||
while True: | ||
count, _ = queryset.filter(pk__in=queryset[:1000]).delete() | ||
if not count: | ||
break |