-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54f1000
commit 0d5b026
Showing
1 changed file
with
8 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,11 +43,9 @@ def test_empty_csv(self): | |
call_command(self.command, f'--csv_path={csv.name}') | ||
|
||
def test_add_course_staff_with_existing_user(self): | ||
# todo: create course staff with existing user | ||
lines = ['amy,[email protected],staff,course-v1:edx+test+f19\n'] | ||
with NamedTemporaryFile() as csv: | ||
csv = self._write_test_csv(csv, lines) | ||
# todo: assert number of queries is correct | ||
with self.assertNumQueries(2): | ||
call_command(self.command, f'--csv_path={csv.name}') | ||
assert CourseStaffRole.objects.filter(user=self.user.id).exists() | ||
|
@@ -65,12 +63,16 @@ def test_add_course_staff_with_batch_size(self): | |
'sam,[email protected],staff,course-v1:edx+test+f20\n'] | ||
with NamedTemporaryFile() as csv: | ||
csv = self._write_test_csv(csv, lines) | ||
# todo: assert number of queries is correct | ||
with self.assertNumQueries(2): | ||
call_command(self.command, f'--csv_path={csv.name}', '--batch_size=1') | ||
assert CourseStaffRole.objects.filter(course_id='course-v1:edx+test+f20').count() == 2 | ||
|
||
def test_add_course_staff_with_batch_delay(self): | ||
# todo: test with setting batch delay | ||
# todo: see bulk unenroll for example of batch unenroll | ||
return | ||
lines = ['pam,[email protected],staff,course-v1:edx+test+f20\n', | ||
'sam,[email protected],staff,course-v1:edx+test+f20\n'] | ||
with NamedTemporaryFile() as csv: | ||
csv = self._write_test_csv(csv, lines) | ||
with self.assertNumQueries(2): | ||
call_command(self.command, f'--csv_path={csv.name}', '--batch_size=1', '--batch_delay=2') | ||
assert CourseStaffRole.objects.filter(course_id='course-v1:edx+test+f20').count() == 2 | ||
|