refactor: rename ItemFactory to BlockFactory

This commit is contained in:
Arunmozhi
2022-12-01 11:15:04 +05:30
committed by Agrendalath
parent 4a41208cf9
commit d417a7561f
145 changed files with 1351 additions and 1348 deletions

View File

@@ -12,7 +12,7 @@ from common.djangoapps.util.milestones_helpers import add_prerequisite_course, f
from lms.djangoapps.courseware.access_response import MilestoneAccessError
from lms.djangoapps.courseware.tests.test_entrance_exam import add_entrance_exam_milestone, answer_entrance_exam_problem
from openedx.core.djangolib.testing.utils import get_mock_request
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory # lint-amnesty, pylint: disable=wrong-import-order
from xmodule.modulestore.tests.factories import CourseFactory, BlockFactory # lint-amnesty, pylint: disable=wrong-import-order
class MobileAPIMilestonesMixin:
@@ -89,21 +89,21 @@ class MobileAPIMilestonesMixin:
with self.store.bulk_operations(self.course.id):
self.course.entrance_exam_enabled = True
self.entrance_exam = ItemFactory.create(
self.entrance_exam = BlockFactory.create(
parent=self.course,
category="chapter",
display_name="Entrance Exam Chapter",
is_entrance_exam=True,
in_entrance_exam=True,
)
self.subsection_1 = ItemFactory.create(
self.subsection_1 = BlockFactory.create(
parent=self.entrance_exam,
category='sequential',
display_name="The Only Exam Sequential",
graded=True,
in_entrance_exam=True,
)
self.problem_1 = ItemFactory.create(
self.problem_1 = BlockFactory.create(
parent=self.subsection_1,
category='problem',
display_name="The Only Exam Problem",

View File

@@ -39,7 +39,7 @@ from openedx.core.lib.courses import course_image_url
from openedx.features.course_duration_limits.models import CourseDurationLimitConfig
from openedx.features.course_experience.tests.views.helpers import add_course_mode
from xmodule.course_block import DEFAULT_START_DATE # lint-amnesty, pylint: disable=wrong-import-order
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory # lint-amnesty, pylint: disable=wrong-import-order
from xmodule.modulestore.tests.factories import CourseFactory, BlockFactory # lint-amnesty, pylint: disable=wrong-import-order
from .. import errors
from .serializers import CourseEnrollmentSerializer, CourseEnrollmentSerializerv05
@@ -457,23 +457,23 @@ class CourseStatusAPITestCase(MobileAPITestCase):
"""
super().setUp()
self.section = ItemFactory.create(
self.section = BlockFactory.create(
parent=self.course,
category='chapter',
)
self.sub_section = ItemFactory.create(
self.sub_section = BlockFactory.create(
parent=self.section,
category='sequential',
)
self.unit = ItemFactory.create(
self.unit = BlockFactory.create(
parent=self.sub_section,
category='vertical',
)
self.other_sub_section = ItemFactory.create(
self.other_sub_section = BlockFactory.create(
parent=self.section,
category='sequential',
)
self.other_unit = ItemFactory.create(
self.other_unit = BlockFactory.create(
parent=self.other_sub_section,
category='vertical',
)