mirror of
https://github.com/chatmail/relay.git
synced 2026-05-20 04:48:06 +00:00
Merge pull request #868 from chatmail/hpk/simplify-cooldown
refactor(benchmark): move rate-limit cooldown to benchmark fixture
This commit is contained in:
@@ -48,7 +48,7 @@ class TestDC:
|
|||||||
|
|
||||||
benchmark(dc_ping_pong, 5)
|
benchmark(dc_ping_pong, 5)
|
||||||
|
|
||||||
def test_send_10_receive_10(self, request, cmfactory, chatmail_config, lp):
|
def test_send_10_receive_10(self, benchmark, cmfactory, lp):
|
||||||
ac1, ac2 = cmfactory.get_online_accounts(2)
|
ac1, ac2 = cmfactory.get_online_accounts(2)
|
||||||
chat = cmfactory.get_accepted_chat(ac1, ac2)
|
chat = cmfactory.get_accepted_chat(ac1, ac2)
|
||||||
|
|
||||||
@@ -58,16 +58,4 @@ class TestDC:
|
|||||||
for i in range(10):
|
for i in range(10):
|
||||||
ac2._evtracker.wait_next_incoming_message()
|
ac2._evtracker.wait_next_incoming_message()
|
||||||
|
|
||||||
per_minute = max(chatmail_config.max_user_send_per_minute, 1)
|
benchmark(dc_send_10_receive_10, 5, cooldown="auto")
|
||||||
cooldown = chatmail_config.max_user_send_burst_size * 60 / per_minute
|
|
||||||
durations = []
|
|
||||||
num = 5
|
|
||||||
for i in range(num):
|
|
||||||
now = time.time()
|
|
||||||
dc_send_10_receive_10()
|
|
||||||
durations.append(time.time() - now)
|
|
||||||
if i + 1 < num:
|
|
||||||
# Keep post-run cooldown out of measured benchmark duration.
|
|
||||||
time.sleep(cooldown)
|
|
||||||
durations.sort()
|
|
||||||
request.config._benchresults["dc_send_10_receive_10"] = (None, durations)
|
|
||||||
|
|||||||
@@ -91,10 +91,14 @@ def cm_data(request):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def benchmark(request):
|
def benchmark(request, chatmail_config):
|
||||||
def bench(func, num, name=None, reportfunc=None, cooldown=0.0):
|
def bench(func, num, name=None, reportfunc=None, cooldown=0.0):
|
||||||
if name is None:
|
if name is None:
|
||||||
name = func.__name__
|
name = func.__name__
|
||||||
|
if cooldown == "auto":
|
||||||
|
per_minute = max(chatmail_config.max_user_send_per_minute, 1)
|
||||||
|
cooldown = chatmail_config.max_user_send_burst_size * 60 / per_minute
|
||||||
|
|
||||||
durations = []
|
durations = []
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
now = time.time()
|
now = time.time()
|
||||||
|
|||||||
Reference in New Issue
Block a user