mirror of
https://github.com/python/cpython.git
synced 2025-10-22 06:32:43 +00:00
Issue #19601: Use specific asserts in sqlite3 tests.
This commit is contained in:
parent
39989157ad
commit
78ee078405
2 changed files with 20 additions and 30 deletions
|
@ -47,9 +47,7 @@ class ConnectionFactoryTests(unittest.TestCase):
|
||||||
self.con.close()
|
self.con.close()
|
||||||
|
|
||||||
def CheckIsInstance(self):
|
def CheckIsInstance(self):
|
||||||
self.assertTrue(isinstance(self.con,
|
self.assertIsInstance(self.con, MyConnection)
|
||||||
MyConnection),
|
|
||||||
"connection is not instance of MyConnection")
|
|
||||||
|
|
||||||
class CursorFactoryTests(unittest.TestCase):
|
class CursorFactoryTests(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
@ -60,9 +58,7 @@ class CursorFactoryTests(unittest.TestCase):
|
||||||
|
|
||||||
def CheckIsInstance(self):
|
def CheckIsInstance(self):
|
||||||
cur = self.con.cursor(factory=MyCursor)
|
cur = self.con.cursor(factory=MyCursor)
|
||||||
self.assertTrue(isinstance(cur,
|
self.assertIsInstance(cur, MyCursor)
|
||||||
MyCursor),
|
|
||||||
"cursor is not instance of MyCursor")
|
|
||||||
|
|
||||||
class RowFactoryTestsBackwardsCompat(unittest.TestCase):
|
class RowFactoryTestsBackwardsCompat(unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
@ -72,9 +68,7 @@ class RowFactoryTestsBackwardsCompat(unittest.TestCase):
|
||||||
cur = self.con.cursor(factory=MyCursor)
|
cur = self.con.cursor(factory=MyCursor)
|
||||||
cur.execute("select 4+5 as foo")
|
cur.execute("select 4+5 as foo")
|
||||||
row = cur.fetchone()
|
row = cur.fetchone()
|
||||||
self.assertTrue(isinstance(row,
|
self.assertIsInstance(row, dict)
|
||||||
dict),
|
|
||||||
"row is not instance of dict")
|
|
||||||
cur.close()
|
cur.close()
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
|
@ -87,28 +81,24 @@ class RowFactoryTests(unittest.TestCase):
|
||||||
def CheckCustomFactory(self):
|
def CheckCustomFactory(self):
|
||||||
self.con.row_factory = lambda cur, row: list(row)
|
self.con.row_factory = lambda cur, row: list(row)
|
||||||
row = self.con.execute("select 1, 2").fetchone()
|
row = self.con.execute("select 1, 2").fetchone()
|
||||||
self.assertTrue(isinstance(row,
|
self.assertIsInstance(row, list)
|
||||||
list),
|
|
||||||
"row is not instance of list")
|
|
||||||
|
|
||||||
def CheckSqliteRowIndex(self):
|
def CheckSqliteRowIndex(self):
|
||||||
self.con.row_factory = sqlite.Row
|
self.con.row_factory = sqlite.Row
|
||||||
row = self.con.execute("select 1 as a, 2 as b").fetchone()
|
row = self.con.execute("select 1 as a, 2 as b").fetchone()
|
||||||
self.assertTrue(isinstance(row,
|
self.assertIsInstance(row, sqlite.Row)
|
||||||
sqlite.Row),
|
|
||||||
"row is not instance of sqlite.Row")
|
|
||||||
|
|
||||||
col1, col2 = row["a"], row["b"]
|
col1, col2 = row["a"], row["b"]
|
||||||
self.assertTrue(col1 == 1, "by name: wrong result for column 'a'")
|
self.assertEqual(col1, 1, "by name: wrong result for column 'a'")
|
||||||
self.assertTrue(col2 == 2, "by name: wrong result for column 'a'")
|
self.assertEqual(col2, 2, "by name: wrong result for column 'a'")
|
||||||
|
|
||||||
col1, col2 = row["A"], row["B"]
|
col1, col2 = row["A"], row["B"]
|
||||||
self.assertTrue(col1 == 1, "by name: wrong result for column 'A'")
|
self.assertEqual(col1, 1, "by name: wrong result for column 'A'")
|
||||||
self.assertTrue(col2 == 2, "by name: wrong result for column 'B'")
|
self.assertEqual(col2, 2, "by name: wrong result for column 'B'")
|
||||||
|
|
||||||
col1, col2 = row[0], row[1]
|
col1, col2 = row[0], row[1]
|
||||||
self.assertTrue(col1 == 1, "by index: wrong result for column 0")
|
self.assertEqual(col1, 1, "by index: wrong result for column 0")
|
||||||
self.assertTrue(col2 == 2, "by index: wrong result for column 1")
|
self.assertEqual(col2, 2, "by index: wrong result for column 1")
|
||||||
|
|
||||||
def CheckSqliteRowIter(self):
|
def CheckSqliteRowIter(self):
|
||||||
"""Checks if the row object is iterable"""
|
"""Checks if the row object is iterable"""
|
||||||
|
@ -138,8 +128,8 @@ class RowFactoryTests(unittest.TestCase):
|
||||||
row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
|
row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
|
||||||
row_3 = self.con.execute("select 1 as a, 3 as b").fetchone()
|
row_3 = self.con.execute("select 1 as a, 3 as b").fetchone()
|
||||||
|
|
||||||
self.assertTrue(row_1 == row_1)
|
self.assertEqual(row_1, row_1)
|
||||||
self.assertTrue(row_1 == row_2)
|
self.assertEqual(row_1, row_2)
|
||||||
self.assertTrue(row_2 != row_3)
|
self.assertTrue(row_2 != row_3)
|
||||||
|
|
||||||
self.assertFalse(row_1 != row_1)
|
self.assertFalse(row_1 != row_1)
|
||||||
|
@ -161,20 +151,20 @@ class TextFactoryTests(unittest.TestCase):
|
||||||
def CheckUnicode(self):
|
def CheckUnicode(self):
|
||||||
austria = "Österreich"
|
austria = "Österreich"
|
||||||
row = self.con.execute("select ?", (austria,)).fetchone()
|
row = self.con.execute("select ?", (austria,)).fetchone()
|
||||||
self.assertTrue(type(row[0]) == str, "type of row[0] must be unicode")
|
self.assertEqual(type(row[0]), str, "type of row[0] must be unicode")
|
||||||
|
|
||||||
def CheckString(self):
|
def CheckString(self):
|
||||||
self.con.text_factory = bytes
|
self.con.text_factory = bytes
|
||||||
austria = "Österreich"
|
austria = "Österreich"
|
||||||
row = self.con.execute("select ?", (austria,)).fetchone()
|
row = self.con.execute("select ?", (austria,)).fetchone()
|
||||||
self.assertTrue(type(row[0]) == bytes, "type of row[0] must be bytes")
|
self.assertEqual(type(row[0]), bytes, "type of row[0] must be bytes")
|
||||||
self.assertTrue(row[0] == austria.encode("utf-8"), "column must equal original data in UTF-8")
|
self.assertEqual(row[0], austria.encode("utf-8"), "column must equal original data in UTF-8")
|
||||||
|
|
||||||
def CheckCustom(self):
|
def CheckCustom(self):
|
||||||
self.con.text_factory = lambda x: str(x, "utf-8", "ignore")
|
self.con.text_factory = lambda x: str(x, "utf-8", "ignore")
|
||||||
austria = "Österreich"
|
austria = "Österreich"
|
||||||
row = self.con.execute("select ?", (austria,)).fetchone()
|
row = self.con.execute("select ?", (austria,)).fetchone()
|
||||||
self.assertTrue(type(row[0]) == str, "type of row[0] must be unicode")
|
self.assertEqual(type(row[0]), str, "type of row[0] must be unicode")
|
||||||
self.assertTrue(row[0].endswith("reich"), "column must contain original data")
|
self.assertTrue(row[0].endswith("reich"), "column must contain original data")
|
||||||
|
|
||||||
def CheckOptimizedUnicode(self):
|
def CheckOptimizedUnicode(self):
|
||||||
|
@ -185,8 +175,8 @@ class TextFactoryTests(unittest.TestCase):
|
||||||
germany = "Deutchland"
|
germany = "Deutchland"
|
||||||
a_row = self.con.execute("select ?", (austria,)).fetchone()
|
a_row = self.con.execute("select ?", (austria,)).fetchone()
|
||||||
d_row = self.con.execute("select ?", (germany,)).fetchone()
|
d_row = self.con.execute("select ?", (germany,)).fetchone()
|
||||||
self.assertTrue(type(a_row[0]) == str, "type of non-ASCII row must be str")
|
self.assertEqual(type(a_row[0]), str, "type of non-ASCII row must be str")
|
||||||
self.assertTrue(type(d_row[0]) == str, "type of ASCII-only row must be str")
|
self.assertEqual(type(d_row[0]), str, "type of ASCII-only row must be str")
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.con.close()
|
self.con.close()
|
||||||
|
|
|
@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
|
||||||
create table bar (a, b)
|
create table bar (a, b)
|
||||||
""")
|
""")
|
||||||
second_count = len(progress_calls)
|
second_count = len(progress_calls)
|
||||||
self.assertTrue(first_count > second_count)
|
self.assertGreater(first_count, second_count)
|
||||||
|
|
||||||
def CheckCancelOperation(self):
|
def CheckCancelOperation(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue