Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
f3952f2a
Commit
f3952f2a
authored
10 years ago
by
Ned Batchelder
Browse files
Options
Downloads
Plain Diff
Merge pull request #3533 from johncox-google/johncox/bug/pipeline
Fix bug that prevented account association during registration
parents
74621f91
5333bd7d
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/djangoapps/third_party_auth/pipeline.py
+1
-1
1 addition, 1 deletion
common/djangoapps/third_party_auth/pipeline.py
common/djangoapps/third_party_auth/tests/specs/base.py
+7
-11
7 additions, 11 deletions
common/djangoapps/third_party_auth/tests/specs/base.py
with
8 additions
and
12 deletions
common/djangoapps/third_party_auth/pipeline.py
+
1
−
1
View file @
f3952f2a
...
...
@@ -350,7 +350,7 @@ def redirect_to_supplementary_form(strategy, details, response, uid, is_dashboar
user_inactive
=
user
and
not
user
.
is_active
user_unset
=
user
is
None
dispatch_to_login
=
(
is_login
and
user_unset
)
or
user_inactive
dispatch_to_login
=
is_login
and
(
user_unset
or
user_inactive
)
if
is_dashboard
:
return
...
...
This diff is collapsed.
Click to expand it.
common/djangoapps/third_party_auth/tests/specs/base.py
+
7
−
11
View file @
f3952f2a
...
...
@@ -640,21 +640,17 @@ class IntegrationTest(testutil.TestCase, test.TestCase):
created_user
=
self
.
get_user_by_email
(
strategy
,
email
)
self
.
assert_password_overridden_by_pipeline
(
overridden_password
,
created_user
.
username
)
# The user's account isn't created yet, so an attempt to complete the
# pipeline will error out on /login:
self
.
assert_redirect_to_login_looks_correct
(
actions
.
do_complete
(
strategy
,
social_views
.
_do_login
,
user
=
created_user
))
# So we activate the account in order to verify the redirect to /dashboard:
created_user
.
is_active
=
True
created_user
.
save
()
# At this point the user object exists, but there is no associated
# social auth.
self
.
assert_social_auth_does_not_exist_for_user
(
created_user
,
strategy
)
#
Last step in
the pipeline
: we re-invoke the pipeline and expect to
#
end up on /
dashboard, w
ith
the
correct social auth object now in th
e
#
backend and the correct user's data on
display.
#
Pick
the pipeline
back up. This will create the account association
#
and send the user to the
dashboard, w
here
the
association will b
e
# display
ed
.
self
.
assert_redirect_to_dashboard_looks_correct
(
actions
.
do_complete
(
strategy
,
social_views
.
_do_login
,
user
=
created_user
))
self
.
assert_social_auth_exists_for_user
(
created_user
,
strategy
)
self
.
assert_dashboard_response_looks_correct
(
student_views
.
dashboard
(
request
),
created_user
)
self
.
assert_dashboard_response_looks_correct
(
student_views
.
dashboard
(
request
),
created_user
,
linked
=
True
)
def
test_new_account_registration_assigns_distinct_username_on_collision
(
self
):
original_username
=
self
.
get_username
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment