48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""
|
|
Tests for mobile API utilities.
|
|
"""
|
|
|
|
import ddt
|
|
from mock import patch
|
|
|
|
from xmodule.modulestore.tests.factories import CourseFactory
|
|
|
|
from .utils import mobile_access_when_enrolled
|
|
from .testutils import MobileAPITestCase, ROLE_CASES
|
|
|
|
|
|
@ddt.ddt
|
|
class TestMobileApiUtils(MobileAPITestCase):
|
|
"""
|
|
Tests for mobile API utilities
|
|
"""
|
|
@ddt.data(*ROLE_CASES)
|
|
@ddt.unpack
|
|
def test_mobile_role_access(self, role, should_have_access):
|
|
"""
|
|
Verifies that our mobile access function properly handles using roles to grant access
|
|
"""
|
|
non_mobile_course = CourseFactory.create(mobile_available=False)
|
|
if role:
|
|
role(non_mobile_course.id).add_users(self.user)
|
|
self.assertEqual(should_have_access, mobile_access_when_enrolled(non_mobile_course, self.user))
|
|
|
|
def test_mobile_explicit_access(self):
|
|
"""
|
|
Verifies that our mobile access function listens to the mobile_available flag as it should
|
|
"""
|
|
self.assertTrue(mobile_access_when_enrolled(self.course, self.user))
|
|
|
|
def test_missing_course(self):
|
|
"""
|
|
Verifies that we handle the case where a course doesn't exist
|
|
"""
|
|
self.assertFalse(mobile_access_when_enrolled(None, self.user))
|
|
|
|
@patch.dict('django.conf.settings.FEATURES', {'DISABLE_START_DATES': False})
|
|
def test_unreleased_course(self):
|
|
"""
|
|
Verifies that we handle the case where a course hasn't started
|
|
"""
|
|
self.assertFalse(mobile_access_when_enrolled(self.course, self.user))
|