This commit leaves behind just enough Old Mongo (DraftModulestore) functionality to allow read-only access to static assets and the root CourseBlock. It removes: * create/update operations * child/parent traversal * inheritance related code It also removes or converts tests for this functionality. The ability to read from the root CourseBlock was maintained for backwards compatibility, since top-level course settings are often stored here, and this is used by various parts of the codebase, like displaying dashboards and re-building CourseOverview models. Any attempt to read the contents of a course by getting the CourseBlock's children will return an empty list (i.e. it will look empty). This commit does _not_ delete content on MongoDB or run any sort of data migration or cleanup.
37 lines
1.5 KiB
Python
37 lines
1.5 KiB
Python
"""
|
|
Tests for wiki middleware.
|
|
"""
|
|
|
|
|
|
from django.test.client import Client
|
|
from wiki.models import URLPath
|
|
from xmodule.modulestore.tests.django_utils import TEST_DATA_SPLIT_MODULESTORE, ModuleStoreTestCase
|
|
from xmodule.modulestore.tests.factories import CourseFactory
|
|
|
|
from common.djangoapps.student.tests.factories import InstructorFactory
|
|
from lms.djangoapps.course_wiki.views import get_or_create_root
|
|
|
|
|
|
class TestWikiAccessMiddleware(ModuleStoreTestCase):
|
|
"""Tests for WikiAccessMiddleware."""
|
|
MODULESTORE = TEST_DATA_SPLIT_MODULESTORE
|
|
|
|
def setUp(self):
|
|
"""Test setup."""
|
|
super().setUp()
|
|
|
|
self.wiki = get_or_create_root()
|
|
|
|
self.course_math101 = CourseFactory.create(org='edx', number='math101', display_name='2014')
|
|
self.course_math101_instructor = InstructorFactory(course_key=self.course_math101.id, username='instructor', password='secret') # lint-amnesty, pylint: disable=line-too-long
|
|
self.wiki_math101 = URLPath.create_article(self.wiki, 'math101', title='math101')
|
|
|
|
self.client = Client()
|
|
self.client.login(username='instructor', password='secret')
|
|
|
|
def test_url_tranform(self):
|
|
"""Test that the correct prefix ('/courses/<course_id>') is added to the urls in the wiki."""
|
|
response = self.client.get('/courses/course-v1:edx+math101+2014/wiki/math101/')
|
|
self.assertContains(response, '/courses/course-v1:edx+math101+2014/wiki/math101/_edit/')
|
|
self.assertContains(response, '/courses/course-v1:edx+math101+2014/wiki/math101/_settings/')
|