-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_auth.py
102 lines (69 loc) · 3.31 KB
/
test_auth.py
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
from base64 import b64encode
import pytest
import tls_requests
auth = ("user", "pass")
AUTH_TOKEN = "Basic %s" % b64encode(b":".join([s.encode() for s in auth])).decode()
AUTH_HEADERS = {"authorization": AUTH_TOKEN}
AUTH_FUNCTION_KEY = "x-authorization"
AUTH_FUNCTION_VALUE = "123456"
AUTH_FUNCTION_HEADERS = {AUTH_FUNCTION_KEY: AUTH_FUNCTION_VALUE}
def auth_function(request):
request.headers.update(AUTH_FUNCTION_HEADERS)
@pytest.fixture
def auth_url(httpserver):
return httpserver.url_for('/auth')
@pytest.fixture
def http_auth_function(httpserver):
httpserver.expect_request("/auth", headers=AUTH_FUNCTION_HEADERS).respond_with_data()
return httpserver
@pytest.fixture
def http_auth(httpserver):
httpserver.expect_request("/auth", headers=AUTH_HEADERS).respond_with_data()
return httpserver
def test_auth(http_auth, auth_url):
response = tls_requests.get(auth_url, auth=auth)
assert response.status_code == 200
assert response.request.headers["Authorization"] == AUTH_TOKEN
def test_auth_function(http_auth_function, auth_url):
response = tls_requests.get(auth_url, auth=auth_function)
assert response.status_code == 200
assert response.request.headers[AUTH_FUNCTION_KEY] == AUTH_FUNCTION_VALUE
def test_client_auth(http_auth, auth_url):
with tls_requests.Client(auth=auth) as client:
response = client.get(auth_url)
assert response.status_code == 200
assert bool(response.closed == client.closed) is True
assert response.request.headers["Authorization"] == AUTH_TOKEN
def test_client_auth_cross_sharing(http_auth, auth_url):
with tls_requests.Client(auth=('1', '2')) as client:
response = client.get(auth_url, auth=auth)
assert response.status_code == 200
assert bool(response.closed == client.closed) is True
assert response.request.headers["Authorization"] == AUTH_TOKEN
def test_client_auth_function_cross_sharing(http_auth_function, auth_url):
with tls_requests.Client(auth=auth) as client:
response = client.get(auth_url, auth=auth_function)
assert response.status_code == 200
assert bool(response.closed == client.closed) is True
assert response.request.headers[AUTH_FUNCTION_KEY] == AUTH_FUNCTION_VALUE
@pytest.mark.asyncio
async def test_async_auth(http_auth, auth_url):
async with tls_requests.AsyncClient(auth=auth) as client:
response = await client.get(auth_url)
assert response.status_code == 200
assert bool(response.closed == client.closed) is True
assert response.request.headers["Authorization"] == AUTH_TOKEN
@pytest.mark.asyncio
async def test_async_auth_function(http_auth_function, auth_url):
async with tls_requests.AsyncClient(auth=auth_function) as client:
response = await client.get(auth_url)
assert response.status_code == 200
assert bool(response.closed == client.closed) is True
assert response.request.headers[AUTH_FUNCTION_KEY] == AUTH_FUNCTION_VALUE
@pytest.mark.asyncio
async def test_async_auth_function_cross_sharing(http_auth_function, auth_url):
async with tls_requests.AsyncClient(auth=auth) as client:
response = await client.get(auth_url, auth=auth_function)
assert response.status_code == 200
assert bool(response.closed == client.closed) is True
assert response.request.headers[AUTH_FUNCTION_KEY] == AUTH_FUNCTION_VALUE