123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- from unittest.mock import patch
- from oauthlib import signals
- from oauthlib.oauth2.rfc6749.errors import *
- from oauthlib.oauth2.rfc6749.parameters import *
- from tests.unittest import TestCase
- @patch('time.time', new=lambda: 1000)
- class ParameterTests(TestCase):
- state = 'xyz'
- auth_base = {
- 'uri': 'https://server.example.com/authorize',
- 'client_id': 's6BhdRkqt3',
- 'redirect_uri': 'https://client.example.com/cb',
- 'state': state,
- 'scope': 'photos'
- }
- list_scope = ['list', 'of', 'scopes']
- auth_grant = {'response_type': 'code'}
- auth_grant_pkce = {'response_type': 'code', 'code_challenge': "code_challenge",
- 'code_challenge_method': 'code_challenge_method'}
- auth_grant_list_scope = {}
- auth_implicit = {'response_type': 'token', 'extra': 'extra'}
- auth_implicit_list_scope = {}
- def setUp(self):
- self.auth_grant.update(self.auth_base)
- self.auth_grant_pkce.update(self.auth_base)
- self.auth_implicit.update(self.auth_base)
- self.auth_grant_list_scope.update(self.auth_grant)
- self.auth_grant_list_scope['scope'] = self.list_scope
- self.auth_implicit_list_scope.update(self.auth_implicit)
- self.auth_implicit_list_scope['scope'] = self.list_scope
- auth_base_uri = ('https://server.example.com/authorize?response_type={0}'
- '&client_id=s6BhdRkqt3&redirect_uri=https%3A%2F%2F'
- 'client.example.com%2Fcb&scope={1}&state={2}{3}')
- auth_base_uri_pkce = ('https://server.example.com/authorize?response_type={0}'
- '&client_id=s6BhdRkqt3&redirect_uri=https%3A%2F%2F'
- 'client.example.com%2Fcb&scope={1}&state={2}{3}&code_challenge={4}'
- '&code_challenge_method={5}')
- auth_grant_uri = auth_base_uri.format('code', 'photos', state, '')
- auth_grant_uri_pkce = auth_base_uri_pkce.format('code', 'photos', state, '', 'code_challenge',
- 'code_challenge_method')
- auth_grant_uri_list_scope = auth_base_uri.format('code', 'list+of+scopes', state, '')
- auth_implicit_uri = auth_base_uri.format('token', 'photos', state, '&extra=extra')
- auth_implicit_uri_list_scope = auth_base_uri.format('token', 'list+of+scopes', state, '&extra=extra')
- grant_body = {
- 'grant_type': 'authorization_code',
- 'code': 'SplxlOBeZQQYbYS6WxSbIA',
- 'redirect_uri': 'https://client.example.com/cb'
- }
- grant_body_pkce = {
- 'grant_type': 'authorization_code',
- 'code': 'SplxlOBeZQQYbYS6WxSbIA',
- 'redirect_uri': 'https://client.example.com/cb',
- 'code_verifier': 'code_verifier'
- }
- grant_body_scope = {'scope': 'photos'}
- grant_body_list_scope = {'scope': list_scope}
- auth_grant_body = ('grant_type=authorization_code&'
- 'code=SplxlOBeZQQYbYS6WxSbIA&'
- 'redirect_uri=https%3A%2F%2Fclient.example.com%2Fcb')
- auth_grant_body_pkce = ('grant_type=authorization_code&'
- 'code=SplxlOBeZQQYbYS6WxSbIA&'
- 'redirect_uri=https%3A%2F%2Fclient.example.com%2Fcb'
- '&code_verifier=code_verifier')
- auth_grant_body_scope = auth_grant_body + '&scope=photos'
- auth_grant_body_list_scope = auth_grant_body + '&scope=list+of+scopes'
- pwd_body = {
- 'grant_type': 'password',
- 'username': 'johndoe',
- 'password': 'A3ddj3w'
- }
- password_body = 'grant_type=password&username=johndoe&password=A3ddj3w'
- cred_grant = {'grant_type': 'client_credentials'}
- cred_body = 'grant_type=client_credentials'
- grant_response = 'https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA&state=xyz'
- grant_dict = {'code': 'SplxlOBeZQQYbYS6WxSbIA', 'state': state}
- error_nocode = 'https://client.example.com/cb?state=xyz'
- error_nostate = 'https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA'
- error_wrongstate = 'https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA&state=abc'
- error_denied = 'https://client.example.com/cb?error=access_denied&state=xyz'
- error_invalid = 'https://client.example.com/cb?error=invalid_request&state=xyz'
- implicit_base = 'https://example.com/cb#access_token=2YotnFZFEjr1zCsicMWpAA&scope=abc&'
- implicit_response = implicit_base + 'state={}&token_type=example&expires_in=3600'.format(state)
- implicit_notype = implicit_base + 'state={}&expires_in=3600'.format(state)
- implicit_wrongstate = implicit_base + 'state={}&token_type=exampleexpires_in=3600'.format('invalid')
- implicit_nostate = implicit_base + 'token_type=example&expires_in=3600'
- implicit_notoken = 'https://example.com/cb#state=xyz&token_type=example&expires_in=3600'
- implicit_dict = {
- 'access_token': '2YotnFZFEjr1zCsicMWpAA',
- 'state': state,
- 'token_type': 'example',
- 'expires_in': 3600,
- 'expires_at': 4600,
- 'scope': ['abc']
- }
- json_response = ('{ "access_token": "2YotnFZFEjr1zCsicMWpAA",'
- ' "token_type": "example",'
- ' "expires_in": 3600,'
- ' "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",'
- ' "example_parameter": "example_value",'
- ' "scope":"abc def"}')
- json_response_noscope = ('{ "access_token": "2YotnFZFEjr1zCsicMWpAA",'
- ' "token_type": "example",'
- ' "expires_in": 3600,'
- ' "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",'
- ' "example_parameter": "example_value" }')
- json_response_noexpire = ('{ "access_token": "2YotnFZFEjr1zCsicMWpAA",'
- ' "token_type": "example",'
- ' "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",'
- ' "example_parameter": "example_value"}')
- json_response_expirenull = ('{ "access_token": "2YotnFZFEjr1zCsicMWpAA",'
- ' "token_type": "example",'
- ' "expires_in": null,'
- ' "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",'
- ' "example_parameter": "example_value"}')
- json_custom_error = '{ "error": "incorrect_client_credentials" }'
- json_error = '{ "error": "access_denied" }'
- json_notoken = ('{ "token_type": "example",'
- ' "expires_in": 3600,'
- ' "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",'
- ' "example_parameter": "example_value" }')
- json_notype = ('{ "access_token": "2YotnFZFEjr1zCsicMWpAA",'
- ' "expires_in": 3600,'
- ' "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",'
- ' "example_parameter": "example_value" }')
- json_dict = {
- 'access_token': '2YotnFZFEjr1zCsicMWpAA',
- 'token_type': 'example',
- 'expires_in': 3600,
- 'expires_at': 4600,
- 'refresh_token': 'tGzv3JOkF0XG5Qx2TlKWIA',
- 'example_parameter': 'example_value',
- 'scope': ['abc', 'def']
- }
- json_noscope_dict = {
- 'access_token': '2YotnFZFEjr1zCsicMWpAA',
- 'token_type': 'example',
- 'expires_in': 3600,
- 'expires_at': 4600,
- 'refresh_token': 'tGzv3JOkF0XG5Qx2TlKWIA',
- 'example_parameter': 'example_value'
- }
- json_noexpire_dict = {
- 'access_token': '2YotnFZFEjr1zCsicMWpAA',
- 'token_type': 'example',
- 'refresh_token': 'tGzv3JOkF0XG5Qx2TlKWIA',
- 'example_parameter': 'example_value'
- }
- json_notype_dict = {
- 'access_token': '2YotnFZFEjr1zCsicMWpAA',
- 'expires_in': 3600,
- 'expires_at': 4600,
- 'refresh_token': 'tGzv3JOkF0XG5Qx2TlKWIA',
- 'example_parameter': 'example_value',
- }
- url_encoded_response = ('access_token=2YotnFZFEjr1zCsicMWpAA'
- '&token_type=example'
- '&expires_in=3600'
- '&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA'
- '&example_parameter=example_value'
- '&scope=abc def')
- url_encoded_error = 'error=access_denied'
- url_encoded_notoken = ('token_type=example'
- '&expires_in=3600'
- '&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA'
- '&example_parameter=example_value')
- def test_prepare_grant_uri(self):
- """Verify correct authorization URI construction."""
- self.assertURLEqual(prepare_grant_uri(**self.auth_grant), self.auth_grant_uri)
- self.assertURLEqual(prepare_grant_uri(**self.auth_grant_list_scope), self.auth_grant_uri_list_scope)
- self.assertURLEqual(prepare_grant_uri(**self.auth_implicit), self.auth_implicit_uri)
- self.assertURLEqual(prepare_grant_uri(**self.auth_implicit_list_scope), self.auth_implicit_uri_list_scope)
- self.assertURLEqual(prepare_grant_uri(**self.auth_grant_pkce), self.auth_grant_uri_pkce)
- def test_prepare_token_request(self):
- """Verify correct access token request body construction."""
- self.assertFormBodyEqual(prepare_token_request(**self.grant_body), self.auth_grant_body)
- self.assertFormBodyEqual(prepare_token_request(**self.pwd_body), self.password_body)
- self.assertFormBodyEqual(prepare_token_request(**self.cred_grant), self.cred_body)
- self.assertFormBodyEqual(prepare_token_request(**self.grant_body_pkce), self.auth_grant_body_pkce)
- def test_grant_response(self):
- """Verify correct parameter parsing and validation for auth code responses."""
- params = parse_authorization_code_response(self.grant_response)
- self.assertEqual(params, self.grant_dict)
- params = parse_authorization_code_response(self.grant_response, state=self.state)
- self.assertEqual(params, self.grant_dict)
- self.assertRaises(MissingCodeError, parse_authorization_code_response,
- self.error_nocode)
- self.assertRaises(AccessDeniedError, parse_authorization_code_response,
- self.error_denied)
- self.assertRaises(InvalidRequestFatalError, parse_authorization_code_response,
- self.error_invalid)
- self.assertRaises(MismatchingStateError, parse_authorization_code_response,
- self.error_nostate, state=self.state)
- self.assertRaises(MismatchingStateError, parse_authorization_code_response,
- self.error_wrongstate, state=self.state)
- def test_implicit_token_response(self):
- """Verify correct parameter parsing and validation for implicit responses."""
- self.assertEqual(parse_implicit_response(self.implicit_response),
- self.implicit_dict)
- self.assertRaises(MissingTokenError, parse_implicit_response,
- self.implicit_notoken)
- self.assertRaises(ValueError, parse_implicit_response,
- self.implicit_nostate, state=self.state)
- self.assertRaises(ValueError, parse_implicit_response,
- self.implicit_wrongstate, state=self.state)
- def test_custom_json_error(self):
- self.assertRaises(CustomOAuth2Error, parse_token_response, self.json_custom_error)
- def test_json_token_response(self):
- """Verify correct parameter parsing and validation for token responses. """
- self.assertEqual(parse_token_response(self.json_response), self.json_dict)
- self.assertRaises(AccessDeniedError, parse_token_response, self.json_error)
- self.assertRaises(MissingTokenError, parse_token_response, self.json_notoken)
- self.assertEqual(parse_token_response(self.json_response_noscope,
- scope=['all', 'the', 'scopes']), self.json_noscope_dict)
- self.assertEqual(parse_token_response(self.json_response_noexpire), self.json_noexpire_dict)
- self.assertEqual(parse_token_response(self.json_response_expirenull), self.json_noexpire_dict)
- scope_changes_recorded = []
- def record_scope_change(sender, message, old, new):
- scope_changes_recorded.append((message, old, new))
- os.environ['OAUTHLIB_RELAX_TOKEN_SCOPE'] = '1'
- signals.scope_changed.connect(record_scope_change)
- try:
- parse_token_response(self.json_response, scope='aaa')
- self.assertEqual(len(scope_changes_recorded), 1)
- message, old, new = scope_changes_recorded[0]
- for scope in new + old:
- self.assertIn(scope, message)
- self.assertEqual(old, ['aaa'])
- self.assertEqual(set(new), {'abc', 'def'})
- finally:
- signals.scope_changed.disconnect(record_scope_change)
- del os.environ['OAUTHLIB_RELAX_TOKEN_SCOPE']
- def test_json_token_notype(self):
- """Verify strict token type parsing only when configured. """
- self.assertEqual(parse_token_response(self.json_notype), self.json_notype_dict)
- try:
- os.environ['OAUTHLIB_STRICT_TOKEN_TYPE'] = '1'
- self.assertRaises(MissingTokenTypeError, parse_token_response, self.json_notype)
- finally:
- del os.environ['OAUTHLIB_STRICT_TOKEN_TYPE']
- def test_url_encoded_token_response(self):
- """Verify fallback parameter parsing and validation for token responses. """
- self.assertEqual(parse_token_response(self.url_encoded_response), self.json_dict)
- self.assertRaises(AccessDeniedError, parse_token_response, self.url_encoded_error)
- self.assertRaises(MissingTokenError, parse_token_response, self.url_encoded_notoken)
- scope_changes_recorded = []
- def record_scope_change(sender, message, old, new):
- scope_changes_recorded.append((message, old, new))
- os.environ['OAUTHLIB_RELAX_TOKEN_SCOPE'] = '1'
- signals.scope_changed.connect(record_scope_change)
- try:
- token = parse_token_response(self.url_encoded_response, scope='aaa')
- self.assertEqual(len(scope_changes_recorded), 1)
- message, old, new = scope_changes_recorded[0]
- for scope in new + old:
- self.assertIn(scope, message)
- self.assertEqual(old, ['aaa'])
- self.assertEqual(set(new), {'abc', 'def'})
- finally:
- signals.scope_changed.disconnect(record_scope_change)
- del os.environ['OAUTHLIB_RELAX_TOKEN_SCOPE']
|