blob: 099145b460ae27de999afcb329cbea8b5b386986 [file] [log] [blame]
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +00001# Test driver for bsddb package.
2"""
3Run all test cases.
4"""
Neal Norwitz6057b2e2008-02-24 18:47:03 +00005import os
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +00006import sys
Neal Norwitz6057b2e2008-02-24 18:47:03 +00007import tempfile
Neal Norwitz41ada162008-01-27 17:13:07 +00008import time
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +00009import unittest
Ezio Melotti8d3f1302010-02-02 15:57:45 +000010from test.test_support import requires, run_unittest, import_module
R. David Murray3db8a342009-03-30 23:05:48 +000011
R. David Murray597ebab2009-03-31 18:32:17 +000012# Skip test if _bsddb module was not built.
13import_module('_bsddb')
Ezio Melotti5d62cfe2010-02-02 08:37:35 +000014# Silence Py3k warning
15import_module('bsddb', deprecated=True)
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000016
Barry Warsaw0a262352002-12-30 20:53:18 +000017# When running as a script instead of within the regrtest framework, skip the
18# requires test, since it's obvious we want to run them.
Collin Winterc2898c52007-04-25 17:29:52 +000019if __name__ != '__main__':
Barry Warsaw0a262352002-12-30 20:53:18 +000020 requires('bsddb')
21
22verbose = False
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000023if 'verbose' in sys.argv:
Barry Warsaw0a262352002-12-30 20:53:18 +000024 verbose = True
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000025 sys.argv.remove('verbose')
26
27if 'silent' in sys.argv: # take care of old flag, just in case
Barry Warsaw0a262352002-12-30 20:53:18 +000028 verbose = False
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000029 sys.argv.remove('silent')
30
31
Neal Norwitz41ada162008-01-27 17:13:07 +000032class TimingCheck(unittest.TestCase):
33
34 """This class is not a real test. Its purpose is to print a message
35 periodically when the test runs slowly. This will prevent the buildbots
36 from timing out on slow machines."""
37
38 # How much time in seconds before printing a 'Still working' message.
39 # Since this is run at most once between each test module, use a smaller
40 # interval than other tests.
41 _PRINT_WORKING_MSG_INTERVAL = 4 * 60
42
43 # next_time is used as a global variable that survives each instance.
44 # This is necessary since a new instance will be created for each test.
45 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
46
47 def testCheckElapsedTime(self):
48 # Print still working message since these tests can be really slow.
49 now = time.time()
50 if self.next_time <= now:
51 TimingCheck.next_time = now + self._PRINT_WORKING_MSG_INTERVAL
52 sys.__stdout__.write(' test_bsddb3 still working, be patient...\n')
53 sys.__stdout__.flush()
54
55
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000056# For invocation through regrtest
57def test_main():
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000058 from bsddb import db
Gregory P. Smith81072902008-05-25 07:14:09 +000059 from bsddb.test import test_all
Jesus Ceadbd2f6d2008-05-27 13:26:02 +000060 test_all.set_test_path_prefix(os.path.join(tempfile.gettempdir(),
61 'z-test_bsddb3-%s' %
62 os.getpid()))
Gregory P. Smith81072902008-05-25 07:14:09 +000063 # Please leave this print in, having this show up in the buildbots
64 # makes diagnosing problems a lot easier.
65 print >>sys.stderr, db.DB_VERSION_STRING
Jesus Ceadbd2f6d2008-05-27 13:26:02 +000066 print >>sys.stderr, 'Test path prefix: ', test_all.get_test_path_prefix()
Gregory P. Smith81072902008-05-25 07:14:09 +000067 try:
68 run_unittest(test_all.suite(module_prefix='bsddb.test.',
69 timing_check=TimingCheck))
70 finally:
71 # The only reason to remove db_home is in case if there is an old
72 # one lying around. This might be by a different user, so just
73 # ignore errors. We should always make a unique name now.
74 try:
Jesus Ceadbd2f6d2008-05-27 13:26:02 +000075 test_all.remove_test_path_directory()
Gregory P. Smith81072902008-05-25 07:14:09 +000076 except:
77 pass
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000078
Gregory P. Smith81072902008-05-25 07:14:09 +000079
80if __name__ == '__main__':
Collin Winterc2898c52007-04-25 17:29:52 +000081 test_main()