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
|
import pytest
from httpx import ASGITransport
from authlib.integrations.httpx_client import SIGNATURE_TYPE_BODY
from authlib.integrations.httpx_client import SIGNATURE_TYPE_QUERY
from authlib.integrations.httpx_client import AsyncOAuth1Client
from authlib.integrations.httpx_client import OAuthError
from ..asgi_helper import AsyncMockDispatch
oauth_url = "https://example.com/oauth"
@pytest.mark.asyncio
async def test_fetch_request_token_via_header():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
async def assert_func(request):
auth_header = request.headers.get("authorization")
assert 'oauth_consumer_key="id"' in auth_header
assert "oauth_signature=" in auth_header
transport = ASGITransport(AsyncMockDispatch(request_token, assert_func=assert_func))
async with AsyncOAuth1Client("id", "secret", transport=transport) as client:
response = await client.fetch_request_token(oauth_url)
assert response == request_token
@pytest.mark.asyncio
async def test_fetch_request_token_via_body():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
async def assert_func(request):
auth_header = request.headers.get("authorization")
assert auth_header is None
content = await request.body()
assert b"oauth_consumer_key=id" in content
assert b"&oauth_signature=" in content
transport = ASGITransport(AsyncMockDispatch(request_token, assert_func=assert_func))
async with AsyncOAuth1Client(
"id",
"secret",
signature_type=SIGNATURE_TYPE_BODY,
transport=transport,
) as client:
response = await client.fetch_request_token(oauth_url)
assert response == request_token
@pytest.mark.asyncio
async def test_fetch_request_token_via_query():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
async def assert_func(request):
auth_header = request.headers.get("authorization")
assert auth_header is None
url = str(request.url)
assert "oauth_consumer_key=id" in url
assert "&oauth_signature=" in url
transport = ASGITransport(AsyncMockDispatch(request_token, assert_func=assert_func))
async with AsyncOAuth1Client(
"id",
"secret",
signature_type=SIGNATURE_TYPE_QUERY,
transport=transport,
) as client:
response = await client.fetch_request_token(oauth_url)
assert response == request_token
@pytest.mark.asyncio
async def test_fetch_access_token():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
async def assert_func(request):
auth_header = request.headers.get("authorization")
assert 'oauth_verifier="d"' in auth_header
assert 'oauth_token="foo"' in auth_header
assert 'oauth_consumer_key="id"' in auth_header
assert "oauth_signature=" in auth_header
transport = ASGITransport(AsyncMockDispatch(request_token, assert_func=assert_func))
async with AsyncOAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
transport=transport,
) as client:
with pytest.raises(OAuthError):
await client.fetch_access_token(oauth_url)
response = await client.fetch_access_token(oauth_url, verifier="d")
assert response == request_token
@pytest.mark.asyncio
async def test_get_via_header():
transport = ASGITransport(AsyncMockDispatch(b"hello"))
async with AsyncOAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
transport=transport,
) as client:
response = await client.get("https://example.com/")
assert response.content == b"hello"
request = response.request
auth_header = request.headers.get("authorization")
assert 'oauth_token="foo"' in auth_header
assert 'oauth_consumer_key="id"' in auth_header
assert "oauth_signature=" in auth_header
@pytest.mark.asyncio
async def test_get_via_body():
async def assert_func(request):
content = await request.body()
assert b"oauth_token=foo" in content
assert b"oauth_consumer_key=id" in content
assert b"oauth_signature=" in content
transport = ASGITransport(AsyncMockDispatch(b"hello", assert_func=assert_func))
async with AsyncOAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
signature_type=SIGNATURE_TYPE_BODY,
transport=transport,
) as client:
response = await client.post("https://example.com/")
assert response.content == b"hello"
request = response.request
auth_header = request.headers.get("authorization")
assert auth_header is None
@pytest.mark.asyncio
async def test_get_via_query():
transport = ASGITransport(AsyncMockDispatch(b"hello"))
async with AsyncOAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
signature_type=SIGNATURE_TYPE_QUERY,
transport=transport,
) as client:
response = await client.get("https://example.com/")
assert response.content == b"hello"
request = response.request
auth_header = request.headers.get("authorization")
assert auth_header is None
url = str(request.url)
assert "oauth_token=foo" in url
assert "oauth_consumer_key=id" in url
assert "oauth_signature=" in url
|