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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
09958e6e
Commit
09958e6e
authored
Apr 28, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More test cases that need to close blobs to deterministically run under PyPy.
parent
d1324825
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
15 deletions
+14
-15
src/ZEO/tests/protocols.test
src/ZEO/tests/protocols.test
+8
-8
src/ZEO/tests/zeo_blob_cache.test
src/ZEO/tests/zeo_blob_cache.test
+6
-7
No files found.
src/ZEO/tests/protocols.test
View file @
09958e6e
...
...
@@ -34,7 +34,7 @@ A current client should be able to connect to a old server:
2
>>> conn.root()['
blob1
'] = ZODB.blob.Blob()
>>>
r = conn.root()['
blob1
'].open('
w
')
.write(b'
blob
data
1
')
>>>
with conn.root()['
blob1
'].open('
w
') as f: r = f
.write(b'
blob
data
1
')
>>> transaction.commit()
>>> db2 = ZEO.DB(addr, blob_dir='
server
-
blobs
', shared_blob_dir=True)
...
...
@@ -44,7 +44,7 @@ A current client should be able to connect to a old server:
... conn2.root().x += 1
... transaction.commit()
>>> conn2.root()['
blob2
'] = ZODB.blob.Blob()
>>>
r = conn2.root()['
blob2
'].open('
w
')
.write(b'
blob
data
2
')
>>>
with conn2.root()['
blob2
'].open('
w
') as f: r = f
.write(b'
blob
data
2
')
>>> transaction.commit()
>>> @wait_until("Get the new data")
...
...
@@ -76,9 +76,9 @@ A current client should be able to connect to a old server:
>>> conn.root().x
17
>>>
conn.root()['
blob1
'].open()
.read()
>>>
with conn.root()['
blob1
'].open() as f: f
.read()
b'
blob
data
1
'
>>>
conn.root()['
blob2
'].open()
.read()
>>>
with conn.root()['
blob2
'].open() as f: f
.read()
b'
blob
data
2
'
Note that when taking to a 3.8 server, iteration won'
t
work
:
...
...
@@ -118,7 +118,7 @@ Note that we'll have to pull some hijinks:
2
>>> conn.root()['
blob1
'] = ZODB.blob.Blob()
>>>
r = conn.root()['
blob1
'].open('
w
')
.write(b'
blob
data
1
')
>>>
with conn.root()['
blob1
'].open('
w
') as f: r = f
.write(b'
blob
data
1
')
>>> transaction.commit()
>>> db2 = ZEO.DB(addr, blob_dir='
server
-
blobs
', shared_blob_dir=True)
...
...
@@ -128,7 +128,7 @@ Note that we'll have to pull some hijinks:
... conn2.root().x += 1
... transaction.commit()
>>> conn2.root()['
blob2
'] = ZODB.blob.Blob()
>>>
r = conn2.root()['
blob2
'].open('
w
')
.write(b'
blob
data
2
')
>>>
with conn2.root()['
blob2
'].open('
w
') as f: r = f
.write(b'
blob
data
2
')
>>> transaction.commit()
...
...
@@ -161,9 +161,9 @@ Note that we'll have to pull some hijinks:
>>> conn.root().x
17
>>>
conn.root()['
blob1
'].open()
.read()
>>>
with conn.root()['
blob1
'].open() as f: f
.read()
b'
blob
data
1
'
>>>
conn.root()['
blob2
'].open()
.read()
>>>
with conn.root()['
blob2
'].open() as f: f
.read()
b'
blob
data
2
'
Make some old protocol calls:
...
...
src/ZEO/tests/zeo_blob_cache.test
View file @
09958e6e
...
...
@@ -52,7 +52,7 @@ Now, let's write some data:
>>>
conn
=
db
.
open
()
>>>
for
i
in
range
(
1
,
101
)
:
...
conn
.
root
()[
i
]
=
ZODB
.
blob
.
Blob
()
...
w
=
conn
.
root
()[
i
]
.
open
(
'w'
)
.
write
((
chr
(
i
)
*
100
)
.
encode
(
'ascii'
))
...
w
ith
conn
.
root
()[
i
]
.
open
(
'w'
)
as
f
:
w
=
f
.
write
((
chr
(
i
)
*
100
)
.
encode
(
'ascii'
))
>>>
transaction
.
commit
()
We
've committed 10000 bytes of data, but our target size is 3000. We
...
...
@@ -85,19 +85,19 @@ necessary, but the cache size will remain not much bigger than the
target:
>>> for i in range(1, 101):
...
data = conn.root()[i].open()
.read()
...
with conn.root()[i].open() as f: data = f
.read()
... if data != (chr(i)*100).encode('
ascii
'):
... print('
bad
data
', repr(chr(i)), repr(data))
>>> wait_until("size is reduced", check, 99, onfail)
>>> for i in range(1, 101):
...
data = conn.root()[i].open()
.read()
...
with conn.root()[i].open() as f: data = f
.read()
... if data != (chr(i)*100).encode('
ascii
'):
... print('
bad
data
', repr(chr(i)), repr(data))
>>> for i in range(1, 101):
...
data = conn.root()[i].open('
c
')
.read()
...
with conn.root()[i].open('
c
') as f: data = f
.read()
... if data != (chr(i)*100).encode('
ascii
'):
... print('
bad
data
', repr(chr(i)), repr(data))
...
...
@@ -114,11 +114,11 @@ provoke problems:
...
for
i
in
range
(
300
)
:
...
time
.
sleep
(
0
)
...
i
=
random
.
randint
(
1
,
100
)
...
data
=
conn
.
root
()[
i
]
.
open
()
.
read
()
...
with
conn
.
root
()[
i
]
.
open
()
as
f
:
data
=
f
.
read
()
...
if
data
!=
(
chr
(
i
)
*
100
)
.
encode
(
'ascii'
)
:
...
print
(
'bad data'
,
repr
(
chr
(
i
)),
repr
(
data
))
...
i
=
random
.
randint
(
1
,
100
)
...
data
=
conn
.
root
()[
i
]
.
open
(
'c'
)
.
read
()
...
with
conn
.
root
()[
i
]
.
open
(
'c'
)
as
f
:
data
=
f
.
read
()
...
if
data
!=
(
chr
(
i
)
*
100
)
.
encode
(
'ascii'
)
:
...
print
(
'bad data'
,
repr
(
chr
(
i
)),
repr
(
data
))
...
db
.
close
()
...
...
@@ -143,4 +143,3 @@ provoke problems:
>>>
db
.
close
()
>>>
ZEO
.
ClientStorage
.
BlobCacheLayout
.
size
=
orig_blob_cache_layout_size
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