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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
import time
from authlib.oauth1.rfc5849 import signature
from tests.util import decode_response
from tests.util import read_file_path
from .oauth1_server import Client
from .oauth1_server import TestCase
from .oauth1_server import User
from .oauth1_server import create_authorization_server
from .oauth1_server import db
class TokenCredentialsTest(TestCase):
USE_CACHE = True
def prepare_data(self):
self.server = create_authorization_server(self.app, self.USE_CACHE)
user = User(username="foo")
db.session.add(user)
db.session.commit()
client = Client(
user_id=user.id,
client_id="client",
client_secret="secret",
default_redirect_uri="https://a.b",
)
db.session.add(client)
db.session.commit()
def prepare_temporary_credential(self):
credential = {
"oauth_token": "abc",
"oauth_token_secret": "abc-secret",
"oauth_verifier": "abc-verifier",
"user": 1,
}
func = self.server._hooks["create_temporary_credential"]
func(credential, "client", "oob")
def test_invalid_token_request_parameters(self):
self.prepare_data()
url = "/oauth/token"
# case 1
rv = self.client.post(url)
data = decode_response(rv.data)
assert data["error"] == "missing_required_parameter"
assert "oauth_consumer_key" in data["error_description"]
# case 2
rv = self.client.post(url, data={"oauth_consumer_key": "a"})
data = decode_response(rv.data)
assert data["error"] == "invalid_client"
# case 3
rv = self.client.post(url, data={"oauth_consumer_key": "client"})
data = decode_response(rv.data)
assert data["error"] == "missing_required_parameter"
assert "oauth_token" in data["error_description"]
# case 4
rv = self.client.post(
url, data={"oauth_consumer_key": "client", "oauth_token": "a"}
)
data = decode_response(rv.data)
assert data["error"] == "invalid_token"
def test_invalid_token_and_verifiers(self):
self.prepare_data()
url = "/oauth/token"
hook = self.server._hooks["create_temporary_credential"]
# case 5
hook(
{"oauth_token": "abc", "oauth_token_secret": "abc-secret"}, "client", "oob"
)
rv = self.client.post(
url, data={"oauth_consumer_key": "client", "oauth_token": "abc"}
)
data = decode_response(rv.data)
assert data["error"] == "missing_required_parameter"
assert "oauth_verifier" in data["error_description"]
# case 6
hook(
{"oauth_token": "abc", "oauth_token_secret": "abc-secret"}, "client", "oob"
)
rv = self.client.post(
url,
data={
"oauth_consumer_key": "client",
"oauth_token": "abc",
"oauth_verifier": "abc",
},
)
data = decode_response(rv.data)
assert data["error"] == "invalid_request"
assert "oauth_verifier" in data["error_description"]
def test_duplicated_oauth_parameters(self):
self.prepare_data()
url = "/oauth/token?oauth_consumer_key=client"
rv = self.client.post(
url,
data={
"oauth_consumer_key": "client",
"oauth_token": "abc",
"oauth_verifier": "abc",
},
)
data = decode_response(rv.data)
assert data["error"] == "duplicated_oauth_protocol_parameter"
def test_plaintext_signature(self):
self.prepare_data()
url = "/oauth/token"
# case 1: success
self.prepare_temporary_credential()
auth_header = (
'OAuth oauth_consumer_key="client",'
'oauth_signature_method="PLAINTEXT",'
'oauth_token="abc",'
'oauth_verifier="abc-verifier",'
'oauth_signature="secret&abc-secret"'
)
headers = {"Authorization": auth_header}
rv = self.client.post(url, headers=headers)
data = decode_response(rv.data)
assert "oauth_token" in data
# case 2: invalid signature
self.prepare_temporary_credential()
rv = self.client.post(
url,
data={
"oauth_consumer_key": "client",
"oauth_signature_method": "PLAINTEXT",
"oauth_token": "abc",
"oauth_verifier": "abc-verifier",
"oauth_signature": "invalid-signature",
},
)
data = decode_response(rv.data)
assert data["error"] == "invalid_signature"
def test_hmac_sha1_signature(self):
self.prepare_data()
url = "/oauth/token"
params = [
("oauth_consumer_key", "client"),
("oauth_token", "abc"),
("oauth_verifier", "abc-verifier"),
("oauth_signature_method", "HMAC-SHA1"),
("oauth_timestamp", str(int(time.time()))),
("oauth_nonce", "hmac-sha1-nonce"),
]
base_string = signature.construct_base_string(
"POST", "http://localhost/oauth/token", params
)
sig = signature.hmac_sha1_signature(base_string, "secret", "abc-secret")
params.append(("oauth_signature", sig))
auth_param = ",".join([f'{k}="{v}"' for k, v in params])
auth_header = "OAuth " + auth_param
headers = {"Authorization": auth_header}
# case 1: success
self.prepare_temporary_credential()
rv = self.client.post(url, headers=headers)
data = decode_response(rv.data)
assert "oauth_token" in data
# case 2: exists nonce
self.prepare_temporary_credential()
rv = self.client.post(url, headers=headers)
data = decode_response(rv.data)
assert data["error"] == "invalid_nonce"
def test_rsa_sha1_signature(self):
self.prepare_data()
url = "/oauth/token"
self.prepare_temporary_credential()
params = [
("oauth_consumer_key", "client"),
("oauth_token", "abc"),
("oauth_verifier", "abc-verifier"),
("oauth_signature_method", "RSA-SHA1"),
("oauth_timestamp", str(int(time.time()))),
("oauth_nonce", "rsa-sha1-nonce"),
]
base_string = signature.construct_base_string(
"POST", "http://localhost/oauth/token", params
)
sig = signature.rsa_sha1_signature(
base_string, read_file_path("rsa_private.pem")
)
params.append(("oauth_signature", sig))
auth_param = ",".join([f'{k}="{v}"' for k, v in params])
auth_header = "OAuth " + auth_param
headers = {"Authorization": auth_header}
rv = self.client.post(url, headers=headers)
data = decode_response(rv.data)
assert "oauth_token" in data
# case: invalid signature
self.prepare_temporary_credential()
auth_param = auth_param.replace("rsa-sha1-nonce", "alt-sha1-nonce")
auth_header = "OAuth " + auth_param
headers = {"Authorization": auth_header}
rv = self.client.post(url, headers=headers)
data = decode_response(rv.data)
assert data["error"] == "invalid_signature"
|