0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-26 06:28:20 +02:00
synapse/tests/storage/test_base.py

194 lines
6.3 KiB
Python
Raw Normal View History

2014-08-12 16:10:52 +02:00
# -*- coding: utf-8 -*-
2016-01-07 05:26:29 +01:00
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2014-08-12 16:10:52 +02:00
2018-07-09 08:09:20 +02:00
from collections import OrderedDict
2014-08-12 16:10:52 +02:00
2016-02-19 16:34:38 +01:00
from mock import Mock
2014-08-12 16:10:52 +02:00
2018-07-09 08:09:20 +02:00
from twisted.internet import defer
2014-08-12 16:10:52 +02:00
from synapse.storage._base import SQLBaseStore
2019-12-06 17:02:50 +01:00
from synapse.storage.database import Database
from synapse.storage.engines import create_engine
2014-08-12 16:10:52 +02:00
2018-07-09 08:09:20 +02:00
from tests import unittest
2018-08-28 18:21:05 +02:00
from tests.utils import TestHomeServer
2018-07-09 08:09:20 +02:00
2014-08-12 16:10:52 +02:00
class SQLBaseStoreTestCase(unittest.TestCase):
""" Test the "simple" SQL generating methods in SQLBaseStore. """
def setUp(self):
self.db_pool = Mock(spec=["runInteraction"])
self.mock_txn = Mock()
2015-05-15 11:54:04 +02:00
self.mock_conn = Mock(spec_set=["cursor", "rollback", "commit"])
2015-04-08 17:57:14 +02:00
self.mock_conn.cursor.return_value = self.mock_txn
2015-05-15 11:54:04 +02:00
self.mock_conn.rollback.return_value = None
2014-08-12 16:10:52 +02:00
# Our fake runInteraction just runs synchronously inline
def runInteraction(func, *args, **kwargs):
return defer.succeed(func(self.mock_txn, *args, **kwargs))
2018-08-10 15:54:09 +02:00
2014-08-12 16:10:52 +02:00
self.db_pool.runInteraction = runInteraction
2015-04-08 17:57:14 +02:00
def runWithConnection(func, *args, **kwargs):
return defer.succeed(func(self.mock_conn, *args, **kwargs))
2018-08-10 15:54:09 +02:00
2015-04-08 17:57:14 +02:00
self.db_pool.runWithConnection = runWithConnection
2015-02-11 16:01:15 +01:00
config = Mock()
2019-01-28 16:43:32 +01:00
config._disable_native_upserts = True
config.caches = Mock()
config.caches.event_cache_size = 1
hs = TestHomeServer("test", config=config)
sqlite_config = {"name": "sqlite3"}
engine = create_engine(sqlite_config)
2019-01-28 16:43:32 +01:00
fake_engine = Mock(wraps=engine)
fake_engine.can_native_upsert = False
2014-08-12 16:10:52 +02:00
db = Database(Mock(), Mock(config=sqlite_config), fake_engine)
db._db_pool = self.db_pool
self.datastore = SQLBaseStore(db, None, hs)
2014-08-12 16:10:52 +02:00
@defer.inlineCallbacks
def test_insert_1col(self):
self.mock_txn.rowcount = 1
yield self.datastore.db.simple_insert(
2018-08-10 15:54:09 +02:00
table="tablename", values={"columname": "Value"}
2014-08-12 16:10:52 +02:00
)
self.mock_txn.execute.assert_called_with(
2016-02-19 16:34:38 +01:00
"INSERT INTO tablename (columname) VALUES(?)", ("Value",)
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_insert_3cols(self):
self.mock_txn.rowcount = 1
yield self.datastore.db.simple_insert(
2016-02-19 16:34:38 +01:00
table="tablename",
# Use OrderedDict() so we can assert on the SQL generated
2018-08-10 15:54:09 +02:00
values=OrderedDict([("colA", 1), ("colB", 2), ("colC", 3)]),
2014-08-12 16:10:52 +02:00
)
self.mock_txn.execute.assert_called_with(
2018-08-10 15:54:09 +02:00
"INSERT INTO tablename (colA, colB, colC) VALUES(?, ?, ?)", (1, 2, 3)
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_select_one_1col(self):
self.mock_txn.rowcount = 1
self.mock_txn.__iter__ = Mock(return_value=iter([("Value",)]))
2014-08-12 16:10:52 +02:00
value = yield self.datastore.db.simple_select_one_onecol(
2018-08-10 15:54:09 +02:00
table="tablename", keyvalues={"keycol": "TheKey"}, retcol="retcol"
2014-08-12 16:10:52 +02:00
)
self.assertEquals("Value", value)
self.mock_txn.execute.assert_called_with(
2016-02-19 16:34:38 +01:00
"SELECT retcol FROM tablename WHERE keycol = ?", ["TheKey"]
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_select_one_3col(self):
self.mock_txn.rowcount = 1
self.mock_txn.fetchone.return_value = (1, 2, 3)
ret = yield self.datastore.db.simple_select_one(
2016-02-19 16:34:38 +01:00
table="tablename",
keyvalues={"keycol": "TheKey"},
2018-08-10 15:54:09 +02:00
retcols=["colA", "colB", "colC"],
2014-08-12 16:10:52 +02:00
)
self.assertEquals({"colA": 1, "colB": 2, "colC": 3}, ret)
self.mock_txn.execute.assert_called_with(
2018-08-10 15:54:09 +02:00
"SELECT colA, colB, colC FROM tablename WHERE keycol = ?", ["TheKey"]
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_select_one_missing(self):
self.mock_txn.rowcount = 0
self.mock_txn.fetchone.return_value = None
ret = yield self.datastore.db.simple_select_one(
2016-02-19 16:34:38 +01:00
table="tablename",
keyvalues={"keycol": "Not here"},
retcols=["colA"],
2018-08-10 15:54:09 +02:00
allow_none=True,
2014-08-12 16:10:52 +02:00
)
self.assertFalse(ret)
@defer.inlineCallbacks
def test_select_list(self):
2016-02-19 16:34:38 +01:00
self.mock_txn.rowcount = 3
self.mock_txn.__iter__ = Mock(return_value=iter([(1,), (2,), (3,)]))
2018-08-10 15:54:09 +02:00
self.mock_txn.description = (("colA", None, None, None, None, None, None),)
2014-08-12 16:10:52 +02:00
ret = yield self.datastore.db.simple_select_list(
2018-08-10 15:54:09 +02:00
table="tablename", keyvalues={"keycol": "A set"}, retcols=["colA"]
2014-08-12 16:10:52 +02:00
)
self.assertEquals([{"colA": 1}, {"colA": 2}, {"colA": 3}], ret)
self.mock_txn.execute.assert_called_with(
2018-08-10 15:54:09 +02:00
"SELECT colA FROM tablename WHERE keycol = ?", ["A set"]
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_update_one_1col(self):
self.mock_txn.rowcount = 1
yield self.datastore.db.simple_update_one(
2016-02-19 16:34:38 +01:00
table="tablename",
keyvalues={"keycol": "TheKey"},
2018-08-10 15:54:09 +02:00
updatevalues={"columnname": "New Value"},
2014-08-12 16:10:52 +02:00
)
self.mock_txn.execute.assert_called_with(
2016-02-19 16:34:38 +01:00
"UPDATE tablename SET columnname = ? WHERE keycol = ?",
2018-08-10 15:54:09 +02:00
["New Value", "TheKey"],
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_update_one_4cols(self):
self.mock_txn.rowcount = 1
yield self.datastore.db.simple_update_one(
2016-02-19 16:34:38 +01:00
table="tablename",
keyvalues=OrderedDict([("colA", 1), ("colB", 2)]),
2018-08-10 15:54:09 +02:00
updatevalues=OrderedDict([("colC", 3), ("colD", 4)]),
2014-08-12 16:10:52 +02:00
)
self.mock_txn.execute.assert_called_with(
2018-08-10 15:54:09 +02:00
"UPDATE tablename SET colC = ?, colD = ? WHERE" " colA = ? AND colB = ?",
[3, 4, 1, 2],
2014-08-12 16:10:52 +02:00
)
@defer.inlineCallbacks
def test_delete_one(self):
self.mock_txn.rowcount = 1
yield self.datastore.db.simple_delete_one(
2018-08-10 15:54:09 +02:00
table="tablename", keyvalues={"keycol": "Go away"}
2014-08-12 16:10:52 +02:00
)
self.mock_txn.execute.assert_called_with(
2016-02-19 16:34:38 +01:00
"DELETE FROM tablename WHERE keycol = ?", ["Go away"]
2014-08-12 16:10:52 +02:00
)