2020-04-07 18:06:39 -04: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 2020 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]
|
2020-04-07 18:06:39 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2023-11-16 11:48:48 -05:00
|
|
|
from typing import Callable, Tuple
|
2022-03-15 11:40:34 -04:00
|
|
|
from unittest.mock import Mock, call
|
|
|
|
|
2022-03-16 11:07:41 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
from twisted.internet.defer import CancelledError, Deferred
|
2022-03-15 11:40:34 -04:00
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
|
|
|
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.storage.database import (
|
|
|
|
DatabasePool,
|
2023-01-31 06:03:55 -05:00
|
|
|
LoggingDatabaseConnection,
|
2022-03-15 11:40:34 -04:00
|
|
|
LoggingTransaction,
|
|
|
|
make_tuple_comparison_clause,
|
|
|
|
)
|
|
|
|
from synapse.util import Clock
|
2020-04-07 18:06:39 -04:00
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class TupleComparisonClauseTestCase(unittest.TestCase):
|
2022-12-09 12:36:32 -05:00
|
|
|
def test_native_tuple_comparison(self) -> None:
|
2021-04-08 13:29:57 -04:00
|
|
|
clause, args = make_tuple_comparison_clause([("a", 1), ("b", 2)])
|
2020-04-07 18:06:39 -04:00
|
|
|
self.assertEqual(clause, "(a,b) > (?,?)")
|
|
|
|
self.assertEqual(args, [1, 2])
|
2022-03-15 11:40:34 -04:00
|
|
|
|
|
|
|
|
2023-01-31 06:03:55 -05:00
|
|
|
class ExecuteScriptTestCase(unittest.HomeserverTestCase):
|
|
|
|
"""Tests for `BaseDatabaseEngine.executescript` implementations."""
|
|
|
|
|
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
|
|
|
self.store = hs.get_datastores().main
|
|
|
|
self.db_pool: DatabasePool = self.store.db_pool
|
|
|
|
self.get_success(
|
|
|
|
self.db_pool.runInteraction(
|
|
|
|
"create",
|
|
|
|
lambda txn: txn.execute("CREATE TABLE foo (name TEXT PRIMARY KEY)"),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_transaction(self) -> None:
|
|
|
|
"""Test that all statements are run in a single transaction."""
|
|
|
|
|
|
|
|
def run(conn: LoggingDatabaseConnection) -> None:
|
|
|
|
cur = conn.cursor(txn_name="test_transaction")
|
|
|
|
self.db_pool.engine.executescript(
|
|
|
|
cur,
|
|
|
|
";".join(
|
|
|
|
[
|
|
|
|
"INSERT INTO foo (name) VALUES ('transaction test')",
|
|
|
|
# This next statement will fail. When `executescript` is not
|
|
|
|
# transactional, the previous row will be observed later.
|
|
|
|
"INSERT INTO foo (name) VALUES ('transaction test')",
|
|
|
|
]
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
self.get_failure(
|
|
|
|
self.db_pool.runWithConnection(run),
|
|
|
|
self.db_pool.engine.module.IntegrityError,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIsNone(
|
|
|
|
self.get_success(
|
|
|
|
self.db_pool.simple_select_one_onecol(
|
|
|
|
"foo",
|
|
|
|
keyvalues={"name": "transaction test"},
|
|
|
|
retcol="name",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
"executescript is not running statements inside a transaction",
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_commit(self) -> None:
|
|
|
|
"""Test that the script transaction remains open and can be committed."""
|
|
|
|
|
|
|
|
def run(conn: LoggingDatabaseConnection) -> None:
|
|
|
|
cur = conn.cursor(txn_name="test_commit")
|
|
|
|
self.db_pool.engine.executescript(
|
|
|
|
cur, "INSERT INTO foo (name) VALUES ('commit test')"
|
|
|
|
)
|
|
|
|
cur.execute("COMMIT")
|
|
|
|
|
|
|
|
self.get_success(self.db_pool.runWithConnection(run))
|
|
|
|
|
|
|
|
self.assertIsNotNone(
|
|
|
|
self.get_success(
|
|
|
|
self.db_pool.simple_select_one_onecol(
|
|
|
|
"foo",
|
|
|
|
keyvalues={"name": "commit test"},
|
|
|
|
retcol="name",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_rollback(self) -> None:
|
|
|
|
"""Test that the script transaction remains open and can be rolled back."""
|
|
|
|
|
|
|
|
def run(conn: LoggingDatabaseConnection) -> None:
|
|
|
|
cur = conn.cursor(txn_name="test_rollback")
|
|
|
|
self.db_pool.engine.executescript(
|
|
|
|
cur, "INSERT INTO foo (name) VALUES ('rollback test')"
|
|
|
|
)
|
|
|
|
cur.execute("ROLLBACK")
|
|
|
|
|
|
|
|
self.get_success(self.db_pool.runWithConnection(run))
|
|
|
|
|
|
|
|
self.assertIsNone(
|
|
|
|
self.get_success(
|
|
|
|
self.db_pool.simple_select_one_onecol(
|
|
|
|
"foo",
|
|
|
|
keyvalues={"name": "rollback test"},
|
|
|
|
retcol="name",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
"executescript is not leaving the script transaction open",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-03-15 11:40:34 -04:00
|
|
|
class CallbacksTestCase(unittest.HomeserverTestCase):
|
|
|
|
"""Tests for transaction callbacks."""
|
|
|
|
|
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
|
|
|
self.store = hs.get_datastores().main
|
|
|
|
self.db_pool: DatabasePool = self.store.db_pool
|
|
|
|
|
|
|
|
def _run_interaction(
|
|
|
|
self, func: Callable[[LoggingTransaction], object]
|
|
|
|
) -> Tuple[Mock, Mock]:
|
|
|
|
"""Run the given function in a database transaction, with callbacks registered.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
func: The function to be run in a transaction. The transaction will be
|
|
|
|
retried if `func` raises an `OperationalError`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Two mocks, which were registered as an `after_callback` and an
|
|
|
|
`exception_callback` respectively, on every transaction attempt.
|
|
|
|
"""
|
|
|
|
after_callback = Mock()
|
|
|
|
exception_callback = Mock()
|
|
|
|
|
|
|
|
def _test_txn(txn: LoggingTransaction) -> None:
|
|
|
|
txn.call_after(after_callback, 123, 456, extra=789)
|
|
|
|
txn.call_on_exception(exception_callback, 987, 654, extra=321)
|
|
|
|
func(txn)
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.get_success_or_raise(
|
|
|
|
self.db_pool.runInteraction("test_transaction", _test_txn)
|
|
|
|
)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return after_callback, exception_callback
|
|
|
|
|
|
|
|
def test_after_callback(self) -> None:
|
|
|
|
"""Test that the after callback is called when a transaction succeeds."""
|
|
|
|
after_callback, exception_callback = self._run_interaction(lambda txn: None)
|
|
|
|
|
|
|
|
after_callback.assert_called_once_with(123, 456, extra=789)
|
|
|
|
exception_callback.assert_not_called()
|
|
|
|
|
|
|
|
def test_exception_callback(self) -> None:
|
|
|
|
"""Test that the exception callback is called when a transaction fails."""
|
|
|
|
_test_txn = Mock(side_effect=ZeroDivisionError)
|
|
|
|
after_callback, exception_callback = self._run_interaction(_test_txn)
|
|
|
|
|
|
|
|
after_callback.assert_not_called()
|
|
|
|
exception_callback.assert_called_once_with(987, 654, extra=321)
|
|
|
|
|
|
|
|
def test_failed_retry(self) -> None:
|
|
|
|
"""Test that the exception callback is called for every failed attempt."""
|
|
|
|
# Always raise an `OperationalError`.
|
|
|
|
_test_txn = Mock(side_effect=self.db_pool.engine.module.OperationalError)
|
|
|
|
after_callback, exception_callback = self._run_interaction(_test_txn)
|
|
|
|
|
|
|
|
after_callback.assert_not_called()
|
|
|
|
exception_callback.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertEqual(exception_callback.call_count, 6) # no additional calls
|
|
|
|
|
|
|
|
def test_successful_retry(self) -> None:
|
|
|
|
"""Test callbacks for a failed transaction followed by a successful attempt."""
|
|
|
|
# Raise an `OperationalError` on the first attempt only.
|
|
|
|
_test_txn = Mock(
|
|
|
|
side_effect=[self.db_pool.engine.module.OperationalError, None]
|
|
|
|
)
|
|
|
|
after_callback, exception_callback = self._run_interaction(_test_txn)
|
|
|
|
|
|
|
|
# Calling both `after_callback`s when the first attempt failed is rather
|
2023-11-15 08:02:11 -05:00
|
|
|
# surprising (https://github.com/matrix-org/synapse/issues/12184).
|
|
|
|
# Let's document the behaviour in a test.
|
2022-03-15 11:40:34 -04:00
|
|
|
after_callback.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(123, 456, extra=789),
|
|
|
|
call(123, 456, extra=789),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertEqual(after_callback.call_count, 2) # no additional calls
|
|
|
|
exception_callback.assert_not_called()
|
2022-03-16 11:07:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
class CancellationTestCase(unittest.HomeserverTestCase):
|
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
|
|
|
self.store = hs.get_datastores().main
|
|
|
|
self.db_pool: DatabasePool = self.store.db_pool
|
|
|
|
|
|
|
|
def test_after_callback(self) -> None:
|
|
|
|
"""Test that the after callback is called when a transaction succeeds."""
|
|
|
|
d: "Deferred[None]"
|
|
|
|
after_callback = Mock()
|
|
|
|
exception_callback = Mock()
|
|
|
|
|
|
|
|
def _test_txn(txn: LoggingTransaction) -> None:
|
|
|
|
txn.call_after(after_callback, 123, 456, extra=789)
|
|
|
|
txn.call_on_exception(exception_callback, 987, 654, extra=321)
|
|
|
|
d.cancel()
|
|
|
|
|
|
|
|
d = defer.ensureDeferred(
|
|
|
|
self.db_pool.runInteraction("test_transaction", _test_txn)
|
|
|
|
)
|
|
|
|
self.get_failure(d, CancelledError)
|
|
|
|
|
|
|
|
after_callback.assert_called_once_with(123, 456, extra=789)
|
|
|
|
exception_callback.assert_not_called()
|
|
|
|
|
|
|
|
def test_exception_callback(self) -> None:
|
|
|
|
"""Test that the exception callback is called when a transaction fails."""
|
|
|
|
d: "Deferred[None]"
|
|
|
|
after_callback = Mock()
|
|
|
|
exception_callback = Mock()
|
|
|
|
|
|
|
|
def _test_txn(txn: LoggingTransaction) -> None:
|
|
|
|
txn.call_after(after_callback, 123, 456, extra=789)
|
|
|
|
txn.call_on_exception(exception_callback, 987, 654, extra=321)
|
|
|
|
d.cancel()
|
|
|
|
# Simulate a retryable failure on every attempt.
|
|
|
|
raise self.db_pool.engine.module.OperationalError()
|
|
|
|
|
|
|
|
d = defer.ensureDeferred(
|
|
|
|
self.db_pool.runInteraction("test_transaction", _test_txn)
|
|
|
|
)
|
|
|
|
self.get_failure(d, CancelledError)
|
|
|
|
|
|
|
|
after_callback.assert_not_called()
|
|
|
|
exception_callback.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
call(987, 654, extra=321),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertEqual(exception_callback.call_count, 6) # no additional calls
|