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
1ad0e9fd
Commit
1ad0e9fd
authored
10 years ago
by
Adam
Browse files
Options
Downloads
Plain Diff
Merge pull request #6560 from openfun/openfun/studio-csrf-error
Fix csrf error on studio login
parents
20a605f0
dce56b13
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cms/djangoapps/contentstore/tests/test_contentstore.py
+31
-2
31 additions, 2 deletions
cms/djangoapps/contentstore/tests/test_contentstore.py
cms/static/js/factories/login.js
+0
-1
0 additions, 1 deletion
cms/static/js/factories/login.js
cms/templates/login.html
+2
-1
2 additions, 1 deletion
cms/templates/login.html
with
33 additions
and
4 deletions
cms/djangoapps/contentstore/tests/test_contentstore.py
+
31
−
2
View file @
1ad0e9fd
...
...
@@ -4,7 +4,7 @@ import copy
import
mock
from
mock
import
patch
import
shutil
import
lxml
import
lxml
.html
from
datetime
import
timedelta
from
fs.osfs
import
OSFS
...
...
@@ -26,7 +26,7 @@ from contentstore.views.component import ADVANCED_COMPONENT_TYPES
from
xmodule.contentstore.django
import
contentstore
from
xmodule.contentstore.utils
import
restore_asset_from_trashcan
,
empty_asset_trashcan
from
xmodule.exceptions
import
NotFoundError
,
InvalidVersionError
from
xmodule.exceptions
import
InvalidVersionError
from
xmodule.modulestore
import
ModuleStoreEnum
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
from
xmodule.modulestore.inheritance
import
own_metadata
...
...
@@ -1747,6 +1747,35 @@ class EntryPageTestCase(TestCase):
self
.
_test_page
(
"
/logout
"
,
302
)
class
SigninPageTestCase
(
TestCase
):
"""
Tests that the CSRF token is directly included in the signin form. This is
important to make sure that the script is functional independently of any
other script.
"""
def
test_csrf_token_is_present_in_form
(
self
):
# Expected html:
# <form>
# ...
# <fieldset>
# ...
# <input name="csrfmiddlewaretoken" value="...">
# ...
# </fieldset>
# ...
#</form>
response
=
self
.
client
.
get
(
"
/signin
"
)
csrf_token
=
response
.
cookies
.
get
(
"
csrftoken
"
)
form
=
lxml
.
html
.
fromstring
(
response
.
content
).
get_element_by_id
(
"
login_form
"
)
csrf_input_field
=
form
.
find
(
"
.//input[@name=
'
csrfmiddlewaretoken
'
]
"
)
self
.
assertIsNotNone
(
csrf_token
)
self
.
assertIsNotNone
(
csrf_token
.
value
)
self
.
assertIsNotNone
(
csrf_input_field
)
self
.
assertEqual
(
csrf_token
.
value
,
csrf_input_field
.
attrib
[
"
value
"
])
def
_create_course
(
test
,
course_key
,
course_data
):
"""
Creates a course via an AJAX request and verifies the URL returned in the response.
...
...
This diff is collapsed.
Click to expand it.
cms/static/js/factories/login.js
+
0
−
1
View file @
1ad0e9fd
...
...
@@ -8,7 +8,6 @@ define(['jquery.cookie', 'utility'], function() {
dataType
:
'
json
'
,
data
:
data
,
success
:
callback
,
headers
:
{
'
X-CSRFToken
'
:
$
.
cookie
(
'
csrftoken
'
)}
});
}
...
...
This diff is collapsed.
Click to expand it.
cms/templates/login.html
+
2
−
1
View file @
1ad0e9fd
...
...
@@ -17,10 +17,11 @@ from django.utils.translation import ugettext as _
</header>
<article
class=
"content-primary"
role=
"main"
>
<form
id=
"login_form"
method=
"post"
action=
"login_post"
>
<form
id=
"login_form"
method=
"post"
action=
"login_post"
onsubmit=
"return false;"
>
<fieldset>
<legend
class=
"sr"
>
${_("Required Information to Sign In to {studio_name}").format(studio_name=settings.STUDIO_NAME)}
</legend>
<input
type=
"hidden"
name=
"csrfmiddlewaretoken"
value=
"${ csrf }"
/>
<ol
class=
"list-input"
>
<li
class=
"field text required"
id=
"field-email"
>
...
...
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