-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
from unittest.mock import Mock | ||
from uuid import UUID, uuid4 | ||
|
||
import pytest | ||
|
||
from sanic import Sanic, response | ||
from sanic.request import Request, uuid | ||
|
||
|
||
def test_no_request_id_not_called(monkeypatch): | ||
monkeypatch.setattr(uuid, "uuid4", Mock()) | ||
request = Request(b"/", {}, None, "GET", None, None) | ||
|
||
assert request._id is None | ||
uuid.uuid4.assert_not_called() | ||
|
||
|
||
def test_request_id_generates_from_request(monkeypatch): | ||
monkeypatch.setattr(Request, "generate_id", Mock()) | ||
Request.generate_id.return_value = 1 | ||
request = Request(b"/", {}, None, "GET", None, Mock()) | ||
|
||
for _ in range(10): | ||
request.id | ||
Request.generate_id.assert_called_once_with(request) | ||
|
||
|
||
def test_request_id_defaults_uuid(): | ||
request = Request(b"/", {}, None, "GET", None, Mock()) | ||
|
||
assert isinstance(request.id, UUID) | ||
|
||
# Makes sure that it has been cached and not called multiple times | ||
assert request.id == request.id == request._id | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"request_id,expected_type", | ||
( | ||
(99, int), | ||
(uuid4(), UUID), | ||
("foo", str), | ||
), | ||
) | ||
def test_request_id(request_id, expected_type): | ||
app = Sanic("req-generator") | ||
|
||
@app.get("/") | ||
async def get(request): | ||
return response.empty() | ||
|
||
request, _ = app.test_client.get( | ||
"/", headers={"X-REQUEST-ID": f"{request_id}"} | ||
) | ||
assert request.id == request_id | ||
assert type(request.id) == expected_type | ||
|
||
|
||
def test_custom_generator(): | ||
REQUEST_ID = 99 | ||
|
||
class FooRequest(Request): | ||
@classmethod | ||
def generate_id(cls, request): | ||
return int(request.headers["some-other-request-id"]) * 2 | ||
|
||
app = Sanic("req-generator", request_class=FooRequest) | ||
|
||
@app.get("/") | ||
async def get(request): | ||
return response.empty() | ||
|
||
request, _ = app.test_client.get( | ||
"/", headers={"SOME-OTHER-REQUEST-ID": f"{REQUEST_ID}"} | ||
) | ||
assert request.id == REQUEST_ID * 2 |