Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-10572 : Move sqlite3 tests to Lib/test/test_sqlite3 #24148

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed Lib/sqlite3/test/__init__.py
Empty file.
26 changes: 0 additions & 26 deletions Lib/test/test_sqlite.py

This file was deleted.

17 changes: 17 additions & 0 deletions Lib/test/test_sqlite3/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import test.support
from test.support import import_helper

# Skip test if _sqlite3 module not installed
import_helper.import_module('_sqlite3')

import os
import sqlite3

def load_tests(*args):
if test.support.verbose:
print("test_sqlite3: testing with version",
"{!r}, sqlite_version {!r}".format(sqlite3.version,
sqlite3.sqlite_version))

pkg_dir = os.path.dirname(__file__)
return test.support.load_package_tests(pkg_dir, *args)
4 changes: 4 additions & 0 deletions Lib/test/test_sqlite3/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from test.test_sqlite3 import load_tests
import unittest

unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,5 @@ def test_database_source_name(self):
self.verify_backup(bck)


def suite():
return unittest.TestLoader().loadTestsFromTestCase(BackupTests)

if __name__ == "__main__":
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -929,25 +929,5 @@ def test_on_conflict_replace(self):
self.assertEqual(self.cu.fetchall(), [('Very different data!', 'foo')])


def suite():
tests = [
ClosedConTests,
ClosedCurTests,
ConnectionTests,
ConstructorTests,
CursorTests,
ExtensionTests,
ModuleTests,
SqliteOnConflictTests,
ThreadTests,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
13 changes: 1 addition & 12 deletions Lib/sqlite3/test/dump.py → Lib/test/test_sqlite3/test_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,6 @@ def __getitem__(self, index):
got = list(self.cx.iterdump())
self.assertEqual(expected, got)

def suite():
tests = [
DumpTests,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -301,22 +301,6 @@ def test_custom(self):
def tearDown(self):
self.con.close()

def suite():
tests = [
ConnectionFactoryTests,
CursorFactoryTests,
RowFactoryTests,
RowFactoryTestsBackwardsCompat,
TextFactoryTests,
TextFactoryTestsWithEmbeddedZeroBytes,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -262,19 +262,5 @@ def trace(statement):
self.assertEqual(traced_statements, queries)


def suite():
tests = [
CollationTests,
ProgressTests,
TraceCallbackTests,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -410,18 +410,5 @@ def log(self, *args):
method(None)



def suite():
tests = [
RegressionTests
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -195,19 +195,6 @@ def test_transactional_ddl(self):
def tearDown(self):
self.con.close()

def suite():
tests = [
SpecialCommandTests,
TransactionTests,
TransactionalDDL,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -422,23 +422,6 @@ def test_date_time_sub_seconds_floating_point(self):
ts2 = self.cur.fetchone()[0]
self.assertEqual(ts, ts2)

def suite():
tests = [
BinaryConverterTests,
ColNamesTests,
CommonTableExpressionTests,
DateTimeTests,
DeclTypesTests,
ObjectAdaptationTests,
SqliteTypeTests,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -493,22 +493,5 @@ def authorizer_cb(action, arg1, arg2, dbname, source):
return sqlite.SQLITE_OK


def suite():
tests = [
AggregateTests,
AuthorizerIllegalTypeTests,
AuthorizerLargeIntegerTests,
AuthorizerRaiseExceptionTests,
AuthorizerTests,
FunctionTests,
]
return unittest.TestSuite(
[unittest.TestLoader().loadTestsFromTestCase(t) for t in tests]
)

def test():
runner = unittest.TextTestRunner()
runner.run(suite())

if __name__ == "__main__":
test()
unittest.main()
1 change: 0 additions & 1 deletion Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,6 @@ TESTSUBDIRS= ctypes/test \
lib2to3/tests/data \
lib2to3/tests/data/fixers \
lib2to3/tests/data/fixers/myfixes \
sqlite3/test \
test test/audiodata \
test/capath test/cjkencodings \
test/data test/decimaltestdata \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Move :mod:`sqlite3` tests to ``/Lib/test/test_sqlite3``. Patch by Erlend E.
Aasland.