mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 aae141a751
			
		
	
	
		aae141a751
		
	
	
	
	
		
			
			have NULL bytes in them. Replace the errant strdup with a malloc+memcpy. Adds a unit test for the correct behavior.
		
			
				
	
	
		
			102 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Miscellaneous bsddb module test cases
 | |
| """
 | |
| 
 | |
| import os
 | |
| import sys
 | |
| import unittest
 | |
| import tempfile
 | |
| 
 | |
| try:
 | |
|     # For Pythons w/distutils pybsddb
 | |
|     from bsddb3 import db, dbshelve, hashopen
 | |
| except ImportError:
 | |
|     # For Python 2.3
 | |
|     from bsddb import db, dbshelve, hashopen
 | |
| 
 | |
| #----------------------------------------------------------------------
 | |
| 
 | |
| class MiscTestCase(unittest.TestCase):
 | |
|     def setUp(self):
 | |
|         self.filename = self.__class__.__name__ + '.db'
 | |
|         homeDir = os.path.join(tempfile.gettempdir(), 'db_home')
 | |
|         self.homeDir = homeDir
 | |
|         try:
 | |
|             os.mkdir(homeDir)
 | |
|         except OSError:
 | |
|             pass
 | |
| 
 | |
|     def tearDown(self):
 | |
|         try:
 | |
|             os.remove(self.filename)
 | |
|         except OSError:
 | |
|             pass
 | |
|         import shutil
 | |
|         shutil.rmtree(self.homeDir)
 | |
| 
 | |
|     def test01_badpointer(self):
 | |
|         dbs = dbshelve.open(self.filename)
 | |
|         dbs.close()
 | |
|         self.assertRaises(db.DBError, dbs.get, "foo")
 | |
| 
 | |
|     def test02_db_home(self):
 | |
|         env = db.DBEnv()
 | |
|         # check for crash fixed when db_home is used before open()
 | |
|         assert env.db_home is None
 | |
|         env.open(self.homeDir, db.DB_CREATE)
 | |
|         assert self.homeDir == env.db_home
 | |
| 
 | |
|     def test03_repr_closed_db(self):
 | |
|         db = hashopen(self.filename)
 | |
|         db.close()
 | |
|         rp = repr(db)
 | |
|         self.assertEquals(rp, "{}")
 | |
| 
 | |
|     # http://sourceforge.net/tracker/index.php?func=detail&aid=1708868&group_id=13900&atid=313900
 | |
|     #
 | |
|     # See the bug report for details.
 | |
|     #
 | |
|     # The problem was that make_key_dbt() was not allocating a copy of
 | |
|     # string keys but FREE_DBT() was always being told to free it when the
 | |
|     # database was opened with DB_THREAD.
 | |
|     def test04_double_free_make_key_dbt(self):
 | |
|         try:
 | |
|             db1 = db.DB()
 | |
|             db1.open(self.filename, None, db.DB_BTREE,
 | |
|                      db.DB_CREATE | db.DB_THREAD)
 | |
| 
 | |
|             curs = db1.cursor()
 | |
|             t = curs.get("/foo", db.DB_SET)
 | |
|             # double free happened during exit from DBC_get
 | |
|         finally:
 | |
|             db1.close()
 | |
|             os.unlink(self.filename)
 | |
| 
 | |
|     def test05_key_with_null_bytes(self):
 | |
|         try:
 | |
|             db1 = db.DB()
 | |
|             db1.open(self.filename, None, db.DB_HASH, db.DB_CREATE)
 | |
|             db1['a'] = 'eh?'
 | |
|             db1['a\x00'] = 'eh zed.'
 | |
|             db1['a\x00a'] = 'eh zed eh?'
 | |
|             db1['aaa'] = 'eh eh eh!'
 | |
|             keys = db1.keys()
 | |
|             keys.sort()
 | |
|             self.assertEqual(['a', 'a\x00', 'a\x00a', 'aaa'], keys)
 | |
|             self.assertEqual(db1['a'], 'eh?')
 | |
|             self.assertEqual(db1['a\x00'], 'eh zed.')
 | |
|             self.assertEqual(db1['a\x00a'], 'eh zed eh?')
 | |
|             self.assertEqual(db1['aaa'], 'eh eh eh!')
 | |
|         finally:
 | |
|             db1.close()
 | |
|             os.unlink(self.filename)
 | |
| 
 | |
| 
 | |
| #----------------------------------------------------------------------
 | |
| 
 | |
| 
 | |
| def test_suite():
 | |
|     return unittest.makeSuite(MiscTestCase)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     unittest.main(defaultTest='test_suite')
 |