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
80614a27
Commit
80614a27
authored
Nov 20, 2015
by
Kevin Falcone
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release' into hotfix-2015-11-20-conflict
parents
7c7c0b68
37dbbf41
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
98 additions
and
10 deletions
+98
-10
common/djangoapps/third_party_auth/management/commands/saml.py
+4
-6
common/test/acceptance/tests/lms/test_lms_problems.py
+92
-2
lms/static/js/ajax-error.js
+2
-2
No files found.
common/djangoapps/third_party_auth/management/commands/saml.py
View file @
80614a27
...
...
@@ -12,16 +12,14 @@ class Command(BaseCommand):
""" manage.py commands to manage SAML/Shibboleth SSO """
help
=
'''Configure/maintain/update SAML-based SSO'''
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
!=
1
:
raise
CommandError
(
"saml requires one argument: pull"
)
def
add_arguments
(
self
,
parser
):
parser
.
add_argument
(
'--pull'
,
action
=
'store_true'
,
help
=
"Pull updated metadata from external IDPs"
)
def
handle
(
self
,
*
args
,
**
options
):
if
not
SAMLConfiguration
.
is_enabled
():
raise
CommandError
(
"SAML support is disabled via SAMLConfiguration."
)
subcommand
=
args
[
0
]
if
subcommand
==
"pull"
:
if
options
[
'pull'
]:
log_handler
=
logging
.
StreamHandler
(
self
.
stdout
)
log_handler
.
setLevel
(
logging
.
DEBUG
)
log
=
logging
.
getLogger
(
'third_party_auth.tasks'
)
...
...
common/test/acceptance/tests/lms/test_lms_problems.py
View file @
80614a27
...
...
@@ -10,6 +10,7 @@ from ..helpers import UniqueCourseTest
from
...pages.studio.auto_auth
import
AutoAuthPage
from
...pages.lms.courseware
import
CoursewarePage
from
...pages.lms.problem
import
ProblemPage
from
...pages.lms.login_and_register
import
CombinedLoginAndRegisterPage
from
...fixtures.course
import
CourseFixture
,
XBlockFixtureDesc
from
..helpers
import
EventsTestMixin
...
...
@@ -20,6 +21,7 @@ class ProblemsTest(UniqueCourseTest):
"""
USERNAME
=
"joe_student"
EMAIL
=
"joe@example.com"
PASSWORD
=
"keep it secret; keep it safe."
def
setUp
(
self
):
super
(
ProblemsTest
,
self
)
.
setUp
()
...
...
@@ -42,8 +44,14 @@ class ProblemsTest(UniqueCourseTest):
)
.
install
()
# Auto-auth register for the course.
AutoAuthPage
(
self
.
browser
,
username
=
self
.
USERNAME
,
email
=
self
.
EMAIL
,
course_id
=
self
.
course_id
,
staff
=
False
)
.
visit
()
AutoAuthPage
(
self
.
browser
,
username
=
self
.
USERNAME
,
email
=
self
.
EMAIL
,
password
=
self
.
PASSWORD
,
course_id
=
self
.
course_id
,
staff
=
False
)
.
visit
()
def
get_problem
(
self
):
""" Subclasses should override this to complete the fixture """
...
...
@@ -321,3 +329,85 @@ class ProblemPartialCredit(ProblemsTest):
problem_page
.
click_check
()
problem_page
.
wait_for_status_icon
()
self
.
assertTrue
(
problem_page
.
simpleprob_is_partially_correct
())
class
LogoutDuringAnswering
(
ProblemsTest
):
"""
Tests for the scenario where a user is logged out (their session expires
or is revoked) just before they click "check" on a problem.
"""
def
get_problem
(
self
):
"""
Create a problem.
"""
xml
=
dedent
(
"""
<problem>
<p>The answer is 1</p>
<numericalresponse answer="1">
<formulaequationinput label="where are the songs of spring?" />
<responseparam type="tolerance" default="0.01" />
</numericalresponse>
</problem>
"""
)
return
XBlockFixtureDesc
(
'problem'
,
'TEST PROBLEM'
,
data
=
xml
)
def
log_user_out
(
self
):
"""
Log the user out by deleting their session cookie.
"""
self
.
browser
.
delete_cookie
(
'sessionid'
)
def
test_logout_after_click_redirect
(
self
):
"""
1) User goes to a problem page.
2) User fills out an answer to the problem.
3) User is logged out because their session id is invalidated or removed.
4) User clicks "check", and sees a confirmation modal asking them to
re-authenticate, since they've just been logged out.
5) User clicks "ok".
6) User is redirected to the login page.
7) User logs in.
8) User is redirected back to the problem page they started out on.
9) User is able to submit an answer
"""
self
.
courseware_page
.
visit
()
problem_page
=
ProblemPage
(
self
.
browser
)
self
.
assertEqual
(
problem_page
.
problem_name
,
'TEST PROBLEM'
)
problem_page
.
fill_answer_numerical
(
'1'
)
self
.
log_user_out
()
with
problem_page
.
handle_alert
(
confirm
=
True
):
problem_page
.
click_check
()
login_page
=
CombinedLoginAndRegisterPage
(
self
.
browser
)
login_page
.
wait_for_page
()
login_page
.
login
(
self
.
EMAIL
,
self
.
PASSWORD
)
problem_page
.
wait_for_page
()
self
.
assertEqual
(
problem_page
.
problem_name
,
'TEST PROBLEM'
)
problem_page
.
fill_answer_numerical
(
'1'
)
problem_page
.
click_check
()
self
.
assertTrue
(
problem_page
.
simpleprob_is_correct
())
def
test_logout_cancel_no_redirect
(
self
):
"""
1) User goes to a problem page.
2) User fills out an answer to the problem.
3) User is logged out because their session id is invalidated or removed.
4) User clicks "check", and sees a confirmation modal asking them to
re-authenticate, since they've just been logged out.
5) User clicks "cancel".
6) User is not redirected to the login page.
"""
self
.
courseware_page
.
visit
()
problem_page
=
ProblemPage
(
self
.
browser
)
self
.
assertEqual
(
problem_page
.
problem_name
,
'TEST PROBLEM'
)
problem_page
.
fill_answer_numerical
(
'1'
)
self
.
log_user_out
()
with
problem_page
.
handle_alert
(
confirm
=
False
):
problem_page
.
click_check
()
self
.
assertTrue
(
problem_page
.
is_browser_on_page
())
self
.
assertEqual
(
problem_page
.
problem_name
,
'TEST PROBLEM'
)
lms/static/js/ajax-error.js
View file @
80614a27
...
...
@@ -8,8 +8,8 @@ $(document).ajaxError(function (event, jXHR) {
);
if
(
window
.
confirm
(
message
))
{
var
currentLocation
=
window
.
location
.
href
;
window
.
location
.
href
=
'/login?next='
+
currentLocation
;
var
currentLocation
=
window
.
location
.
pathname
;
window
.
location
.
href
=
'/login?next='
+
encodeURIComponent
(
currentLocation
)
;
};
}
});
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