Skip to content

Commit

Permalink
[PR #9940/9ca1a581 backport][3.11] Add benchmarks for creating web re…
Browse files Browse the repository at this point in the history
…sponses (#9942)

Co-authored-by: J. Nick Koston <[email protected]>
  • Loading branch information
patchback[bot] and bdraco authored Nov 17, 2024
1 parent 9c81667 commit 6cf4497
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions tests/test_benchmarks_web_response.py
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()

0 comments on commit 6cf4497

Please sign in to comment.