It's long past time that the default test modulestore was Split, instead of Old Mongo. This commit switches the default store and fixes some tests that now fail: - Tests that didn't expect MFE to be enabled (because we don't enable MFE for Old Mongo) - opt out of MFE for those - Tests that hardcoded old key string formats - Lots of other random little differences In many places, I didn't spend much time trying to figure out how to properly fix the test, and instead just set the modulestore to Old Mongo. For those tests that I didn't spend time investigating, I've set the modulestore to TEST_DATA_MONGO_AMNESTY_MODULESTORE - search for that string to find further work.
89 lines
3.7 KiB
Python
89 lines
3.7 KiB
Python
"""
|
|
Unit tests for email feature flag in student dashboard. Additionally tests
|
|
that bulk email is always disabled for non-Mongo backed courses, regardless
|
|
of email feature flag, and that the view is conditionally available when
|
|
Course Auth is turned on.
|
|
"""
|
|
|
|
|
|
import unittest
|
|
|
|
from django.conf import settings
|
|
from django.urls import reverse
|
|
|
|
# This import is for an lms djangoapp.
|
|
# Its testcases are only run under lms.
|
|
from lms.djangoapps.bulk_email.api import is_bulk_email_feature_enabled
|
|
from lms.djangoapps.bulk_email.models import BulkEmailFlag, CourseAuthorization
|
|
from common.djangoapps.student.tests.factories import CourseEnrollmentFactory, UserFactory
|
|
from xmodule.modulestore.tests.django_utils import SharedModuleStoreTestCase # lint-amnesty, pylint: disable=wrong-import-order
|
|
from xmodule.modulestore.tests.factories import CourseFactory # lint-amnesty, pylint: disable=wrong-import-order
|
|
|
|
|
|
@unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms')
|
|
class TestStudentDashboardEmailView(SharedModuleStoreTestCase):
|
|
"""
|
|
Check for email view displayed with flag
|
|
"""
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
cls.course = CourseFactory.create()
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
|
|
# Create student account
|
|
student = UserFactory.create()
|
|
CourseEnrollmentFactory.create(user=student, course_id=self.course.id)
|
|
self.client.login(username=student.username, password="test")
|
|
|
|
self.url = reverse('dashboard')
|
|
# URL for email settings modal
|
|
self.email_modal_link = (
|
|
'<a href="#email-settings-modal" class="action action-email-settings" rel="leanModal" '
|
|
'data-course-id="course-v1:{org}+{num}+{name}" data-course-number="{num}" '
|
|
'data-dashboard-index="0" data-optout="False">Email Settings</a>'
|
|
).format(
|
|
org=self.course.org,
|
|
num=self.course.number,
|
|
name=self.course.display_name.replace(' ', '_'),
|
|
)
|
|
|
|
def tearDown(self):
|
|
super().tearDown()
|
|
BulkEmailFlag.objects.all().delete()
|
|
|
|
def test_email_flag_true(self):
|
|
BulkEmailFlag.objects.create(enabled=True, require_course_email_auth=False)
|
|
# Assert that the URL for the email view is in the response
|
|
response = self.client.get(self.url)
|
|
self.assertContains(response, self.email_modal_link)
|
|
|
|
def test_email_flag_false(self):
|
|
BulkEmailFlag.objects.create(enabled=False)
|
|
# Assert that the URL for the email view is not in the response
|
|
response = self.client.get(self.url)
|
|
self.assertNotContains(response, self.email_modal_link)
|
|
|
|
def test_email_unauthorized(self):
|
|
BulkEmailFlag.objects.create(enabled=True, require_course_email_auth=True)
|
|
# Assert that instructor email is not enabled for this course
|
|
assert not is_bulk_email_feature_enabled(self.course.id)
|
|
# Assert that the URL for the email view is not in the response
|
|
# if this course isn't authorized
|
|
response = self.client.get(self.url)
|
|
self.assertNotContains(response, self.email_modal_link)
|
|
|
|
def test_email_authorized(self):
|
|
BulkEmailFlag.objects.create(enabled=True, require_course_email_auth=True)
|
|
# Authorize the course to use email
|
|
cauth = CourseAuthorization(course_id=self.course.id, email_enabled=True)
|
|
cauth.save()
|
|
# Assert that instructor email is enabled for this course
|
|
assert is_bulk_email_feature_enabled(self.course.id)
|
|
# Assert that the URL for the email view is not in the response
|
|
# if this course isn't authorized
|
|
response = self.client.get(self.url)
|
|
self.assertContains(response, self.email_modal_link)
|