Commit 94c90556 by muhammad-ammar Committed by Ben Patterson

Split Bok-Choy Tests into 3 shards

TE-447
parent e3b40a8c
...@@ -4,6 +4,7 @@ from .helpers import UniqueCourseTest ...@@ -4,6 +4,7 @@ from .helpers import UniqueCourseTest
from ..pages.studio.overview import CourseOutlinePage from ..pages.studio.overview import CourseOutlinePage
from ..pages.studio.utils import verify_ordering from ..pages.studio.utils import verify_ordering
class StudioCourseTest(UniqueCourseTest): class StudioCourseTest(UniqueCourseTest):
""" """
Base class for all Studio course tests. Base class for all Studio course tests.
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
Acceptance tests for Studio related to the acid xblock. Acceptance tests for Studio related to the acid xblock.
""" """
from unittest import skip from unittest import skip
from nose.plugins.attrib import attr
from bok_choy.web_app_test import WebAppTest from bok_choy.web_app_test import WebAppTest
from ..pages.studio.auto_auth import AutoAuthPage from ..pages.studio.auto_auth import AutoAuthPage
...@@ -11,7 +10,6 @@ from ..pages.xblock.acid import AcidView ...@@ -11,7 +10,6 @@ from ..pages.xblock.acid import AcidView
from ..fixtures.course import CourseFixture, XBlockFixtureDesc from ..fixtures.course import CourseFixture, XBlockFixtureDesc
@attr('shard_1')
class XBlockAcidBase(WebAppTest): class XBlockAcidBase(WebAppTest):
""" """
Base class for tests that verify that XBlock integration is working correctly Base class for tests that verify that XBlock integration is working correctly
...@@ -120,7 +118,6 @@ class XBlockAcidNoChildTest(XBlockAcidBase): ...@@ -120,7 +118,6 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
self.user = course_fix.user self.user = course_fix.user
@attr('shard_1')
class XBlockAcidParentBase(XBlockAcidBase): class XBlockAcidParentBase(XBlockAcidBase):
""" """
Base class for tests that verify that parent XBlock integration is working correctly Base class for tests that verify that parent XBlock integration is working correctly
...@@ -174,7 +171,6 @@ class XBlockAcidEmptyParentTest(XBlockAcidParentBase): ...@@ -174,7 +171,6 @@ class XBlockAcidEmptyParentTest(XBlockAcidParentBase):
self.user = course_fix.user self.user = course_fix.user
@attr('shard_1')
class XBlockAcidChildTest(XBlockAcidParentBase): class XBlockAcidChildTest(XBlockAcidParentBase):
""" """
Tests of an AcidBlock with children Tests of an AcidBlock with children
......
from nose.plugins.attrib import attr
from .base_studio_test import ContainerBase from .base_studio_test import ContainerBase
from ..fixtures.course import XBlockFixtureDesc from ..fixtures.course import XBlockFixtureDesc
from ..pages.studio.utils import verify_ordering from ..pages.studio.utils import verify_ordering
@attr('shard_1')
class BadComponentTest(ContainerBase): class BadComponentTest(ContainerBase):
""" """
Tests that components with bad content do not break the Unit page. Tests that components with bad content do not break the Unit page.
...@@ -42,7 +40,6 @@ class BadComponentTest(ContainerBase): ...@@ -42,7 +40,6 @@ class BadComponentTest(ContainerBase):
verify_ordering(self, unit, [{"": ["Unit HTML", "Unit Problem"]}]) verify_ordering(self, unit, [{"": ["Unit HTML", "Unit Problem"]}])
@attr('shard_1')
class CopiedFromLmsBadContentTest(BadComponentTest): class CopiedFromLmsBadContentTest(BadComponentTest):
""" """
Tests that components with HTML copied from the LMS (LmsRuntime) do not break the Unit page. Tests that components with HTML copied from the LMS (LmsRuntime) do not break the Unit page.
...@@ -63,7 +60,6 @@ class CopiedFromLmsBadContentTest(BadComponentTest): ...@@ -63,7 +60,6 @@ class CopiedFromLmsBadContentTest(BadComponentTest):
""" """
@attr('shard_1')
class CopiedFromStudioBadContentTest(BadComponentTest): class CopiedFromStudioBadContentTest(BadComponentTest):
""" """
Tests that components with HTML copied from the Studio (containing "ui-sortable" class) do not break the Unit page. Tests that components with HTML copied from the Studio (containing "ui-sortable" class) do not break the Unit page.
...@@ -91,7 +87,6 @@ class CopiedFromStudioBadContentTest(BadComponentTest): ...@@ -91,7 +87,6 @@ class CopiedFromStudioBadContentTest(BadComponentTest):
""" """
@attr('shard_1')
class JSErrorBadContentTest(BadComponentTest): class JSErrorBadContentTest(BadComponentTest):
""" """
Tests that components that throw JS errors do not break the Unit page. Tests that components that throw JS errors do not break the Unit page.
......
...@@ -289,6 +289,7 @@ class EditContainerTest(NestedVerticalTest): ...@@ -289,6 +289,7 @@ class EditContainerTest(NestedVerticalTest):
self.modify_display_name_and_verify(container) self.modify_display_name_and_verify(container)
@attr('shard_1')
class UnitPublishingTest(ContainerBase): class UnitPublishingTest(ContainerBase):
""" """
Tests of the publishing control and related widgets on the Unit page. Tests of the publishing control and related widgets on the Unit page.
......
...@@ -4,7 +4,6 @@ Acceptance tests for Studio. ...@@ -4,7 +4,6 @@ Acceptance tests for Studio.
from unittest import skip from unittest import skip
from bok_choy.web_app_test import WebAppTest from bok_choy.web_app_test import WebAppTest
from nose.plugins.attrib import attr
from ..pages.studio.asset_index import AssetIndexPage from ..pages.studio.asset_index import AssetIndexPage
from ..pages.studio.auto_auth import AutoAuthPage from ..pages.studio.auto_auth import AutoAuthPage
...@@ -28,7 +27,6 @@ from ..fixtures.course import XBlockFixtureDesc ...@@ -28,7 +27,6 @@ from ..fixtures.course import XBlockFixtureDesc
from .base_studio_test import StudioCourseTest from .base_studio_test import StudioCourseTest
@attr('shard_1')
class LoggedOutTest(WebAppTest): class LoggedOutTest(WebAppTest):
""" """
Smoke test for pages in Studio that are visible when logged out. Smoke test for pages in Studio that are visible when logged out.
...@@ -48,7 +46,6 @@ class LoggedOutTest(WebAppTest): ...@@ -48,7 +46,6 @@ class LoggedOutTest(WebAppTest):
page.visit() page.visit()
@attr('shard_1')
class LoggedInPagesTest(WebAppTest): class LoggedInPagesTest(WebAppTest):
""" """
Tests that verify the pages in Studio that you can get to when logged Tests that verify the pages in Studio that you can get to when logged
...@@ -68,7 +65,6 @@ class LoggedInPagesTest(WebAppTest): ...@@ -68,7 +65,6 @@ class LoggedInPagesTest(WebAppTest):
self.dashboard_page.visit() self.dashboard_page.visit()
@attr('shard_1')
class CoursePagesTest(StudioCourseTest): class CoursePagesTest(StudioCourseTest):
""" """
Tests that verify the pages in Studio that you can get to when logged Tests that verify the pages in Studio that you can get to when logged
...@@ -113,7 +109,6 @@ class CoursePagesTest(StudioCourseTest): ...@@ -113,7 +109,6 @@ class CoursePagesTest(StudioCourseTest):
page.visit() page.visit()
@attr('shard_1')
class DiscussionPreviewTest(StudioCourseTest): class DiscussionPreviewTest(StudioCourseTest):
""" """
Tests that Inline Discussions are rendered with a custom preview in Studio Tests that Inline Discussions are rendered with a custom preview in Studio
......
""" """
Acceptance tests for studio related to the outline page. Acceptance tests for studio related to the outline page.
""" """
from nose.plugins.attrib import attr
from datetime import datetime, timedelta from datetime import datetime, timedelta
import itertools import itertools
from pytz import UTC from pytz import UTC
...@@ -69,7 +67,6 @@ class CourseOutlineTest(StudioCourseTest): ...@@ -69,7 +67,6 @@ class CourseOutlineTest(StudioCourseTest):
verify_ordering(self, outline_page, expected_ordering) verify_ordering(self, outline_page, expected_ordering)
@attr('shard_2')
class CourseOutlineDragAndDropTest(CourseOutlineTest): class CourseOutlineDragAndDropTest(CourseOutlineTest):
""" """
Tests of drag and drop within the outline page. Tests of drag and drop within the outline page.
...@@ -124,7 +121,6 @@ class CourseOutlineDragAndDropTest(CourseOutlineTest): ...@@ -124,7 +121,6 @@ class CourseOutlineDragAndDropTest(CourseOutlineTest):
self.drag_and_verify(self.seq_1_vert_2_handle, self.chap_1_seq_2_handle, expected_ordering, course_outline_page) self.drag_and_verify(self.seq_1_vert_2_handle, self.chap_1_seq_2_handle, expected_ordering, course_outline_page)
@attr('shard_2')
class WarningMessagesTest(CourseOutlineTest): class WarningMessagesTest(CourseOutlineTest):
""" """
Feature: Warning messages on sections, subsections, and units Feature: Warning messages on sections, subsections, and units
...@@ -329,7 +325,6 @@ class WarningMessagesTest(CourseOutlineTest): ...@@ -329,7 +325,6 @@ class WarningMessagesTest(CourseOutlineTest):
unit.toggle_staff_lock() unit.toggle_staff_lock()
@attr('shard_2')
class EditingSectionsTest(CourseOutlineTest): class EditingSectionsTest(CourseOutlineTest):
""" """
Feature: Editing Release date, Due date and grading type. Feature: Editing Release date, Due date and grading type.
...@@ -477,7 +472,6 @@ class EditingSectionsTest(CourseOutlineTest): ...@@ -477,7 +472,6 @@ class EditingSectionsTest(CourseOutlineTest):
self.assertIn(release_text, self.course_outline_page.section_at(0).subsection_at(0).release_date) self.assertIn(release_text, self.course_outline_page.section_at(0).subsection_at(0).release_date)
@attr('shard_2')
class StaffLockTest(CourseOutlineTest): class StaffLockTest(CourseOutlineTest):
""" """
Feature: Sections, subsections, and units can be locked and unlocked from the course outline. Feature: Sections, subsections, and units can be locked and unlocked from the course outline.
...@@ -859,7 +853,6 @@ class StaffLockTest(CourseOutlineTest): ...@@ -859,7 +853,6 @@ class StaffLockTest(CourseOutlineTest):
self._remove_staff_lock_and_verify_warning(subsection, False) self._remove_staff_lock_and_verify_warning(subsection, False)
@attr('shard_2')
class EditNamesTest(CourseOutlineTest): class EditNamesTest(CourseOutlineTest):
""" """
Feature: Click-to-edit section/subsection names Feature: Click-to-edit section/subsection names
...@@ -975,7 +968,6 @@ class EditNamesTest(CourseOutlineTest): ...@@ -975,7 +968,6 @@ class EditNamesTest(CourseOutlineTest):
self.assertTrue(self.course_outline_page.section_at(0).is_collapsed) self.assertTrue(self.course_outline_page.section_at(0).is_collapsed)
@attr('shard_2')
class CreateSectionsTest(CourseOutlineTest): class CreateSectionsTest(CourseOutlineTest):
""" """
Feature: Create new sections/subsections/units Feature: Create new sections/subsections/units
...@@ -1049,7 +1041,6 @@ class CreateSectionsTest(CourseOutlineTest): ...@@ -1049,7 +1041,6 @@ class CreateSectionsTest(CourseOutlineTest):
self.assertTrue(unit_page.is_inline_editing_display_name()) self.assertTrue(unit_page.is_inline_editing_display_name())
@attr('shard_2')
class DeleteContentTest(CourseOutlineTest): class DeleteContentTest(CourseOutlineTest):
""" """
Feature: Deleting sections/subsections/units Feature: Deleting sections/subsections/units
...@@ -1161,7 +1152,6 @@ class DeleteContentTest(CourseOutlineTest): ...@@ -1161,7 +1152,6 @@ class DeleteContentTest(CourseOutlineTest):
self.assertTrue(self.course_outline_page.has_no_content_message) self.assertTrue(self.course_outline_page.has_no_content_message)
@attr('shard_2')
class ExpandCollapseMultipleSectionsTest(CourseOutlineTest): class ExpandCollapseMultipleSectionsTest(CourseOutlineTest):
""" """
Feature: Courses with multiple sections can expand and collapse all sections. Feature: Courses with multiple sections can expand and collapse all sections.
...@@ -1293,7 +1283,6 @@ class ExpandCollapseMultipleSectionsTest(CourseOutlineTest): ...@@ -1293,7 +1283,6 @@ class ExpandCollapseMultipleSectionsTest(CourseOutlineTest):
self.verify_all_sections(collapsed=False) self.verify_all_sections(collapsed=False)
@attr('shard_2')
class ExpandCollapseSingleSectionTest(CourseOutlineTest): class ExpandCollapseSingleSectionTest(CourseOutlineTest):
""" """
Feature: Courses with a single section can expand and collapse all sections. Feature: Courses with a single section can expand and collapse all sections.
...@@ -1333,7 +1322,6 @@ class ExpandCollapseSingleSectionTest(CourseOutlineTest): ...@@ -1333,7 +1322,6 @@ class ExpandCollapseSingleSectionTest(CourseOutlineTest):
self.assertFalse(self.course_outline_page.section_at(0).subsection_at(1).is_collapsed) self.assertFalse(self.course_outline_page.section_at(0).subsection_at(1).is_collapsed)
@attr('shard_2')
class ExpandCollapseEmptyTest(CourseOutlineTest): class ExpandCollapseEmptyTest(CourseOutlineTest):
""" """
Feature: Courses with no sections initially can expand and collapse all sections after addition. Feature: Courses with no sections initially can expand and collapse all sections after addition.
...@@ -1371,7 +1359,6 @@ class ExpandCollapseEmptyTest(CourseOutlineTest): ...@@ -1371,7 +1359,6 @@ class ExpandCollapseEmptyTest(CourseOutlineTest):
self.assertFalse(self.course_outline_page.section_at(0).is_collapsed) self.assertFalse(self.course_outline_page.section_at(0).is_collapsed)
@attr('shard_2')
class DefaultStatesEmptyTest(CourseOutlineTest): class DefaultStatesEmptyTest(CourseOutlineTest):
""" """
Feature: Misc course outline default states/actions when starting with an empty course Feature: Misc course outline default states/actions when starting with an empty course
...@@ -1396,7 +1383,6 @@ class DefaultStatesEmptyTest(CourseOutlineTest): ...@@ -1396,7 +1383,6 @@ class DefaultStatesEmptyTest(CourseOutlineTest):
self.assertTrue(self.course_outline_page.bottom_add_section_button.is_present()) self.assertTrue(self.course_outline_page.bottom_add_section_button.is_present())
@attr('shard_2')
class DefaultStatesContentTest(CourseOutlineTest): class DefaultStatesContentTest(CourseOutlineTest):
""" """
Feature: Misc course outline default states/actions when starting with a course with content Feature: Misc course outline default states/actions when starting with a course with content
...@@ -1421,7 +1407,6 @@ class DefaultStatesContentTest(CourseOutlineTest): ...@@ -1421,7 +1407,6 @@ class DefaultStatesContentTest(CourseOutlineTest):
self.assertEqual(courseware.xblock_component_type(2), 'discussion') self.assertEqual(courseware.xblock_component_type(2), 'discussion')
@attr('shard_2')
class UnitNavigationTest(CourseOutlineTest): class UnitNavigationTest(CourseOutlineTest):
""" """
Feature: Navigate to units Feature: Navigate to units
...@@ -1442,7 +1427,6 @@ class UnitNavigationTest(CourseOutlineTest): ...@@ -1442,7 +1427,6 @@ class UnitNavigationTest(CourseOutlineTest):
self.assertTrue(unit.is_browser_on_page) self.assertTrue(unit.is_browser_on_page)
@attr('shard_1')
class PublishSectionTest(CourseOutlineTest): class PublishSectionTest(CourseOutlineTest):
""" """
Feature: Publish sections. Feature: Publish sections.
......
...@@ -3,7 +3,6 @@ Acceptance tests for Studio related to course reruns. ...@@ -3,7 +3,6 @@ Acceptance tests for Studio related to course reruns.
""" """
import random import random
from nose.plugins.attrib import attr
from bok_choy.promise import EmptyPromise from bok_choy.promise import EmptyPromise
from ..pages.studio.index import DashboardPage from ..pages.studio.index import DashboardPage
...@@ -15,7 +14,6 @@ from ..fixtures.course import XBlockFixtureDesc ...@@ -15,7 +14,6 @@ from ..fixtures.course import XBlockFixtureDesc
from .base_studio_test import StudioCourseTest from .base_studio_test import StudioCourseTest
@attr('shard_2')
class CourseRerunTest(StudioCourseTest): class CourseRerunTest(StudioCourseTest):
""" """
Feature: Courses can be rerun Feature: Courses can be rerun
......
...@@ -3,10 +3,11 @@ ...@@ -3,10 +3,11 @@
""" """
Acceptance tests for CMS Video Editor. Acceptance tests for CMS Video Editor.
""" """
from nose.plugins.attrib import attr
from .test_studio_video_module import CMSVideoBaseTest from .test_studio_video_module import CMSVideoBaseTest
@attr('shard_2')
class VideoEditorTest(CMSVideoBaseTest): class VideoEditorTest(CMSVideoBaseTest):
""" """
CMS Video Editor Test Class CMS Video Editor Test Class
......
...@@ -12,7 +12,6 @@ from ...fixtures.course import CourseFixture, XBlockFixtureDesc ...@@ -12,7 +12,6 @@ from ...fixtures.course import CourseFixture, XBlockFixtureDesc
from ..helpers import UniqueCourseTest, is_youtube_available, YouTubeStubConfig from ..helpers import UniqueCourseTest, is_youtube_available, YouTubeStubConfig
@attr('shard_2')
@skipIf(is_youtube_available() is False, 'YouTube is not available!') @skipIf(is_youtube_available() is False, 'YouTube is not available!')
class CMSVideoBaseTest(UniqueCourseTest): class CMSVideoBaseTest(UniqueCourseTest):
""" """
...@@ -125,6 +124,7 @@ class CMSVideoBaseTest(UniqueCourseTest): ...@@ -125,6 +124,7 @@ class CMSVideoBaseTest(UniqueCourseTest):
self.unit_page.xblocks[1].save_settings() self.unit_page.xblocks[1].save_settings()
@attr('shard_2')
class CMSVideoTest(CMSVideoBaseTest): class CMSVideoTest(CMSVideoBaseTest):
""" """
CMS Video Test Class CMS Video Test Class
......
...@@ -18,10 +18,11 @@ front-end validation will not pass. ...@@ -18,10 +18,11 @@ front-end validation will not pass.
one stored on YouTube one stored on YouTube
t_not_exist - this file does not exist on YouTube; it exists locally t_not_exist - this file does not exist on YouTube; it exists locally
""" """
from nose.plugins.attrib import attr
from .test_studio_video_module import CMSVideoBaseTest from .test_studio_video_module import CMSVideoBaseTest
@attr('shard_2')
class VideoTranscriptTest(CMSVideoBaseTest): class VideoTranscriptTest(CMSVideoBaseTest):
""" """
CMS Video Transcript Test Class CMS Video Transcript Test Class
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment