Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodbtools
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
Jérome Perrin
zodbtools
Commits
ed268117
Commit
ed268117
authored
Apr 30, 2023
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wip zodbtools/test/test_cmp.py
parent
bfa739a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
0 deletions
+72
-0
zodbtools/test/test_cmp.py
zodbtools/test/test_cmp.py
+72
-0
No files found.
zodbtools/test/test_cmp.py
0 → 100644
View file @
ed268117
# -*- coding: utf-8 -*-
# Copyright (C) 2023 Nexedi SA and Contributors.
# Jérome Perrin <jerome@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
# option) any later version, as published by the Free Software Foundation.
#
# You can also Link and Combine this program with other software covered by
# the terms of any of the Free Software licenses or any of the Open Source
# Initiative approved licenses and Convey the resulting work. Corresponding
# source of such a combination shall include the source code for all other
# software used.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
from
zodbtools.zodbcommit
import
zodbcommit
from
zodbtools.zodbdump
import
zodbdump
,
Transaction
,
ObjectData
,
ObjectDelete
,
ObjectCopy
from
zodbtools.util
import
storageFromURL
,
sha1
from
ZODB.utils
import
p64
,
u64
,
z64
from
ZODB._compat
import
BytesIO
,
dumps
,
_protocol
# XXX can't yet commit with arbitrary ext.bytes
from
tempfile
import
mkdtemp
from
shutil
import
rmtree
from
golang
import
func
,
defer
,
b
# verify zodbcmp.
@
func
def
test_zodbmp
(
zext
):
tmpd
=
mkdtemp
(
''
,
'zodbcmp.'
)
defer
(
lambda
:
rmtree
(
tmpd
))
stor
=
storageFromURL
(
'%s/2.fs'
%
tmpd
)
defer
(
stor
.
close
)
head
=
stor
.
lastTransaction
()
# commit some transactions via zodbcommit and verify if storage dump gives
# what is expected.
t1
=
Transaction
(
z64
,
' '
,
b'user name'
,
b'description ...'
,
zext
(
dumps
({
'a'
:
'b'
},
_protocol
)),
[
ObjectData
(
p64
(
1
),
b'data1'
,
b
(
'sha1'
),
sha1
(
b'data1'
)),
ObjectData
(
p64
(
2
),
b'data2'
,
b
(
'sha1'
),
sha1
(
b'data2'
))])
t1
.
tid
=
zodbcommit
(
stor
,
head
,
t1
)
t2
=
Transaction
(
z64
,
' '
,
b'user2'
,
b'desc2'
,
b''
,
[
ObjectDelete
(
p64
(
2
))])
t2
.
tid
=
zodbcommit
(
stor
,
t1
.
tid
,
t2
)
buf
=
BytesIO
()
zodbdump
(
stor
,
p64
(
u64
(
head
)
+
1
),
None
,
out
=
buf
)
dumped
=
buf
.
getvalue
()
assert
dumped
==
b''
.
join
([
_
.
zdump
()
for
_
in
(
t1
,
t2
)])
# ObjectCopy. XXX zodbcommit handled ObjectCopy by actually copying data,
# not referencing previous transaction via backpointer.
t3
=
Transaction
(
z64
,
' '
,
b'user3'
,
b'desc3'
,
b''
,
[
ObjectCopy
(
p64
(
1
),
t1
.
tid
)])
t3
.
tid
=
zodbcommit
(
stor
,
t2
.
tid
,
t3
)
data1_1
,
_
,
_
=
stor
.
loadBefore
(
p64
(
1
),
p64
(
u64
(
t1
.
tid
)
+
1
))
data1_3
,
_
,
_
=
stor
.
loadBefore
(
p64
(
1
),
p64
(
u64
(
t3
.
tid
)
+
1
))
assert
data1_1
==
data1_3
assert
data1_1
==
b'data1'
# just in case
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