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
6f447d0b
Commit
6f447d0b
authored
Feb 07, 2017
by
noraiz-anwar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide Add a post during discussion blackout period
parent
ff66781a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
15 deletions
+37
-15
common/test/acceptance/pages/lms/discussion.py
+6
-0
common/test/acceptance/tests/discussion/test_discussion.py
+29
-14
lms/templates/discussion/_discussion_inline.html
+2
-1
No files found.
common/test/acceptance/pages/lms/discussion.py
View file @
6f447d0b
...
@@ -567,6 +567,12 @@ class InlineDiscussionPage(PageObject, DiscussionPageMixin):
...
@@ -567,6 +567,12 @@ class InlineDiscussionPage(PageObject, DiscussionPageMixin):
)
)
self
.
_find_within
(
selector
)
.
click
()
self
.
_find_within
(
selector
)
.
click
()
def
is_new_post_button_visible
(
self
):
"""
Check if new post button present and visible
"""
return
self
.
_is_element_visible
(
'.new-post-btn'
)
@wait_for_js
@wait_for_js
def
_is_element_visible
(
self
,
selector
):
def
_is_element_visible
(
self
,
selector
):
query
=
self
.
_find_within
(
selector
)
query
=
self
.
_find_within
(
selector
)
...
...
common/test/acceptance/tests/discussion/test_discussion.py
View file @
6f447d0b
...
@@ -1054,6 +1054,15 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
...
@@ -1054,6 +1054,15 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
# Add a Post link is present
# Add a Post link is present
self
.
assertTrue
(
self
.
discussion_page
.
q
(
css
=
'.new-post-btn'
)
.
present
)
self
.
assertTrue
(
self
.
discussion_page
.
q
(
css
=
'.new-post-btn'
)
.
present
)
def
test_add_post_not_present_if_discussion_blackout_period_started
(
self
):
"""
If discussion blackout period has started Add a post button should not appear.
"""
self
.
start_discussion_blackout_period
()
self
.
browser
.
refresh
()
self
.
discussion_page
.
expand_discussion
()
self
.
assertFalse
(
self
.
discussion_page
.
is_new_post_button_visible
())
def
test_initial_render
(
self
):
def
test_initial_render
(
self
):
self
.
assertFalse
(
self
.
discussion_page
.
is_discussion_expanded
())
self
.
assertFalse
(
self
.
discussion_page
.
is_discussion_expanded
())
...
@@ -1077,20 +1086,7 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
...
@@ -1077,20 +1086,7 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
self
.
check_anonymous_to_peers
(
False
)
self
.
check_anonymous_to_peers
(
False
)
def
test_discussion_blackout_period
(
self
):
def
test_discussion_blackout_period
(
self
):
now
=
datetime
.
datetime
.
now
(
UTC
)
self
.
start_discussion_blackout_period
()
self
.
course_fix
.
add_advanced_settings
(
{
u"discussion_blackouts"
:
{
"value"
:
[
[
(
now
-
datetime
.
timedelta
(
days
=
14
))
.
isoformat
(),
(
now
+
datetime
.
timedelta
(
days
=
2
))
.
isoformat
()
]
]
}
}
)
self
.
course_fix
.
_add_advanced_settings
()
self
.
browser
.
refresh
()
self
.
browser
.
refresh
()
thread
=
Thread
(
id
=
uuid4
()
.
hex
,
commentable_id
=
self
.
discussion_id
)
thread
=
Thread
(
id
=
uuid4
()
.
hex
,
commentable_id
=
self
.
discussion_id
)
thread_fixture
=
SingleThreadViewFixture
(
thread
)
thread_fixture
=
SingleThreadViewFixture
(
thread
)
...
@@ -1159,6 +1155,25 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
...
@@ -1159,6 +1155,25 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
self
.
assertIsNone
(
self
.
discussion_page
.
new_post_form
)
self
.
assertIsNone
(
self
.
discussion_page
.
new_post_form
)
self
.
assertIsNone
(
self
.
additional_discussion_page
.
new_post_form
)
self
.
assertIsNone
(
self
.
additional_discussion_page
.
new_post_form
)
def
start_discussion_blackout_period
(
self
):
"""
Start discussion blackout period, starting 14 days before now to 2 days ago.
"""
now
=
datetime
.
datetime
.
now
(
UTC
)
self
.
course_fix
.
add_advanced_settings
(
{
u"discussion_blackouts"
:
{
"value"
:
[
[
(
now
-
datetime
.
timedelta
(
days
=
14
))
.
isoformat
(),
(
now
+
datetime
.
timedelta
(
days
=
2
))
.
isoformat
()
]
]
}
}
)
self
.
course_fix
.
_add_advanced_settings
()
# pylint: disable=protected-access
@attr
(
shard
=
2
)
@attr
(
shard
=
2
)
class
DiscussionUserProfileTest
(
UniqueCourseTest
):
class
DiscussionUserProfileTest
(
UniqueCourseTest
):
...
...
lms/templates/discussion/_discussion_inline.html
View file @
6f447d0b
...
@@ -26,6 +26,7 @@ var $$course_id = "${course_id | n, js_escaped_string}";
...
@@ -26,6 +26,7 @@ var $$course_id = "${course_id | n, js_escaped_string}";
function
DiscussionInlineBlock
(
runtime
,
element
)
{
function
DiscussionInlineBlock
(
runtime
,
element
)
{
'use strict'
;
'use strict'
;
new
DiscussionInlineView
({
el
:
$
(
element
).
find
(
'.discussion-module'
)
});
var
el
=
$
(
element
).
find
(
'.discussion-module'
);
new
DiscussionInlineView
({
el
:
el
,
readOnly
:
el
.
data
(
'read-only'
)
});
}
}
</script>
</script>
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