Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
92b20381
Commit
92b20381
authored
Jun 14, 2001
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A bunch of unittests for the iterator() method and interface of the
storage API.
parent
afed4164
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
src/ZODB/tests/IteratorStorage.py
src/ZODB/tests/IteratorStorage.py
+26
-0
No files found.
src/ZODB/tests/IteratorStorage.py
0 → 100644
View file @
92b20381
# Run tests against the iterator() interface for storages. Any storage that
# supports the iterator() method should be able to pass all these tests.
from
ZODB.tests.MinPO
import
MinPO
from
ZODB.tests.StorageTestBase
import
zodb_unpickle
class
IteratorStorage
:
def
checkSimpleIteration
(
self
):
# Store a bunch of revisions of a single object
oid
=
self
.
_storage
.
new_oid
()
revid1
=
self
.
_dostore
(
oid
,
data
=
MinPO
(
11
))
revid2
=
self
.
_dostore
(
oid
,
revid
=
revid1
,
data
=
MinPO
(
12
))
revid3
=
self
.
_dostore
(
oid
,
revid
=
revid2
,
data
=
MinPO
(
13
))
# Now iterate over all the transactions
val
=
11
txniter
=
self
.
_storage
.
iterator
()
for
reciter
,
revid
in
zip
(
txniter
,
(
revid1
,
revid2
,
revid3
)):
assert
reciter
.
tid
==
revid
for
rec
in
reciter
:
assert
rec
.
oid
==
oid
assert
rec
.
serial
==
revid
assert
rec
.
version
==
''
assert
zodb_unpickle
(
rec
.
data
)
==
MinPO
(
val
)
val
+=
1
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