Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-cas
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
OpenEdx
django-cas
Commits
4e64c503
Commit
4e64c503
authored
Dec 09, 2010
by
Ed Crewe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix broken proxy auth check
parent
9d56c5a2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
django_cas/backends.py
+2
-4
django_cas/tests/cas_tests.py
+2
-0
No files found.
django_cas/backends.py
View file @
4e64c503
...
...
@@ -49,10 +49,10 @@ def _verify_cas2(ticket, service):
urlencode
(
params
))
page
=
urlopen
(
url
)
try
:
response
=
page
.
read
()
tree
=
ElementTree
.
fromstring
(
response
)
page
.
close
()
if
tree
[
0
]
.
tag
.
endswith
(
'authenticationSuccess'
):
username
=
tree
[
0
][
0
]
.
text
if
len
(
tree
[
0
])
>=
2
and
tree
[
0
][
1
]
.
tag
.
endswith
(
'proxyGrantingTicket'
):
...
...
@@ -68,8 +68,6 @@ def _verify_cas2(ticket, service):
return
username
else
:
return
None
finally
:
page
.
close
()
def
verify_proxy_ticket
(
ticket
,
service
):
...
...
django_cas/tests/cas_tests.py
View file @
4e64c503
...
...
@@ -98,6 +98,7 @@ class TestCAS(unittest.TestCase):
print
'PASS: Got PT -
%
s'
%
pt
else
:
print
pt
#self.logout()
print
''
print
'Test SSO server login with proxy ticket'
...
...
@@ -107,6 +108,7 @@ class TestCAS(unittest.TestCase):
print
'PASS: Got Success response for app
%
s using proxy
%
s'
%
(
self
.
urls
[
'app'
],
proxy
)
else
:
print
'FAIL: The proxy login to
%
s via
%
s has failed'
%
(
self
.
urls
[
'app'
],
self
.
urls
[
'proxy'
])
self
.
logout
()
print
''
print
'Test direct proxy login'
...
...
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