test_base.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 tests import unittest
  16. from twisted.internet import defer
  17. from mock import Mock
  18. from collections import OrderedDict
  19. from synapse.server import HomeServer
  20. from synapse.storage._base import SQLBaseStore
  21. from synapse.storage.engines import create_engine
  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.event_cache_size = 1
  39. config.database_config = {"name": "sqlite3"}
  40. hs = HomeServer(
  41. "test",
  42. db_pool=self.db_pool,
  43. config=config,
  44. database_engine=create_engine(config.database_config),
  45. )
  46. self.datastore = SQLBaseStore(None, hs)
  47. @defer.inlineCallbacks
  48. def test_insert_1col(self):
  49. self.mock_txn.rowcount = 1
  50. yield self.datastore._simple_insert(
  51. table="tablename",
  52. 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(?, ?, ?)",
  67. (1, 2, 3,)
  68. )
  69. @defer.inlineCallbacks
  70. def test_select_one_1col(self):
  71. self.mock_txn.rowcount = 1
  72. self.mock_txn.__iter__ = Mock(return_value=iter([("Value",)]))
  73. value = yield self.datastore._simple_select_one_onecol(
  74. table="tablename",
  75. keyvalues={"keycol": "TheKey"},
  76. retcol="retcol"
  77. )
  78. self.assertEquals("Value", value)
  79. self.mock_txn.execute.assert_called_with(
  80. "SELECT retcol FROM tablename WHERE keycol = ?", ["TheKey"]
  81. )
  82. @defer.inlineCallbacks
  83. def test_select_one_3col(self):
  84. self.mock_txn.rowcount = 1
  85. self.mock_txn.fetchone.return_value = (1, 2, 3)
  86. ret = yield self.datastore._simple_select_one(
  87. table="tablename",
  88. keyvalues={"keycol": "TheKey"},
  89. retcols=["colA", "colB", "colC"]
  90. )
  91. self.assertEquals({"colA": 1, "colB": 2, "colC": 3}, ret)
  92. self.mock_txn.execute.assert_called_with(
  93. "SELECT colA, colB, colC FROM tablename WHERE keycol = ?",
  94. ["TheKey"]
  95. )
  96. @defer.inlineCallbacks
  97. def test_select_one_missing(self):
  98. self.mock_txn.rowcount = 0
  99. self.mock_txn.fetchone.return_value = None
  100. ret = yield self.datastore._simple_select_one(
  101. table="tablename",
  102. keyvalues={"keycol": "Not here"},
  103. retcols=["colA"],
  104. allow_none=True
  105. )
  106. self.assertFalse(ret)
  107. @defer.inlineCallbacks
  108. def test_select_list(self):
  109. self.mock_txn.rowcount = 3
  110. self.mock_txn.__iter__ = Mock(return_value=iter([(1,), (2,), (3,)]))
  111. self.mock_txn.description = (
  112. ("colA", None, None, None, None, None, None),
  113. )
  114. ret = yield self.datastore._simple_select_list(
  115. table="tablename",
  116. keyvalues={"keycol": "A set"},
  117. retcols=["colA"],
  118. )
  119. self.assertEquals([{"colA": 1}, {"colA": 2}, {"colA": 3}], ret)
  120. self.mock_txn.execute.assert_called_with(
  121. "SELECT colA FROM tablename WHERE keycol = ?",
  122. ["A set"]
  123. )
  124. @defer.inlineCallbacks
  125. def test_update_one_1col(self):
  126. self.mock_txn.rowcount = 1
  127. yield self.datastore._simple_update_one(
  128. table="tablename",
  129. keyvalues={"keycol": "TheKey"},
  130. updatevalues={"columnname": "New Value"}
  131. )
  132. self.mock_txn.execute.assert_called_with(
  133. "UPDATE tablename SET columnname = ? WHERE keycol = ?",
  134. ["New Value", "TheKey"]
  135. )
  136. @defer.inlineCallbacks
  137. def test_update_one_4cols(self):
  138. self.mock_txn.rowcount = 1
  139. yield self.datastore._simple_update_one(
  140. table="tablename",
  141. keyvalues=OrderedDict([("colA", 1), ("colB", 2)]),
  142. updatevalues=OrderedDict([("colC", 3), ("colD", 4)])
  143. )
  144. self.mock_txn.execute.assert_called_with(
  145. "UPDATE tablename SET colC = ?, colD = ? WHERE"
  146. " colA = ? AND colB = ?",
  147. [3, 4, 1, 2]
  148. )
  149. @defer.inlineCallbacks
  150. def test_delete_one(self):
  151. self.mock_txn.rowcount = 1
  152. yield self.datastore._simple_delete_one(
  153. table="tablename",
  154. keyvalues={"keycol": "Go away"},
  155. )
  156. self.mock_txn.execute.assert_called_with(
  157. "DELETE FROM tablename WHERE keycol = ?", ["Go away"]
  158. )