123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- # -*- coding: utf-8 -*-
- import oauthlib
- from oauthlib.common import (
- CaseInsensitiveDict, Request, add_params_to_uri, extract_params,
- generate_client_id, generate_nonce, generate_timestamp, generate_token,
- urldecode,
- )
- from tests.unittest import TestCase
- PARAMS_DICT = {'foo': 'bar', 'baz': '123', }
- PARAMS_TWOTUPLE = [('foo', 'bar'), ('baz', '123')]
- PARAMS_FORMENCODED = 'foo=bar&baz=123'
- URI = 'http://www.someuri.com'
- class EncodingTest(TestCase):
- def test_urldecode(self):
- self.assertCountEqual(urldecode(''), [])
- self.assertCountEqual(urldecode('='), [('', '')])
- self.assertCountEqual(urldecode('%20'), [(' ', '')])
- self.assertCountEqual(urldecode('+'), [(' ', '')])
- self.assertCountEqual(urldecode('c2'), [('c2', '')])
- self.assertCountEqual(urldecode('c2='), [('c2', '')])
- self.assertCountEqual(urldecode('foo=bar'), [('foo', 'bar')])
- self.assertCountEqual(urldecode('foo_%20~=.bar-'),
- [('foo_ ~', '.bar-')])
- self.assertCountEqual(urldecode('foo=1,2,3'), [('foo', '1,2,3')])
- self.assertCountEqual(urldecode('foo=(1,2,3)'), [('foo', '(1,2,3)')])
- self.assertCountEqual(urldecode('foo=bar.*'), [('foo', 'bar.*')])
- self.assertCountEqual(urldecode('foo=bar@spam'), [('foo', 'bar@spam')])
- self.assertCountEqual(urldecode('foo=bar/baz'), [('foo', 'bar/baz')])
- self.assertCountEqual(urldecode('foo=bar?baz'), [('foo', 'bar?baz')])
- self.assertCountEqual(urldecode('foo=bar\'s'), [('foo', 'bar\'s')])
- self.assertCountEqual(urldecode('foo=$'), [('foo', '$')])
- self.assertRaises(ValueError, urldecode, 'foo bar')
- self.assertRaises(ValueError, urldecode, '%R')
- self.assertRaises(ValueError, urldecode, '%RA')
- self.assertRaises(ValueError, urldecode, '%AR')
- self.assertRaises(ValueError, urldecode, '%RR')
- class ParameterTest(TestCase):
- def test_extract_params_dict(self):
- self.assertCountEqual(extract_params(PARAMS_DICT), PARAMS_TWOTUPLE)
- def test_extract_params_twotuple(self):
- self.assertCountEqual(extract_params(PARAMS_TWOTUPLE), PARAMS_TWOTUPLE)
- def test_extract_params_formencoded(self):
- self.assertCountEqual(extract_params(PARAMS_FORMENCODED),
- PARAMS_TWOTUPLE)
- def test_extract_params_blank_string(self):
- self.assertCountEqual(extract_params(''), [])
- def test_extract_params_empty_list(self):
- self.assertCountEqual(extract_params([]), [])
- def test_extract_non_formencoded_string(self):
- self.assertIsNone(extract_params('not a formencoded string'))
- def test_extract_invalid(self):
- self.assertIsNone(extract_params(object()))
- self.assertIsNone(extract_params([('')]))
- def test_add_params_to_uri(self):
- correct = '{}?{}'.format(URI, PARAMS_FORMENCODED)
- self.assertURLEqual(add_params_to_uri(URI, PARAMS_DICT), correct)
- self.assertURLEqual(add_params_to_uri(URI, PARAMS_TWOTUPLE), correct)
- class GeneratorTest(TestCase):
- def test_generate_timestamp(self):
- timestamp = generate_timestamp()
- self.assertIsInstance(timestamp, str)
- self.assertTrue(int(timestamp))
- self.assertGreater(int(timestamp), 1331672335)
- def test_generate_nonce(self):
- """Ping me (ib-lundgren) when you discover how to test randomness."""
- nonce = generate_nonce()
- for i in range(50):
- self.assertNotEqual(nonce, generate_nonce())
- def test_generate_token(self):
- token = generate_token()
- self.assertEqual(len(token), 30)
- token = generate_token(length=44)
- self.assertEqual(len(token), 44)
- token = generate_token(length=6, chars="python")
- self.assertEqual(len(token), 6)
- for c in token:
- self.assertIn(c, "python")
- def test_generate_client_id(self):
- client_id = generate_client_id()
- self.assertEqual(len(client_id), 30)
- client_id = generate_client_id(length=44)
- self.assertEqual(len(client_id), 44)
- client_id = generate_client_id(length=6, chars="python")
- self.assertEqual(len(client_id), 6)
- for c in client_id:
- self.assertIn(c, "python")
- class RequestTest(TestCase):
- def test_non_unicode_params(self):
- r = Request(
- b'http://a.b/path?query',
- http_method=b'GET',
- body=b'you=shall+pass',
- headers={
- b'a': b'b',
- }
- )
- self.assertEqual(r.uri, 'http://a.b/path?query')
- self.assertEqual(r.http_method, 'GET')
- self.assertEqual(r.body, 'you=shall+pass')
- self.assertEqual(r.decoded_body, [('you', 'shall pass')])
- self.assertEqual(r.headers, {'a': 'b'})
- def test_none_body(self):
- r = Request(URI)
- self.assertIsNone(r.decoded_body)
- def test_empty_list_body(self):
- r = Request(URI, body=[])
- self.assertEqual(r.decoded_body, [])
- def test_empty_dict_body(self):
- r = Request(URI, body={})
- self.assertEqual(r.decoded_body, [])
- def test_empty_string_body(self):
- r = Request(URI, body='')
- self.assertEqual(r.decoded_body, [])
- def test_non_formencoded_string_body(self):
- body = 'foo bar'
- r = Request(URI, body=body)
- self.assertIsNone(r.decoded_body)
- def test_param_free_sequence_body(self):
- body = [1, 1, 2, 3, 5, 8, 13]
- r = Request(URI, body=body)
- self.assertIsNone(r.decoded_body)
- def test_list_body(self):
- r = Request(URI, body=PARAMS_TWOTUPLE)
- self.assertCountEqual(r.decoded_body, PARAMS_TWOTUPLE)
- def test_dict_body(self):
- r = Request(URI, body=PARAMS_DICT)
- self.assertCountEqual(r.decoded_body, PARAMS_TWOTUPLE)
- def test_getattr_existing_attribute(self):
- r = Request(URI, body='foo bar')
- self.assertEqual('foo bar', getattr(r, 'body'))
- def test_getattr_return_default(self):
- r = Request(URI, body='')
- actual_value = getattr(r, 'does_not_exist', 'foo bar')
- self.assertEqual('foo bar', actual_value)
- def test_getattr_raise_attribute_error(self):
- r = Request(URI, body='foo bar')
- with self.assertRaises(AttributeError):
- getattr(r, 'does_not_exist')
- def test_sanitizing_authorization_header(self):
- r = Request(URI, headers={'Accept': 'application/json',
- 'Authorization': 'Basic Zm9vOmJhcg=='}
- )
- self.assertNotIn('Zm9vOmJhcg==', repr(r))
- self.assertIn('<SANITIZED>', repr(r))
- # Double-check we didn't modify the underlying object:
- self.assertEqual(r.headers['Authorization'], 'Basic Zm9vOmJhcg==')
- def test_token_body(self):
- payload = 'client_id=foo&refresh_token=bar'
- r = Request(URI, body=payload)
- self.assertNotIn('bar', repr(r))
- self.assertIn('<SANITIZED>', repr(r))
- payload = 'refresh_token=bar&client_id=foo'
- r = Request(URI, body=payload)
- self.assertNotIn('bar', repr(r))
- self.assertIn('<SANITIZED>', repr(r))
- def test_password_body(self):
- payload = 'username=foo&password=bar'
- r = Request(URI, body=payload)
- self.assertNotIn('bar', repr(r))
- self.assertIn('<SANITIZED>', repr(r))
- payload = 'password=bar&username=foo'
- r = Request(URI, body=payload)
- self.assertNotIn('bar', repr(r))
- self.assertIn('<SANITIZED>', repr(r))
- def test_headers_params(self):
- r = Request(URI, headers={'token': 'foobar'}, body='token=banana')
- self.assertEqual(r.headers['token'], 'foobar')
- self.assertEqual(r.token, 'banana')
- def test_sanitized_request_non_debug_mode(self):
- """make sure requests are sanitized when in non debug mode.
- For the debug mode, the other tests checking sanitization should prove
- that debug mode is working.
- """
- try:
- oauthlib.set_debug(False)
- r = Request(URI, headers={'token': 'foobar'}, body='token=banana')
- self.assertNotIn('token', repr(r))
- self.assertIn('SANITIZED', repr(r))
- finally:
- # set flag back for other tests
- oauthlib.set_debug(True)
- class CaseInsensitiveDictTest(TestCase):
- def test_basic(self):
- cid = CaseInsensitiveDict({})
- cid['a'] = 'b'
- cid['c'] = 'd'
- del cid['c']
- self.assertEqual(cid['A'], 'b')
- self.assertEqual(cid['a'], 'b')
- def test_update(self):
- cid = CaseInsensitiveDict({})
- cid.update({'KeY': 'value'})
- self.assertEqual(cid['kEy'], 'value')
|