2015-02-27 20:40:17 +00:00
|
|
|
import urllib
|
|
|
|
|
2015-02-12 18:04:58 +00:00
|
|
|
from django.contrib.auth import REDIRECT_FIELD_NAME
|
|
|
|
from django.contrib.auth.models import AnonymousUser
|
2015-02-11 18:37:51 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from django.test import RequestFactory
|
|
|
|
from django.test import TestCase
|
2015-02-27 20:40:17 +00:00
|
|
|
|
2015-02-18 18:07:22 +00:00
|
|
|
from oidc_provider import settings
|
2015-02-27 20:40:17 +00:00
|
|
|
from oidc_provider.models import *
|
2015-02-18 18:07:22 +00:00
|
|
|
from oidc_provider.tests.utils import *
|
|
|
|
from oidc_provider.views import *
|
2015-02-11 18:37:51 +00:00
|
|
|
|
|
|
|
|
2015-02-19 18:45:51 +00:00
|
|
|
class AuthorizationCodeFlowTestCase(TestCase):
|
2015-02-11 18:37:51 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.factory = RequestFactory()
|
|
|
|
self.user = create_fake_user()
|
|
|
|
self.client = create_fake_client(response_type='code')
|
2015-02-27 20:40:17 +00:00
|
|
|
self.state = uuid.uuid4().hex
|
2015-02-11 18:37:51 +00:00
|
|
|
|
2015-02-27 20:40:17 +00:00
|
|
|
def test_missing_parameters(self):
|
2015-02-11 18:37:51 +00:00
|
|
|
"""
|
|
|
|
If the request fails due to a missing, invalid, or mismatching
|
|
|
|
redirection URI, or if the client identifier is missing or invalid,
|
|
|
|
the authorization server SHOULD inform the resource owner of the error.
|
|
|
|
|
|
|
|
See: https://tools.ietf.org/html/rfc6749#section-4.1.2.1
|
|
|
|
"""
|
2015-02-18 18:07:22 +00:00
|
|
|
url = reverse('oidc_provider:authorize')
|
2015-02-27 20:40:17 +00:00
|
|
|
|
2015-02-11 18:37:51 +00:00
|
|
|
request = self.factory.get(url)
|
|
|
|
|
|
|
|
response = AuthorizeView.as_view()(request)
|
|
|
|
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2015-02-11 20:38:37 +00:00
|
|
|
self.assertEqual(bool(response.content), True)
|
|
|
|
|
2015-02-27 20:40:17 +00:00
|
|
|
def test_invalid_response_type(self):
|
2015-02-11 20:38:37 +00:00
|
|
|
"""
|
|
|
|
The OP informs the RP by using the Error Response parameters defined
|
|
|
|
in Section 4.1.2.1 of OAuth 2.0.
|
|
|
|
|
|
|
|
See: http://openid.net/specs/openid-connect-core-1_0.html#AuthError
|
|
|
|
"""
|
|
|
|
# Create an authorize request with an unsupported response_type.
|
2015-02-27 20:40:17 +00:00
|
|
|
query_str = urllib.urlencode({
|
|
|
|
'client_id': self.client.client_id,
|
|
|
|
'response_type': 'something_wrong',
|
|
|
|
'redirect_uri': self.client.default_redirect_uri,
|
|
|
|
'scope': 'openid email',
|
|
|
|
'state': self.state,
|
|
|
|
}).replace('+', '%20')
|
|
|
|
|
|
|
|
url = reverse('oidc_provider:authorize') + '?' + query_str
|
2015-02-12 18:04:58 +00:00
|
|
|
|
2015-02-11 20:38:37 +00:00
|
|
|
request = self.factory.get(url)
|
|
|
|
|
|
|
|
response = AuthorizeView.as_view()(request)
|
|
|
|
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
self.assertEqual(response.has_header('Location'), True)
|
|
|
|
|
2015-02-12 18:04:58 +00:00
|
|
|
# Should be an 'error' component in query.
|
|
|
|
query_exists = 'error=' in response['Location']
|
|
|
|
self.assertEqual(query_exists, True)
|
|
|
|
|
2015-02-27 20:40:17 +00:00
|
|
|
def test_codeflow_user_not_logged(self):
|
2015-02-12 18:04:58 +00:00
|
|
|
"""
|
|
|
|
The Authorization Server attempts to Authenticate the End-User by
|
|
|
|
redirecting to the login view.
|
|
|
|
|
|
|
|
See: http://openid.net/specs/openid-connect-core-1_0.html#Authenticates
|
|
|
|
"""
|
2015-02-27 20:40:17 +00:00
|
|
|
query_str = urllib.urlencode({
|
|
|
|
'client_id': self.client.client_id,
|
|
|
|
'response_type': 'code',
|
|
|
|
'redirect_uri': self.client.default_redirect_uri,
|
|
|
|
'scope': 'openid email',
|
|
|
|
'state': self.state,
|
|
|
|
}).replace('+', '%20')
|
|
|
|
|
|
|
|
url = reverse('oidc_provider:authorize') + '?' + query_str
|
2015-02-12 18:04:58 +00:00
|
|
|
|
|
|
|
request = self.factory.get(url)
|
|
|
|
request.user = AnonymousUser()
|
|
|
|
|
|
|
|
response = AuthorizeView.as_view()(request)
|
|
|
|
|
|
|
|
# Check if user was redirected to the login view.
|
|
|
|
login_url_exists = settings.get('LOGIN_URL') in response['Location']
|
|
|
|
self.assertEqual(login_url_exists, True)
|
|
|
|
|
|
|
|
# Check if the login will redirect to a valid url.
|
|
|
|
try:
|
|
|
|
next_value = response['Location'].split(REDIRECT_FIELD_NAME + '=')[1]
|
|
|
|
next_url = urllib.unquote(next_value)
|
|
|
|
is_next_ok = next_url == url
|
|
|
|
except:
|
|
|
|
is_next_ok = False
|
2015-02-13 13:44:09 +00:00
|
|
|
self.assertEqual(is_next_ok, True)
|
|
|
|
|
2015-02-27 20:40:17 +00:00
|
|
|
def test_codeflow_user_consent_inputs(self):
|
2015-02-20 17:33:18 +00:00
|
|
|
"""
|
|
|
|
Once the End-User is authenticated, the Authorization Server MUST
|
|
|
|
obtain an authorization decision before releasing information to
|
|
|
|
the Client.
|
|
|
|
|
|
|
|
See: http://openid.net/specs/openid-connect-core-1_0.html#Consent
|
|
|
|
"""
|
2015-02-19 18:45:51 +00:00
|
|
|
response_type = 'code'
|
2015-02-27 20:40:17 +00:00
|
|
|
state = 'openid email'
|
|
|
|
|
|
|
|
query_str = urllib.urlencode({
|
|
|
|
'client_id': self.client.client_id,
|
|
|
|
'response_type': response_type,
|
|
|
|
'redirect_uri': self.client.default_redirect_uri,
|
|
|
|
'scope': state,
|
|
|
|
'state': self.state,
|
|
|
|
}).replace('+', '%20')
|
2015-02-19 18:45:51 +00:00
|
|
|
|
2015-02-27 20:40:17 +00:00
|
|
|
url = reverse('oidc_provider:authorize') + '?' + query_str
|
2015-02-13 13:44:09 +00:00
|
|
|
|
|
|
|
request = self.factory.get(url)
|
|
|
|
# Simulate that the user is logged.
|
|
|
|
request.user = self.user
|
|
|
|
|
|
|
|
response = AuthorizeView.as_view()(request)
|
|
|
|
|
2015-02-27 20:40:17 +00:00
|
|
|
# Check if hidden inputs exists in the form,
|
|
|
|
# also if their values are valid.
|
2015-02-19 18:45:51 +00:00
|
|
|
input_html = '<input name="{0}" type="hidden" value="{1}" />'
|
|
|
|
|
|
|
|
to_check = {
|
|
|
|
'client_id': self.client.client_id,
|
|
|
|
'redirect_uri': self.client.default_redirect_uri,
|
|
|
|
'response_type': response_type,
|
|
|
|
}
|
|
|
|
|
|
|
|
for key, value in to_check.iteritems():
|
|
|
|
is_input_ok = input_html.format(key, value) in response.content
|
|
|
|
self.assertEqual(is_input_ok, True,
|
|
|
|
msg='Hidden input for "'+key+'" fails.')
|
2015-02-27 20:40:17 +00:00
|
|
|
|
|
|
|
def test_codeflow_user_consent_response(self):
|
|
|
|
"""
|
|
|
|
First,
|
|
|
|
if the user denied the consent we must ensure that
|
|
|
|
the error response parameters are added to the query component
|
|
|
|
of the Redirection URI.
|
|
|
|
|
|
|
|
Second,
|
|
|
|
if the user allow the RP then the server MUST return
|
|
|
|
the parameters defined in Section 4.1.2 of OAuth 2.0 [RFC6749]
|
|
|
|
by adding them as query parameters to the redirect_uri.
|
|
|
|
"""
|
|
|
|
response_type = 'code'
|
|
|
|
scope = 'openid email'
|
|
|
|
|
|
|
|
url = reverse('oidc_provider:authorize')
|
|
|
|
|
|
|
|
post_data = {
|
|
|
|
'client_id': self.client.client_id,
|
|
|
|
'redirect_uri': self.client.default_redirect_uri,
|
|
|
|
'response_type': response_type,
|
|
|
|
'scope': scope,
|
|
|
|
'state': self.state,
|
|
|
|
}
|
|
|
|
|
|
|
|
request = self.factory.post(url, data=post_data)
|
|
|
|
# Simulate that the user is logged.
|
|
|
|
request.user = self.user
|
|
|
|
|
|
|
|
response = AuthorizeView.as_view()(request)
|
|
|
|
|
|
|
|
# Because user doesn't allow app, SHOULD exists an error parameter
|
|
|
|
# in the query.
|
|
|
|
self.assertEqual('error=' in response['Location'], True)
|
|
|
|
self.assertEqual('access_denied' in response['Location'], True)
|
|
|
|
|
|
|
|
# Simulate user authorization.
|
|
|
|
post_data['allow'] = 'Accept' # Should be the value of the button.
|
|
|
|
|
|
|
|
request = self.factory.post(url, data=post_data)
|
|
|
|
# Simulate that the user is logged.
|
|
|
|
request.user = self.user
|
|
|
|
|
|
|
|
response = AuthorizeView.as_view()(request)
|
|
|
|
|
|
|
|
# Validate the code returned by the OP.
|
|
|
|
code = (response['Location'].split('code='))[1].split('&')[0]
|
|
|
|
try:
|
|
|
|
code = Code.objects.get(code=code)
|
|
|
|
if (code.client == self.client) or (code.user == self.user):
|
|
|
|
is_code_ok = True
|
|
|
|
else:
|
|
|
|
is_code_ok = False
|
|
|
|
except:
|
|
|
|
is_code_ok = False
|
|
|
|
self.assertEqual(is_code_ok, True)
|
|
|
|
|
|
|
|
# Check if the state is returned.
|
|
|
|
state = (response['Location'].split('state='))[1].split('&')[0]
|
|
|
|
self.assertEqual(state == self.state, True)
|