2018-06-25 13:15:32 +00:00
|
|
|
from starlette import Request, JSONResponse, TestClient
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_url():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
data = {"method": request.method, "url": request.url}
|
|
|
|
response = JSONResponse(data)
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
response = client.get("/123?a=abc")
|
|
|
|
assert response.json() == {"method": "GET", "url": "http://testserver/123?a=abc"}
|
|
|
|
|
|
|
|
response = client.get("https://example.org:123/")
|
|
|
|
assert response.json() == {"method": "GET", "url": "https://example.org:123/"}
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_query_params():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
params = dict(request.query_params)
|
|
|
|
response = JSONResponse({"params": params})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
response = client.get("/?a=123&b=456")
|
|
|
|
assert response.json() == {"params": {"a": "123", "b": "456"}}
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_headers():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
headers = dict(request.headers)
|
|
|
|
response = JSONResponse({"headers": headers})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
response = client.get("/", headers={"host": "example.org"})
|
|
|
|
assert response.json() == {
|
|
|
|
"headers": {
|
|
|
|
"host": "example.org",
|
|
|
|
"user-agent": "testclient",
|
|
|
|
"accept-encoding": "gzip, deflate",
|
|
|
|
"accept": "*/*",
|
|
|
|
"connection": "keep-alive",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_body():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
body = await request.body()
|
|
|
|
response = JSONResponse({"body": body.decode()})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
|
|
response = client.get("/")
|
|
|
|
assert response.json() == {"body": ""}
|
|
|
|
|
|
|
|
response = client.post("/", json={"a": "123"})
|
|
|
|
assert response.json() == {"body": '{"a": "123"}'}
|
|
|
|
|
|
|
|
response = client.post("/", data="abc")
|
|
|
|
assert response.json() == {"body": "abc"}
|
|
|
|
|
|
|
|
|
2018-06-25 14:58:05 +00:00
|
|
|
def test_request_stream():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
body = b""
|
|
|
|
async for chunk in request.stream():
|
|
|
|
body += chunk
|
|
|
|
response = JSONResponse({"body": body.decode()})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
|
|
response = client.get("/")
|
|
|
|
assert response.json() == {"body": ""}
|
|
|
|
|
|
|
|
response = client.post("/", json={"a": "123"})
|
|
|
|
assert response.json() == {"body": '{"a": "123"}'}
|
|
|
|
|
|
|
|
response = client.post("/", data="abc")
|
|
|
|
assert response.json() == {"body": "abc"}
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_body_then_stream():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
body = await request.body()
|
|
|
|
chunks = b""
|
|
|
|
async for chunk in request.stream():
|
|
|
|
chunks += chunk
|
|
|
|
response = JSONResponse({"body": body.decode(), "stream": chunks.decode()})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
|
|
response = client.post("/", data="abc")
|
|
|
|
assert response.json() == {"body": "abc", "stream": "abc"}
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_stream_then_body():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
chunks = b""
|
|
|
|
async for chunk in request.stream():
|
|
|
|
chunks += chunk
|
|
|
|
try:
|
|
|
|
body = await request.body()
|
|
|
|
except RuntimeError:
|
|
|
|
body = b"<stream consumed>"
|
|
|
|
response = JSONResponse({"body": body.decode(), "stream": chunks.decode()})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
|
|
response = client.post("/", data="abc")
|
|
|
|
assert response.json() == {"body": "<stream consumed>", "stream": "abc"}
|
|
|
|
|
|
|
|
|
2018-06-25 13:15:32 +00:00
|
|
|
def test_request_json():
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope, receive)
|
|
|
|
data = await request.json()
|
|
|
|
response = JSONResponse({"json": data})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
response = client.post("/", json={"a": "123"})
|
|
|
|
assert response.json() == {"json": {"a": "123"}}
|
2018-06-26 09:51:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_request_scope_interface():
|
|
|
|
"""
|
|
|
|
A Request can be isntantiated with a scope, and presents a `Mapping`
|
|
|
|
interface.
|
|
|
|
"""
|
|
|
|
request = Request({"method": "GET", "path": "/abc/"})
|
|
|
|
assert request["method"] == "GET"
|
|
|
|
assert dict(request) == {"method": "GET", "path": "/abc/"}
|
|
|
|
assert len(request) == 2
|
|
|
|
|
|
|
|
|
|
|
|
def test_request_without_setting_receive():
|
|
|
|
"""
|
|
|
|
If Request is instantiated without the receive channel, then .body()
|
|
|
|
is not available.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def app(scope):
|
|
|
|
async def asgi(receive, send):
|
|
|
|
request = Request(scope)
|
|
|
|
try:
|
|
|
|
data = await request.json()
|
|
|
|
except RuntimeError:
|
|
|
|
data = "Receive channel not available"
|
|
|
|
response = JSONResponse({"json": data})
|
|
|
|
await response(receive, send)
|
|
|
|
|
|
|
|
return asgi
|
|
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
response = client.post("/", json={"a": "123"})
|
|
|
|
assert response.json() == {"json": "Receive channel not available"}
|