blob: cd6ccc6053ccb467d6a54864a79e0c5aad59887a [file] [log] [blame]
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +00001# Test driver for bsddb package.
2"""
3Run all test cases.
4"""
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +00005import sys
6import unittest
7from test.test_support import requires, verbose, run_suite
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +00008
Barry Warsaw0a262352002-12-30 20:53:18 +00009# When running as a script instead of within the regrtest framework, skip the
10# requires test, since it's obvious we want to run them.
11if __name__ <> '__main__':
12 requires('bsddb')
13
14verbose = False
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000015if 'verbose' in sys.argv:
Barry Warsaw0a262352002-12-30 20:53:18 +000016 verbose = True
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000017 sys.argv.remove('verbose')
18
19if 'silent' in sys.argv: # take care of old flag, just in case
Barry Warsaw0a262352002-12-30 20:53:18 +000020 verbose = False
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000021 sys.argv.remove('silent')
22
23
24def suite():
Barry Warsaw0a262352002-12-30 20:53:18 +000025 test_modules = [
26 'test_associate',
27 'test_basics',
28 'test_compat',
29 'test_dbobj',
30 'test_dbshelve',
31 'test_dbtables',
32 'test_env_close',
33 'test_get_none',
34 'test_join',
35 'test_lock',
36 'test_misc',
37 'test_queue',
38 'test_recno',
39 'test_thread',
40 ]
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000041
42 alltests = unittest.TestSuite()
43 for name in test_modules:
44 module = __import__("bsddb.test."+name, globals(), locals(), name)
Barry Warsaw0a262352002-12-30 20:53:18 +000045 #print module,name
46 alltests.addTest(module.test_suite())
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000047 return alltests
48
Barry Warsaw0a262352002-12-30 20:53:18 +000049
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000050# For invocation through regrtest
51def test_main():
52 tests = suite()
53 run_suite(tests)
54
Barry Warsaw0a262352002-12-30 20:53:18 +000055
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000056# For invocation as a script
57if __name__ == '__main__':
58 from bsddb import db
59 print '-=' * 38
60 print db.DB_VERSION_STRING
Barry Warsaw0a262352002-12-30 20:53:18 +000061 print 'bsddb.db.version(): %s' % (db.version(),)
62 print 'bsddb.db.__version__: %s' % db.__version__
63 print 'bsddb.db.cvsid: %s' % db.cvsid
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000064 print 'python version: %s' % sys.version
65 print '-=' * 38
66
Barry Warsaw0a262352002-12-30 20:53:18 +000067 unittest.main(defaultTest='suite')