-
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.
test: add tests for retrieving a particular XBlock version
- Loading branch information
1 parent
b4dd818
commit badefc3
Showing
6 changed files
with
213 additions
and
4 deletions.
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
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
60 changes: 60 additions & 0 deletions
60
openedx/core/djangoapps/content_libraries/tests/fields_test_block.py
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,60 @@ | ||
""" | ||
Block for testing variously scoped XBlock fields. | ||
""" | ||
import json | ||
|
||
from webob import Response | ||
from web_fragments.fragment import Fragment | ||
from xblock.core import XBlock, Scope | ||
from xblock import fields | ||
|
||
|
||
class FieldsTestBlock(XBlock): | ||
""" | ||
Block for testing variously scoped XBlock fields and XBlock handlers. | ||
This has only authored fields. See also UserStateTestBlock which has user fields. | ||
""" | ||
BLOCK_TYPE = "fields-test" | ||
has_score = False | ||
|
||
display_name = fields.String(scope=Scope.settings, name='User State Test Block') | ||
setting_field = fields.String(scope=Scope.settings, name='A setting') | ||
content_field = fields.String(scope=Scope.content, name='A setting') | ||
|
||
@XBlock.json_handler | ||
def update_fields(self, data, suffix=None): # pylint: disable=unused-argument | ||
""" | ||
Update the authored fields of this block | ||
""" | ||
self.display_name = data["display_name"] | ||
self.setting_field = data["setting_field"] | ||
self.content_field = data["content_field"] | ||
return {} | ||
|
||
@XBlock.handler | ||
def get_fields(self, request, suffix=None): # pylint: disable=unused-argument | ||
""" | ||
Get the various fields of this XBlock. | ||
""" | ||
return Response( | ||
json.dumps({ | ||
"display_name": self.display_name, | ||
"setting_field": self.setting_field, | ||
"content_field": self.content_field, | ||
}), | ||
content_type='application/json', | ||
charset='UTF-8', | ||
) | ||
|
||
def student_view(self, _context): | ||
""" | ||
Return the student view. | ||
""" | ||
fragment = Fragment() | ||
fragment.add_content(f'<h1>{self.display_name}</h1>\n') | ||
fragment.add_content(f'<p>SF: {self.setting_field}</p>\n') | ||
fragment.add_content(f'<p>CF: {self.content_field}</p>\n') | ||
handler_url = self.runtime.handler_url(self, 'get_fields') | ||
fragment.add_content(f'<p>handler URL: {handler_url}</p>\n') | ||
return fragment |
125 changes: 125 additions & 0 deletions
125
openedx/core/djangoapps/content_libraries/tests/test_embed_block.py
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,125 @@ | ||
""" | ||
Tests for the XBlock v2 runtime's "embed" view, using Content Libraries | ||
This view is used in the MFE to preview XBlocks that are in the library. | ||
""" | ||
import re | ||
|
||
import ddt | ||
from django.test.utils import override_settings | ||
from openedx_events.tests.utils import OpenEdxEventsTestMixin | ||
from xblock.core import XBlock | ||
|
||
from openedx.core.djangoapps.content_libraries.tests.base import ( | ||
ContentLibrariesRestApiTest | ||
) | ||
from openedx.core.djangolib.testing.utils import skip_unless_cms | ||
from .fields_test_block import FieldsTestBlock | ||
|
||
|
||
@skip_unless_cms | ||
@ddt.ddt | ||
@override_settings(CORS_ORIGIN_WHITELIST=[]) # For some reason, this setting isn't defined in our test environment? | ||
class LibrariesEmbedViewTestCase(ContentLibrariesRestApiTest, OpenEdxEventsTestMixin): | ||
""" | ||
Tests for embed_view and interacting with draft/published/past versions of | ||
Learning-Core-based XBlocks (in Content Libraries). | ||
These tests use the REST API, which in turn relies on the Python API. | ||
Some tests may use the python API directly if necessary to provide | ||
coverage of any code paths not accessible via the REST API. | ||
In general, these tests should | ||
(1) Use public APIs only - don't directly create data using other methods, | ||
which results in a less realistic test and ties the test suite too | ||
closely to specific implementation details. | ||
(Exception: users can be provisioned using a user factory) | ||
(2) Assert that fields are present in responses, but don't assert that the | ||
entire response has some specific shape. That way, things like adding | ||
new fields to an API response, which are backwards compatible, won't | ||
break any tests, but backwards-incompatible API changes will. | ||
WARNING: every test should have a unique library slug, because even though | ||
the django/mysql database gets reset for each test case, the lookup between | ||
library slug and bundle UUID does not because it's assumed to be immutable | ||
and cached forever. | ||
""" | ||
|
||
@XBlock.register_temp_plugin(FieldsTestBlock, FieldsTestBlock.BLOCK_TYPE) | ||
def test_embed_vew_versions(self): | ||
""" | ||
Test that the embed_view renders a block and can render different versions of it. | ||
""" | ||
# Create a library: | ||
lib = self._create_library(slug="test-eb-1", title="Test Library", description="") | ||
lib_id = lib["id"] | ||
# Create an XBlock. This will be the empty version 1: | ||
create_response = self._add_block_to_library(lib_id, FieldsTestBlock.BLOCK_TYPE, "block1") | ||
block_id = create_response["id"] | ||
# Create version 2 of the block by setting its OLX: | ||
olx_response = self._set_library_block_olx(block_id, """ | ||
<fields-test | ||
display_name="Field Test Block (Old, v2)" | ||
setting_field="Old setting value 2." | ||
content_field="Old content value 2." | ||
/> | ||
""") | ||
assert olx_response["version_num"] == 2 | ||
# Create version 3 of the block by setting its OLX again: | ||
olx_response = self._set_library_block_olx(block_id, """ | ||
<fields-test | ||
display_name="Field Test Block (Published, v3)" | ||
setting_field="Published setting value 3." | ||
content_field="Published content value 3." | ||
/> | ||
""") | ||
assert olx_response["version_num"] == 3 | ||
# Publish the library: | ||
self._commit_library_changes(lib_id) | ||
|
||
# Create the draft (version 4) of the block: | ||
olx_response = self._set_library_block_olx(block_id, """ | ||
<fields-test | ||
display_name="Field Test Block (Draft, v4)" | ||
setting_field="Draft setting value 4." | ||
content_field="Draft content value 4." | ||
/> | ||
""") | ||
|
||
# Now render the "embed block" view. This test only runs in CMS so it should default to the draft: | ||
html = self._embed_block(block_id) | ||
|
||
def check_fields(display_name, setting_value, content_value): | ||
assert f'<h1>{display_name}</h1>' in html | ||
assert f'<p>SF: {setting_value}</p>' in html | ||
assert f'<p>CF: {content_value}</p>' in html | ||
handler_url = re.search(r'<p>handler URL: ([^<]+)</p>', html).group(1) | ||
assert handler_url.startswith('http') | ||
handler_result = self.client.get(handler_url).json() | ||
assert handler_result == { | ||
"display_name": display_name, | ||
"setting_field": setting_value, | ||
"content_field": content_value, | ||
} | ||
check_fields('Field Test Block (Draft, v4)', 'Draft setting value 4.', 'Draft content value 4.') | ||
|
||
# But if we request the published version, we get that: | ||
html = self._embed_block(block_id, version="published") | ||
check_fields('Field Test Block (Published, v3)', 'Published setting value 3.', 'Published content value 3.') | ||
|
||
# And if we request a specific version, we get that: | ||
html = self._embed_block(block_id, version=3) | ||
check_fields('Field Test Block (Published, v3)', 'Published setting value 3.', 'Published content value 3.') | ||
|
||
# And if we request a specific version, we get that: | ||
html = self._embed_block(block_id, version=2) | ||
check_fields('Field Test Block (Old, v2)', 'Old setting value 2.', 'Old content value 2.') | ||
|
||
# TODO: if we requested any version other than "draft", the handlers should not allow _writing_ to authored field | ||
# data. Writing to student state is OK. | ||
|
||
# TODO: test that any static assets referenced in the student_view html are loaded as the correct version, and not | ||
# always loaded as "latest draft". | ||
|
||
# TODO: if we are ever able to run these tests in the LMS, test that the LMS only allows accessing the published | ||
# version. |
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