Commit 759491bd authored by Julien Muchembled's avatar Julien Muchembled

A bug in ZODB may corrupt data when converting back to FileStorage

parent 87bc05eb
......@@ -57,6 +57,9 @@ def main(args=None):
src = FileStorage(file_name=source)
dst = NEOStorage(master_nodes=destination, name=cluster)
else:
print("WARNING: due to a bug in FileStorage (at least up to ZODB trunk"
"@121629), output database may be corrupted if input database is"
" not packed.")
src = NEOStorage(master_nodes=source, name=cluster)
dst = FileStorage(file_name=destination)
......
......@@ -173,10 +173,18 @@ class ClientTests(NEOFunctionalTest):
db = ZODB.DB(storage=storage)
return (db, storage)
def __populate(self, db, tree_size=TREE_SIZE):
def __populate(self, db, tree_size=TREE_SIZE, filestorage_bug=True):
conn = db.open()
root = conn.root()
root['trees'] = Tree(tree_size)
if filestorage_bug:
ob = root['trees'].right
left = ob.left
del ob.left
transaction.commit()
ob._p_changed = 1
transaction.commit()
ob.left = left
transaction.commit()
conn.close()
......@@ -197,12 +205,12 @@ class ClientTests(NEOFunctionalTest):
(neo_db, neo_conn) = self.neo.getZODBConnection()
self.__checkTree(neo_conn.root()['trees'])
def testExport(self):
def testExport(self, filestorage_bug=False):
# create a neo storage
self.neo.start()
(neo_db, neo_conn) = self.neo.getZODBConnection()
self.__populate(neo_db)
self.__populate(neo_db, filestorage_bug=filestorage_bug)
# copy neo to data fs
dfs_db, dfs_storage = self.__getDataFS(reset=True)
......@@ -215,6 +223,10 @@ class ClientTests(NEOFunctionalTest):
self.__checkTree(root['trees'])
def testExportFileStorageBug(self):
# currently fails due to a bug in ZODB.FileStorage
self.testExport(True)
def testLockTimeout(self):
""" Hold a lock on an object to block a second transaction """
def test():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment