-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds CourseAboutPageURLRequested and LMSPageURLRequested filters (
- Loading branch information
1 parent
8b3befc
commit 123ad8d
Showing
4 changed files
with
193 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
""" | ||
Unit tests for the asset upload endpoint. | ||
""" | ||
from datetime import datetime | ||
from urllib.parse import urljoin | ||
|
||
from pytz import UTC | ||
|
||
from django.test import override_settings | ||
from cms.djangoapps.contentstore import asset_storage_handlers | ||
from opaque_keys.edx.locator import CourseLocator | ||
from openedx_filters import PipelineStep | ||
from xmodule.contentstore.content import StaticContent | ||
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase | ||
|
||
|
||
class TestPageURLRequestedPipelineStep(PipelineStep): | ||
""" | ||
Utility class used when getting steps for pipeline. | ||
""" | ||
|
||
def run_filter(self, url, org): # pylint: disable=arguments-differ | ||
"""Pipeline step that modifies lms url creation.""" | ||
url = "https://lms-url-creation" | ||
org = "org" | ||
return { | ||
"url": url, | ||
"org": org, | ||
} | ||
|
||
|
||
class LMSPageURLRequestedFiltersTest(ModuleStoreTestCase): | ||
""" | ||
Tests for the Open edX Filters associated with the lms url requested process. | ||
This class guarantees that the following filters are triggered during the microsite render: | ||
- LMSPageURLRequested | ||
""" | ||
|
||
def setUp(self): # pylint: disable=arguments-differ | ||
super().setUp() | ||
self.upload_date = datetime(2013, 6, 1, 10, 30, tzinfo=UTC) | ||
self.content_type = 'image/jpg' | ||
self.course_key = CourseLocator('org', 'class', 'run') | ||
self.location = self.course_key.make_asset_key('asset', 'my_file_name.jpg') | ||
self.thumbnail_location = self.course_key.make_asset_key('thumbnail', 'my_file_name_thumb.jpg') | ||
|
||
self.asset_url = StaticContent.serialize_asset_key_with_slash(self.location) | ||
|
||
@override_settings( | ||
OPEN_EDX_FILTERS_CONFIG={ | ||
"org.openedx.course_authoring.lms.page.url.requested.v1": { | ||
"pipeline": [ | ||
"common.djangoapps.util.tests.test_filters.TestPageURLRequestedPipelineStep", | ||
], | ||
"fail_silently": False, | ||
}, | ||
}, | ||
) | ||
def test_lms_url_requested_filter_executed(self): | ||
""" | ||
Test that filter get new LMS URL for asset URL generation | ||
based on the course organization settings for org. | ||
Expected result: | ||
- LMSPageURLRequested is triggered and executes TestPageURLRequestedPipelineStep. | ||
- The arguments that the receiver gets are the arguments used by the filter. | ||
""" | ||
output = asset_storage_handlers.get_asset_json( | ||
"my_file", | ||
self.content_type, | ||
self.upload_date, | ||
self.location, | ||
self.thumbnail_location, | ||
True, | ||
self.course_key | ||
) | ||
|
||
self.assertEqual(output.get('external_url'), urljoin('https://lms-url-creation', self.asset_url)) | ||
|
||
@override_settings(OPEN_EDX_FILTERS_CONFIG={}, LMS_ROOT_URL="https://lms-base") | ||
def test_lms_url_requested_without_filter_configuration(self): | ||
""" | ||
Test that filter get new LMS URL for asset URL generation | ||
based on LMS_ROOT_URL settings because OPEN_EDX_FILTERS_CONFIG is not set. | ||
Expected result: | ||
- Returns the asset URL with domain base LMS_ROOT_URL. | ||
- The get process ends successfully. | ||
""" | ||
output = asset_storage_handlers.get_asset_json( | ||
"my_file", | ||
self.content_type, | ||
self.upload_date, | ||
self.location, | ||
self.thumbnail_location, | ||
True, | ||
self.course_key | ||
) | ||
|
||
self.assertEqual(output.get('external_url'), urljoin('https://lms-base', self.asset_url)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
""" | ||
Test that various filters are fired for models/views in the student app. | ||
""" | ||
from django.test import override_settings | ||
from common.djangoapps.util import course | ||
from openedx_filters import PipelineStep | ||
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase | ||
from xmodule.modulestore.tests.factories import CourseFactory | ||
from openedx.core.djangolib.testing.utils import skip_unless_lms | ||
|
||
|
||
class TestPageURLRequestedPipelineStep(PipelineStep): | ||
""" | ||
Utility class used when getting steps for pipeline. | ||
""" | ||
|
||
def run_filter(self, url, org): # pylint: disable=arguments-differ | ||
"""Pipeline step that modifies lms url requested.""" | ||
url = "https://lms-url-creation" | ||
org = "org" | ||
return { | ||
"url": url, | ||
"org": org, | ||
} | ||
|
||
|
||
@skip_unless_lms | ||
class CourseAboutPageURLRequestedFiltersTest(ModuleStoreTestCase): | ||
""" | ||
Tests for the Open edX Filters associated with the course about page url requested. | ||
This class guarantees that the following filters are triggered during the microsite render: | ||
- CourseAboutPageURLRequested | ||
""" | ||
|
||
def setUp(self): # pylint: disable=arguments-differ | ||
super().setUp() | ||
self.course = CourseFactory.create() | ||
|
||
@override_settings( | ||
OPEN_EDX_FILTERS_CONFIG={ | ||
"org.openedx.learning.course_about.page.url.requested.v1": { | ||
"pipeline": [ | ||
"common.djangoapps.util.tests.test_filters.TestPageURLRequestedPipelineStep", | ||
], | ||
"fail_silently": False, | ||
}, | ||
}, | ||
) | ||
def test_course_about_page_url_requested_filter_executed(self): | ||
""" | ||
Test that filter get new course about URL based | ||
on the course organization settings for org. | ||
Expected result: | ||
- CourseAboutPageURLRequested is triggered and executes TestPageURLRequestedPipelineStep. | ||
- The arguments that the receiver gets are the arguments used by the filter. | ||
""" | ||
course_about_url = course.get_link_for_about_page(self.course) | ||
|
||
self.assertEqual("https://lms-url-creation", course_about_url) | ||
|
||
@override_settings(OPEN_EDX_FILTERS_CONFIG={}, LMS_ROOT_URL="https://lms-base") | ||
def test_course_about_page_url_requested_without_filter_configuration(self): | ||
""" | ||
Test that filter get new course about URL based | ||
on the LMS_ROOT_URL settings because OPEN_EDX_FILTERS_CONFIG is not set. | ||
Expected result: | ||
- Returns the course about URL with domain base LMS_ROOT_URL. | ||
- The get process ends successfully. | ||
""" | ||
course_about_url = course.get_link_for_about_page(self.course) | ||
|
||
expected_course_about = '{about_base_url}/courses/{course_key}/about'.format( | ||
about_base_url='https://lms-base', | ||
course_key=str(self.course.id), | ||
) | ||
|
||
self.assertEqual(expected_course_about, course_about_url) |