Metrics tab shows student data: -Count of students opened a subsection -Grade distribution per problem for each section/subsection of the course. Implemented for both the old and beta dashboard Controlled by a feature flag 'CLASS_DASHBOARD' Data is aggregated across all students Aggregate data computed from courseware_studentmodule
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)
|