This commit adds the non-courseware lms/djangoapps and lms/lib. These keys are now objects with a limited interface, and the particular internal representation is managed by the data storage layer (the modulestore). For the LMS, there should be no outward-facing changes to the system. The keys are, for now, a change to internal representation only. For Studio, the new serialized form of the keys is used in urls, to allow for further migration in the future. Co-Author: Andy Armstrong <andya@edx.org> Co-Author: Christina Roberts <christina@edx.org> Co-Author: David Baumgold <db@edx.org> Co-Author: Diana Huang <dkh@edx.org> Co-Author: Don Mitchell <dmitchell@edx.org> Co-Author: Julia Hansbrough <julia@edx.org> Co-Author: Nimisha Asthagiri <nasthagiri@edx.org> Co-Author: Sarina Canelake <sarina@edx.org> [LMS-2370]
84 lines
3.1 KiB
Python
84 lines
3.1 KiB
Python
"""
|
|
Tests for class dashboard (Metrics tab in instructor dashboard)
|
|
"""
|
|
from mock import patch
|
|
|
|
from django.test import TestCase
|
|
from django.test.client import RequestFactory
|
|
from django.utils import simplejson
|
|
|
|
from class_dashboard import views
|
|
|
|
|
|
class TestViews(TestCase):
|
|
"""
|
|
Tests related to class_dashboard/views.py
|
|
"""
|
|
|
|
def setUp(self):
|
|
|
|
self.request_factory = RequestFactory()
|
|
self.request = self.request_factory.get('')
|
|
self.request.user = None
|
|
self.simple_data = {'error': 'error'}
|
|
|
|
@patch('class_dashboard.views.has_instructor_access_for_class')
|
|
def test_all_problem_grade_distribution_has_access(self, has_access):
|
|
"""
|
|
Test returns proper value when have proper access
|
|
"""
|
|
has_access.return_value = True
|
|
response = views.all_problem_grade_distribution(self.request, 'test/test/test')
|
|
|
|
self.assertEqual(simplejson.dumps(self.simple_data), response.content)
|
|
|
|
@patch('class_dashboard.views.has_instructor_access_for_class')
|
|
def test_all_problem_grade_distribution_no_access(self, has_access):
|
|
"""
|
|
Test for no access
|
|
"""
|
|
has_access.return_value = False
|
|
response = views.all_problem_grade_distribution(self.request, 'test/test/test')
|
|
|
|
self.assertEqual("{\"error\": \"Access Denied: User does not have access to this course\'s data\"}", response.content)
|
|
|
|
@patch('class_dashboard.views.has_instructor_access_for_class')
|
|
def test_all_sequential_open_distribution_has_access(self, has_access):
|
|
"""
|
|
Test returns proper value when have proper access
|
|
"""
|
|
has_access.return_value = True
|
|
response = views.all_sequential_open_distrib(self.request, 'test/test/test')
|
|
|
|
self.assertEqual(simplejson.dumps(self.simple_data), response.content)
|
|
|
|
@patch('class_dashboard.views.has_instructor_access_for_class')
|
|
def test_all_sequential_open_distribution_no_access(self, has_access):
|
|
"""
|
|
Test for no access
|
|
"""
|
|
has_access.return_value = False
|
|
response = views.all_sequential_open_distrib(self.request, 'test/test/test')
|
|
|
|
self.assertEqual("{\"error\": \"Access Denied: User does not have access to this course\'s data\"}", response.content)
|
|
|
|
@patch('class_dashboard.views.has_instructor_access_for_class')
|
|
def test_section_problem_grade_distribution_has_access(self, has_access):
|
|
"""
|
|
Test returns proper value when have proper access
|
|
"""
|
|
has_access.return_value = True
|
|
response = views.section_problem_grade_distrib(self.request, 'test/test/test', '1')
|
|
|
|
self.assertEqual(simplejson.dumps(self.simple_data), response.content)
|
|
|
|
@patch('class_dashboard.views.has_instructor_access_for_class')
|
|
def test_section_problem_grade_distribution_no_access(self, has_access):
|
|
"""
|
|
Test for no access
|
|
"""
|
|
has_access.return_value = False
|
|
response = views.section_problem_grade_distrib(self.request, 'test/test/test', '1')
|
|
|
|
self.assertEqual("{\"error\": \"Access Denied: User does not have access to this course\'s data\"}", response.content)
|