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
|
import pytest
from httpx import WSGITransport
from authlib.integrations.httpx_client import SIGNATURE_TYPE_BODY
from authlib.integrations.httpx_client import SIGNATURE_TYPE_QUERY
from authlib.integrations.httpx_client import OAuth1Client
from authlib.integrations.httpx_client import OAuthError
from ..wsgi_helper import MockDispatch
oauth_url = "https://example.com/oauth"
def test_fetch_request_token_via_header():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
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 = WSGITransport(MockDispatch(request_token, assert_func=assert_func))
with OAuth1Client("id", "secret", transport=transport) as client:
response = client.fetch_request_token(oauth_url)
assert response == request_token
def test_fetch_request_token_via_body():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
def assert_func(request):
auth_header = request.headers.get("authorization")
assert auth_header is None
content = request.form
assert content.get("oauth_consumer_key") == "id"
assert "oauth_signature" in content
transport = WSGITransport(MockDispatch(request_token, assert_func=assert_func))
with OAuth1Client(
"id",
"secret",
signature_type=SIGNATURE_TYPE_BODY,
transport=transport,
) as client:
response = client.fetch_request_token(oauth_url)
assert response == request_token
def test_fetch_request_token_via_query():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
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 = WSGITransport(MockDispatch(request_token, assert_func=assert_func))
with OAuth1Client(
"id",
"secret",
signature_type=SIGNATURE_TYPE_QUERY,
transport=transport,
) as client:
response = client.fetch_request_token(oauth_url)
assert response == request_token
def test_fetch_access_token():
request_token = {"oauth_token": "1", "oauth_token_secret": "2"}
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 = WSGITransport(MockDispatch(request_token, assert_func=assert_func))
with OAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
transport=transport,
) as client:
with pytest.raises(OAuthError):
client.fetch_access_token(oauth_url)
response = client.fetch_access_token(oauth_url, verifier="d")
assert response == request_token
def test_get_via_header():
transport = WSGITransport(MockDispatch(b"hello"))
with OAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
transport=transport,
) as client:
response = 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
def test_get_via_body():
def assert_func(request):
content = request.form
assert content.get("oauth_token") == "foo"
assert content.get("oauth_consumer_key") == "id"
assert "oauth_signature" in content
transport = WSGITransport(MockDispatch(b"hello", assert_func=assert_func))
with OAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
signature_type=SIGNATURE_TYPE_BODY,
transport=transport,
) as client:
response = client.post("https://example.com/")
assert response.content == b"hello"
request = response.request
auth_header = request.headers.get("authorization")
assert auth_header is None
def test_get_via_query():
transport = WSGITransport(MockDispatch(b"hello"))
with OAuth1Client(
"id",
"secret",
token="foo",
token_secret="bar",
signature_type=SIGNATURE_TYPE_QUERY,
transport=transport,
) as client:
response = 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
|