mirror of
https://github.com/emmett-framework/granian.git
synced 2025-07-07 19:35:33 +00:00
82 lines
2.8 KiB
Python
82 lines
2.8 KiB
Python
import os
|
|
import platform
|
|
|
|
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(rsgi_server, runtime_mode):
|
|
async with rsgi_server(runtime_mode) as port:
|
|
res = httpx.get(f'http://localhost:{port}/info?test=true')
|
|
|
|
assert res.status_code == 200
|
|
assert res.headers['content-type'] == 'application/json'
|
|
|
|
data = res.json()
|
|
assert data['proto'] == 'http'
|
|
assert data['http_version'] == '1.1'
|
|
assert data['rsgi_version'] == '1.5'
|
|
assert data['scheme'] == 'http'
|
|
assert data['method'] == 'GET'
|
|
assert data['path'] == '/info'
|
|
assert data['query_string'] == 'test=true'
|
|
assert data['headers']['host'] == f'localhost:{port}'
|
|
assert not data['authority']
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
|
|
async def test_body(rsgi_server, runtime_mode):
|
|
async with rsgi_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(rsgi_server, runtime_mode):
|
|
data = ''.join([f'{idx}test'.zfill(8) for idx in range(0, 5000)])
|
|
async with rsgi_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.skipif(platform.python_implementation() == 'PyPy', reason='RSGI stream broken on PyPy')
|
|
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
|
|
async def test_body_stream_req(rsgi_server, runtime_mode):
|
|
data = ''.join([f'{idx}test'.zfill(8) for idx in range(0, 5000)])
|
|
async with rsgi_server(runtime_mode) as port:
|
|
res = httpx.post(f'http://localhost:{port}/echos', content=data)
|
|
|
|
assert res.status_code == 200
|
|
assert res.text == data
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.skipif(platform.python_implementation() == 'PyPy', reason='RSGI stream broken on PyPy')
|
|
@pytest.mark.parametrize('runtime_mode', ['mt', 'st'])
|
|
async def test_body_stream_res(rsgi_server, runtime_mode):
|
|
async with rsgi_server(runtime_mode) as port:
|
|
res = httpx.get(f'http://localhost:{port}/stream')
|
|
|
|
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(rsgi_server, runtime_mode):
|
|
async with rsgi_server(runtime_mode) as port:
|
|
res = httpx.get(f'http://localhost:{port}/err_app')
|
|
|
|
assert res.status_code == 500
|