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
1589ea17
Commit
1589ea17
authored
Jun 15, 2015
by
muzaffaryousaf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bokchoy test for update, publish & verify unit name in breadcrumb trail.
parent
778b921c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
90 additions
and
17 deletions
+90
-17
common/test/acceptance/tests/lms/test_bookmarks.py
+90
-17
No files found.
common/test/acceptance/tests/lms/test_bookmarks.py
View file @
1589ea17
...
...
@@ -133,7 +133,7 @@ class BookmarksTest(BookmarksTestMixin):
for
index
in
range
(
num_units
):
self
.
_bookmark_unit
(
xblocks
[
index
]
.
locator
)
def
_breadcrumb
(
self
,
num_units
):
def
_breadcrumb
(
self
,
num_units
,
modified_name
=
None
):
"""
Creates breadcrumbs for the first `num_units`
...
...
@@ -149,7 +149,7 @@ class BookmarksTest(BookmarksTestMixin):
[
'TestSection{}'
.
format
(
index
),
'TestSubsection{}'
.
format
(
index
),
'TestVertical{}'
.
format
(
index
)
modified_name
if
modified_name
else
'TestVertical{}'
.
format
(
index
)
]
)
return
breadcrumbs
...
...
@@ -207,6 +207,49 @@ class BookmarksTest(BookmarksTestMixin):
self
.
assertEqual
(
self
.
bookmarks_page
.
get_current_page_number
(),
current_page_number
)
self
.
assertEqual
(
self
.
bookmarks_page
.
get_total_pages
,
total_pages
)
def
_navigate_and_verify_bookmarks_list
(
self
,
bookmarks_count
):
"""
Navigates and verifies the bookmarks list page.
"""
self
.
bookmarks_page
.
click_bookmarks_button
()
self
.
assertTrue
(
self
.
bookmarks_page
.
results_present
())
self
.
assertEqual
(
self
.
bookmarks_page
.
results_header_text
(),
'MY BOOKMARKS'
)
self
.
assertEqual
(
self
.
bookmarks_page
.
count
(),
bookmarks_count
)
def
_verify_breadcrumbs
(
self
,
num_units
,
modified_name
=
None
):
"""
Verifies the breadcrumb trail.
"""
bookmarked_breadcrumbs
=
self
.
bookmarks_page
.
breadcrumbs
()
# Verify bookmarked breadcrumbs.
breadcrumbs
=
self
.
_breadcrumb
(
num_units
=
num_units
,
modified_name
=
modified_name
)
breadcrumbs
.
reverse
()
self
.
assertEqual
(
bookmarked_breadcrumbs
,
breadcrumbs
)
def
update_and_publish_block_display_name
(
self
,
modified_name
):
"""
Update and publish the block/unit display name.
"""
self
.
course_outline_page
.
visit
()
self
.
course_outline_page
.
wait_for_page
()
self
.
course_outline_page
.
expand_all_subsections
()
section
=
self
.
course_outline_page
.
section_at
(
0
)
container_page
=
section
.
subsection_at
(
0
)
.
unit_at
(
0
)
.
go_to
()
self
.
course_fixture
.
_update_xblock
(
container_page
.
locator
,
{
# pylint: disable=protected-access
"metadata"
:
{
"display_name"
:
modified_name
}
})
container_page
.
visit
()
container_page
.
wait_for_page
()
self
.
assertEqual
(
container_page
.
name
,
modified_name
)
container_page
.
publish_action
.
click
()
def
test_bookmark_button
(
self
):
"""
Scenario: Bookmark unit button toggles correctly
...
...
@@ -267,11 +310,6 @@ class BookmarksTest(BookmarksTestMixin):
self
.
_test_setup
()
self
.
_bookmark_units
(
2
)
self
.
bookmarks_page
.
click_bookmarks_button
()
self
.
assertTrue
(
self
.
bookmarks_page
.
results_present
())
self
.
assertEqual
(
self
.
bookmarks_page
.
results_header_text
(),
'MY BOOKMARKS'
)
self
.
assertEqual
(
self
.
bookmarks_page
.
count
(),
2
)
self
.
_verify_pagination_info
(
bookmark_count_on_current_page
=
2
,
header_text
=
'Showing 1-2 out of 2 total'
,
...
...
@@ -281,9 +319,8 @@ class BookmarksTest(BookmarksTestMixin):
total_pages
=
1
)
bookmarked_breadcrumbs
=
self
.
bookmarks_page
.
breadcrumbs
()
breadcrumbs
=
self
.
_breadcrumb
(
2
)
self
.
assertItemsEqual
(
bookmarked_breadcrumbs
,
breadcrumbs
)
self
.
_navigate_and_verify_bookmarks_list
(
bookmarks_count
=
2
)
self
.
_verify_breadcrumbs
(
num_units
=
2
)
# get usage ids for units
xblocks
=
self
.
course_fixture
.
get_nested_xblocks
(
category
=
"vertical"
)
...
...
@@ -296,6 +333,47 @@ class BookmarksTest(BookmarksTestMixin):
self
.
courseware_page
.
visit
()
.
wait_for_page
()
self
.
bookmarks_page
.
click_bookmarks_button
()
def
test_bookmark_shows_updated_breadcrumb_after_publish
(
self
):
"""
Scenario: A bookmark breadcrumb trail is updated after publishing the changed display name.
Given that I am a registered user
And I visit my courseware page
And I can see bookmarked unit
Then I visit unit page in studio
Then I change unit display_name
And I publish the changes
Then I visit my courseware page
And I visit bookmarks list page
When I see the bookmark
Then I can see the breadcrumb trail
with updated display_name.
"""
self
.
_test_setup
(
num_chapters
=
1
)
self
.
_bookmark_units
(
num_units
=
1
)
self
.
_navigate_and_verify_bookmarks_list
(
bookmarks_count
=
1
)
self
.
_verify_breadcrumbs
(
num_units
=
1
)
LogoutPage
(
self
.
browser
)
.
visit
()
AutoAuthPage
(
self
.
browser
,
username
=
self
.
USERNAME
,
email
=
self
.
EMAIL
,
course_id
=
self
.
course_id
,
staff
=
True
)
.
visit
()
modified_name
=
"Updated name"
self
.
update_and_publish_block_display_name
(
modified_name
)
LogoutPage
(
self
.
browser
)
.
visit
()
AutoAuthPage
(
self
.
browser
,
username
=
self
.
USERNAME
,
email
=
self
.
EMAIL
,
course_id
=
self
.
course_id
)
.
visit
()
self
.
courseware_page
.
visit
()
self
.
_navigate_and_verify_bookmarks_list
(
bookmarks_count
=
1
)
self
.
_verify_breadcrumbs
(
num_units
=
1
,
modified_name
=
modified_name
)
def
test_unreachable_bookmark
(
self
):
"""
Scenario: We should get a HTTP 404 for an unreachable bookmark.
...
...
@@ -313,9 +391,7 @@ class BookmarksTest(BookmarksTestMixin):
self
.
_bookmark_units
(
2
)
self
.
_delete_section
(
0
)
self
.
bookmarks_page
.
click_bookmarks_button
()
self
.
assertTrue
(
self
.
bookmarks_page
.
results_present
())
self
.
assertEqual
(
self
.
bookmarks_page
.
count
(),
2
)
self
.
_navigate_and_verify_bookmarks_list
(
bookmarks_count
=
2
)
self
.
_verify_pagination_info
(
bookmark_count_on_current_page
=
2
,
...
...
@@ -342,10 +418,7 @@ class BookmarksTest(BookmarksTestMixin):
"""
self
.
_test_setup
(
11
)
self
.
_bookmark_units
(
11
)
self
.
bookmarks_page
.
click_bookmarks_button
()
self
.
assertTrue
(
self
.
bookmarks_page
.
results_present
())
self
.
assertEqual
(
self
.
bookmarks_page
.
count
(),
10
)
self
.
_navigate_and_verify_bookmarks_list
(
bookmarks_count
=
11
)
self
.
_verify_pagination_info
(
bookmark_count_on_current_page
=
10
,
...
...
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