This is to fix an issue in the following common migration situation: 1. An existing course references content in a legacy content library. 2. The legacy content library is migrated to the new library system. 3. The user clicks on "Update reference" from the Randomized Content Block in the course. This action is supposed to update the children of the LibraryContentBlock (usually ProblemBlocks) so that the "upstream" attribute is set to point at the UsageKeys of the content in the new libraries they were migrated to. What was happening instead was that the upstream entries for these child blocks were left blank, breaking the upstream/sync connection and making it so that the courses did not receive any updates from the migrated libraries. There were two issues: 1. get_forwarding_for_blocks() was being called with the child UsageKeys in the course, when it should have been called with the v1 library usage keys instead (since those are the things being forwarded). 2. We were checking that the target_key was a v2 Library key, but really the upstream target_key is supposed to be a LibraryUsageLocatorV2, i.e. the key of the specific piece of content, not the library it ended up in. Note on testing: Although there were unit tests for the migration of legacy content libraries, there were not any unit tests for the migration of legacy library *blocks*. This commit adds a minimal test, which would have caught the bug we're fixing. It would be good to add more comprehensive testing unit testing for this part of the migration flow. --------- Co-authored-by: Kyle McCormick <kyle@axim.org>
829 lines
37 KiB
Python
829 lines
37 KiB
Python
"""
|
|
Basic unit tests for LegacyLibraryContentBlock
|
|
"""
|
|
from unittest.mock import MagicMock, Mock, patch
|
|
|
|
import ddt
|
|
from bson.objectid import ObjectId
|
|
from fs.memoryfs import MemoryFS
|
|
from lxml import etree
|
|
from opaque_keys.edx.locator import LibraryLocator, LibraryLocatorV2
|
|
from organizations.tests.factories import OrganizationFactory
|
|
from rest_framework import status
|
|
from search.search_engine_base import SearchEngine
|
|
from web_fragments.fragment import Fragment
|
|
from xblock.runtime import Runtime as VanillaRuntime
|
|
|
|
from common.djangoapps.student.tests.factories import UserFactory
|
|
from openedx.core.djangoapps.content_libraries import api as lib_api
|
|
from openedx.core.djangolib.testing.utils import skip_unless_cms
|
|
from xmodule.capa_block import ProblemBlock
|
|
from xmodule.library_content_block import ANY_CAPA_TYPE_VALUE, LegacyLibraryContentBlock
|
|
from xmodule.library_tools import LegacyLibraryToolsService
|
|
from xmodule.modulestore import ModuleStoreEnum
|
|
from xmodule.modulestore.tests.factories import CourseFactory, LibraryFactory
|
|
from xmodule.modulestore.tests.utils import MixedSplitTestCase
|
|
from xmodule.tests import prepare_block_runtime
|
|
from xmodule.validation import StudioValidationMessage
|
|
from xmodule.x_module import AUTHOR_VIEW
|
|
|
|
from .test_course_block import DummyModuleStoreRuntime
|
|
|
|
dummy_render = lambda block, _: Fragment(block.data) # pylint: disable=invalid-name
|
|
|
|
|
|
@skip_unless_cms
|
|
class LegacyLibraryContentTest(MixedSplitTestCase):
|
|
"""
|
|
Base class for tests of LegacyLibraryContentBlock (library_content_block.py)
|
|
"""
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.user_id = UserFactory().id
|
|
self.tools = LegacyLibraryToolsService(self.store, self.user_id)
|
|
self.library = LibraryFactory.create(modulestore=self.store)
|
|
self.lib_blocks = [
|
|
self.make_block(
|
|
"html",
|
|
self.library,
|
|
data=f"Hello world from block {i}",
|
|
display_name=f"html {i}"
|
|
)
|
|
for i in range(1, 5)
|
|
]
|
|
self.course = CourseFactory.create(modulestore=self.store)
|
|
self.chapter = self.make_block("chapter", self.course)
|
|
self.sequential = self.make_block("sequential", self.chapter)
|
|
self.vertical = self.make_block("vertical", self.sequential)
|
|
self.lc_block = self.make_block(
|
|
"library_content",
|
|
self.vertical,
|
|
max_count=1,
|
|
source_library_id=str(self.library.location.library_key)
|
|
)
|
|
self.lc_block.runtime._services.update({'library_tools': self.tools}) # pylint: disable=protected-access
|
|
|
|
def _sync_lc_block_from_library(self, upgrade_to_latest=False):
|
|
"""
|
|
Save the lc_block, then sync its children with the library, and then re-load it.
|
|
|
|
We must re-load it because the syncing happens in a Celery task, so that original self.lc_block instance will
|
|
not have changes manifested on it, but the re-loaded instance will.
|
|
"""
|
|
self.store.update_item(self.lc_block, self.user_id)
|
|
self.lc_block.sync_from_library(upgrade_to_latest=upgrade_to_latest)
|
|
self.lc_block = self.store.get_item(self.lc_block.location)
|
|
|
|
def _bind_course_block(self, block):
|
|
"""
|
|
Bind a block (part of self.course) so we can access student-specific data.
|
|
"""
|
|
prepare_block_runtime(block.runtime, course_id=block.location.course_key)
|
|
block.runtime._services.update({'library_tools': self.tools}) # pylint: disable=protected-access
|
|
|
|
def get_block(descriptor):
|
|
"""Mocks module_system get_block function"""
|
|
prepare_block_runtime(descriptor.runtime, course_id=block.location.course_key)
|
|
descriptor.runtime.get_block_for_descriptor = get_block
|
|
descriptor.bind_for_student(self.user_id)
|
|
return descriptor
|
|
|
|
block.runtime.get_block_for_descriptor = get_block
|
|
|
|
def _verify_xblock_properties(self, imported_lc_block):
|
|
"""
|
|
Check the new XBlock has the same properties as the old one.
|
|
"""
|
|
assert imported_lc_block.display_name == self.lc_block.display_name
|
|
assert imported_lc_block.source_library_id == self.lc_block.source_library_id
|
|
assert imported_lc_block.source_library_version == self.lc_block.source_library_version
|
|
assert imported_lc_block.max_count == self.lc_block.max_count
|
|
assert imported_lc_block.capa_type == self.lc_block.capa_type
|
|
assert len(imported_lc_block.children) == len(self.lc_block.children)
|
|
assert imported_lc_block.children == self.lc_block.children
|
|
|
|
|
|
@ddt.ddt
|
|
class LegacyLibraryContentGeneralTest(LegacyLibraryContentTest):
|
|
"""
|
|
Test the base functionality of the LegacyLibraryContentBlock.
|
|
"""
|
|
|
|
def test_source_library_key(self):
|
|
"""
|
|
Test the source_library_key property of the xblock.
|
|
"""
|
|
library = self.make_block(
|
|
"library_content",
|
|
self.vertical,
|
|
max_count=1,
|
|
source_library_id='library-v1:ProblemX+PR0B',
|
|
)
|
|
assert isinstance(library.source_library_key, LibraryLocator)
|
|
|
|
def test_initial_sync_from_library(self):
|
|
"""
|
|
Test that a lc block starts without children, but is correctly populated upon first sync.
|
|
"""
|
|
source_library_key = self.library.location.library_key
|
|
|
|
# Normally the children get added when the "source_libraries" setting
|
|
# is updated, but the way we do it through a factory doesn't do that.
|
|
assert self.lc_block.source_library_key == source_library_key
|
|
assert self.lc_block.source_library_version is None
|
|
assert len(self.lc_block.children) == 0
|
|
|
|
# Update the LibraryContent block's children:
|
|
self._sync_lc_block_from_library()
|
|
|
|
# Check that all blocks from the library are now children of the block:
|
|
assert self.lc_block.source_library_key == source_library_key # Unchanged
|
|
assert self.lc_block.source_library_version == self.tools.get_latest_library_version(source_library_key)
|
|
assert len(self.lc_block.children) == len(self.lib_blocks)
|
|
|
|
|
|
class TestLibraryContentExportImport(LegacyLibraryContentTest):
|
|
"""
|
|
Export and import tests for LegacyLibraryContentBlock
|
|
"""
|
|
def setUp(self):
|
|
super().setUp()
|
|
self._sync_lc_block_from_library()
|
|
|
|
self.expected_olx = (
|
|
f'<library_content display_name="{self.lc_block.display_name}" max_count="{self.lc_block.max_count}"'
|
|
f' source_library_id="{self.lc_block.source_library_id}" '
|
|
f'source_library_version="{self.lc_block.source_library_version}">\n'
|
|
f' <html url_name="{self.lc_block.children[0].block_id}"/>\n'
|
|
f' <html url_name="{self.lc_block.children[1].block_id}"/>\n'
|
|
f' <html url_name="{self.lc_block.children[2].block_id}"/>\n'
|
|
f' <html url_name="{self.lc_block.children[3].block_id}"/>\n'
|
|
'</library_content>\n'
|
|
)
|
|
|
|
# Set the virtual FS to export the olx to.
|
|
self.export_fs = MemoryFS()
|
|
self.lc_block.runtime.export_fs = self.export_fs # pylint: disable=protected-access
|
|
|
|
# Prepare runtime for the import.
|
|
self.runtime = DummyModuleStoreRuntime(load_error_blocks=True, course_id=self.lc_block.location.course_key)
|
|
self.runtime.resources_fs = self.export_fs
|
|
self.id_generator = Mock()
|
|
|
|
# Export the olx.
|
|
node = etree.Element("unknown_root")
|
|
self.lc_block.add_xml_to_node(node)
|
|
|
|
def test_xml_export_import_cycle(self):
|
|
"""
|
|
Test the export-import cycle.
|
|
"""
|
|
# Read back the olx.
|
|
file_path = f'{self.lc_block.scope_ids.usage_id.block_type}/{self.lc_block.scope_ids.usage_id.block_id}.xml'
|
|
with self.export_fs.open(file_path) as f:
|
|
exported_olx = f.read()
|
|
|
|
# And compare.
|
|
assert exported_olx == self.expected_olx
|
|
|
|
# Now import it.
|
|
olx_element = etree.fromstring(exported_olx)
|
|
imported_lc_block = LegacyLibraryContentBlock.parse_xml(olx_element, self.runtime, None)
|
|
|
|
self._verify_xblock_properties(imported_lc_block)
|
|
|
|
def test_xml_import_with_comments(self):
|
|
"""
|
|
Test that XML comments within LegacyLibraryContentBlock are ignored during the import.
|
|
"""
|
|
olx_with_comments = (
|
|
'<!-- Comment -->\n'
|
|
f'<library_content display_name="{self.lc_block.display_name}" max_count="{self.lc_block.max_count}"'
|
|
f' source_library_id="{self.lc_block.source_library_id}" '
|
|
f'source_library_version="{self.lc_block.source_library_version}">\n'
|
|
'<!-- Comment -->\n'
|
|
f' <html url_name="{self.lc_block.children[0].block_id}"/>\n'
|
|
f' <html url_name="{self.lc_block.children[1].block_id}"/>\n'
|
|
f' <html url_name="{self.lc_block.children[2].block_id}"/>\n'
|
|
f' <html url_name="{self.lc_block.children[3].block_id}"/>\n'
|
|
'</library_content>\n'
|
|
)
|
|
|
|
# Import the olx.
|
|
olx_element = etree.fromstring(olx_with_comments)
|
|
imported_lc_block = LegacyLibraryContentBlock.parse_xml(olx_element, self.runtime, None)
|
|
|
|
self._verify_xblock_properties(imported_lc_block)
|
|
|
|
|
|
@ddt.ddt
|
|
class LegacyLibraryContentBlockTestMixin:
|
|
"""
|
|
Basic unit tests for LegacyLibraryContentBlock
|
|
"""
|
|
problem_types = [
|
|
["multiplechoiceresponse"], ["optionresponse"], ["optionresponse", "coderesponse"],
|
|
["coderesponse", "optionresponse"]
|
|
]
|
|
|
|
problem_type_lookup = {}
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self._sync_lc_block_from_library()
|
|
|
|
def _get_capa_problem_type_xml(self, *args):
|
|
""" Helper function to create empty CAPA problem definition """
|
|
problem = "<problem>"
|
|
for problem_type in args:
|
|
problem += f"<{problem_type}></{problem_type}>"
|
|
problem += "</problem>"
|
|
return problem
|
|
|
|
def _add_problems_to_library(self):
|
|
"""
|
|
Helper function to create a set of capa problems to test against.
|
|
|
|
Creates four blocks total.
|
|
"""
|
|
self.problem_type_lookup = {}
|
|
for problem_type in self.problem_types:
|
|
block = self.make_block("problem", self.library, data=self._get_capa_problem_type_xml(*problem_type))
|
|
self.problem_type_lookup[block.location] = problem_type
|
|
|
|
def test_children_seen_by_a_user(self):
|
|
"""
|
|
Test that each student sees only one block as a child of the LibraryContent block.
|
|
"""
|
|
self._bind_course_block(self.lc_block)
|
|
# Make sure the runtime knows that the block's children vary per-user:
|
|
assert self.lc_block.has_dynamic_children()
|
|
|
|
assert len(self.lc_block.children) == len(self.lib_blocks)
|
|
|
|
# Check how many children each user will see:
|
|
assert len(self.lc_block.get_child_blocks()) == 1
|
|
# Check that get_content_titles() doesn't return titles for hidden/unused children
|
|
assert len(self.lc_block.get_content_titles()) == 1
|
|
|
|
def test_validation_of_course_libraries(self):
|
|
"""
|
|
Test that the validation method of LibraryContent blocks can validate
|
|
the source_library setting.
|
|
"""
|
|
# When source_library_id is blank, the validation summary should say this block needs to be configured:
|
|
self.lc_block.source_library_id = ""
|
|
self.lc_block.source_library_version = None
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
assert result.summary
|
|
assert StudioValidationMessage.NOT_CONFIGURED == result.summary.type
|
|
|
|
# When source_library_id references a non-existent library, we should get an error:
|
|
self.lc_block.source_library_id = "library-v1:BAD+WOLF"
|
|
self.lc_block.source_library_version = None
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
assert result.summary
|
|
assert StudioValidationMessage.ERROR == result.summary.type
|
|
assert 'invalid' in result.summary.text
|
|
|
|
# When source_library_id is set but the block hasn't been synced, the summary should say so:
|
|
self.lc_block.source_library_id = str(self.library.location.library_key)
|
|
self.lc_block.source_library_version = None
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
assert result.summary
|
|
assert StudioValidationMessage.WARNING == result.summary.type
|
|
assert 'out of date' in result.summary.text
|
|
|
|
# Now if we update the block, all validation should pass:
|
|
self._sync_lc_block_from_library()
|
|
assert self.lc_block.validate()
|
|
|
|
# But updating the library will cause it to fail again as out-of-date:
|
|
self._add_problems_to_library()
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
assert result.summary
|
|
assert StudioValidationMessage.WARNING == result.summary.type
|
|
assert 'out of date' in result.summary.text
|
|
|
|
# And a regular sync will not fix that:
|
|
self._sync_lc_block_from_library()
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
assert result.summary
|
|
assert StudioValidationMessage.WARNING == result.summary.type
|
|
assert 'out of date' in result.summary.text
|
|
|
|
# But a upgrade_to_latest sync will:
|
|
self._sync_lc_block_from_library(upgrade_to_latest=True)
|
|
assert self.lc_block.validate()
|
|
|
|
def _assert_has_only_N_matching_problems(self, result, n):
|
|
assert result.summary
|
|
assert StudioValidationMessage.WARNING == result.summary.type
|
|
assert f'only {n} matching problem' in result.summary.text
|
|
|
|
def test_validation_of_matching_blocks(self):
|
|
"""
|
|
Test that the validation method of LibraryContent blocks can warn
|
|
the user about problems with other settings (max_count and capa_type).
|
|
"""
|
|
# Ensure we're starting wtih clean validation
|
|
assert self.lc_block.validate()
|
|
|
|
# Set max_count to higher value than exists in library
|
|
self.lc_block.max_count = 50
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
self._assert_has_only_N_matching_problems(result, 4)
|
|
assert len(self.lc_block.selected_children()) == 4
|
|
|
|
# Add some capa problems so we can check problem type validation messages
|
|
self._add_problems_to_library()
|
|
self._sync_lc_block_from_library(upgrade_to_latest=True)
|
|
self.lc_block.max_count = 1
|
|
assert self.lc_block.validate()
|
|
assert len(self.lc_block.selected_children()) == 1
|
|
|
|
# Existing problem type should pass validation
|
|
self.lc_block.capa_type = 'multiplechoiceresponse'
|
|
self._sync_lc_block_from_library()
|
|
self.lc_block.max_count = 1
|
|
assert self.lc_block.validate()
|
|
assert len(self.lc_block.selected_children()) == 1
|
|
|
|
# ... unless requested more blocks than exists in library
|
|
self.lc_block.capa_type = 'multiplechoiceresponse'
|
|
self._sync_lc_block_from_library()
|
|
self.lc_block.max_count = 10
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
self._assert_has_only_N_matching_problems(result, 1)
|
|
assert len(self.lc_block.selected_children()) == 1
|
|
|
|
# Missing problem type should always fail validation
|
|
self.lc_block.capa_type = 'customresponse'
|
|
self._sync_lc_block_from_library()
|
|
self.lc_block.max_count = 1
|
|
result = self.lc_block.validate()
|
|
assert not result
|
|
# Validation fails due to at least one warning/message
|
|
assert result.summary
|
|
assert StudioValidationMessage.WARNING == result.summary.type
|
|
assert 'There are no problems in the specified library of type customresponse' in result.summary.text
|
|
assert len(self.lc_block.selected_children()) == 0
|
|
|
|
# -1 selects all blocks from the library.
|
|
self.lc_block.capa_type = ANY_CAPA_TYPE_VALUE
|
|
self._sync_lc_block_from_library()
|
|
self.lc_block.max_count = -1
|
|
assert self.lc_block.validate()
|
|
assert len(self.lc_block.selected_children()) == len(self.lc_block.children)
|
|
|
|
def test_capa_type_filtering(self):
|
|
"""
|
|
Test that the capa type filter is actually filtering children
|
|
"""
|
|
self._add_problems_to_library()
|
|
self._sync_lc_block_from_library(upgrade_to_latest=True)
|
|
assert self.lc_block.children
|
|
assert len(self.lc_block.children) == len(self.library.children)
|
|
|
|
self.lc_block.capa_type = "multiplechoiceresponse"
|
|
self._sync_lc_block_from_library()
|
|
assert len(self.lc_block.children) == 1
|
|
|
|
self.lc_block.capa_type = "optionresponse"
|
|
self._sync_lc_block_from_library()
|
|
assert len(self.lc_block.children) == 3
|
|
|
|
self.lc_block.capa_type = "coderesponse"
|
|
self._sync_lc_block_from_library()
|
|
assert len(self.lc_block.children) == 2
|
|
|
|
self.lc_block.capa_type = "customresponse"
|
|
self._sync_lc_block_from_library()
|
|
|
|
self.lc_block.capa_type = ANY_CAPA_TYPE_VALUE
|
|
self._sync_lc_block_from_library()
|
|
assert len(self.lc_block.children) == (len(self.lib_blocks) + 4)
|
|
|
|
def test_non_editable_settings(self):
|
|
"""
|
|
Test the settings that are marked as "non-editable".
|
|
"""
|
|
non_editable_metadata_fields = self.lc_block.non_editable_metadata_fields
|
|
assert LegacyLibraryContentBlock.source_library_version in non_editable_metadata_fields
|
|
assert LegacyLibraryContentBlock.display_name not in non_editable_metadata_fields
|
|
|
|
def test_overlimit_blocks_chosen_randomly(self):
|
|
"""
|
|
Tests that blocks to remove from selected children are chosen
|
|
randomly when len(selected) > max_count.
|
|
"""
|
|
blocks_seen = set()
|
|
total_tries, max_tries = 0, 100
|
|
|
|
self._bind_course_block(self.lc_block)
|
|
|
|
# Eventually, we should see every child block selected
|
|
while len(blocks_seen) != len(self.lib_blocks):
|
|
self._change_count_and_reselect_children(len(self.lib_blocks))
|
|
# Now set the number of selections to 1
|
|
selected = self._change_count_and_reselect_children(1)
|
|
blocks_seen.update(selected)
|
|
total_tries += 1
|
|
if total_tries >= max_tries:
|
|
assert False, "Max tries exceeded before seeing all blocks."
|
|
break
|
|
|
|
def _change_count_and_reselect_children(self, count):
|
|
"""
|
|
Helper method that changes the max_count of self.lc_block, reselects
|
|
children, and asserts that the number of selected children equals the count provided.
|
|
"""
|
|
self.lc_block.max_count = count
|
|
selected = self.lc_block.get_child_blocks()
|
|
assert len(selected) == count
|
|
return selected
|
|
|
|
@ddt.data(
|
|
# User resets selected children with reset button on content block
|
|
(True, 8),
|
|
# User resets selected children without reset button on content block
|
|
(False, 8),
|
|
# User resets selected children with reset button on content block when all library blocks should be selected.
|
|
(True, -1),
|
|
)
|
|
@ddt.unpack
|
|
def test_reset_selected_children_capa_blocks(self, allow_resetting_children, max_count):
|
|
"""
|
|
Tests that the `reset_selected_children` method of a content block resets only
|
|
XBlocks that have a `reset_problem` attribute when `allow_resetting_children` is True
|
|
|
|
This test block has 4 HTML XBlocks and 4 Problem XBlocks. Therefore, if we ensure
|
|
that the `reset_problem` has been called len(self.problem_types) times, then
|
|
it means that this is working correctly
|
|
"""
|
|
self.lc_block.allow_resetting_children = allow_resetting_children
|
|
self.lc_block.max_count = max_count
|
|
# Add some capa blocks
|
|
self._add_problems_to_library()
|
|
self._sync_lc_block_from_library(upgrade_to_latest=True)
|
|
# Mock the student view to return an empty dict to be returned as response
|
|
self.lc_block.student_view = MagicMock()
|
|
self.lc_block.student_view.return_value.content = {}
|
|
|
|
with patch.object(ProblemBlock, 'reset_problem', return_value={'success': True}) as reset_problem:
|
|
response = self.lc_block.reset_selected_children(None, None)
|
|
|
|
if allow_resetting_children:
|
|
self.lc_block.student_view.assert_called_once_with({})
|
|
assert reset_problem.call_count == len(self.problem_types)
|
|
assert response.status_code == status.HTTP_200_OK
|
|
assert response.content_type == "text/html"
|
|
assert response.body == b"{}"
|
|
else:
|
|
reset_problem.assert_not_called()
|
|
assert response.status_code == status.HTTP_400_BAD_REQUEST
|
|
|
|
|
|
search_index_mock = Mock(spec=SearchEngine) # pylint: disable=invalid-name
|
|
|
|
|
|
@patch.object(SearchEngine, 'get_search_engine', Mock(return_value=None, autospec=True))
|
|
class TestLegacyLibraryContentBlockWithSearchIndex(LegacyLibraryContentBlockTestMixin, LegacyLibraryContentTest):
|
|
"""
|
|
Tests for library container with mocked search engine response.
|
|
"""
|
|
|
|
def _get_search_response(self, field_dictionary=None):
|
|
""" Mocks search response as returned by search engine """
|
|
target_type = (field_dictionary or {}).get('problem_types')
|
|
matched_block_locations = [
|
|
key for key, problem_types in
|
|
self.problem_type_lookup.items() if target_type in problem_types
|
|
]
|
|
return {
|
|
'results': [
|
|
{'data': {'id': str(location)}} for location in matched_block_locations
|
|
]
|
|
}
|
|
|
|
def setUp(self):
|
|
""" Sets up search engine mock """
|
|
super().setUp()
|
|
search_index_mock.search = Mock(side_effect=self._get_search_response)
|
|
|
|
|
|
@patch(
|
|
'xmodule.modulestore.split_mongo.runtime.SplitModuleStoreRuntime.render', VanillaRuntime.render
|
|
)
|
|
@patch('xmodule.html_block.HtmlBlock.author_view', dummy_render, create=True)
|
|
@patch('xmodule.x_module.ModuleStoreRuntime.applicable_aside_types', lambda self, block: [])
|
|
class TestLibraryContentRender(LegacyLibraryContentTest):
|
|
"""
|
|
Rendering unit tests for LegacyLibraryContentBlock
|
|
"""
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self._sync_lc_block_from_library()
|
|
|
|
def test_preview_view(self):
|
|
""" Test preview view rendering """
|
|
assert len(self.lc_block.children) == len(self.lib_blocks)
|
|
self._bind_course_block(self.lc_block)
|
|
rendered = self.lc_block.render(AUTHOR_VIEW, {'root_xblock': self.lc_block})
|
|
assert 'Hello world from block 1' in rendered.content
|
|
|
|
def test_author_view(self):
|
|
""" Test author view rendering """
|
|
assert len(self.lc_block.children) == len(self.lib_blocks)
|
|
self._bind_course_block(self.lc_block)
|
|
rendered = self.lc_block.render(AUTHOR_VIEW, {})
|
|
assert '' == rendered.content
|
|
# content should be empty
|
|
assert 'LibraryContentAuthorView' == rendered.js_init_fn
|
|
# but some js initialization should happen
|
|
|
|
|
|
class TestLibraryContentAnalytics(LegacyLibraryContentTest):
|
|
"""
|
|
Test analytics features of LegacyLibraryContentBlock
|
|
"""
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.publisher = Mock()
|
|
self._sync_lc_block_from_library()
|
|
self._bind_course_block(self.lc_block)
|
|
self.lc_block.runtime.publish = self.publisher
|
|
|
|
def _assert_event_was_published(self, event_type):
|
|
"""
|
|
Check that a LegacyLibraryContentBlock analytics event was published by self.lc_block.
|
|
"""
|
|
assert self.publisher.called
|
|
assert len(self.publisher.call_args[0]) == 3 # pylint:disable=unsubscriptable-object
|
|
_, event_name, event_data = self.publisher.call_args[0] # pylint:disable=unsubscriptable-object
|
|
assert event_name == f'edx.librarycontentblock.content.{event_type}'
|
|
assert event_data['location'] == str(self.lc_block.location)
|
|
return event_data
|
|
|
|
def test_assigned_event(self):
|
|
"""
|
|
Test the "assigned" event emitted when a student is assigned specific blocks.
|
|
"""
|
|
# In the beginning was the lc_block and it assigned one child to the student:
|
|
child = self.lc_block.get_child_blocks()[0]
|
|
child_lib_location, child_lib_version = self.store.get_block_original_usage(child.location)
|
|
assert isinstance(child_lib_version, ObjectId)
|
|
event_data = self._assert_event_was_published("assigned")
|
|
block_info = {
|
|
"usage_key": str(child.location),
|
|
"original_usage_key": str(child_lib_location),
|
|
"original_usage_version": str(child_lib_version),
|
|
"descendants": [],
|
|
}
|
|
assert event_data ==\
|
|
{'location': str(self.lc_block.location),
|
|
'added': [block_info],
|
|
'result': [block_info],
|
|
'previous_count': 0, 'max_count': 1}
|
|
self.publisher.reset_mock()
|
|
|
|
# Now increase max_count so that one more child will be added:
|
|
self.lc_block.max_count = 2
|
|
children = self.lc_block.get_child_blocks()
|
|
assert len(children) == 2
|
|
child, new_child = children if children[0].location == child.location else reversed(children)
|
|
event_data = self._assert_event_was_published("assigned")
|
|
assert event_data['added'][0]['usage_key'] == str(new_child.location)
|
|
assert len(event_data['result']) == 2
|
|
assert event_data['previous_count'] == 1
|
|
assert event_data['max_count'] == 2
|
|
|
|
def test_assigned_event_published(self):
|
|
"""
|
|
Same as test_assigned_event but uses the published branch
|
|
"""
|
|
self.store.publish(self.course.location, self.user_id)
|
|
with self.store.branch_setting(ModuleStoreEnum.Branch.published_only):
|
|
self.lc_block = self.store.get_item(self.lc_block.location)
|
|
self._bind_course_block(self.lc_block)
|
|
self.lc_block.runtime.publish = self.publisher
|
|
self.test_assigned_event()
|
|
|
|
def test_assigned_descendants(self):
|
|
"""
|
|
Test the "assigned" event emitted includes descendant block information.
|
|
"""
|
|
# Replace the blocks in the library with a block that has descendants:
|
|
with self.store.bulk_operations(self.library.location.library_key):
|
|
self.library.children = []
|
|
main_vertical = self.make_block("vertical", self.library)
|
|
inner_vertical = self.make_block("vertical", main_vertical)
|
|
html_block = self.make_block("html", inner_vertical)
|
|
problem_block = self.make_block("problem", inner_vertical)
|
|
|
|
# Reload lc_block and set it up for a student:
|
|
self._sync_lc_block_from_library(upgrade_to_latest=True)
|
|
self._bind_course_block(self.lc_block)
|
|
self.lc_block.runtime.publish = self.publisher
|
|
|
|
# Get the keys of each of our blocks, as they appear in the course:
|
|
course_usage_main_vertical = self.lc_block.children[0]
|
|
course_usage_inner_vertical = self.store.get_item(course_usage_main_vertical).children[0]
|
|
inner_vertical_in_course = self.store.get_item(course_usage_inner_vertical)
|
|
course_usage_html = inner_vertical_in_course.children[0]
|
|
course_usage_problem = inner_vertical_in_course.children[1]
|
|
|
|
# Trigger a publish event:
|
|
self.lc_block.get_child_blocks()
|
|
event_data = self._assert_event_was_published("assigned")
|
|
|
|
for block_list in (event_data["added"], event_data["result"]):
|
|
assert len(block_list) == 1
|
|
# main_vertical is the only root block added, and is the only result.
|
|
assert block_list[0]['usage_key'] == str(course_usage_main_vertical)
|
|
|
|
# Check that "descendants" is a flat, unordered list of all of main_vertical's descendants:
|
|
descendants_expected = (
|
|
(inner_vertical.location, course_usage_inner_vertical),
|
|
(html_block.location, course_usage_html),
|
|
(problem_block.location, course_usage_problem),
|
|
)
|
|
descendant_data_expected = {}
|
|
for lib_key, course_usage_key in descendants_expected:
|
|
descendant_data_expected[str(course_usage_key)] = {
|
|
"usage_key": str(course_usage_key),
|
|
"original_usage_key": str(lib_key),
|
|
"original_usage_version": str(self.store.get_block_original_usage(course_usage_key)[1]),
|
|
}
|
|
assert len(block_list[0]['descendants']) == len(descendant_data_expected)
|
|
for descendant in block_list[0]["descendants"]:
|
|
assert descendant == descendant_data_expected.get(descendant['usage_key'])
|
|
|
|
def test_removed_overlimit(self):
|
|
"""
|
|
Test the "removed" event emitted when we un-assign blocks previously assigned to a student.
|
|
We go from one blocks assigned to none because max_count has been decreased.
|
|
"""
|
|
# Decrease max_count to 1, causing the block to be overlimit:
|
|
self.lc_block.get_child_blocks() # This line is needed in the test environment or the change has no effect
|
|
self.publisher.reset_mock() # Clear the "assigned" event that was just published.
|
|
self.lc_block.max_count = 0
|
|
|
|
# Check that the event says that one block was removed, leaving no blocks left:
|
|
children = self.lc_block.get_child_blocks()
|
|
assert len(children) == 0
|
|
event_data = self._assert_event_was_published("removed")
|
|
assert len(event_data['removed']) == 1
|
|
assert event_data['result'] == []
|
|
assert event_data['reason'] == 'overlimit'
|
|
|
|
def test_removed_invalid(self):
|
|
"""
|
|
Test the "removed" event emitted when we un-assign blocks previously assigned to a student.
|
|
We go from two blocks assigned, to one because the others have been deleted from the library.
|
|
"""
|
|
|
|
# Start by assigning two blocks to the student:
|
|
self.lc_block.get_child_blocks() # This line is needed in the test environment or the change has no effect
|
|
self.lc_block.max_count = 2
|
|
initial_blocks_assigned = self.lc_block.get_child_blocks()
|
|
assert len(initial_blocks_assigned) == 2
|
|
self.publisher.reset_mock() # Clear the "assigned" event that was just published.
|
|
# Now make sure that one of the assigned blocks will have to be un-assigned.
|
|
# To cause an "invalid" event, we delete all blocks from the content library
|
|
# except for one of the two already assigned to the student:
|
|
|
|
keep_block_key = initial_blocks_assigned[0].location
|
|
keep_block_lib_usage_key, keep_block_lib_version = self.store.get_block_original_usage(keep_block_key)
|
|
assert keep_block_lib_usage_key is not None
|
|
deleted_block_key = initial_blocks_assigned[1].location
|
|
self.library.children = [keep_block_lib_usage_key]
|
|
self.store.update_item(self.library, self.user_id)
|
|
self.store.update_item(self.lc_block, self.user_id)
|
|
old_selected = self.lc_block.selected
|
|
self._sync_lc_block_from_library(upgrade_to_latest=True)
|
|
self.lc_block.selected = old_selected
|
|
self.lc_block.runtime.publish = self.publisher
|
|
|
|
# Check that the event says that one block was removed, leaving one block left:
|
|
children = self.lc_block.get_child_blocks()
|
|
assert len(children) == 1
|
|
event_data = self._assert_event_was_published("removed")
|
|
assert event_data['removed'] ==\
|
|
[{'usage_key': str(deleted_block_key),
|
|
'original_usage_key': None,
|
|
'original_usage_version': None,
|
|
'descendants': []}]
|
|
assert event_data['result'] ==\
|
|
[{'usage_key': str(keep_block_key),
|
|
'original_usage_key': str(keep_block_lib_usage_key),
|
|
'original_usage_version': str(keep_block_lib_version), 'descendants': []}]
|
|
assert event_data['reason'] == 'invalid'
|
|
|
|
|
|
@patch(
|
|
'xmodule.modulestore.split_mongo.runtime.SplitModuleStoreRuntime.render', VanillaRuntime.render
|
|
)
|
|
@patch('xmodule.html_block.HtmlBlock.author_view', dummy_render, create=True)
|
|
@patch('xmodule.x_module.ModuleStoreRuntime.applicable_aside_types', lambda self, block: [])
|
|
class TestLegacyLibraryContentBlockMigration(LegacyLibraryContentTest):
|
|
"""
|
|
Unit tests for LegacyLibraryContentBlock
|
|
"""
|
|
|
|
def setUp(self):
|
|
from cms.djangoapps.modulestore_migrator import api
|
|
from cms.djangoapps.modulestore_migrator.data import CompositionLevel, RepeatHandlingStrategy
|
|
super().setUp()
|
|
user = UserFactory()
|
|
self._sync_lc_block_from_library()
|
|
self.organization = OrganizationFactory(short_name="myorg")
|
|
self.lib_key_v2 = LibraryLocatorV2.from_string("lib:myorg:mylib")
|
|
lib_api.create_library(
|
|
org=self.organization,
|
|
slug="mylib",
|
|
title="My Test V2 Library",
|
|
)
|
|
self.library_v2 = lib_api.ContentLibrary.objects.get(slug="mylib")
|
|
api.start_migration_to_library(
|
|
user=user,
|
|
source_key=self.library.location.library_key,
|
|
target_library_key=self.library_v2.library_key,
|
|
target_collection_slug=None,
|
|
composition_level=CompositionLevel.Component,
|
|
repeat_handling_strategy=RepeatHandlingStrategy.Skip,
|
|
preserve_url_slugs=True,
|
|
forward_source_to_target=True,
|
|
)
|
|
# Migrate block
|
|
self.lc_block.upgrade_to_v2_library(None, None)
|
|
|
|
def test_migration_of_fields(self):
|
|
"""
|
|
Test that the LC block migration correctly updates the metadata of the LC block and its children.
|
|
|
|
This tests only the simplest state: The source lib has been migrated with forwarding, exactly once,
|
|
and the LC block has also been migrated.
|
|
|
|
TODO(https://github.com/openedx/edx-platform/issues/37837):
|
|
It would be good to also test more cases, including:
|
|
* When migration occurs which is non-forwarding, it does *not* affect the childen of this block.
|
|
* When the library migration HAS happend but the LC block migration HASN'T YET, then the fields of
|
|
the block and its children will be unchanged, but the user will be prompted to upgrade.
|
|
* When some or all of the blocks already exist in the target library before the migration, then
|
|
the migration target versions will NOT all be 1, and the upstream_versions should reflect that.
|
|
* When the target library blocks have been edited and published AFTER the legacy library migration
|
|
but BEFORE the LC block migration, then executing the LC block migration will set upstream_version
|
|
based on the migration target versions, NOT the latest versions.
|
|
"""
|
|
assert self.lc_block.is_migrated_to_v2 is True
|
|
children = self.lc_block.get_children()
|
|
assert len(children) == len(self.lib_blocks)
|
|
# The children's legacy library blocks have been migrated to a V2 library.
|
|
# We expect that each child's `upstream` has been updated to point at
|
|
# the target of each library block's migration.
|
|
assert children[0].upstream == "lb:myorg:mylib:html:html_1"
|
|
assert children[1].upstream == "lb:myorg:mylib:html:html_2"
|
|
assert children[2].upstream == "lb:myorg:mylib:html:html_3"
|
|
assert children[3].upstream == "lb:myorg:mylib:html:html_4"
|
|
# We also expect that each child's `upstream_version` has been set to the
|
|
# version of the migrated library block at the time of its migration, which
|
|
# we are assuming is `1` (i.e., the first version, as the blocks did not
|
|
# previously exist in the target library).
|
|
assert children[0].upstream_version == 1
|
|
assert children[1].upstream_version == 1
|
|
assert children[2].upstream_version == 1
|
|
assert children[3].upstream_version == 1
|
|
|
|
def test_preview_view(self):
|
|
""" Test preview view rendering """
|
|
assert len(self.lc_block.children) == len(self.lib_blocks)
|
|
self._bind_course_block(self.lc_block)
|
|
rendered = self.lc_block.render(AUTHOR_VIEW, {'root_xblock': self.lc_block})
|
|
assert 'Hello world from block 1' in rendered.content
|
|
assert 'Hello world from block 2' in rendered.content
|
|
assert 'Hello world from block 3' in rendered.content
|
|
assert 'Hello world from block 4' in rendered.content
|
|
|
|
def test_author_view(self):
|
|
""" Test author view rendering """
|
|
assert len(self.lc_block.children) == len(self.lib_blocks)
|
|
self._bind_course_block(self.lc_block)
|
|
rendered = self.lc_block.render(AUTHOR_VIEW, {})
|
|
# content should be similar to ItemBankBlock
|
|
assert 'Learners will see 1 of the 4 selected components' in rendered.content
|
|
assert '<li>html 1</li>' in rendered.content
|
|
assert '<li>html 2</li>' in rendered.content
|
|
assert '<li>html 3</li>' in rendered.content
|
|
assert '<li>html 4</li>' in rendered.content
|