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
87665100
Commit
87665100
authored
Aug 09, 2013
by
JonahStanley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logging out no longer uses cookies.
Removed other cookie reference
parent
eb7fe7c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
cms/djangoapps/contentstore/features/course-team.py
+2
-1
common/djangoapps/terrain/browser.py
+1
-1
common/djangoapps/terrain/steps.py
+2
-2
No files found.
cms/djangoapps/contentstore/features/course-team.py
View file @
87665100
...
...
@@ -2,6 +2,7 @@
#pylint: disable=W0621
from
lettuce
import
world
,
step
from
lettuce.django
import
django_url
from
common
import
create_studio_user
from
django.contrib.auth.models
import
Group
from
auth.authz
import
get_course_groupname_for_role
,
get_user_by_email
...
...
@@ -91,7 +92,7 @@ def remove_course_team_admin(_step, outer_capture, name):
@step
(
u'"([^"]*)" logs in$'
)
def
other_user_login
(
_step
,
name
):
world
.
browser
.
cookies
.
delete
(
)
world
.
visit
(
django_url
(
'logout'
)
)
world
.
visit
(
'/'
)
signin_css
=
'a.action-signin'
...
...
common/djangoapps/terrain/browser.py
View file @
87665100
...
...
@@ -83,7 +83,7 @@ def initial_setup(server):
"""
Launch the browser once before executing the tests.
"""
#browser_driver = getattr(settings, 'LETTUCE_BROWSER', 'chrome')
#
browser_driver = getattr(settings, 'LETTUCE_BROWSER', 'chrome')
# There is an issue with ChromeDriver2 r195627 on Ubuntu
# in which we sometimes get an invalid browser session.
...
...
common/djangoapps/terrain/steps.py
View file @
87665100
...
...
@@ -99,7 +99,7 @@ def i_am_logged_in_user(step):
@step
(
'I am not logged in$'
)
def
i_am_not_logged_in
(
step
):
world
.
browser
.
cookies
.
delete
(
)
world
.
visit
(
django_url
(
'logout'
)
)
@step
(
'I am staff for course "([^"]*)"$'
)
...
...
@@ -150,7 +150,7 @@ def i_am_logged_in(step):
world
.
log_in
(
username
=
'robot'
,
password
=
'test'
)
world
.
browser
.
visit
(
django_url
(
'/'
))
# You should not see the login link
assert_equals
(
world
.
browser
.
find_by_css
(
'a#login'
),
[]
)
world
.
is_css_not_present
(
'a#login'
)
@step
(
u'I am an edX user$'
)
...
...
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