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
656c1ae4
Commit
656c1ae4
authored
Sep 12, 2001
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add two tests for corrupted .index file
parent
2e5136c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
1 deletion
+79
-1
src/ZODB/tests/Corruption.py
src/ZODB/tests/Corruption.py
+73
-0
src/ZODB/tests/testFileStorage.py
src/ZODB/tests/testFileStorage.py
+6
-1
No files found.
src/ZODB/tests/Corruption.py
0 → 100644
View file @
656c1ae4
"""Do some minimal tests of data corruption"""
import
os
import
random
import
stat
import
tempfile
import
unittest
import
ZODB
,
ZODB
.
FileStorage
from
StorageTestBase
import
StorageTestBase
class
FileStorageCorruptTests
(
StorageTestBase
):
__super_setUp
=
StorageTestBase
.
setUp
__super_tearDown
=
StorageTestBase
.
tearDown
def
setUp
(
self
):
self
.
path
=
tempfile
.
mktemp
()
self
.
_storage
=
ZODB
.
FileStorage
.
FileStorage
(
self
.
path
,
create
=
1
)
self
.
__super_setUp
()
def
tearDown
(
self
):
self
.
__super_tearDown
()
for
ext
in
''
,
'.old'
,
'.tmp'
,
'.lock'
,
'.index'
:
path
=
self
.
path
+
ext
if
os
.
path
.
exists
(
path
):
os
.
remove
(
path
)
def
_do_stores
(
self
):
oids
=
[]
for
i
in
range
(
5
):
oid
=
self
.
_storage
.
new_oid
()
revid
=
self
.
_dostore
(
oid
)
oids
.
append
((
oid
,
revid
))
return
oids
def
_check_stores
(
self
,
oids
):
for
oid
,
revid
in
oids
:
data
,
s_revid
=
self
.
_storage
.
load
(
oid
,
''
)
self
.
assertEqual
(
s_revid
,
revid
)
def
checkTruncatedIndex
(
self
):
oids
=
self
.
_do_stores
()
self
.
_close
()
# truncation the index file
path
=
self
.
path
+
'.index'
self
.
assert_
(
os
.
path
.
exists
(
path
))
f
=
open
(
path
,
'r+'
)
f
.
seek
(
0
,
2
)
size
=
f
.
tell
()
f
.
seek
(
size
/
2
)
f
.
truncate
()
f
.
close
()
self
.
_storage
=
ZODB
.
FileStorage
.
FileStorage
(
self
.
path
)
self
.
_check_stores
(
oids
)
def
checkCorruptedIndex
(
self
):
oids
=
self
.
_do_stores
()
self
.
_close
()
# truncation the index file
path
=
self
.
path
+
'.index'
self
.
assert_
(
os
.
path
.
exists
(
path
))
size
=
os
.
stat
(
path
)[
stat
.
ST_SIZE
]
f
=
open
(
path
,
'r+'
)
while
f
.
tell
()
<
size
:
f
.
seek
(
random
.
randrange
(
1
,
size
/
10
),
1
)
f
.
write
(
'
\
000
'
)
f
.
close
()
self
.
_storage
=
ZODB
.
FileStorage
.
FileStorage
(
self
.
path
)
self
.
_check_stores
(
oids
)
src/ZODB/tests/testFileStorage.py
View file @
656c1ae4
...
...
@@ -10,6 +10,7 @@ import Synchronization
import
ConflictResolution
import
HistoryStorage
import
IteratorStorage
import
Corruption
class
FileStorageTests
(
StorageTestBase
.
StorageTestBase
,
...
...
@@ -37,7 +38,11 @@ class FileStorageTests(
os
.
remove
(
path
)
def
test_suite
():
return
unittest
.
makeSuite
(
FileStorageTests
,
'check'
)
suite
=
unittest
.
makeSuite
(
FileStorageTests
,
'check'
)
suite2
=
unittest
.
makeSuite
(
Corruption
.
FileStorageCorruptTests
,
'check'
)
suite
.
addTest
(
suite2
)
## suite._tests.extend(suite2._tests)
return
suite
def
main
():
alltests
=
test_suite
()
...
...
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