regression.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. #-*- coding: iso-8859-1 -*-
  2. # pysqlite2/test/regression.py: pysqlite regression tests
  3. #
  4. # Copyright (C) 2006-2007 Gerhard Häring <gh@ghaering.de>
  5. #
  6. # This file is part of pysqlite.
  7. #
  8. # This software is provided 'as-is', without any express or implied
  9. # warranty. In no event will the authors be held liable for any damages
  10. # arising from the use of this software.
  11. #
  12. # Permission is granted to anyone to use this software for any purpose,
  13. # including commercial applications, and to alter it and redistribute it
  14. # freely, subject to the following restrictions:
  15. #
  16. # 1. The origin of this software must not be misrepresented; you must not
  17. # claim that you wrote the original software. If you use this software
  18. # in a product, an acknowledgment in the product documentation would be
  19. # appreciated but is not required.
  20. # 2. Altered source versions must be plainly marked as such, and must not be
  21. # misrepresented as being the original software.
  22. # 3. This notice may not be removed or altered from any source distribution.
  23. import datetime
  24. import unittest
  25. import sqlite3 as sqlite
  26. class RegressionTests(unittest.TestCase):
  27. def setUp(self):
  28. self.con = sqlite.connect(":memory:")
  29. def tearDown(self):
  30. self.con.close()
  31. def CheckPragmaUserVersion(self):
  32. # This used to crash pysqlite because this pragma command returns NULL for the column name
  33. cur = self.con.cursor()
  34. cur.execute("pragma user_version")
  35. def CheckPragmaSchemaVersion(self):
  36. # This still crashed pysqlite <= 2.2.1
  37. con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_COLNAMES)
  38. try:
  39. cur = self.con.cursor()
  40. cur.execute("pragma schema_version")
  41. finally:
  42. cur.close()
  43. con.close()
  44. def CheckStatementReset(self):
  45. # pysqlite 2.1.0 to 2.2.0 have the problem that not all statements are
  46. # reset before a rollback, but only those that are still in the
  47. # statement cache. The others are not accessible from the connection object.
  48. con = sqlite.connect(":memory:", cached_statements=5)
  49. cursors = [con.cursor() for x in xrange(5)]
  50. cursors[0].execute("create table test(x)")
  51. for i in range(10):
  52. cursors[0].executemany("insert into test(x) values (?)", [(x,) for x in xrange(10)])
  53. for i in range(5):
  54. cursors[i].execute(" " * i + "select x from test")
  55. con.rollback()
  56. def CheckColumnNameWithSpaces(self):
  57. cur = self.con.cursor()
  58. cur.execute('select 1 as "foo bar [datetime]"')
  59. self.assertEqual(cur.description[0][0], "foo bar")
  60. cur.execute('select 1 as "foo baz"')
  61. self.assertEqual(cur.description[0][0], "foo baz")
  62. def CheckStatementFinalizationOnCloseDb(self):
  63. # pysqlite versions <= 2.3.3 only finalized statements in the statement
  64. # cache when closing the database. statements that were still
  65. # referenced in cursors weren't closed and could provoke "
  66. # "OperationalError: Unable to close due to unfinalised statements".
  67. con = sqlite.connect(":memory:")
  68. cursors = []
  69. # default statement cache size is 100
  70. for i in range(105):
  71. cur = con.cursor()
  72. cursors.append(cur)
  73. cur.execute("select 1 x union select " + str(i))
  74. con.close()
  75. def CheckOnConflictRollback(self):
  76. if sqlite.sqlite_version_info < (3, 2, 2):
  77. return
  78. con = sqlite.connect(":memory:")
  79. con.execute("create table foo(x, unique(x) on conflict rollback)")
  80. con.execute("insert into foo(x) values (1)")
  81. try:
  82. con.execute("insert into foo(x) values (1)")
  83. except sqlite.DatabaseError:
  84. pass
  85. con.execute("insert into foo(x) values (2)")
  86. try:
  87. con.commit()
  88. except sqlite.OperationalError:
  89. self.fail("pysqlite knew nothing about the implicit ROLLBACK")
  90. def CheckWorkaroundForBuggySqliteTransferBindings(self):
  91. """
  92. pysqlite would crash with older SQLite versions unless
  93. a workaround is implemented.
  94. """
  95. self.con.execute("create table foo(bar)")
  96. self.con.execute("drop table foo")
  97. self.con.execute("create table foo(bar)")
  98. def CheckEmptyStatement(self):
  99. """
  100. pysqlite used to segfault with SQLite versions 3.5.x. These return NULL
  101. for "no-operation" statements
  102. """
  103. self.con.execute("")
  104. def CheckUnicodeConnect(self):
  105. """
  106. With pysqlite 2.4.0 you needed to use a string or a APSW connection
  107. object for opening database connections.
  108. Formerly, both bytestrings and unicode strings used to work.
  109. Let's make sure unicode strings work in the future.
  110. """
  111. con = sqlite.connect(u":memory:")
  112. con.close()
  113. def CheckTypeMapUsage(self):
  114. """
  115. pysqlite until 2.4.1 did not rebuild the row_cast_map when recompiling
  116. a statement. This test exhibits the problem.
  117. """
  118. SELECT = "select * from foo"
  119. con = sqlite.connect(":memory:",detect_types=sqlite.PARSE_DECLTYPES)
  120. con.execute("create table foo(bar timestamp)")
  121. con.execute("insert into foo(bar) values (?)", (datetime.datetime.now(),))
  122. con.execute(SELECT)
  123. con.execute("drop table foo")
  124. con.execute("create table foo(bar integer)")
  125. con.execute("insert into foo(bar) values (5)")
  126. con.execute(SELECT)
  127. def CheckRegisterAdapter(self):
  128. """
  129. See issue 3312.
  130. """
  131. self.assertRaises(TypeError, sqlite.register_adapter, {}, None)
  132. def CheckSetIsolationLevel(self):
  133. """
  134. See issue 3312.
  135. """
  136. con = sqlite.connect(":memory:")
  137. self.assertRaises(UnicodeEncodeError, setattr, con,
  138. "isolation_level", u"\xe9")
  139. def CheckCursorConstructorCallCheck(self):
  140. """
  141. Verifies that cursor methods check whether base class __init__ was
  142. called.
  143. """
  144. class Cursor(sqlite.Cursor):
  145. def __init__(self, con):
  146. pass
  147. con = sqlite.connect(":memory:")
  148. cur = Cursor(con)
  149. try:
  150. cur.execute("select 4+5").fetchall()
  151. self.fail("should have raised ProgrammingError")
  152. except sqlite.ProgrammingError:
  153. pass
  154. except:
  155. self.fail("should have raised ProgrammingError")
  156. def CheckConnectionConstructorCallCheck(self):
  157. """
  158. Verifies that connection methods check whether base class __init__ was
  159. called.
  160. """
  161. class Connection(sqlite.Connection):
  162. def __init__(self, name):
  163. pass
  164. con = Connection(":memory:")
  165. try:
  166. cur = con.cursor()
  167. self.fail("should have raised ProgrammingError")
  168. except sqlite.ProgrammingError:
  169. pass
  170. except:
  171. self.fail("should have raised ProgrammingError")
  172. def CheckCursorRegistration(self):
  173. """
  174. Verifies that subclassed cursor classes are correctly registered with
  175. the connection object, too. (fetch-across-rollback problem)
  176. """
  177. class Connection(sqlite.Connection):
  178. def cursor(self):
  179. return Cursor(self)
  180. class Cursor(sqlite.Cursor):
  181. def __init__(self, con):
  182. sqlite.Cursor.__init__(self, con)
  183. con = Connection(":memory:")
  184. cur = con.cursor()
  185. cur.execute("create table foo(x)")
  186. cur.executemany("insert into foo(x) values (?)", [(3,), (4,), (5,)])
  187. cur.execute("select x from foo")
  188. con.rollback()
  189. try:
  190. cur.fetchall()
  191. self.fail("should have raised InterfaceError")
  192. except sqlite.InterfaceError:
  193. pass
  194. except:
  195. self.fail("should have raised InterfaceError")
  196. def CheckAutoCommit(self):
  197. """
  198. Verifies that creating a connection in autocommit mode works.
  199. 2.5.3 introduced a regression so that these could no longer
  200. be created.
  201. """
  202. con = sqlite.connect(":memory:", isolation_level=None)
  203. def CheckPragmaAutocommit(self):
  204. """
  205. Verifies that running a PRAGMA statement that does an autocommit does
  206. work. This did not work in 2.5.3/2.5.4.
  207. """
  208. cur = self.con.cursor()
  209. cur.execute("create table foo(bar)")
  210. cur.execute("insert into foo(bar) values (5)")
  211. cur.execute("pragma page_size")
  212. row = cur.fetchone()
  213. def CheckSetDict(self):
  214. """
  215. See http://bugs.python.org/issue7478
  216. It was possible to successfully register callbacks that could not be
  217. hashed. Return codes of PyDict_SetItem were not checked properly.
  218. """
  219. class NotHashable:
  220. def __call__(self, *args, **kw):
  221. pass
  222. def __hash__(self):
  223. raise TypeError()
  224. var = NotHashable()
  225. self.assertRaises(TypeError, self.con.create_function, var)
  226. self.assertRaises(TypeError, self.con.create_aggregate, var)
  227. self.assertRaises(TypeError, self.con.set_authorizer, var)
  228. self.assertRaises(TypeError, self.con.set_progress_handler, var)
  229. def CheckConnectionCall(self):
  230. """
  231. Call a connection with a non-string SQL request: check error handling
  232. of the statement constructor.
  233. """
  234. self.assertRaises(sqlite.Warning, self.con, 1)
  235. def CheckRecursiveCursorUse(self):
  236. """
  237. http://bugs.python.org/issue10811
  238. Recursively using a cursor, such as when reusing it from a generator led to segfaults.
  239. Now we catch recursive cursor usage and raise a ProgrammingError.
  240. """
  241. con = sqlite.connect(":memory:")
  242. cur = con.cursor()
  243. cur.execute("create table a (bar)")
  244. cur.execute("create table b (baz)")
  245. def foo():
  246. cur.execute("insert into a (bar) values (?)", (1,))
  247. yield 1
  248. with self.assertRaises(sqlite.ProgrammingError):
  249. cur.executemany("insert into b (baz) values (?)",
  250. ((i,) for i in foo()))
  251. def CheckConvertTimestampMicrosecondPadding(self):
  252. """
  253. http://bugs.python.org/issue14720
  254. The microsecond parsing of convert_timestamp() should pad with zeros,
  255. since the microsecond string "456" actually represents "456000".
  256. """
  257. con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
  258. cur = con.cursor()
  259. cur.execute("CREATE TABLE t (x TIMESTAMP)")
  260. # Microseconds should be 456000
  261. cur.execute("INSERT INTO t (x) VALUES ('2012-04-04 15:06:00.456')")
  262. # Microseconds should be truncated to 123456
  263. cur.execute("INSERT INTO t (x) VALUES ('2012-04-04 15:06:00.123456789')")
  264. cur.execute("SELECT * FROM t")
  265. values = [x[0] for x in cur.fetchall()]
  266. self.assertEqual(values, [
  267. datetime.datetime(2012, 4, 4, 15, 6, 0, 456000),
  268. datetime.datetime(2012, 4, 4, 15, 6, 0, 123456),
  269. ])
  270. def CheckInvalidIsolationLevelType(self):
  271. # isolation level is a string, not an integer
  272. self.assertRaises(TypeError,
  273. sqlite.connect, ":memory:", isolation_level=123)
  274. def CheckNullCharacter(self):
  275. # Issue #21147
  276. con = sqlite.connect(":memory:")
  277. self.assertRaises(ValueError, con, "\0select 1")
  278. self.assertRaises(ValueError, con, "select 1\0")
  279. cur = con.cursor()
  280. self.assertRaises(ValueError, cur.execute, " \0select 2")
  281. self.assertRaises(ValueError, cur.execute, "select 2\0")
  282. def suite():
  283. regression_suite = unittest.makeSuite(RegressionTests, "Check")
  284. return unittest.TestSuite((regression_suite,))
  285. def test():
  286. runner = unittest.TextTestRunner()
  287. runner.run(suite())
  288. if __name__ == "__main__":
  289. test()