py25tests.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #-*- coding: ISO-8859-1 -*-
  2. # pysqlite2/test/regression.py: pysqlite regression tests
  3. #
  4. # Copyright (C) 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. from __future__ import with_statement
  24. import unittest
  25. import sqlite3 as sqlite
  26. did_rollback = False
  27. class MyConnection(sqlite.Connection):
  28. def rollback(self):
  29. global did_rollback
  30. did_rollback = True
  31. sqlite.Connection.rollback(self)
  32. class ContextTests(unittest.TestCase):
  33. def setUp(self):
  34. global did_rollback
  35. self.con = sqlite.connect(":memory:", factory=MyConnection)
  36. self.con.execute("create table test(c unique)")
  37. did_rollback = False
  38. def tearDown(self):
  39. self.con.close()
  40. def CheckContextManager(self):
  41. """Can the connection be used as a context manager at all?"""
  42. with self.con:
  43. pass
  44. def CheckContextManagerCommit(self):
  45. """Is a commit called in the context manager?"""
  46. with self.con:
  47. self.con.execute("insert into test(c) values ('foo')")
  48. self.con.rollback()
  49. count = self.con.execute("select count(*) from test").fetchone()[0]
  50. self.assertEqual(count, 1)
  51. def CheckContextManagerRollback(self):
  52. """Is a rollback called in the context manager?"""
  53. global did_rollback
  54. self.assertEqual(did_rollback, False)
  55. try:
  56. with self.con:
  57. self.con.execute("insert into test(c) values (4)")
  58. self.con.execute("insert into test(c) values (4)")
  59. except sqlite.IntegrityError:
  60. pass
  61. self.assertEqual(did_rollback, True)
  62. def suite():
  63. ctx_suite = unittest.makeSuite(ContextTests, "Check")
  64. return unittest.TestSuite((ctx_suite,))
  65. def test():
  66. runner = unittest.TextTestRunner()
  67. runner.run(suite())
  68. if __name__ == "__main__":
  69. test()