Commit bf8ca487 by Don Mitchell

fix staff_grading server error

parent 2f8d7e8c
...@@ -9,7 +9,6 @@ from django.conf import settings ...@@ -9,7 +9,6 @@ from django.conf import settings
from django.http import HttpResponse, Http404 from django.http import HttpResponse, Http404
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from xmodule.course_module import CourseDescriptor
from xmodule.modulestore.locations import SlashSeparatedCourseKey from xmodule.modulestore.locations import SlashSeparatedCourseKey
from xmodule.open_ended_grading_classes.grading_service_module import GradingService, GradingServiceError from xmodule.open_ended_grading_classes.grading_service_module import GradingService, GradingServiceError
from xmodule.modulestore.django import ModuleI18nService from xmodule.modulestore.django import ModuleI18nService
...@@ -116,7 +115,7 @@ class StaffGradingService(GradingService): ...@@ -116,7 +115,7 @@ class StaffGradingService(GradingService):
Raises: Raises:
GradingServiceError: something went wrong with the connection. GradingServiceError: something went wrong with the connection.
""" """
params = {'course_id': course_id, 'grader_id': grader_id} params = {'course_id': course_id.to_deprecated_string(), 'grader_id': grader_id}
result = self.get(self.get_problem_list_url, params) result = self.get(self.get_problem_list_url, params)
tags = [u'course_id:{}'.format(course_id)] tags = [u'course_id:{}'.format(course_id)]
self._record_result('get_problem_list', result, tags) self._record_result('get_problem_list', result, tags)
...@@ -148,7 +147,7 @@ class StaffGradingService(GradingService): ...@@ -148,7 +147,7 @@ class StaffGradingService(GradingService):
self.get( self.get(
self.get_next_url, self.get_next_url,
params={ params={
'location': location, 'location': location.to_deprecated_string(),
'grader_id': grader_id 'grader_id': grader_id
} }
) )
...@@ -170,7 +169,7 @@ class StaffGradingService(GradingService): ...@@ -170,7 +169,7 @@ class StaffGradingService(GradingService):
Raises: Raises:
GradingServiceError if there's a problem connecting. GradingServiceError if there's a problem connecting.
""" """
data = {'course_id': course_id, data = {'course_id': course_id.to_deprecated_string(),
'submission_id': submission_id, 'submission_id': submission_id,
'score': score, 'score': score,
'feedback': feedback, 'feedback': feedback,
...@@ -186,7 +185,7 @@ class StaffGradingService(GradingService): ...@@ -186,7 +185,7 @@ class StaffGradingService(GradingService):
return result return result
def get_notifications(self, course_id): def get_notifications(self, course_id):
params = {'course_id': course_id} params = {'course_id': course_id.to_deprecated_string()}
result = self.get(self.get_notifications_url, params) result = self.get(self.get_notifications_url, params)
tags = [ tags = [
u'course_id:{}'.format(course_id), u'course_id:{}'.format(course_id),
...@@ -274,7 +273,7 @@ def get_next(request, course_id): ...@@ -274,7 +273,7 @@ def get_next(request, course_id):
', '.join(missing))) ', '.join(missing)))
grader_id = unique_id_for_user(request.user) grader_id = unique_id_for_user(request.user)
p = request.POST p = request.POST
location = p['location'] location = course_key.make_usage_key_from_deprecated_string(p['location'])
return HttpResponse(json.dumps(_get_next(course_key, grader_id, location)), return HttpResponse(json.dumps(_get_next(course_key, grader_id, location)),
mimetype="application/json") mimetype="application/json")
...@@ -400,7 +399,7 @@ def save_grade(request, course_id): ...@@ -400,7 +399,7 @@ def save_grade(request, course_id):
grader_id = unique_id_for_user(request.user) grader_id = unique_id_for_user(request.user)
location = p['location'] location = course_key.make_usage_key_from_deprecated_string(p['location'])
try: try:
result = staff_grading_service().save_grade(course_key, result = staff_grading_service().save_grade(course_key,
......
...@@ -109,13 +109,13 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -109,13 +109,13 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
self.student = 'view@test.com' self.student = 'view@test.com'
self.instructor = 'view2@test.com' self.instructor = 'view2@test.com'
self.password = 'foo' self.password = 'foo'
self.location = 'TestLocation'
self.create_account('u1', self.student, self.password) self.create_account('u1', self.student, self.password)
self.create_account('u2', self.instructor, self.password) self.create_account('u2', self.instructor, self.password)
self.activate_user(self.student) self.activate_user(self.student)
self.activate_user(self.instructor) self.activate_user(self.instructor)
self.course_id = SlashSeparatedCourseKey("edX", "toy", "2012_Fall") self.course_id = SlashSeparatedCourseKey("edX", "toy", "2012_Fall")
self.location_string = self.course_id.make_usage_key('html', 'TestLocation').to_deprecated_string()
self.toy = modulestore().get_course(self.course_id) self.toy = modulestore().get_course(self.course_id)
make_instructor(self.toy, self.instructor) make_instructor(self.toy, self.instructor)
...@@ -140,7 +140,7 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -140,7 +140,7 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
self.login(self.instructor, self.password) self.login(self.instructor, self.password)
url = reverse('staff_grading_get_next', kwargs={'course_id': self.course_id.to_deprecated_string()}) url = reverse('staff_grading_get_next', kwargs={'course_id': self.course_id.to_deprecated_string()})
data = {'location': self.location} data = {'location': self.location_string}
response = check_for_post_code(self, 200, url, data) response = check_for_post_code(self, 200, url, data)
...@@ -165,7 +165,7 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -165,7 +165,7 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
data = {'score': '12', data = {'score': '12',
'feedback': 'great!', 'feedback': 'great!',
'submission_id': '123', 'submission_id': '123',
'location': self.location, 'location': self.location_string,
'submission_flagged': "true", 'submission_flagged': "true",
'rubric_scores[]': ['1', '2']} 'rubric_scores[]': ['1', '2']}
if skip: if skip:
...@@ -227,7 +227,7 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -227,7 +227,7 @@ class TestStaffGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
'score': '12', 'score': '12',
'feedback': '', 'feedback': '',
'submission_id': '123', 'submission_id': '123',
'location': self.location, 'location': self.location_string,
'submission_flagged': "false", 'submission_flagged': "false",
'rubric_scores[]': ['1', '2'] 'rubric_scores[]': ['1', '2']
} }
...@@ -262,13 +262,13 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -262,13 +262,13 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
self.student = 'view@test.com' self.student = 'view@test.com'
self.instructor = 'view2@test.com' self.instructor = 'view2@test.com'
self.password = 'foo' self.password = 'foo'
self.location = 'TestLocation'
self.create_account('u1', self.student, self.password) self.create_account('u1', self.student, self.password)
self.create_account('u2', self.instructor, self.password) self.create_account('u2', self.instructor, self.password)
self.activate_user(self.student) self.activate_user(self.student)
self.activate_user(self.instructor) self.activate_user(self.instructor)
self.course_id = SlashSeparatedCourseKey("edX", "toy", "2012_Fall") self.course_id = SlashSeparatedCourseKey("edX", "toy", "2012_Fall")
self.location_string = self.course_id.make_usage_key('html', 'TestLocation').to_deprecated_string()
self.toy = modulestore().get_course(self.course_id) self.toy = modulestore().get_course(self.course_id)
location = "i4x://edX/toy/peergrading/init" location = "i4x://edX/toy/peergrading/init"
field_data = DictFieldData({'data': "<peergrading/>", 'location': location, 'category':'peergrading'}) field_data = DictFieldData({'data': "<peergrading/>", 'location': location, 'category':'peergrading'})
...@@ -292,7 +292,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -292,7 +292,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
self.logout() self.logout()
def test_get_next_submission_success(self): def test_get_next_submission_success(self):
data = {'location': self.location} data = {'location': self.location_string}
response = self.peer_module.get_next_submission(data) response = self.peer_module.get_next_submission(data)
content = response content = response
...@@ -312,7 +312,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -312,7 +312,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
def test_save_grade_success(self): def test_save_grade_success(self):
data = { data = {
'rubric_scores[]': [0, 0], 'rubric_scores[]': [0, 0],
'location': self.location, 'location': self.location_string,
'submission_id': 1, 'submission_id': 1,
'submission_key': 'fake key', 'submission_key': 'fake key',
'score': 2, 'score': 2,
...@@ -342,7 +342,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -342,7 +342,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
self.assertTrue(d['error'].find('Missing required keys:') > -1) self.assertTrue(d['error'].find('Missing required keys:') > -1)
def test_is_calibrated_success(self): def test_is_calibrated_success(self):
data = {'location': self.location} data = {'location': self.location_string}
response = self.peer_module.is_student_calibrated(data) response = self.peer_module.is_student_calibrated(data)
self.assertTrue(response['success']) self.assertTrue(response['success'])
...@@ -355,7 +355,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -355,7 +355,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
self.assertFalse('calibrated' in response) self.assertFalse('calibrated' in response)
def test_show_calibration_essay_success(self): def test_show_calibration_essay_success(self):
data = {'location': self.location} data = {'location': self.location_string}
response = self.peer_module.show_calibration_essay(data) response = self.peer_module.show_calibration_essay(data)
...@@ -376,7 +376,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -376,7 +376,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
def test_save_calibration_essay_success(self): def test_save_calibration_essay_success(self):
data = { data = {
'rubric_scores[]': [0, 0], 'rubric_scores[]': [0, 0],
'location': self.location, 'location': self.location_string,
'submission_id': 1, 'submission_id': 1,
'submission_key': 'fake key', 'submission_key': 'fake key',
'score': 2, 'score': 2,
...@@ -410,7 +410,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -410,7 +410,7 @@ class TestPeerGradingService(ModuleStoreTestCase, LoginEnrollmentTestCase):
""" """
data = { data = {
'rubric_scores[]': [0, 0], 'rubric_scores[]': [0, 0],
'location': self.location, 'location': self.location_string,
'submission_id': 1, 'submission_id': 1,
'submission_key': 'fake key', 'submission_key': 'fake key',
'score': 2, 'score': 2,
......
import logging import logging
from django.conf import settings
from django.views.decorators.cache import cache_control from django.views.decorators.cache import cache_control
from edxmako.shortcuts import render_to_response from edxmako.shortcuts import render_to_response
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
from student.models import unique_id_for_user
from courseware.courses import get_course_with_access from courseware.courses import get_course_with_access
from xmodule.open_ended_grading_classes.grading_service_module import GradingServiceError from xmodule.open_ended_grading_classes.grading_service_module import GradingServiceError
...@@ -20,11 +18,11 @@ from xmodule.modulestore import SlashSeparatedCourseKey ...@@ -20,11 +18,11 @@ from xmodule.modulestore import SlashSeparatedCourseKey
from xmodule.modulestore.exceptions import NoPathToItem from xmodule.modulestore.exceptions import NoPathToItem
from django.http import HttpResponse, Http404, HttpResponseRedirect from django.http import HttpResponse, Http404, HttpResponseRedirect
from edxmako.shortcuts import render_to_string
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from open_ended_grading.utils import (STAFF_ERROR_MESSAGE, STUDENT_ERROR_MESSAGE, from open_ended_grading.utils import (
StudentProblemList, generate_problem_url, create_controller_query_service) STAFF_ERROR_MESSAGE, StudentProblemList, generate_problem_url, create_controller_query_service
)
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
...@@ -68,9 +66,10 @@ def staff_grading(request, course_id): ...@@ -68,9 +66,10 @@ def staff_grading(request, course_id):
""" """
Show the instructor grading interface. Show the instructor grading interface.
""" """
course = get_course_with_access(request.user, 'staff', course_id) course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)
course = get_course_with_access(request.user, 'staff', course_key)
ajax_url = _reverse_with_slash('staff_grading', course_id) ajax_url = _reverse_with_slash('staff_grading', course_key)
return render_to_response('instructor/staff_grading.html', { return render_to_response('instructor/staff_grading.html', {
'course': course, 'course': course,
...@@ -118,9 +117,9 @@ def peer_grading(request, course_id): ...@@ -118,9 +117,9 @@ def peer_grading(request, course_id):
When a student clicks on the "peer grading" button in the open ended interface, link them to a peer grading When a student clicks on the "peer grading" button in the open ended interface, link them to a peer grading
xmodule in the course. xmodule in the course.
''' '''
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)
#Get the current course #Get the current course
course = get_course_with_access(request.user, 'load', course_id) course = get_course_with_access(request.user, 'load', course_key)
found_module, problem_url = find_peer_grading_module(course) found_module, problem_url = find_peer_grading_module(course)
if not found_module: if not found_module:
...@@ -187,13 +186,11 @@ def flagged_problem_list(request, course_id): ...@@ -187,13 +186,11 @@ def flagged_problem_list(request, course_id):
''' '''
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)
course = get_course_with_access(request.user, 'staff', course_key) course = get_course_with_access(request.user, 'staff', course_key)
student_id = unique_id_for_user(request.user)
# call problem list service # call problem list service
success = False success = False
error_text = "" error_text = ""
problem_list = [] problem_list = []
base_course_url = reverse('courses')
# Make a service that can query edX ORA. # Make a service that can query edX ORA.
controller_qs = create_controller_query_service() controller_qs = create_controller_query_service()
......
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