""" Test for LMS instructor background task views. """ import json from unittest.mock import Mock, patch from celery.states import FAILURE, PENDING, REVOKED, SUCCESS from django.http import QueryDict from lms.djangoapps.instructor_task.models import PROGRESS from lms.djangoapps.instructor_task.tests.test_base import ( TEST_FAILURE_EXCEPTION, TEST_FAILURE_MESSAGE, InstructorTaskTestCase ) from lms.djangoapps.instructor_task.views import get_task_completion_info, instructor_task_status class InstructorTaskReportTest(InstructorTaskTestCase): """ Tests view methods that involve the reporting of status for background tasks. """ def _get_instructor_task_status(self, task_id): """Returns status corresponding to task_id via api method.""" request = Mock() request.GET = request.POST = {'task_id': task_id} return instructor_task_status(request) def test_instructor_task_status(self): instructor_task = self._create_failure_entry() task_id = instructor_task.task_id request = Mock() request.GET = request.POST = {'task_id': task_id} response = instructor_task_status(request) output = json.loads(response.content.decode('utf-8')) assert output['task_id'] == task_id def test_missing_instructor_task_status(self): task_id = "missing_id" request = Mock() request.GET = request.POST = {'task_id': task_id} response = instructor_task_status(request) output = json.loads(response.content.decode('utf-8')) assert output == {} def test_instructor_task_status_list(self): # Fetch status for existing tasks by arg list, as if called from ajax. # Note that ajax does something funny with the marshalling of # list data, so the key value has "[]" appended to it. task_ids = [(self._create_failure_entry()).task_id for _ in range(1, 5)] request = Mock() task_ids_query_dict = QueryDict(mutable=True) task_ids_query_dict.update({'task_ids[]': task_ids}) request.GET = request.POST = task_ids_query_dict response = instructor_task_status(request) output = json.loads(response.content.decode('utf-8')) assert len(output) == len(task_ids) for task_id in task_ids: assert output[task_id]['task_id'] == task_id def test_get_status_from_failure(self): # get status for a task that has already failed instructor_task = self._create_failure_entry() task_id = instructor_task.task_id response = self._get_instructor_task_status(task_id) output = json.loads(response.content.decode('utf-8')) assert output['message'] == TEST_FAILURE_MESSAGE assert output['succeeded'] is False assert output['task_id'] == task_id assert output['task_state'] == FAILURE assert not output['in_progress'] expected_progress = { 'exception': TEST_FAILURE_EXCEPTION, 'message': TEST_FAILURE_MESSAGE, } assert output['task_progress'] == expected_progress def test_get_status_from_success(self): # get status for a task that has already succeeded instructor_task = self._create_success_entry() task_id = instructor_task.task_id response = self._get_instructor_task_status(task_id) output = json.loads(response.content.decode('utf-8')) assert output['message'] == 'Problem rescored for 2 of 3 students (out of 5)' assert output['succeeded'] is False assert output['task_id'] == task_id assert output['task_state'] == SUCCESS assert not output['in_progress'] expected_progress = { 'attempted': 3, 'succeeded': 2, 'total': 5, 'action_name': 'rescored', } assert output['task_progress'] == expected_progress def test_get_status_from_legacy_success(self): # get status for a task that had already succeeded, back at a time # when 'updated' was used instead of the preferred 'succeeded'. legacy_progress = { 'attempted': 3, 'updated': 2, 'total': 5, 'action_name': 'rescored', } instructor_task = self._create_entry(task_state=SUCCESS, task_output=legacy_progress) task_id = instructor_task.task_id response = self._get_instructor_task_status(task_id) output = json.loads(response.content.decode('utf-8')) assert output['message'] == 'Problem rescored for 2 of 3 students (out of 5)' assert output['succeeded'] is False assert output['task_id'] == task_id assert output['task_state'] == SUCCESS assert not output['in_progress'] assert output['task_progress'] == legacy_progress def _create_email_subtask_entry(self, total=5, attempted=3, succeeded=2, skipped=0, task_state=PROGRESS): """Create an InstructorTask with subtask defined and email argument.""" progress = {'attempted': attempted, 'succeeded': succeeded, 'skipped': skipped, 'total': total, 'action_name': 'emailed', } instructor_task = self._create_entry(task_state=task_state, task_output=progress) instructor_task.subtasks = {} instructor_task.task_input = json.dumps({'email_id': 134}) instructor_task.save() return instructor_task def test_get_status_from_subtasks(self): # get status for a task that is in progress, with updates # from subtasks. instructor_task = self._create_email_subtask_entry(skipped=1) task_id = instructor_task.task_id response = self._get_instructor_task_status(task_id) output = json.loads(response.content.decode('utf-8')) assert output['message'] == 'Progress: emailed 2 of 3 so far (skipping 1) (out of 5)' assert output['succeeded'] is False assert output['task_id'] == task_id assert output['task_state'] == PROGRESS assert output['in_progress'] expected_progress = { 'attempted': 3, 'succeeded': 2, 'skipped': 1, 'total': 5, 'action_name': 'emailed', } assert output['task_progress'] == expected_progress def _test_get_status_from_result(self, task_id, mock_result=None): """ Provides mock result to caller of instructor_task_status, and returns resulting output. """ with patch('lms.djangoapps.instructor_task.api_helper._get_async_result') as mock_result_ctor: mock_result_ctor.return_value = mock_result response = self._get_instructor_task_status(task_id) output = json.loads(response.content.decode('utf-8')) assert output['task_id'] == task_id return output def test_get_status_to_pending(self): # get status for a task that hasn't begun to run yet instructor_task = self._create_entry() task_id = instructor_task.task_id mock_result = Mock() mock_result.task_id = task_id mock_result.state = PENDING output = self._test_get_status_from_result(task_id, mock_result) for key in ['message', 'succeeded', 'task_progress']: assert key not in output assert output['task_state'] == 'PENDING' assert output['in_progress'] def test_update_progress_to_progress(self): # view task entry for task in progress instructor_task = self._create_progress_entry() task_id = instructor_task.task_id mock_result = Mock() mock_result.task_id = task_id mock_result.state = PROGRESS mock_result.result = { 'attempted': 5, 'succeeded': 4, 'total': 10, 'action_name': 'rescored', } output = self._test_get_status_from_result(task_id, mock_result) assert output['message'] == 'Progress: rescored 4 of 5 so far (out of 10)' assert output['succeeded'] is False assert output['task_state'] == PROGRESS assert output['in_progress'] assert output['task_progress'] == mock_result.result def test_update_progress_to_failure(self): # view task entry for task in progress that later fails instructor_task = self._create_progress_entry() task_id = instructor_task.task_id mock_result = Mock() mock_result.task_id = task_id mock_result.state = FAILURE mock_result.result = NotImplementedError("This task later failed.") mock_result.traceback = "random traceback" output = self._test_get_status_from_result(task_id, mock_result) assert output['message'] == 'This task later failed.' assert output['succeeded'] is False assert output['task_state'] == FAILURE assert not output['in_progress'] expected_progress = { 'exception': 'NotImplementedError', 'message': "This task later failed.", 'traceback': "random traceback", } assert output['task_progress'] == expected_progress def test_update_progress_to_revoked(self): # view task entry for task in progress that later fails instructor_task = self._create_progress_entry() task_id = instructor_task.task_id mock_result = Mock() mock_result.task_id = task_id mock_result.state = REVOKED output = self._test_get_status_from_result(task_id, mock_result) assert output['message'] == 'Task revoked before running' assert output['succeeded'] is False assert output['task_state'] == REVOKED assert not output['in_progress'] expected_progress = {'message': "Task revoked before running"} assert output['task_progress'] == expected_progress def _get_output_for_task_success(self, attempted, succeeded, total, student=None): """returns the task_id and the result returned by instructor_task_status().""" # view task entry for task in progress instructor_task = self._create_progress_entry(student) task_id = instructor_task.task_id mock_result = Mock() mock_result.task_id = task_id mock_result.state = SUCCESS mock_result.result = { 'attempted': attempted, 'succeeded': succeeded, 'total': total, 'action_name': 'rescored', } output = self._test_get_status_from_result(task_id, mock_result) return output def _get_email_output_for_task_success(self, attempted, succeeded, total, skipped=0): """returns the result returned by instructor_task_status().""" instructor_task = self._create_email_subtask_entry( total=total, attempted=attempted, succeeded=succeeded, skipped=skipped, task_state=SUCCESS, ) return self._test_get_status_from_result(instructor_task.task_id) def test_update_progress_to_success(self): output = self._get_output_for_task_success(10, 8, 10) assert output['message'] == 'Problem rescored for 8 of 10 students' assert output['succeeded'] is False assert output['task_state'] == SUCCESS assert not output['in_progress'] expected_progress = { 'attempted': 10, 'succeeded': 8, 'total': 10, 'action_name': 'rescored', } assert output['task_progress'] == expected_progress def test_success_messages(self): output = self._get_output_for_task_success(0, 0, 10) assert output['message'] == 'Unable to find any students with submissions to be rescored (out of 10)' assert not output['succeeded'] output = self._get_output_for_task_success(10, 0, 10) assert output['message'] == 'Problem failed to be rescored for any of 10 students' assert not output['succeeded'] output = self._get_output_for_task_success(10, 8, 10) assert output['message'] == 'Problem rescored for 8 of 10 students' assert not output['succeeded'] output = self._get_output_for_task_success(9, 8, 10) assert output['message'] == 'Problem rescored for 8 of 9 students (out of 10)' assert not output['succeeded'] output = self._get_output_for_task_success(10, 10, 10) assert output['message'] == 'Problem successfully rescored for 10 students' assert output['succeeded'] output = self._get_output_for_task_success(0, 0, 1, student=self.student) assert 'Unable to find submission to be rescored for student' in output['message'] assert not output['succeeded'] output = self._get_output_for_task_success(1, 0, 1, student=self.student) assert 'Problem failed to be rescored for student' in output['message'] assert not output['succeeded'] output = self._get_output_for_task_success(1, 1, 1, student=self.student) assert 'Problem successfully rescored for student' in output['message'] assert output['succeeded'] def test_email_success_messages(self): output = self._get_email_output_for_task_success(0, 0, 10) assert output['message'] == 'Unable to find any recipients to be emailed (out of 10)' assert not output['succeeded'] output = self._get_email_output_for_task_success(10, 0, 10) assert output['message'] == 'Message failed to be emailed for any of 10 recipients ' assert not output['succeeded'] output = self._get_email_output_for_task_success(10, 8, 10) assert output['message'] == 'Message emailed for 8 of 10 recipients' assert not output['succeeded'] output = self._get_email_output_for_task_success(9, 8, 10) assert output['message'] == 'Message emailed for 8 of 9 recipients (out of 10)' assert not output['succeeded'] output = self._get_email_output_for_task_success(10, 10, 10) assert output['message'] == 'Message successfully emailed for 10 recipients' assert output['succeeded'] output = self._get_email_output_for_task_success(0, 0, 10, skipped=3) assert output['message'] == 'Unable to find any recipients to be emailed (skipping 3) (out of 10)' assert not output['succeeded'] output = self._get_email_output_for_task_success(10, 0, 10, skipped=3) assert output['message'] == 'Message failed to be emailed for any of 10 recipients (skipping 3)' assert not output['succeeded'] output = self._get_email_output_for_task_success(10, 8, 10, skipped=3) assert output['message'] == 'Message emailed for 8 of 10 recipients (skipping 3)' assert not output['succeeded'] output = self._get_email_output_for_task_success(9, 8, 10, skipped=3) assert output['message'] == 'Message emailed for 8 of 9 recipients (skipping 3) (out of 10)' assert not output['succeeded'] output = self._get_email_output_for_task_success(10, 10, 10, skipped=3) assert output['message'] == 'Message successfully emailed for 10 recipients (skipping 3)' assert output['succeeded'] def test_get_info_for_queuing_task(self): # get status for a task that is still running: instructor_task = self._create_entry() succeeded, message = get_task_completion_info(instructor_task) assert not succeeded assert message == 'No status information available' def test_get_info_for_missing_output(self): # check for missing task_output instructor_task = self._create_success_entry() instructor_task.task_output = None succeeded, message = get_task_completion_info(instructor_task) assert not succeeded assert message == 'No status information available' def test_get_info_for_broken_output(self): # check for non-JSON task_output instructor_task = self._create_success_entry() instructor_task.task_output = "{ bad" succeeded, message = get_task_completion_info(instructor_task) assert not succeeded assert message == 'No parsable status information available' def test_get_info_for_empty_output(self): # check for JSON task_output with missing keys instructor_task = self._create_success_entry() instructor_task.task_output = "{}" succeeded, message = get_task_completion_info(instructor_task) assert not succeeded assert message == 'No progress status information available' def test_get_info_for_broken_input(self): # check for non-JSON task_input, but then just ignore it instructor_task = self._create_success_entry() instructor_task.task_input = "{ bad" succeeded, message = get_task_completion_info(instructor_task) assert not succeeded assert message == 'Status: rescored 2 of 3 (out of 5)'