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
0b13d25b
Commit
0b13d25b
authored
7 years ago
by
zubair-arbi
Browse files
Options
Downloads
Patches
Plain Diff
ENT-768 Display friendly error message for third party auth error
parent
7a69d2f7
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/student_account/test/test_views.py
+4
-15
4 additions, 15 deletions
lms/djangoapps/student_account/test/test_views.py
openedx/features/enterprise_support/utils.py
+3
-13
3 additions, 13 deletions
openedx/features/enterprise_support/utils.py
with
7 additions
and
28 deletions
lms/djangoapps/student_account/test/test_views.py
+
4
−
15
View file @
0b13d25b
...
...
@@ -484,7 +484,6 @@ class StudentAccountLoginAndRegistrationTest(ThirdPartyAuthTestMixin, UrlResetMi
@mock.patch
(
'
django.conf.settings.MESSAGE_STORAGE
'
,
'
django.contrib.messages.storage.cookie.CookieStorage
'
)
@mock.patch
(
'
lms.djangoapps.student_account.views.enterprise_customer_for_request
'
)
@mock.patch
(
'
openedx.core.djangoapps.user_api.api.enterprise_customer_for_request
'
)
@ddt.data
(
(
'
signin_user
'
,
...
...
@@ -498,8 +497,7 @@ class StudentAccountLoginAndRegistrationTest(ThirdPartyAuthTestMixin, UrlResetMi
url_name
,
current_backend
,
current_provider
,
enterprise_customer_mock_1
,
enterprise_customer_mock_2
,
enterprise_customer_mock
,
):
params
=
[]
request
=
RequestFactory
().
get
(
reverse
(
url_name
),
params
,
HTTP_ACCEPT
=
'
text/html
'
)
...
...
@@ -514,8 +512,7 @@ class StudentAccountLoginAndRegistrationTest(ThirdPartyAuthTestMixin, UrlResetMi
'
name
'
:
'
Dummy Enterprise
'
,
'
identity_provider
'
:
dummy_idp
,
}
enterprise_customer_mock_1
.
return_value
=
enterprise_customer_data
enterprise_customer_mock_2
.
return_value
=
enterprise_customer_data
enterprise_customer_mock
.
return_value
=
enterprise_customer_data
dummy_error_message
=
'
Authentication failed: SAML login failed
'
\
'
[
"
invalid_response
"
] [SAML Response must contain 1 assertion]
'
...
...
@@ -536,20 +533,12 @@ class StudentAccountLoginAndRegistrationTest(ThirdPartyAuthTestMixin, UrlResetMi
expected_error_message
=
Text
(
_
(
u
'
We are sorry, you are not authorized to access {platform_name} via this channel.
'
u
'
Please contact your {enterprise} administrator in order to access {platform_name}
'
u
'
or contact {edx_support_link}.{line_break}
'
u
'
{line_break}
'
u
'
Please contact your learning administrator or manager in order to access {platform_name}.
'
u
'
{line_break}{line_break}
'
u
'
Error Details:{line_break}{error_message}
'
)
).
format
(
platform_name
=
settings
.
PLATFORM_NAME
,
enterprise
=
enterprise_customer_data
[
'
name
'
],
error_message
=
dummy_error_message
,
edx_support_link
=
HTML
(
'
<a href=
"
{edx_support_url}
"
>{support_url_name}</a>
'
).
format
(
edx_support_url
=
settings
.
SUPPORT_SITE_LINK
,
support_url_name
=
_
(
'
edX Support
'
),
),
line_break
=
HTML
(
'
<br/>
'
)
)
self
.
_assert_saml_auth_data_with_error
(
...
...
This diff is collapsed.
Click to expand it.
openedx/features/enterprise_support/utils.py
+
3
−
13
View file @
0b13d25b
...
...
@@ -136,25 +136,15 @@ def update_third_party_auth_context_for_enterprise(request, context, enterprise_
context (dict): Updated context of third party auth with modified
`errorMessage`.
"""
if
enterprise_customer
and
context
[
'
data
'
][
'
third_party_auth
'
][
'
errorMessage
'
]:
if
context
[
'
data
'
][
'
third_party_auth
'
][
'
errorMessage
'
]:
context
[
'
data
'
][
'
third_party_auth
'
][
'
errorMessage
'
]
=
Text
(
_
(
u
'
We are sorry, you are not authorized to access {platform_name} via this channel.
'
u
'
Please contact your {enterprise} administrator in order to access {platform_name}
'
u
'
or contact {edx_support_link}.{line_break}
'
u
'
{line_break}
'
u
'
Please contact your learning administrator or manager in order to access {platform_name}.
'
u
'
{line_break}{line_break}
'
u
'
Error Details:{line_break}{error_message}
'
)
).
format
(
platform_name
=
configuration_helpers
.
get_value
(
'
PLATFORM_NAME
'
,
settings
.
PLATFORM_NAME
),
enterprise
=
enterprise_customer
[
'
name
'
],
error_message
=
context
[
'
data
'
][
'
third_party_auth
'
][
'
errorMessage
'
],
edx_support_link
=
HTML
(
'
<a href=
"
{edx_support_url}
"
>{support_url_name}</a>
'
).
format
(
edx_support_url
=
configuration_helpers
.
get_value
(
'
SUPPORT_SITE_LINK
'
,
settings
.
SUPPORT_SITE_LINK
),
support_url_name
=
_
(
'
edX Support
'
),
),
line_break
=
HTML
(
'
<br/>
'
)
)
...
...
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