2014-09-02 10:06:20 -04:00
|
|
|
from synapse.api.ratelimiting import Ratelimiter
|
|
|
|
|
2014-09-12 13:24:53 -04:00
|
|
|
from tests import unittest
|
2014-09-02 10:06:20 -04:00
|
|
|
|
2016-02-19 10:34:38 -05:00
|
|
|
|
2014-09-02 10:06:20 -04:00
|
|
|
class TestRatelimiter(unittest.TestCase):
|
|
|
|
def test_allowed(self):
|
|
|
|
limiter = Ratelimiter()
|
2019-03-05 09:25:33 -05:00
|
|
|
allowed, time_allowed = limiter.can_do_action(
|
|
|
|
key="test_id", time_now_s=0, rate_hz=0.1, burst_count=1
|
2014-09-02 10:06:20 -04:00
|
|
|
)
|
|
|
|
self.assertTrue(allowed)
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assertEquals(10.0, time_allowed)
|
2014-09-02 10:06:20 -04:00
|
|
|
|
2019-03-05 09:25:33 -05:00
|
|
|
allowed, time_allowed = limiter.can_do_action(
|
|
|
|
key="test_id", time_now_s=5, rate_hz=0.1, burst_count=1
|
2014-09-02 10:06:20 -04:00
|
|
|
)
|
|
|
|
self.assertFalse(allowed)
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assertEquals(10.0, time_allowed)
|
2014-09-02 10:06:20 -04:00
|
|
|
|
2019-03-05 09:25:33 -05:00
|
|
|
allowed, time_allowed = limiter.can_do_action(
|
|
|
|
key="test_id", time_now_s=10, rate_hz=0.1, burst_count=1
|
2014-09-02 10:06:20 -04:00
|
|
|
)
|
|
|
|
self.assertTrue(allowed)
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assertEquals(20.0, time_allowed)
|
2014-09-02 10:06:20 -04:00
|
|
|
|
|
|
|
def test_pruning(self):
|
|
|
|
limiter = Ratelimiter()
|
2019-03-05 09:25:33 -05:00
|
|
|
allowed, time_allowed = limiter.can_do_action(
|
|
|
|
key="test_id_1", time_now_s=0, rate_hz=0.1, burst_count=1
|
2014-09-02 10:06:20 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIn("test_id_1", limiter.message_counts)
|
|
|
|
|
2019-03-05 09:25:33 -05:00
|
|
|
allowed, time_allowed = limiter.can_do_action(
|
|
|
|
key="test_id_2", time_now_s=10, rate_hz=0.1, burst_count=1
|
2014-09-02 10:06:20 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
self.assertNotIn("test_id_1", limiter.message_counts)
|