test_base.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2016 OpenMarket Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. from collections import OrderedDict
  16. from mock import Mock
  17. from twisted.internet import defer
  18. from synapse.storage._base import SQLBaseStore
  19. from synapse.storage.engines import create_engine
  20. from tests import unittest
  21. from tests.utils import TestHomeServer
  22. class SQLBaseStoreTestCase(unittest.TestCase):
  23. """ Test the "simple" SQL generating methods in SQLBaseStore. """
  24. def setUp(self):
  25. self.db_pool = Mock(spec=["runInteraction"])
  26. self.mock_txn = Mock()
  27. self.mock_conn = Mock(spec_set=["cursor", "rollback", "commit"])
  28. self.mock_conn.cursor.return_value = self.mock_txn
  29. self.mock_conn.rollback.return_value = None
  30. # Our fake runInteraction just runs synchronously inline
  31. def runInteraction(func, *args, **kwargs):
  32. return defer.succeed(func(self.mock_txn, *args, **kwargs))
  33. self.db_pool.runInteraction = runInteraction
  34. def runWithConnection(func, *args, **kwargs):
  35. return defer.succeed(func(self.mock_conn, *args, **kwargs))
  36. self.db_pool.runWithConnection = runWithConnection
  37. config = Mock()
  38. config._disable_native_upserts = True
  39. config.event_cache_size = 1
  40. config.database_config = {"name": "sqlite3"}
  41. engine = create_engine(config.database_config)
  42. fake_engine = Mock(wraps=engine)
  43. fake_engine.can_native_upsert = False
  44. hs = TestHomeServer(
  45. "test", db_pool=self.db_pool, config=config, database_engine=fake_engine
  46. )
  47. self.datastore = SQLBaseStore(None, hs)
  48. @defer.inlineCallbacks
  49. def test_insert_1col(self):
  50. self.mock_txn.rowcount = 1
  51. yield self.datastore._simple_insert(
  52. table="tablename", values={"columname": "Value"}
  53. )
  54. self.mock_txn.execute.assert_called_with(
  55. "INSERT INTO tablename (columname) VALUES(?)", ("Value",)
  56. )
  57. @defer.inlineCallbacks
  58. def test_insert_3cols(self):
  59. self.mock_txn.rowcount = 1
  60. yield self.datastore._simple_insert(
  61. table="tablename",
  62. # Use OrderedDict() so we can assert on the SQL generated
  63. values=OrderedDict([("colA", 1), ("colB", 2), ("colC", 3)]),
  64. )
  65. self.mock_txn.execute.assert_called_with(
  66. "INSERT INTO tablename (colA, colB, colC) VALUES(?, ?, ?)", (1, 2, 3)
  67. )
  68. @defer.inlineCallbacks
  69. def test_select_one_1col(self):
  70. self.mock_txn.rowcount = 1
  71. self.mock_txn.__iter__ = Mock(return_value=iter([("Value",)]))
  72. value = yield self.datastore._simple_select_one_onecol(
  73. table="tablename", keyvalues={"keycol": "TheKey"}, retcol="retcol"
  74. )
  75. self.assertEquals("Value", value)
  76. self.mock_txn.execute.assert_called_with(
  77. "SELECT retcol FROM tablename WHERE keycol = ?", ["TheKey"]
  78. )
  79. @defer.inlineCallbacks
  80. def test_select_one_3col(self):
  81. self.mock_txn.rowcount = 1
  82. self.mock_txn.fetchone.return_value = (1, 2, 3)
  83. ret = yield self.datastore._simple_select_one(
  84. table="tablename",
  85. keyvalues={"keycol": "TheKey"},
  86. retcols=["colA", "colB", "colC"],
  87. )
  88. self.assertEquals({"colA": 1, "colB": 2, "colC": 3}, ret)
  89. self.mock_txn.execute.assert_called_with(
  90. "SELECT colA, colB, colC FROM tablename WHERE keycol = ?", ["TheKey"]
  91. )
  92. @defer.inlineCallbacks
  93. def test_select_one_missing(self):
  94. self.mock_txn.rowcount = 0
  95. self.mock_txn.fetchone.return_value = None
  96. ret = yield self.datastore._simple_select_one(
  97. table="tablename",
  98. keyvalues={"keycol": "Not here"},
  99. retcols=["colA"],
  100. allow_none=True,
  101. )
  102. self.assertFalse(ret)
  103. @defer.inlineCallbacks
  104. def test_select_list(self):
  105. self.mock_txn.rowcount = 3
  106. self.mock_txn.__iter__ = Mock(return_value=iter([(1,), (2,), (3,)]))
  107. self.mock_txn.description = (("colA", None, None, None, None, None, None),)
  108. ret = yield self.datastore._simple_select_list(
  109. table="tablename", keyvalues={"keycol": "A set"}, retcols=["colA"]
  110. )
  111. self.assertEquals([{"colA": 1}, {"colA": 2}, {"colA": 3}], ret)
  112. self.mock_txn.execute.assert_called_with(
  113. "SELECT colA FROM tablename WHERE keycol = ?", ["A set"]
  114. )
  115. @defer.inlineCallbacks
  116. def test_update_one_1col(self):
  117. self.mock_txn.rowcount = 1
  118. yield self.datastore._simple_update_one(
  119. table="tablename",
  120. keyvalues={"keycol": "TheKey"},
  121. updatevalues={"columnname": "New Value"},
  122. )
  123. self.mock_txn.execute.assert_called_with(
  124. "UPDATE tablename SET columnname = ? WHERE keycol = ?",
  125. ["New Value", "TheKey"],
  126. )
  127. @defer.inlineCallbacks
  128. def test_update_one_4cols(self):
  129. self.mock_txn.rowcount = 1
  130. yield self.datastore._simple_update_one(
  131. table="tablename",
  132. keyvalues=OrderedDict([("colA", 1), ("colB", 2)]),
  133. updatevalues=OrderedDict([("colC", 3), ("colD", 4)]),
  134. )
  135. self.mock_txn.execute.assert_called_with(
  136. "UPDATE tablename SET colC = ?, colD = ? WHERE" " colA = ? AND colB = ?",
  137. [3, 4, 1, 2],
  138. )
  139. @defer.inlineCallbacks
  140. def test_delete_one(self):
  141. self.mock_txn.rowcount = 1
  142. yield self.datastore._simple_delete_one(
  143. table="tablename", keyvalues={"keycol": "Go away"}
  144. )
  145. self.mock_txn.execute.assert_called_with(
  146. "DELETE FROM tablename WHERE keycol = ?", ["Go away"]
  147. )