# -*- coding: utf-8 -*- from __future__ import absolute_import, unicode_literals import sys from oauthlib.common import * from .unittest import TestCase if sys.version_info[0] == 3: bytes_type = bytes else: bytes_type = lambda s, e: str(s) class CommonTests(TestCase): params_dict = {'foo': 'bar', 'baz': '123', } params_twotuple = [('foo', 'bar'), ('baz', '123')] params_formencoded = 'foo=bar&baz=123' uri = 'http://www.someuri.com' def test_urldecode(self): self.assertItemsEqual(urldecode(''), []) self.assertItemsEqual(urldecode('='), [('', '')]) self.assertItemsEqual(urldecode('%20'), [(' ', '')]) self.assertItemsEqual(urldecode('+'), [(' ', '')]) self.assertItemsEqual(urldecode('c2'), [('c2', '')]) self.assertItemsEqual(urldecode('c2='), [('c2', '')]) self.assertItemsEqual(urldecode('foo=bar'), [('foo', 'bar')]) self.assertItemsEqual(urldecode('foo_%20~=.bar-'), [('foo_ ~', '.bar-')]) self.assertItemsEqual(urldecode('foo=1,2,3'), [('foo', '1,2,3')]) self.assertItemsEqual(urldecode('foo=bar.*'), [('foo', 'bar.*')]) self.assertRaises(ValueError, urldecode, 'foo bar') self.assertRaises(ValueError, urldecode, '?') self.assertRaises(ValueError, urldecode, '%R') self.assertRaises(ValueError, urldecode, '%RA') self.assertRaises(ValueError, urldecode, '%AR') self.assertRaises(ValueError, urldecode, '%RR') def test_extract_params_dict(self): self.assertItemsEqual(extract_params(self.params_dict), self.params_twotuple) def test_extract_params_twotuple(self): self.assertItemsEqual(extract_params(self.params_twotuple), self.params_twotuple) def test_extract_params_formencoded(self): self.assertItemsEqual(extract_params(self.params_formencoded), self.params_twotuple) def test_extract_params_blank_string(self): self.assertItemsEqual(extract_params(''), []) def test_extract_params_empty_list(self): self.assertItemsEqual(extract_params([]), []) def test_extract_non_formencoded_string(self): self.assertEqual(extract_params('not a formencoded string'), None) def test_extract_invalid(self): self.assertEqual(extract_params(object()), None) def test_non_unicode_params(self): r = Request(bytes_type('http://a.b/path?query', 'utf-8'), http_method=bytes_type('GET', 'utf-8'), body=bytes_type('you=shall+pass', 'utf-8'), headers={bytes_type('a', 'utf-8'): bytes_type('b', 'utf-8')}) 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(self.uri) self.assertEqual(r.decoded_body, None) def test_empty_list_body(self): r = Request(self.uri, body=[]) self.assertEqual(r.decoded_body, []) def test_empty_dict_body(self): r = Request(self.uri, body={}) self.assertEqual(r.decoded_body, []) def test_empty_string_body(self): r = Request(self.uri, body='') self.assertEqual(r.decoded_body, []) def test_non_formencoded_string_body(self): body = 'foo bar' r = Request(self.uri, body=body) self.assertEqual(r.decoded_body, None) def test_param_free_sequence_body(self): body = [1, 1, 2, 3, 5, 8, 13] r = Request(self.uri, body=body) self.assertEqual(r.decoded_body, None) def test_list_body(self): r = Request(self.uri, body=self.params_twotuple) self.assertItemsEqual(r.decoded_body, self.params_twotuple) def test_dict_body(self): r = Request(self.uri, body=self.params_dict) self.assertItemsEqual(r.decoded_body, self.params_twotuple) def test_generate_timestamp(self): """ TODO: Better test here """ timestamp = generate_timestamp() self.assertIsInstance(timestamp, unicode_type) self.assertTrue(int(timestamp)) self.assertGreater(int(timestamp), 1331672335) # is this increasing? def test_generate_nonce(self): """ TODO: better test here """ 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) self.assertNotIn("a", token) 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) self.assertNotIn("a", client_id) 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')