Add a new waffle switch that allows us to assume zero grades for learners who have no entry previously recorded, and another to disable persisting grades for unengaged learners. TNL-6691
56 lines
2.3 KiB
Python
56 lines
2.3 KiB
Python
"""
|
|
Tests for CourseData utility class.
|
|
"""
|
|
from lms.djangoapps.course_blocks.api import get_course_blocks
|
|
from mock import patch
|
|
from student.tests.factories import UserFactory
|
|
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
|
|
from xmodule.modulestore.tests.factories import CourseFactory
|
|
from ..new.course_data import CourseData
|
|
|
|
|
|
class CourseDataTest(ModuleStoreTestCase):
|
|
"""
|
|
Simple tests to ensure CourseData works as advertised.
|
|
"""
|
|
|
|
def setUp(self):
|
|
super(CourseDataTest, self).setUp()
|
|
self.course = CourseFactory.create()
|
|
self.user = UserFactory.create()
|
|
self.one_true_structure = get_course_blocks(self.user, self.course.location)
|
|
self.expected_results = {
|
|
'course': self.course,
|
|
'collected_block_structure': self.one_true_structure,
|
|
'structure': self.one_true_structure,
|
|
'course_key': self.course.id,
|
|
'location': self.course.location,
|
|
}
|
|
|
|
@patch('lms.djangoapps.grades.new.course_data.get_course_blocks')
|
|
def test_fill_course_data(self, mock_get_blocks):
|
|
"""
|
|
Tests to ensure that course data is fully filled with just a single input.
|
|
"""
|
|
mock_get_blocks.return_value = self.one_true_structure
|
|
for kwarg in self.expected_results: # We iterate instead of ddt due to dependence on 'self'
|
|
if kwarg == 'location':
|
|
continue # This property is purely output; it's never able to be used as input
|
|
kwargs = {kwarg: self.expected_results[kwarg]}
|
|
course_data = CourseData(self.user, **kwargs)
|
|
for arg in self.expected_results:
|
|
# No point validating the data we used as input, and c_b_s is input-only
|
|
if arg != kwarg and arg != "collected_block_structure":
|
|
expected = self.expected_results[arg]
|
|
actual = getattr(course_data, arg)
|
|
self.assertEqual(expected, actual)
|
|
|
|
def test_no_data(self):
|
|
"""
|
|
Tests to ensure ??? happens when none of the data are provided.
|
|
|
|
Maybe a dict pairing asked-for properties to resulting exceptions? Or an exception on init?
|
|
"""
|
|
with self.assertRaises(ValueError):
|
|
_ = CourseData(self.user)
|