-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathtest_wsgi.py
69 lines (52 loc) · 2.29 KB
/
test_wsgi.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
import os
import httpx
import pytest
@pytest.mark.asyncio
@pytest.mark.skipif(bool(os.getenv('PGO_RUN')), reason='PGO build')
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
async def test_scope(wsgi_server, runtime_mode):
payload = 'body_payload'
async with wsgi_server(runtime_mode) as port:
res = httpx.post(
f'http://localhost:{port}/info?test=true', content=payload, headers=[('test', 'val1'), ('test', 'val2')]
)
assert res.status_code == 200
assert res.headers['content-type'] == 'application/json'
data = res.json()
assert data['scheme'] == 'http'
assert data['method'] == 'POST'
assert data['path'] == '/info'
assert data['query_string'] == 'test=true'
assert data['headers']['HTTP_HOST'] == f'localhost:{port}'
assert data['content_length'] == str(len(payload))
assert data['headers']['HTTP_TEST'] == 'val1,val2'
@pytest.mark.asyncio
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
async def test_body(wsgi_server, runtime_mode):
async with wsgi_server(runtime_mode) as port:
res = httpx.post(f'http://localhost:{port}/echo', content='test')
assert res.status_code == 200
assert res.text == 'test'
@pytest.mark.asyncio
@pytest.mark.skipif(not bool(os.getenv('PGO_RUN')), reason='not PGO build')
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
async def test_body_large(wsgi_server, runtime_mode):
data = ''.join([f'{idx}test'.zfill(8) for idx in range(0, 5000)])
async with wsgi_server(runtime_mode) as port:
res = httpx.post(f'http://localhost:{port}/echo', content=data)
assert res.status_code == 200
assert res.text == data
@pytest.mark.asyncio
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
async def test_iterbody(wsgi_server, runtime_mode):
async with wsgi_server(runtime_mode) as port:
res = httpx.get(f'http://localhost:{port}/iterbody')
assert res.status_code == 200
assert res.text == 'test' * 3
@pytest.mark.asyncio
@pytest.mark.skipif(bool(os.getenv('PGO_RUN')), reason='PGO build')
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
async def test_app_error(wsgi_server, runtime_mode):
async with wsgi_server(runtime_mode) as port:
res = httpx.get(f'http://localhost:{port}/err_app')
assert res.status_code == 500