1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# -*- coding: utf-8 -*-
from oauthlib.common import urlencode
from oauthlib.oauth1.rfc5849.parameters import (
_append_params, prepare_form_encoded_body, prepare_headers,
prepare_request_uri_query,
)
from tests.unittest import TestCase
class ParameterTests(TestCase):
auth_only_params = [
('oauth_consumer_key', "9djdj82h48djs9d2"),
('oauth_token', "kkk9d7dh3k39sjv7"),
('oauth_signature_method', "HMAC-SHA1"),
('oauth_timestamp', "137131201"),
('oauth_nonce', "7d8f3e4a"),
('oauth_signature', "bYT5CMsGcbgUdFHObYMEfcx6bsw=")
]
auth_and_data = list(auth_only_params)
auth_and_data.append(('data_param_foo', 'foo'))
auth_and_data.append(('data_param_1', '1'))
realm = 'testrealm'
norealm_authorization_header = ' '.join((
'OAuth',
'oauth_consumer_key="9djdj82h48djs9d2",',
'oauth_token="kkk9d7dh3k39sjv7",',
'oauth_signature_method="HMAC-SHA1",',
'oauth_timestamp="137131201",',
'oauth_nonce="7d8f3e4a",',
'oauth_signature="bYT5CMsGcbgUdFHObYMEfcx6bsw%3D"',
))
withrealm_authorization_header = ' '.join((
'OAuth',
'realm="testrealm",',
'oauth_consumer_key="9djdj82h48djs9d2",',
'oauth_token="kkk9d7dh3k39sjv7",',
'oauth_signature_method="HMAC-SHA1",',
'oauth_timestamp="137131201",',
'oauth_nonce="7d8f3e4a",',
'oauth_signature="bYT5CMsGcbgUdFHObYMEfcx6bsw%3D"',
))
def test_append_params(self):
unordered_1 = [
('oauth_foo', 'foo'),
('lala', 123),
('oauth_baz', 'baz'),
('oauth_bar', 'bar'), ]
unordered_2 = [
('teehee', 456),
('oauth_quux', 'quux'), ]
expected = [
('teehee', 456),
('lala', 123),
('oauth_quux', 'quux'),
('oauth_foo', 'foo'),
('oauth_baz', 'baz'),
('oauth_bar', 'bar'), ]
self.assertEqual(_append_params(unordered_1, unordered_2), expected)
def test_prepare_headers(self):
self.assertEqual(
prepare_headers(self.auth_only_params, {}),
{'Authorization': self.norealm_authorization_header})
self.assertEqual(
prepare_headers(self.auth_only_params, {}, realm=self.realm),
{'Authorization': self.withrealm_authorization_header})
def test_prepare_headers_ignore_data(self):
self.assertEqual(
prepare_headers(self.auth_and_data, {}),
{'Authorization': self.norealm_authorization_header})
self.assertEqual(
prepare_headers(self.auth_and_data, {}, realm=self.realm),
{'Authorization': self.withrealm_authorization_header})
def test_prepare_form_encoded_body(self):
existing_body = ''
form_encoded_body = 'data_param_foo=foo&data_param_1=1&oauth_consumer_key=9djdj82h48djs9d2&oauth_token=kkk9d7dh3k39sjv7&oauth_signature_method=HMAC-SHA1&oauth_timestamp=137131201&oauth_nonce=7d8f3e4a&oauth_signature=bYT5CMsGcbgUdFHObYMEfcx6bsw%3D'
self.assertEqual(
urlencode(prepare_form_encoded_body(self.auth_and_data, existing_body)),
form_encoded_body)
def test_prepare_request_uri_query(self):
url = 'http://notarealdomain.com/foo/bar/baz?some=args&go=here'
request_uri_query = 'http://notarealdomain.com/foo/bar/baz?some=args&go=here&data_param_foo=foo&data_param_1=1&oauth_consumer_key=9djdj82h48djs9d2&oauth_token=kkk9d7dh3k39sjv7&oauth_signature_method=HMAC-SHA1&oauth_timestamp=137131201&oauth_nonce=7d8f3e4a&oauth_signature=bYT5CMsGcbgUdFHObYMEfcx6bsw%3D'
self.assertEqual(
prepare_request_uri_query(self.auth_and_data, url),
request_uri_query)
|