44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
"""
|
|
Tests for courseware middleware
|
|
"""
|
|
|
|
|
|
from django.http import Http404
|
|
from django.test.client import RequestFactory
|
|
|
|
from lms.djangoapps.courseware.exceptions import Redirect
|
|
from lms.djangoapps.courseware.middleware import RedirectMiddleware
|
|
from xmodule.modulestore.tests.django_utils import SharedModuleStoreTestCase
|
|
from xmodule.modulestore.tests.factories import CourseFactory
|
|
|
|
|
|
class CoursewareMiddlewareTestCase(SharedModuleStoreTestCase):
|
|
"""Tests that courseware middleware is correctly redirected"""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
cls.course = CourseFactory.create()
|
|
|
|
def test_process_404(self):
|
|
"""A 404 should not trigger anything"""
|
|
request = RequestFactory().get("dummy_url")
|
|
response = RedirectMiddleware().process_exception(
|
|
request, Http404()
|
|
)
|
|
assert response is None
|
|
|
|
def test_redirect_exceptions(self):
|
|
"""
|
|
Unit tests for handling of Redirect exceptions.
|
|
"""
|
|
request = RequestFactory().get("dummy_url")
|
|
test_url = '/test_url'
|
|
exception = Redirect(test_url)
|
|
response = RedirectMiddleware().process_exception(
|
|
request, exception
|
|
)
|
|
assert response.status_code == 302
|
|
target_url = response._headers['location'][1] # lint-amnesty, pylint: disable=protected-access
|
|
assert target_url.endswith(test_url)
|