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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
import pytest
from httpx import ASGITransport
from starlette.config import Config
from starlette.requests import Request
from authlib.common.urls import url_decode
from authlib.common.urls import urlparse
from authlib.integrations.starlette_client import OAuth
from authlib.integrations.starlette_client import OAuthError
from ..asgi_helper import AsyncPathMapDispatch
from ..util import get_bearer_token
def test_register_remote_app():
oauth = OAuth()
with pytest.raises(AttributeError):
assert oauth.dev.name == "dev"
oauth.register(
"dev",
client_id="dev",
client_secret="dev",
)
assert oauth.dev.name == "dev"
assert oauth.dev.client_id == "dev"
def test_register_with_config():
config = Config(environ={"DEV_CLIENT_ID": "dev"})
oauth = OAuth(config)
oauth.register("dev")
assert oauth.dev.name == "dev"
assert oauth.dev.client_id == "dev"
def test_register_with_overwrite():
config = Config(environ={"DEV_CLIENT_ID": "dev"})
oauth = OAuth(config)
oauth.register("dev", client_id="not-dev", overwrite=True)
assert oauth.dev.name == "dev"
assert oauth.dev.client_id == "dev"
@pytest.mark.asyncio
async def test_oauth1_authorize():
oauth = OAuth()
transport = ASGITransport(
AsyncPathMapDispatch(
{
"/request-token": {"body": "oauth_token=foo&oauth_verifier=baz"},
"/token": {"body": "oauth_token=a&oauth_token_secret=b"},
}
)
)
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
request_token_url="https://i.b/request-token",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
client_kwargs={
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.authorize_redirect(req, "https://b.com/bar")
assert resp.status_code == 302
url = resp.headers.get("Location")
assert "oauth_token=foo" in url
assert "_state_dev_foo" in req.session
req.scope["query_string"] = "oauth_token=foo&oauth_verifier=baz"
token = await client.authorize_access_token(req)
assert token["oauth_token"] == "a"
@pytest.mark.asyncio
async def test_oauth2_authorize():
oauth = OAuth()
transport = ASGITransport(
AsyncPathMapDispatch({"/token": {"body": get_bearer_token()}})
)
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
client_kwargs={
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.authorize_redirect(req, "https://b.com/bar")
assert resp.status_code == 302
url = resp.headers.get("Location")
assert "state=" in url
state = dict(url_decode(urlparse.urlparse(url).query))["state"]
assert f"_state_dev_{state}" in req.session
req_scope.update(
{
"path": "/",
"query_string": f"code=a&state={state}",
"session": req.session,
}
)
req = Request(req_scope)
token = await client.authorize_access_token(req)
assert token["access_token"] == "a"
@pytest.mark.asyncio
async def test_oauth2_authorize_access_denied():
oauth = OAuth()
transport = ASGITransport(
AsyncPathMapDispatch({"/token": {"body": get_bearer_token()}})
)
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
client_kwargs={
"transport": transport,
},
)
req = Request(
{
"type": "http",
"session": {},
"path": "/",
"query_string": "error=access_denied&error_description=Not+Allowed",
}
)
with pytest.raises(OAuthError):
await client.authorize_access_token(req)
@pytest.mark.asyncio
async def test_oauth2_authorize_code_challenge():
transport = ASGITransport(
AsyncPathMapDispatch({"/token": {"body": get_bearer_token()}})
)
oauth = OAuth()
client = oauth.register(
"dev",
client_id="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
client_kwargs={
"code_challenge_method": "S256",
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.authorize_redirect(req, redirect_uri="https://b.com/bar")
assert resp.status_code == 302
url = resp.headers.get("Location")
assert "code_challenge=" in url
assert "code_challenge_method=S256" in url
state = dict(url_decode(urlparse.urlparse(url).query))["state"]
state_data = req.session[f"_state_dev_{state}"]["data"]
verifier = state_data["code_verifier"]
assert verifier is not None
req_scope.update(
{
"path": "/",
"query_string": f"code=a&state={state}".encode(),
"session": req.session,
}
)
req = Request(req_scope)
token = await client.authorize_access_token(req)
assert token["access_token"] == "a"
@pytest.mark.asyncio
async def test_with_fetch_token_in_register():
async def fetch_token(request):
return {"access_token": "dev", "token_type": "bearer"}
transport = ASGITransport(AsyncPathMapDispatch({"/user": {"body": {"sub": "123"}}}))
oauth = OAuth()
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
fetch_token=fetch_token,
client_kwargs={
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.get("/user", request=req)
assert resp.json()["sub"] == "123"
@pytest.mark.asyncio
async def test_with_fetch_token_in_oauth():
async def fetch_token(name, request):
return {"access_token": "dev", "token_type": "bearer"}
transport = ASGITransport(AsyncPathMapDispatch({"/user": {"body": {"sub": "123"}}}))
oauth = OAuth(fetch_token=fetch_token)
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
client_kwargs={
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.get("/user", request=req)
assert resp.json()["sub"] == "123"
@pytest.mark.asyncio
async def test_request_withhold_token():
oauth = OAuth()
transport = ASGITransport(AsyncPathMapDispatch({"/user": {"body": {"sub": "123"}}}))
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
authorize_url="https://i.b/authorize",
client_kwargs={
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.get("/user", request=req, withhold_token=True)
assert resp.json()["sub"] == "123"
@pytest.mark.asyncio
async def test_oauth2_authorize_no_url():
oauth = OAuth()
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
with pytest.raises(RuntimeError):
await client.create_authorization_url(req)
@pytest.mark.asyncio
async def test_oauth2_authorize_with_metadata():
oauth = OAuth()
transport = ASGITransport(
AsyncPathMapDispatch(
{
"/.well-known/openid-configuration": {
"body": {"authorization_endpoint": "https://i.b/authorize"}
}
}
)
)
client = oauth.register(
"dev",
client_id="dev",
client_secret="dev",
api_base_url="https://i.b/api",
access_token_url="https://i.b/token",
server_metadata_url="https://i.b/.well-known/openid-configuration",
client_kwargs={
"transport": transport,
},
)
req_scope = {"type": "http", "session": {}}
req = Request(req_scope)
resp = await client.authorize_redirect(req, "https://b.com/bar")
assert resp.status_code == 302
|