2021-02-16 11:27:38 -05:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2021-02-16 11:27:38 -05:00
|
|
|
#
|
|
|
|
#
|
2022-11-22 17:35:54 -05:00
|
|
|
from typing import NoReturn
|
2021-02-16 11:27:38 -05:00
|
|
|
from unittest.mock import Mock
|
|
|
|
|
|
|
|
from twisted.internet import defer
|
|
|
|
from twisted.internet.defer import Deferred
|
|
|
|
|
|
|
|
from synapse.util.caches.cached_call import CachedCall, RetryOnExceptionCachedCall
|
|
|
|
|
|
|
|
from tests.test_utils import get_awaitable_result
|
|
|
|
from tests.unittest import TestCase
|
|
|
|
|
|
|
|
|
|
|
|
class CachedCallTestCase(TestCase):
|
2022-11-22 17:35:54 -05:00
|
|
|
def test_get(self) -> None:
|
2021-02-16 11:27:38 -05:00
|
|
|
"""
|
|
|
|
Happy-path test case: makes a couple of calls and makes sure they behave
|
|
|
|
correctly
|
|
|
|
"""
|
2022-11-22 17:35:54 -05:00
|
|
|
d: "Deferred[int]" = Deferred()
|
2021-02-16 11:27:38 -05:00
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
async def f() -> int:
|
2021-02-16 11:27:38 -05:00
|
|
|
return await d
|
|
|
|
|
|
|
|
slow_call = Mock(side_effect=f)
|
|
|
|
|
|
|
|
cached_call = CachedCall(slow_call)
|
|
|
|
|
|
|
|
# the mock should not yet have been called
|
|
|
|
slow_call.assert_not_called()
|
|
|
|
|
|
|
|
# now fire off a couple of calls
|
|
|
|
completed_results = []
|
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
async def r() -> None:
|
2021-02-16 11:27:38 -05:00
|
|
|
res = await cached_call.get()
|
|
|
|
completed_results.append(res)
|
|
|
|
|
|
|
|
r1 = defer.ensureDeferred(r())
|
|
|
|
r2 = defer.ensureDeferred(r())
|
|
|
|
|
|
|
|
# neither result should be complete yet
|
|
|
|
self.assertNoResult(r1)
|
|
|
|
self.assertNoResult(r2)
|
|
|
|
|
|
|
|
# and the mock should have been called *once*, with no params
|
|
|
|
slow_call.assert_called_once_with()
|
|
|
|
|
|
|
|
# allow the deferred to complete, which should complete both the pending results
|
|
|
|
d.callback(123)
|
|
|
|
self.assertEqual(completed_results, [123, 123])
|
|
|
|
self.successResultOf(r1)
|
|
|
|
self.successResultOf(r2)
|
|
|
|
|
|
|
|
# another call to the getter should complete immediately
|
|
|
|
slow_call.reset_mock()
|
|
|
|
r3 = get_awaitable_result(cached_call.get())
|
|
|
|
self.assertEqual(r3, 123)
|
|
|
|
slow_call.assert_not_called()
|
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
def test_fast_call(self) -> None:
|
2021-02-16 11:27:38 -05:00
|
|
|
"""
|
|
|
|
Test the behaviour when the underlying function completes immediately
|
|
|
|
"""
|
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
async def f() -> int:
|
2021-02-16 11:27:38 -05:00
|
|
|
return 12
|
|
|
|
|
|
|
|
fast_call = Mock(side_effect=f)
|
|
|
|
cached_call = CachedCall(fast_call)
|
|
|
|
|
|
|
|
# the mock should not yet have been called
|
|
|
|
fast_call.assert_not_called()
|
|
|
|
|
|
|
|
# run the call a couple of times, which should complete immediately
|
|
|
|
self.assertEqual(get_awaitable_result(cached_call.get()), 12)
|
|
|
|
self.assertEqual(get_awaitable_result(cached_call.get()), 12)
|
|
|
|
|
|
|
|
# the mock should have been called once
|
|
|
|
fast_call.assert_called_once_with()
|
|
|
|
|
|
|
|
|
|
|
|
class RetryOnExceptionCachedCallTestCase(TestCase):
|
2022-11-22 17:35:54 -05:00
|
|
|
def test_get(self) -> None:
|
2021-02-16 11:27:38 -05:00
|
|
|
# set up the RetryOnExceptionCachedCall around a function which will fail
|
|
|
|
# (after a while)
|
2022-11-22 17:35:54 -05:00
|
|
|
d: "Deferred[int]" = Deferred()
|
2021-02-16 11:27:38 -05:00
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
async def f1() -> NoReturn:
|
2021-02-16 11:27:38 -05:00
|
|
|
await d
|
|
|
|
raise ValueError("moo")
|
|
|
|
|
|
|
|
slow_call = Mock(side_effect=f1)
|
|
|
|
cached_call = RetryOnExceptionCachedCall(slow_call)
|
|
|
|
|
|
|
|
# the mock should not yet have been called
|
|
|
|
slow_call.assert_not_called()
|
|
|
|
|
|
|
|
# now fire off a couple of calls
|
|
|
|
completed_results = []
|
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
async def r() -> None:
|
2021-02-16 11:27:38 -05:00
|
|
|
try:
|
|
|
|
await cached_call.get()
|
|
|
|
except Exception as e1:
|
|
|
|
completed_results.append(e1)
|
|
|
|
|
|
|
|
r1 = defer.ensureDeferred(r())
|
|
|
|
r2 = defer.ensureDeferred(r())
|
|
|
|
|
|
|
|
# neither result should be complete yet
|
|
|
|
self.assertNoResult(r1)
|
|
|
|
self.assertNoResult(r2)
|
|
|
|
|
|
|
|
# and the mock should have been called *once*, with no params
|
|
|
|
slow_call.assert_called_once_with()
|
|
|
|
|
|
|
|
# complete the deferred, which should make the pending calls fail
|
|
|
|
d.callback(0)
|
|
|
|
self.assertEqual(len(completed_results), 2)
|
|
|
|
for e in completed_results:
|
|
|
|
self.assertIsInstance(e, ValueError)
|
|
|
|
self.assertEqual(e.args, ("moo",))
|
|
|
|
|
|
|
|
# reset the mock to return a successful result, and make another pair of calls
|
|
|
|
# to the getter
|
|
|
|
d = Deferred()
|
|
|
|
|
2022-11-22 17:35:54 -05:00
|
|
|
async def f2() -> int:
|
2021-02-16 11:27:38 -05:00
|
|
|
return await d
|
|
|
|
|
|
|
|
slow_call.reset_mock()
|
|
|
|
slow_call.side_effect = f2
|
|
|
|
r3 = defer.ensureDeferred(cached_call.get())
|
|
|
|
r4 = defer.ensureDeferred(cached_call.get())
|
|
|
|
|
|
|
|
self.assertNoResult(r3)
|
|
|
|
self.assertNoResult(r4)
|
|
|
|
slow_call.assert_called_once_with()
|
|
|
|
|
|
|
|
# let that call complete, and check the results
|
|
|
|
d.callback(123)
|
|
|
|
self.assertEqual(self.successResultOf(r3), 123)
|
|
|
|
self.assertEqual(self.successResultOf(r4), 123)
|
|
|
|
|
|
|
|
# and now more calls to the getter should complete immediately
|
|
|
|
slow_call.reset_mock()
|
|
|
|
self.assertEqual(get_awaitable_result(cached_call.get()), 123)
|
|
|
|
slow_call.assert_not_called()
|