1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
"""Benchmark for sending packets."""
from __future__ import annotations
import pytest
pytest_codspeed = pytest.importorskip("pytest_codspeed")
from pytest_codspeed import BenchmarkFixture
from zeroconf.asyncio import AsyncZeroconf
from .helpers import generate_packets
@pytest.mark.asyncio
async def test_sending_packets(benchmark: BenchmarkFixture) -> None:
"""Benchmark sending packets."""
aiozc = AsyncZeroconf(interfaces=["127.0.0.1"])
await aiozc.zeroconf.async_wait_for_start()
out = generate_packets()
@benchmark
def _send_packets() -> None:
aiozc.zeroconf.async_send(out)
await aiozc.async_close()
|