2006-04-08 04:10:51 -03:00
|
|
|
|
2008-02-23 13:40:11 -04:00
|
|
|
import os
|
2006-04-08 04:10:51 -03:00
|
|
|
import pickle
|
|
|
|
try:
|
|
|
|
import cPickle
|
|
|
|
except ImportError:
|
|
|
|
cPickle = None
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
try:
|
|
|
|
# For Pythons w/distutils pybsddb
|
|
|
|
from bsddb3 import db
|
|
|
|
except ImportError, e:
|
|
|
|
# For Python 2.3
|
|
|
|
from bsddb import db
|
|
|
|
|
2008-05-13 17:57:59 -03:00
|
|
|
from test_all import get_new_environment_path, get_new_database_path
|
|
|
|
|
2008-03-02 16:00:53 -04:00
|
|
|
try:
|
|
|
|
from bsddb3 import test_support
|
|
|
|
except ImportError:
|
|
|
|
from test import test_support
|
|
|
|
|
2006-04-08 04:10:51 -03:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class pickleTestCase(unittest.TestCase):
|
|
|
|
"""Verify that DBError can be pickled and unpickled"""
|
|
|
|
db_name = 'test-dbobj.db'
|
|
|
|
|
|
|
|
def setUp(self):
|
2008-05-13 17:57:59 -03:00
|
|
|
self.homeDir = get_new_environment_path()
|
2006-04-08 04:10:51 -03:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
if hasattr(self, 'db'):
|
|
|
|
del self.db
|
|
|
|
if hasattr(self, 'env'):
|
|
|
|
del self.env
|
2008-02-24 14:47:03 -04:00
|
|
|
test_support.rmtree(self.homeDir)
|
2006-04-08 04:10:51 -03:00
|
|
|
|
|
|
|
def _base_test_pickle_DBError(self, pickle):
|
|
|
|
self.env = db.DBEnv()
|
|
|
|
self.env.open(self.homeDir, db.DB_CREATE | db.DB_INIT_MPOOL)
|
|
|
|
self.db = db.DB(self.env)
|
|
|
|
self.db.open(self.db_name, db.DB_HASH, db.DB_CREATE)
|
|
|
|
self.db.put('spam', 'eggs')
|
2008-05-13 17:57:59 -03:00
|
|
|
self.assertEqual(self.db['spam'], 'eggs')
|
2006-04-08 04:10:51 -03:00
|
|
|
try:
|
|
|
|
self.db.put('spam', 'ham', flags=db.DB_NOOVERWRITE)
|
|
|
|
except db.DBError, egg:
|
|
|
|
pickledEgg = pickle.dumps(egg)
|
|
|
|
#print repr(pickledEgg)
|
|
|
|
rottenEgg = pickle.loads(pickledEgg)
|
|
|
|
if rottenEgg.args != egg.args or type(rottenEgg) != type(egg):
|
|
|
|
raise Exception, (rottenEgg, '!=', egg)
|
|
|
|
else:
|
|
|
|
raise Exception, "where's my DBError exception?!?"
|
|
|
|
|
|
|
|
self.db.close()
|
|
|
|
self.env.close()
|
|
|
|
|
|
|
|
def test01_pickle_DBError(self):
|
|
|
|
self._base_test_pickle_DBError(pickle=pickle)
|
|
|
|
|
|
|
|
if cPickle:
|
|
|
|
def test02_cPickle_DBError(self):
|
|
|
|
self._base_test_pickle_DBError(pickle=cPickle)
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def test_suite():
|
|
|
|
return unittest.makeSuite(pickleTestCase)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(defaultTest='test_suite')
|