Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
02a18650
Commit
02a18650
authored
Mar 09, 2007
by
Christian Theune
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- restified
- added test for custom openDetached() class
parent
d8a3b4d1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
26 deletions
+43
-26
src/ZODB/Blobs/tests/transaction.txt
src/ZODB/Blobs/tests/transaction.txt
+43
-26
No files found.
src/ZODB/Blobs/tests/transaction.txt
View file @
02a18650
##############################################################################
##############################################################################
#
#
# Copyright (c) 2005 Zope Corporation and Contributors.
# Copyright (c) 2005
-2007
Zope Corporation and Contributors.
# All Rights Reserved.
# All Rights Reserved.
#
#
# This software is subject to the provisions of the Zope Public License,
# This software is subject to the provisions of the Zope Public License,
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
Transaction support for Blobs
Transaction support for Blobs
=============================
=============================
We need a database with a blob supporting storage:
We need a database with a blob supporting storage:
:
>>> from ZODB.MappingStorage import MappingStorage
>>> from ZODB.MappingStorage import MappingStorage
>>> from ZODB.Blobs.BlobStorage import BlobStorage
>>> from ZODB.Blobs.BlobStorage import BlobStorage
...
@@ -31,7 +31,7 @@ We need a database with a blob supporting storage:
...
@@ -31,7 +31,7 @@ We need a database with a blob supporting storage:
>>> root1 = connection1.root()
>>> root1 = connection1.root()
>>> from ZODB.Blobs.Blob import Blob
>>> from ZODB.Blobs.Blob import Blob
Putting a Blob into a Connection works like any other Persistent object:
Putting a Blob into a Connection works like any other Persistent object:
:
>>> blob1 = Blob()
>>> blob1 = Blob()
>>> blob1.open('w').write('this is blob 1')
>>> blob1.open('w').write('this is blob 1')
...
@@ -39,7 +39,7 @@ Putting a Blob into a Connection works like any other Persistent object:
...
@@ -39,7 +39,7 @@ Putting a Blob into a Connection works like any other Persistent object:
>>> transaction.commit()
>>> transaction.commit()
Aborting a transaction involving a blob write cleans up uncommitted
Aborting a transaction involving a blob write cleans up uncommitted
file data:
file data:
:
>>> dead_blob = Blob()
>>> dead_blob = Blob()
>>> dead_blob.open('w').write('this is a dead blob')
>>> dead_blob.open('w').write('this is a dead blob')
...
@@ -53,7 +53,7 @@ file data:
...
@@ -53,7 +53,7 @@ file data:
False
False
Opening a blob gives us a filehandle. Getting data out of the
Opening a blob gives us a filehandle. Getting data out of the
resulting filehandle is accomplished via the filehandle's read method:
resulting filehandle is accomplished via the filehandle's read method:
:
>>> connection2 = database.open()
>>> connection2 = database.open()
>>> root2 = connection2.root()
>>> root2 = connection2.root()
...
@@ -70,7 +70,7 @@ resulting filehandle is accomplished via the filehandle's read method:
...
@@ -70,7 +70,7 @@ resulting filehandle is accomplished via the filehandle's read method:
Let's make another filehandle for read only to blob1a, this should bump
Let's make another filehandle for read only to blob1a, this should bump
up its refcount by one, and each file handle has a reference to the
up its refcount by one, and each file handle has a reference to the
(same) underlying blob:
(same) underlying blob:
:
>>> blob1afh2 = blob1a.open("r")
>>> blob1afh2 = blob1a.open("r")
>>> blob1afh2.blob._p_blob_refcounts()
>>> blob1afh2.blob._p_blob_refcounts()
...
@@ -81,7 +81,7 @@ up its refcount by one, and each file handle has a reference to the
...
@@ -81,7 +81,7 @@ up its refcount by one, and each file handle has a reference to the
True
True
Let's close the first filehandle we got from the blob, this should decrease
Let's close the first filehandle we got from the blob, this should decrease
its refcount by one:
its refcount by one:
:
>>> blob1afh1.close()
>>> blob1afh1.close()
>>> blob1a._p_blob_refcounts()
>>> blob1a._p_blob_refcounts()
...
@@ -89,7 +89,7 @@ its refcount by one:
...
@@ -89,7 +89,7 @@ its refcount by one:
Let's abort this transaction, and ensure that the filehandles that we
Let's abort this transaction, and ensure that the filehandles that we
opened are now closed and that the filehandle refcounts on the blob
opened are now closed and that the filehandle refcounts on the blob
object are cleared
.
object are cleared
::
>>> transaction.abort()
>>> transaction.abort()
>>> blob1afh1.blob._p_blob_refcounts()
>>> blob1afh1.blob._p_blob_refcounts()
...
@@ -106,7 +106,7 @@ object are cleared.
...
@@ -106,7 +106,7 @@ object are cleared.
If we open a blob for append, its write refcount should be nonzero.
If we open a blob for append, its write refcount should be nonzero.
Additionally, writing any number of bytes to the blobfile should
Additionally, writing any number of bytes to the blobfile should
result in the blob being marked "dirty" in the connection (we just
result in the blob being marked "dirty" in the connection (we just
aborted above, so the object should be "clean" when we start):
aborted above, so the object should be "clean" when we start):
:
>>> bool(blob1a._p_changed)
>>> bool(blob1a._p_changed)
False
False
...
@@ -120,7 +120,7 @@ aborted above, so the object should be "clean" when we start):
...
@@ -120,7 +120,7 @@ aborted above, so the object should be "clean" when we start):
True
True
We can open more than one blob object during the course of a single
We can open more than one blob object during the course of a single
transaction:
transaction:
:
>>> blob2 = Blob()
>>> blob2 = Blob()
>>> blob2.open('w').write('this is blob 3')
>>> blob2.open('w').write('this is blob 3')
...
@@ -133,7 +133,7 @@ transaction:
...
@@ -133,7 +133,7 @@ transaction:
Since we committed the current transaction above, the aggregate
Since we committed the current transaction above, the aggregate
changes we've made to blob, blob1a (these refer to the same object) and
changes we've made to blob, blob1a (these refer to the same object) and
blob2 (a different object) should be evident:
blob2 (a different object) should be evident:
:
>>> blob1.open('r').read()
>>> blob1.open('r').read()
'this is blob 1woot!'
'this is blob 1woot!'
...
@@ -145,7 +145,7 @@ blob2 (a different object) should be evident:
...
@@ -145,7 +145,7 @@ blob2 (a different object) should be evident:
We shouldn't be able to persist a blob filehandle at commit time
We shouldn't be able to persist a blob filehandle at commit time
(although the exception which is raised when an object cannot be
(although the exception which is raised when an object cannot be
pickled appears to be particulary unhelpful for casual users at the
pickled appears to be particulary unhelpful for casual users at the
moment):
moment):
:
>>> root1['wontwork'] = blob1.open('r')
>>> root1['wontwork'] = blob1.open('r')
>>> transaction.commit()
>>> transaction.commit()
...
@@ -153,12 +153,12 @@ moment):
...
@@ -153,12 +153,12 @@ moment):
...
...
TypeError: coercing to Unicode: need string or buffer, BlobFile found
TypeError: coercing to Unicode: need string or buffer, BlobFile found
Abort for good measure:
Abort for good measure:
:
>>> transaction.abort()
>>> transaction.abort()
Attempting to change a blob simultaneously from two different
Attempting to change a blob simultaneously from two different
connections should result in a write conflict error
.
connections should result in a write conflict error
::
>>> tm1 = transaction.TransactionManager()
>>> tm1 = transaction.TransactionManager()
>>> tm2 = transaction.TransactionManager()
>>> tm2 = transaction.TransactionManager()
...
@@ -179,7 +179,7 @@ connections should result in a write conflict error.
...
@@ -179,7 +179,7 @@ connections should result in a write conflict error.
ConflictError: database conflict error (oid 0x01, class ZODB.Blobs.Blob.Blob)
ConflictError: database conflict error (oid 0x01, class ZODB.Blobs.Blob.Blob)
After the conflict, the winning transaction's result is visible on both
After the conflict, the winning transaction's result is visible on both
connections:
connections:
:
>>> root3['blob1'].open('r').read()
>>> root3['blob1'].open('r').read()
'this is blob 1woot!this is from connection 3'
'this is blob 1woot!this is from connection 3'
...
@@ -188,7 +188,7 @@ connections:
...
@@ -188,7 +188,7 @@ connections:
'this is blob 1woot!this is from connection 3'
'this is blob 1woot!this is from connection 3'
BlobStorages implementation of getSize() includes the blob data and adds it to
BlobStorages implementation of getSize() includes the blob data and adds it to
the underlying storages result of getSize():
the underlying storages result of getSize():
:
>>> underlying_size = base_storage.getSize()
>>> underlying_size = base_storage.getSize()
>>> blob_size = blob_storage.getSize()
>>> blob_size = blob_storage.getSize()
...
@@ -199,7 +199,7 @@ the underlying storages result of getSize():
...
@@ -199,7 +199,7 @@ the underlying storages result of getSize():
Savepoints and Blobs
Savepoints and Blobs
--------------------
--------------------
We do support optimistic savepoints :
We do support optimistic savepoints :
:
>>> connection5 = database.open()
>>> connection5 = database.open()
>>> root5 = connection5.root()
>>> root5 = connection5.root()
...
@@ -221,7 +221,7 @@ We do support optimistic savepoints :
...
@@ -221,7 +221,7 @@ We do support optimistic savepoints :
"I'm a happy blob. And I'm singing."
"I'm a happy blob. And I'm singing."
>>> transaction.get().commit()
>>> transaction.get().commit()
We do not support non-optimistic savepoints:
We do not support non-optimistic savepoints:
:
>>> blob_fh = root5['blob'].open("a")
>>> blob_fh = root5['blob'].open("a")
>>> blob_fh.write(" And the weather is beautiful.")
>>> blob_fh.write(" And the weather is beautiful.")
...
@@ -238,7 +238,7 @@ Reading Blobs outside of a transaction
...
@@ -238,7 +238,7 @@ Reading Blobs outside of a transaction
--------------------------------------
--------------------------------------
If you want to read from a Blob outside of transaction boundaries (e.g. to
If you want to read from a Blob outside of transaction boundaries (e.g. to
stream a file to the browser), you can use the openDetached() method:
stream a file to the browser), you can use the openDetached() method:
:
>>> connection6 = database.open()
>>> connection6 = database.open()
>>> root6 = connection6.root()
>>> root6 = connection6.root()
...
@@ -251,7 +251,7 @@ stream a file to the browser), you can use the openDetached() method:
...
@@ -251,7 +251,7 @@ stream a file to the browser), you can use the openDetached() method:
>>> blob.openDetached().read()
>>> blob.openDetached().read()
"I'm a happy blob."
"I'm a happy blob."
Of course, that doesn't work for empty blobs
Of course, that doesn't work for empty blobs
::
>>> blob = Blob()
>>> blob = Blob()
>>> blob.openDetached()
>>> blob.openDetached()
...
@@ -259,7 +259,7 @@ Of course, that doesn't work for empty blobs
...
@@ -259,7 +259,7 @@ Of course, that doesn't work for empty blobs
...
...
BlobError: Blob does not exist.
BlobError: Blob does not exist.
nor when the Blob is already opened for writing:
nor when the Blob is already opened for writing:
:
>>> blob = Blob()
>>> blob = Blob()
>>> blob_fh = blob.open("wb")
>>> blob_fh = blob.open("wb")
...
@@ -268,7 +268,24 @@ nor when the Blob is already opened for writing:
...
@@ -268,7 +268,24 @@ nor when the Blob is already opened for writing:
...
...
BlobError: Already opened for writing.
BlobError: Already opened for writing.
It does work when the transaction was aborted, though:
You can also pass a factory to the openDetached method that will be used to
instantiate the file. This is used for e.g. creating filestream iterators::
>>> class customfile(file):
... pass
>>> blob_fh.write('Something')
>>> blob_fh.close()
>>> fh = blob.openDetached(customfile)
>>> fh # doctest: +ELLIPSIS
<open file '...', mode 'rb' at 0x...>
>>> isinstance(fh, customfile)
True
Note: Nasty people could use a factory that opens the file for writing. This
would be evil.
It does work when the transaction was aborted, though::
>>> blob = Blob()
>>> blob = Blob()
>>> blob_fh = blob.open("wb")
>>> blob_fh = blob.open("wb")
...
@@ -288,7 +305,7 @@ It does work when the transaction was aborted, though:
...
@@ -288,7 +305,7 @@ It does work when the transaction was aborted, though:
Teardown
Teardown
--------
--------
We don't need the storage directory and databases anymore:
We don't need the storage directory and databases anymore:
:
>>> import shutil
>>> import shutil
>>> shutil.rmtree(blob_dir)
>>> shutil.rmtree(blob_dir)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment