Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
cb7e260c
Commit
cb7e260c
authored
Feb 13, 2017
by
stu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix flaky progress page and note tests
parent
2014f450
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
common/test/acceptance/pages/studio/overview.py
+3
-0
common/test/acceptance/tests/lms/test_lms_courseware.py
+1
-1
common/test/acceptance/tests/lms/test_lms_edxnotes.py
+3
-2
common/test/acceptance/tests/lms/test_progress_page.py
+1
-3
No files found.
common/test/acceptance/pages/studio/overview.py
View file @
cb7e260c
...
@@ -5,6 +5,7 @@ import datetime
...
@@ -5,6 +5,7 @@ import datetime
from
bok_choy.page_object
import
PageObject
from
bok_choy.page_object
import
PageObject
from
bok_choy.promise
import
EmptyPromise
from
bok_choy.promise
import
EmptyPromise
from
bok_choy.javascript
import
js_defined
,
wait_for_js
from
selenium.webdriver
import
ActionChains
from
selenium.webdriver
import
ActionChains
from
selenium.webdriver.support.ui
import
Select
from
selenium.webdriver.support.ui
import
Select
...
@@ -18,6 +19,7 @@ from common.test.acceptance.pages.studio.container import ContainerPage
...
@@ -18,6 +19,7 @@ from common.test.acceptance.pages.studio.container import ContainerPage
from
common.test.acceptance.pages.studio.utils
import
set_input_value_and_save
,
set_input_value
from
common.test.acceptance.pages.studio.utils
import
set_input_value_and_save
,
set_input_value
@js_defined
(
'jQuery'
)
class
CourseOutlineItem
(
object
):
class
CourseOutlineItem
(
object
):
"""
"""
A mixin class for any :class:`PageObject` shown in a course outline.
A mixin class for any :class:`PageObject` shown in a course outline.
...
@@ -174,6 +176,7 @@ class CourseOutlineItem(object):
...
@@ -174,6 +176,7 @@ class CourseOutlineItem(object):
element
=
self
.
q
(
css
=
self
.
_bounded_selector
(
".status-grading-value"
))
# pylint: disable=no-member
element
=
self
.
q
(
css
=
self
.
_bounded_selector
(
".status-grading-value"
))
# pylint: disable=no-member
return
element
.
first
.
text
[
0
]
if
element
.
present
else
None
return
element
.
first
.
text
[
0
]
if
element
.
present
else
None
@wait_for_js
def
publish
(
self
):
def
publish
(
self
):
"""
"""
Publish the unit.
Publish the unit.
...
...
common/test/acceptance/tests/lms/test_lms_courseware.py
View file @
cb7e260c
...
@@ -436,7 +436,7 @@ class CoursewareMultipleVerticalsTest(UniqueCourseTest, EventsTestMixin):
...
@@ -436,7 +436,7 @@ class CoursewareMultipleVerticalsTest(UniqueCourseTest, EventsTestMixin):
self
.
courseware_page
.
visit
()
self
.
courseware_page
.
visit
()
self
.
course_nav
=
CourseNavPage
(
self
.
browser
)
self
.
course_nav
=
CourseNavPage
(
self
.
browser
)
@flaky
#
TODO: fix this, see TNL-5762
@flaky
#
TODO: fix this, see TNL-5762
def
test_navigation_buttons
(
self
):
def
test_navigation_buttons
(
self
):
# start in first section
# start in first section
self
.
assert_navigation_state
(
'Test Section 1'
,
'Test Subsection 1,1'
,
0
,
next_enabled
=
True
,
prev_enabled
=
False
)
self
.
assert_navigation_state
(
'Test Section 1'
,
'Test Subsection 1,1'
,
0
,
next_enabled
=
True
,
prev_enabled
=
False
)
...
...
common/test/acceptance/tests/lms/test_lms_edxnotes.py
View file @
cb7e260c
...
@@ -274,7 +274,7 @@ class EdxNotesDefaultInteractionsTest(EdxNotesTestMixin):
...
@@ -274,7 +274,7 @@ class EdxNotesDefaultInteractionsTest(EdxNotesTestMixin):
components
=
self
.
note_unit_page
.
components
components
=
self
.
note_unit_page
.
components
self
.
assert_notes_are_removed
(
components
)
self
.
assert_notes_are_removed
(
components
)
@flaky
#
TODO: fix this, see TNL-6494
@flaky
#
TODO: fix this, see TNL-6494
def
test_can_create_note_with_tags
(
self
):
def
test_can_create_note_with_tags
(
self
):
"""
"""
Scenario: a user of notes can define one with tags
Scenario: a user of notes can define one with tags
...
@@ -1062,7 +1062,7 @@ class EdxNotesPageTest(EventsTestMixin, EdxNotesTestMixin):
...
@@ -1062,7 +1062,7 @@ class EdxNotesPageTest(EventsTestMixin, EdxNotesTestMixin):
self
.
assertNotIn
(
u"Search Results"
,
self
.
notes_page
.
tabs
)
self
.
assertNotIn
(
u"Search Results"
,
self
.
notes_page
.
tabs
)
self
.
assertEqual
(
len
(
self
.
notes_page
.
notes
),
5
)
self
.
assertEqual
(
len
(
self
.
notes_page
.
notes
),
5
)
@flaky
#
TODO: fix this, see TNL-6493
@flaky
#
TODO: fix this, see TNL-6493
def
test_open_note_when_accessed_from_notes_page
(
self
):
def
test_open_note_when_accessed_from_notes_page
(
self
):
"""
"""
Scenario: Ensure that the link to the Unit opens a note only once.
Scenario: Ensure that the link to the Unit opens a note only once.
...
@@ -1117,6 +1117,7 @@ class EdxNotesPageTest(EventsTestMixin, EdxNotesTestMixin):
...
@@ -1117,6 +1117,7 @@ class EdxNotesPageTest(EventsTestMixin, EdxNotesTestMixin):
note
=
self
.
note_unit_page
.
notes
[
0
]
note
=
self
.
note_unit_page
.
notes
[
0
]
self
.
assertFalse
(
note
.
is_visible
)
self
.
assertFalse
(
note
.
is_visible
)
self
.
courseware_page
.
go_to_sequential_position
(
1
)
self
.
courseware_page
.
go_to_sequential_position
(
1
)
self
.
courseware_page
.
wait_for_ajax
()
note
=
self
.
note_unit_page
.
notes
[
0
]
note
=
self
.
note_unit_page
.
notes
[
0
]
self
.
assertFalse
(
note
.
is_visible
)
self
.
assertFalse
(
note
.
is_visible
)
...
...
common/test/acceptance/tests/lms/test_progress_page.py
View file @
cb7e260c
...
@@ -5,7 +5,6 @@ progress page.
...
@@ -5,7 +5,6 @@ progress page.
"""
"""
import
ddt
import
ddt
from
bok_choy.javascript
import
js_defined
from
contextlib
import
contextmanager
from
contextlib
import
contextmanager
from
nose.plugins.attrib
import
attr
from
nose.plugins.attrib
import
attr
from
flaky
import
flaky
from
flaky
import
flaky
...
@@ -127,7 +126,6 @@ class ProgressPageBaseTest(UniqueCourseTest):
...
@@ -127,7 +126,6 @@ class ProgressPageBaseTest(UniqueCourseTest):
@attr
(
shard
=
9
)
@attr
(
shard
=
9
)
@ddt.ddt
@ddt.ddt
@js_defined
(
'window.jQuery'
)
class
PersistentGradesTest
(
ProgressPageBaseTest
):
class
PersistentGradesTest
(
ProgressPageBaseTest
):
"""
"""
Test that grades for completed assessments are persisted
Test that grades for completed assessments are persisted
...
@@ -229,7 +227,7 @@ class PersistentGradesTest(ProgressPageBaseTest):
...
@@ -229,7 +227,7 @@ class PersistentGradesTest(ProgressPageBaseTest):
_change_subsection_structure
,
_change_subsection_structure
,
_change_weight_for_problem
_change_weight_for_problem
)
)
@flaky
#
TODO: fix this, see TNL-6040
@flaky
#
TODO: fix this, see TNL-6040
def
test_content_changes_do_not_change_score
(
self
,
edit
):
def
test_content_changes_do_not_change_score
(
self
,
edit
):
with
self
.
_logged_in_session
():
with
self
.
_logged_in_session
():
self
.
courseware_page
.
visit
()
self
.
courseware_page
.
visit
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment