-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Convert Linearizer
tests from inlineCallbacks
to async
#12353
Changes from 8 commits
e0c1444
071618d
45ce571
7842add
4cca457
5bfb04d
ba5839c
632bd38
0e0e25d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Convert `Linearizer` tests from `inlineCallbacks` to async. |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -13,160 +13,208 @@ | |||||
# See the License for the specific language governing permissions and | ||||||
# limitations under the License. | ||||||
|
||||||
from twisted.internet import defer, reactor | ||||||
from twisted.internet.defer import CancelledError | ||||||
from typing import Callable, Hashable, Optional, Tuple | ||||||
|
||||||
from synapse.logging.context import LoggingContext, current_context | ||||||
from synapse.util import Clock | ||||||
from twisted.internet import defer, reactor | ||||||
from twisted.internet.base import ReactorBase | ||||||
from twisted.internet.defer import CancelledError, Deferred | ||||||
|
||||||
from synapse.logging.context import ( | ||||||
LoggingContext, | ||||||
current_context, | ||||||
make_deferred_yieldable, | ||||||
) | ||||||
from synapse.util.async_helpers import Linearizer | ||||||
|
||||||
from tests import unittest | ||||||
|
||||||
|
||||||
class LinearizerTestCase(unittest.TestCase): | ||||||
@defer.inlineCallbacks | ||||||
def test_linearizer(self): | ||||||
def _start_task( | ||||||
self, linearizer: Linearizer, key: Hashable | ||||||
) -> Tuple["Deferred[None]", "Deferred[None]", Callable[[], None]]: | ||||||
"""Starts a task which acquires the linearizer lock, blocks, then completes. | ||||||
|
||||||
Args: | ||||||
linearizer: The `Linearizer`. | ||||||
key: The `Linearizer` key. | ||||||
|
||||||
Returns: | ||||||
A tuple containing: | ||||||
* A cancellable `Deferred` for the entire task. | ||||||
* A `Deferred` that resolves once the task acquires the lock. | ||||||
* A function that unblocks the task. Must be called by the caller | ||||||
to allow the task to release the lock and complete. | ||||||
""" | ||||||
acquired_d: "Deferred[None]" = Deferred() | ||||||
unblock_d: "Deferred[None]" = Deferred() | ||||||
|
||||||
async def task() -> None: | ||||||
with await linearizer.queue(key): | ||||||
acquired_d.callback(None) | ||||||
await unblock_d | ||||||
|
||||||
d = defer.ensureDeferred(task()) | ||||||
|
||||||
def unblock() -> None: | ||||||
unblock_d.callback(None) | ||||||
# The next task, if it exists, will acquire the lock and require a kick of | ||||||
# the reactor to advance. | ||||||
self._pump() | ||||||
|
||||||
return d, acquired_d, unblock | ||||||
|
||||||
def _pump(self) -> None: | ||||||
"""Pump the reactor to advance `Linearizer`s.""" | ||||||
assert isinstance(reactor, ReactorBase) | ||||||
while reactor.getDelayedCalls(): | ||||||
reactor.runUntilCurrent() | ||||||
Comment on lines
+63
to
+67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think |
||||||
|
||||||
def test_linearizer(self) -> None: | ||||||
"""Tests that a task is queued up behind an earlier task.""" | ||||||
linearizer = Linearizer() | ||||||
|
||||||
key = object() | ||||||
|
||||||
d1 = linearizer.queue(key) | ||||||
cm1 = yield d1 | ||||||
_, acquired_d1, unblock1 = self._start_task(linearizer, key) | ||||||
self.assertTrue(acquired_d1.called) | ||||||
|
||||||
_, acquired_d2, unblock2 = self._start_task(linearizer, key) | ||||||
self.assertFalse(acquired_d2.called) | ||||||
|
||||||
d2 = linearizer.queue(key) | ||||||
self.assertFalse(d2.called) | ||||||
# Once the first task is done, the second task can continue. | ||||||
unblock1() | ||||||
self.assertTrue(acquired_d2.called) | ||||||
|
||||||
with cm1: | ||||||
self.assertFalse(d2.called) | ||||||
unblock2() | ||||||
|
||||||
with (yield d2): | ||||||
pass | ||||||
def test_linearizer_is_queued(self) -> None: | ||||||
"""Tests `Linearizer.is_queued`. | ||||||
|
||||||
@defer.inlineCallbacks | ||||||
def test_linearizer_is_queued(self): | ||||||
Runs through the same scenario as `test_linearizer`. | ||||||
""" | ||||||
linearizer = Linearizer() | ||||||
|
||||||
key = object() | ||||||
|
||||||
d1 = linearizer.queue(key) | ||||||
cm1 = yield d1 | ||||||
_, acquired_d1, unblock1 = self._start_task(linearizer, key) | ||||||
self.assertTrue(acquired_d1.called) | ||||||
|
||||||
# Since d1 gets called immediately, "is_queued" should return false. | ||||||
# Since the first task acquires the lock immediately, "is_queued" should return | ||||||
# false. | ||||||
self.assertFalse(linearizer.is_queued(key)) | ||||||
|
||||||
d2 = linearizer.queue(key) | ||||||
self.assertFalse(d2.called) | ||||||
_, acquired_d2, unblock2 = self._start_task(linearizer, key) | ||||||
self.assertFalse(acquired_d2.called) | ||||||
|
||||||
# Now d2 is queued up behind successful completion of cm1 | ||||||
# Now the second task is queued up behind the first. | ||||||
self.assertTrue(linearizer.is_queued(key)) | ||||||
|
||||||
with cm1: | ||||||
self.assertFalse(d2.called) | ||||||
unblock1() | ||||||
|
||||||
# cm1 still not done, so d2 still queued. | ||||||
self.assertTrue(linearizer.is_queued(key)) | ||||||
|
||||||
# And now d2 is called and nothing is in the queue again | ||||||
# And now the second task acquires the lock and nothing is in the queue again. | ||||||
self.assertTrue(acquired_d2.called) | ||||||
self.assertFalse(linearizer.is_queued(key)) | ||||||
|
||||||
with (yield d2): | ||||||
self.assertFalse(linearizer.is_queued(key)) | ||||||
|
||||||
unblock2() | ||||||
self.assertFalse(linearizer.is_queued(key)) | ||||||
|
||||||
def test_lots_of_queued_things(self): | ||||||
# we have one slow thing, and lots of fast things queued up behind it. | ||||||
# it should *not* explode the stack. | ||||||
def test_lots_of_queued_things(self) -> None: | ||||||
"""Tests lots of fast things queued up behind a slow thing. | ||||||
|
||||||
The stack should *not* explode when the slow thing completes. | ||||||
""" | ||||||
linearizer = Linearizer() | ||||||
key = "" | ||||||
|
||||||
@defer.inlineCallbacks | ||||||
def func(i, sleep=False): | ||||||
async def func(i: int, wait_for: Optional["Deferred[None]"] = None) -> None: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is (was?) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's used in the very first call (the "slow thing") There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On -92 I can see Maybe the point is that the slow thing is now:
If so, I still think There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, you're totally right! I was imagining code that used to be there but I refactored into a call to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's gone now! |
||||||
with LoggingContext("func(%s)" % i) as lc: | ||||||
with (yield linearizer.queue("")): | ||||||
with (await linearizer.queue(key)): | ||||||
self.assertEqual(current_context(), lc) | ||||||
if sleep: | ||||||
yield Clock(reactor).sleep(0) | ||||||
if wait_for: | ||||||
await make_deferred_yieldable(wait_for) | ||||||
|
||||||
self.assertEqual(current_context(), lc) | ||||||
|
||||||
func(0, sleep=True) | ||||||
_, _, unblock = self._start_task(linearizer, key) | ||||||
for i in range(1, 100): | ||||||
func(i) | ||||||
defer.ensureDeferred(func(i)) | ||||||
|
||||||
return func(1000) | ||||||
d = defer.ensureDeferred(func(1000)) | ||||||
unblock() | ||||||
self.successResultOf(d) | ||||||
|
||||||
@defer.inlineCallbacks | ||||||
def test_multiple_entries(self): | ||||||
def test_multiple_entries(self) -> None: | ||||||
"""Tests a `Linearizer` with a concurrency above 1.""" | ||||||
limiter = Linearizer(max_count=3) | ||||||
|
||||||
key = object() | ||||||
|
||||||
d1 = limiter.queue(key) | ||||||
cm1 = yield d1 | ||||||
|
||||||
d2 = limiter.queue(key) | ||||||
cm2 = yield d2 | ||||||
|
||||||
d3 = limiter.queue(key) | ||||||
cm3 = yield d3 | ||||||
|
||||||
d4 = limiter.queue(key) | ||||||
self.assertFalse(d4.called) | ||||||
|
||||||
d5 = limiter.queue(key) | ||||||
self.assertFalse(d5.called) | ||||||
_, acquired_d1, unblock1 = self._start_task(limiter, key) | ||||||
self.assertTrue(acquired_d1.called) | ||||||
|
||||||
with cm1: | ||||||
self.assertFalse(d4.called) | ||||||
self.assertFalse(d5.called) | ||||||
_, acquired_d2, unblock2 = self._start_task(limiter, key) | ||||||
self.assertTrue(acquired_d2.called) | ||||||
|
||||||
cm4 = yield d4 | ||||||
self.assertFalse(d5.called) | ||||||
_, acquired_d3, unblock3 = self._start_task(limiter, key) | ||||||
self.assertTrue(acquired_d3.called) | ||||||
|
||||||
with cm3: | ||||||
self.assertFalse(d5.called) | ||||||
# These next two tasks have to wait. | ||||||
_, acquired_d4, unblock4 = self._start_task(limiter, key) | ||||||
self.assertFalse(acquired_d4.called) | ||||||
|
||||||
cm5 = yield d5 | ||||||
_, acquired_d5, unblock5 = self._start_task(limiter, key) | ||||||
self.assertFalse(acquired_d5.called) | ||||||
|
||||||
with cm2: | ||||||
pass | ||||||
# Once the first task completes, the fourth task can continue. | ||||||
unblock1() | ||||||
self.assertTrue(acquired_d4.called) | ||||||
self.assertFalse(acquired_d5.called) | ||||||
|
||||||
with cm4: | ||||||
pass | ||||||
# Once the third task completes, the fifth task can continue. | ||||||
unblock3() | ||||||
self.assertTrue(acquired_d5.called) | ||||||
|
||||||
with cm5: | ||||||
pass | ||||||
# Make all tasks finish. | ||||||
unblock2() | ||||||
unblock4() | ||||||
unblock5() | ||||||
|
||||||
d6 = limiter.queue(key) | ||||||
with (yield d6): | ||||||
pass | ||||||
# The next task shouldn't have to wait. | ||||||
_, acquired_d6, unblock6 = self._start_task(limiter, key) | ||||||
self.assertTrue(acquired_d6) | ||||||
unblock6() | ||||||
|
||||||
@defer.inlineCallbacks | ||||||
def test_cancellation(self): | ||||||
def test_cancellation(self) -> None: | ||||||
"""Tests cancellation while waiting for a `Linearizer`.""" | ||||||
linearizer = Linearizer() | ||||||
|
||||||
key = object() | ||||||
|
||||||
d1 = linearizer.queue(key) | ||||||
cm1 = yield d1 | ||||||
d1, acquired_d1, unblock1 = self._start_task(linearizer, key) | ||||||
self.assertTrue(acquired_d1.called) | ||||||
|
||||||
d2 = linearizer.queue(key) | ||||||
self.assertFalse(d2.called) | ||||||
# Create a second task, waiting for the first task. | ||||||
d2, acquired_d2, _ = self._start_task(linearizer, key) | ||||||
self.assertFalse(acquired_d2.called) | ||||||
|
||||||
d3 = linearizer.queue(key) | ||||||
self.assertFalse(d3.called) | ||||||
# Create a third task, waiting for the second task. | ||||||
d3, acquired_d3, unblock3 = self._start_task(linearizer, key) | ||||||
self.assertFalse(acquired_d3.called) | ||||||
|
||||||
# Cancel the waiting second task. | ||||||
d2.cancel() | ||||||
|
||||||
with cm1: | ||||||
pass | ||||||
unblock1() | ||||||
self.successResultOf(d1) | ||||||
|
||||||
self.assertTrue(d2.called) | ||||||
try: | ||||||
yield d2 | ||||||
self.fail("Expected d2 to raise CancelledError") | ||||||
except CancelledError: | ||||||
pass | ||||||
|
||||||
with (yield d3): | ||||||
pass | ||||||
self.failureResultOf(d2, CancelledError) | ||||||
|
||||||
# The third task should continue running. | ||||||
self.assertTrue( | ||||||
acquired_d3.called, | ||||||
"Third task did not get the lock after the second task was cancelled", | ||||||
) | ||||||
unblock3() | ||||||
self.successResultOf(d3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unlike the previous code, we enter the context manager immediately once
linearizer.queue()
resolves.So
turns into
And the asserts that were once inside the context manager often become duplicates and are removed.