-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PR #9940/9ca1a581 backport][3.11] Add benchmarks for creating web re…
…sponses (#9942) Co-authored-by: J. Nick Koston <[email protected]>
- Loading branch information
1 parent
9c81667
commit 6cf4497
Showing
1 changed file
with
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
"""codspeed benchmarks for the web responses.""" | ||
|
||
from pytest_codspeed import BenchmarkFixture | ||
|
||
from aiohttp import web | ||
|
||
|
||
def test_simple_web_response(benchmark: BenchmarkFixture) -> None: | ||
"""Benchmark creating 100 simple web.Response.""" | ||
response_count = 100 | ||
|
||
@benchmark | ||
def _run() -> None: | ||
for _ in range(response_count): | ||
web.Response() | ||
|
||
|
||
def test_web_response_with_headers(benchmark: BenchmarkFixture) -> None: | ||
"""Benchmark creating 100 web.Response with headers.""" | ||
response_count = 100 | ||
headers = { | ||
"Content-Type": "text/plain", | ||
"Server": "aiohttp", | ||
"Date": "Sun, 01 Aug 2021 12:00:00 GMT", | ||
} | ||
|
||
@benchmark | ||
def _run() -> None: | ||
for _ in range(response_count): | ||
web.Response(headers=headers) | ||
|
||
|
||
def test_web_response_with_bytes_body( | ||
benchmark: BenchmarkFixture, | ||
) -> None: | ||
"""Benchmark creating 100 web.Response with bytes.""" | ||
response_count = 100 | ||
|
||
@benchmark | ||
def _run() -> None: | ||
for _ in range(response_count): | ||
web.Response(body=b"Hello, World!") | ||
|
||
|
||
def test_web_response_with_text_body(benchmark: BenchmarkFixture) -> None: | ||
"""Benchmark creating 100 web.Response with text.""" | ||
response_count = 100 | ||
|
||
@benchmark | ||
def _run() -> None: | ||
for _ in range(response_count): | ||
web.Response(text="Hello, World!") | ||
|
||
|
||
def test_simple_web_stream_response(benchmark: BenchmarkFixture) -> None: | ||
"""Benchmark creating 100 simple web.StreamResponse.""" | ||
response_count = 100 | ||
|
||
@benchmark | ||
def _run() -> None: | ||
for _ in range(response_count): | ||
web.StreamResponse() |