Commit 80ed831c by Muhammad Shoaib

PHX-78

used the new service for resetting the student attempts
parent a8ba1176
......@@ -507,7 +507,6 @@ def remove_exam_attempt(attempt_id):
"""
existing_attempt = ProctoredExamStudentAttempt.objects.get_exam_attempt_by_id(attempt_id)
if not existing_attempt:
err_msg = (
'Cannot remove attempt for attempt_id = {attempt_id} '
......@@ -516,7 +515,13 @@ def remove_exam_attempt(attempt_id):
raise StudentExamAttemptDoesNotExistsException(err_msg)
username = existing_attempt.user.username
course_id = existing_attempt.proctored_exam.course_id
content_id = existing_attempt.proctored_exam.content_id
existing_attempt.delete_exam_attempt()
courseware_service = get_runtime_service('courseware')
if courseware_service:
courseware_service.delete_student_attempt(username, course_id, content_id)
def get_all_exams_for_course(course_id):
......
......@@ -54,7 +54,10 @@ from .utils import (
LoggedInTestCase,
)
from edx_proctoring.tests.test_services import MockCreditService
from edx_proctoring.tests.test_services import (
MockCreditService,
MockCoursewareService,
)
from edx_proctoring.runtime import set_runtime_service, get_runtime_service
......@@ -100,6 +103,7 @@ class ProctoredExamApiTests(LoggedInTestCase):
self.practice_exam_submitted_msg = 'You have submitted this practice proctored exam'
set_runtime_service('credit', MockCreditService())
set_runtime_service('courseware', MockCoursewareService())
def _create_proctored_exam(self):
"""
......
......@@ -60,6 +60,17 @@ class MockCreditService(object):
found[0]['status'] = status
class MockCoursewareService(object):
"""
Simple mock of the Courseware Service
"""
def delete_student_attempt(self, student_identifier, course_id, content_id): # pylint: disable=unused-argument
"""
Mock implementation
"""
return True
class TestProctoringService(unittest.TestCase):
"""
Tests for ProctoringService
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment