Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3c1198d6
Commit
3c1198d6
authored
Nov 17, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19601: Use specific asserts in sqlite3 tests.
parent
25a23efc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
30 deletions
+20
-30
Lib/sqlite3/test/factory.py
Lib/sqlite3/test/factory.py
+19
-29
Lib/sqlite3/test/hooks.py
Lib/sqlite3/test/hooks.py
+1
-1
No files found.
Lib/sqlite3/test/factory.py
View file @
3c1198d6
...
...
@@ -47,9 +47,7 @@ class ConnectionFactoryTests(unittest.TestCase):
self
.
con
.
close
()
def
CheckIsInstance
(
self
):
self
.
assertTrue
(
isinstance
(
self
.
con
,
MyConnection
),
"connection is not instance of MyConnection"
)
self
.
assertIsInstance
(
self
.
con
,
MyConnection
)
class
CursorFactoryTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -60,9 +58,7 @@ class CursorFactoryTests(unittest.TestCase):
def
CheckIsInstance
(
self
):
cur
=
self
.
con
.
cursor
(
factory
=
MyCursor
)
self
.
assertTrue
(
isinstance
(
cur
,
MyCursor
),
"cursor is not instance of MyCursor"
)
self
.
assertIsInstance
(
cur
,
MyCursor
)
class
RowFactoryTestsBackwardsCompat
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -72,9 +68,7 @@ class RowFactoryTestsBackwardsCompat(unittest.TestCase):
cur
=
self
.
con
.
cursor
(
factory
=
MyCursor
)
cur
.
execute
(
"select 4+5 as foo"
)
row
=
cur
.
fetchone
()
self
.
assertTrue
(
isinstance
(
row
,
dict
),
"row is not instance of dict"
)
self
.
assertIsInstance
(
row
,
dict
)
cur
.
close
()
def
tearDown
(
self
):
...
...
@@ -87,28 +81,24 @@ class RowFactoryTests(unittest.TestCase):
def
CheckCustomFactory
(
self
):
self
.
con
.
row_factory
=
lambda
cur
,
row
:
list
(
row
)
row
=
self
.
con
.
execute
(
"select 1, 2"
).
fetchone
()
self
.
assertTrue
(
isinstance
(
row
,
list
),
"row is not instance of list"
)
self
.
assertIsInstance
(
row
,
list
)
def
CheckSqliteRowIndex
(
self
):
self
.
con
.
row_factory
=
sqlite
.
Row
row
=
self
.
con
.
execute
(
"select 1 as a, 2 as b"
).
fetchone
()
self
.
assertTrue
(
isinstance
(
row
,
sqlite
.
Row
),
"row is not instance of sqlite.Row"
)
self
.
assertIsInstance
(
row
,
sqlite
.
Row
)
col1
,
col2
=
row
[
"a"
],
row
[
"b"
]
self
.
assert
True
(
col1
==
1
,
"by name: wrong result for column 'a'"
)
self
.
assert
True
(
col2
==
2
,
"by name: wrong result for column 'a'"
)
self
.
assert
Equal
(
col1
,
1
,
"by name: wrong result for column 'a'"
)
self
.
assert
Equal
(
col2
,
2
,
"by name: wrong result for column 'a'"
)
col1
,
col2
=
row
[
"A"
],
row
[
"B"
]
self
.
assert
True
(
col1
==
1
,
"by name: wrong result for column 'A'"
)
self
.
assert
True
(
col2
==
2
,
"by name: wrong result for column 'B'"
)
self
.
assert
Equal
(
col1
,
1
,
"by name: wrong result for column 'A'"
)
self
.
assert
Equal
(
col2
,
2
,
"by name: wrong result for column 'B'"
)
col1
,
col2
=
row
[
0
],
row
[
1
]
self
.
assert
True
(
col1
==
1
,
"by index: wrong result for column 0"
)
self
.
assert
True
(
col2
==
2
,
"by index: wrong result for column 1"
)
self
.
assert
Equal
(
col1
,
1
,
"by index: wrong result for column 0"
)
self
.
assert
Equal
(
col2
,
2
,
"by index: wrong result for column 1"
)
def
CheckSqliteRowIter
(
self
):
"""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_3
=
self
.
con
.
execute
(
"select 1 as a, 3 as b"
).
fetchone
()
self
.
assert
True
(
row_1
==
row_1
)
self
.
assert
True
(
row_1
==
row_2
)
self
.
assert
Equal
(
row_1
,
row_1
)
self
.
assert
Equal
(
row_1
,
row_2
)
self
.
assertTrue
(
row_2
!=
row_3
)
self
.
assertFalse
(
row_1
!=
row_1
)
...
...
@@ -161,20 +151,20 @@ class TextFactoryTests(unittest.TestCase):
def
CheckUnicode
(
self
):
austria
=
unicode
(
"sterreich"
,
"latin1"
)
row
=
self
.
con
.
execute
(
"select ?"
,
(
austria
,)).
fetchone
()
self
.
assert
True
(
type
(
row
[
0
])
==
unicode
,
"type of row[0] must be unicode"
)
self
.
assert
Equal
(
type
(
row
[
0
]),
unicode
,
"type of row[0] must be unicode"
)
def
CheckString
(
self
):
self
.
con
.
text_factory
=
str
austria
=
unicode
(
"sterreich"
,
"latin1"
)
row
=
self
.
con
.
execute
(
"select ?"
,
(
austria
,)).
fetchone
()
self
.
assert
True
(
type
(
row
[
0
])
==
str
,
"type of row[0] must be str"
)
self
.
assert
True
(
row
[
0
]
==
austria
.
encode
(
"utf-8"
),
"column must equal original data in UTF-8"
)
self
.
assert
Equal
(
type
(
row
[
0
]),
str
,
"type of row[0] must be str"
)
self
.
assert
Equal
(
row
[
0
],
austria
.
encode
(
"utf-8"
),
"column must equal original data in UTF-8"
)
def
CheckCustom
(
self
):
self
.
con
.
text_factory
=
lambda
x
:
unicode
(
x
,
"utf-8"
,
"ignore"
)
austria
=
unicode
(
"sterreich"
,
"latin1"
)
row
=
self
.
con
.
execute
(
"select ?"
,
(
austria
.
encode
(
"latin1"
),)).
fetchone
()
self
.
assert
True
(
type
(
row
[
0
])
==
unicode
,
"type of row[0] must be unicode"
)
self
.
assert
Equal
(
type
(
row
[
0
]),
unicode
,
"type of row[0] must be unicode"
)
self
.
assertTrue
(
row
[
0
].
endswith
(
u"reich"
),
"column must contain original data"
)
def
CheckOptimizedUnicode
(
self
):
...
...
@@ -183,8 +173,8 @@ class TextFactoryTests(unittest.TestCase):
germany
=
unicode
(
"Deutchland"
)
a_row
=
self
.
con
.
execute
(
"select ?"
,
(
austria
,)).
fetchone
()
d_row
=
self
.
con
.
execute
(
"select ?"
,
(
germany
,)).
fetchone
()
self
.
assert
True
(
type
(
a_row
[
0
])
==
unicode
,
"type of non-ASCII row must be unicode"
)
self
.
assert
True
(
type
(
d_row
[
0
])
==
str
,
"type of ASCII-only row must be str"
)
self
.
assert
Equal
(
type
(
a_row
[
0
]),
unicode
,
"type of non-ASCII row must be unicode"
)
self
.
assert
Equal
(
type
(
d_row
[
0
]),
str
,
"type of ASCII-only row must be str"
)
def
tearDown
(
self
):
self
.
con
.
close
()
...
...
Lib/sqlite3/test/hooks.py
View file @
3c1198d6
...
...
@@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
create table bar (a, b)
"""
)
second_count
=
len
(
progress_calls
)
self
.
assert
True
(
first_count
>
second_count
)
self
.
assert
Greater
(
first_count
,
second_count
)
def
CheckCancelOperation
(
self
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment