Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
482dd563
Commit
482dd563
authored
Jul 30, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
75a0c643
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
90 additions
and
1 deletion
+90
-1
go/zodb/btree/btree_test.go
go/zodb/btree/btree_test.go
+12
-1
go/zodb/btree/py/gen-testdata
go/zodb/btree/py/gen-testdata
+67
-0
go/zodb/btree/testdata/1.fs
go/zodb/btree/testdata/1.fs
+0
-0
go/zodb/btree/testdata/1.fs.index
go/zodb/btree/testdata/1.fs.index
+0
-0
go/zodb/btree/ztestdata_expect_test.go
go/zodb/btree/ztestdata_expect_test.go
+11
-0
No files found.
go/zodb/btree/btree_test.go
View file @
482dd563
...
@@ -19,9 +19,20 @@
...
@@ -19,9 +19,20 @@
package
btree
package
btree
//go:generate ./py/gen-testdata
import
(
import
(
//
"testing"
"testing"
)
)
type
kv
struct
{
key
int64
value
interface
{}
}
type
testEntry
struct
{
oid
zodb
.
Oid
itemv
[]
kv
}
// TODO
// TODO
go/zodb/btree/py/gen-testdata
0 → 100755
View file @
482dd563
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright (C) 2018 Nexedi SA and Contributors.
# Kirill Smelkov <kirr@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.
"""generate test data for btree serialization tests"""
from
ZODB.DB
import
DB
from
BTrees.LOBTree
import
LOBucket
from
ZODB.utils
import
u64
import
os
,
transaction
from
golang.gcompat
import
qq
def
main
():
outfs
=
"testdata/1.fs"
os
.
remove
(
outfs
)
db
=
DB
(
outfs
)
conn
=
db
.
open
()
root
=
conn
.
root
()
root
[
'b0'
]
=
b0
=
LOBucket
()
# empty bucket
root
[
'b1'
]
=
b1
=
LOBucket
([(
10
,
17
)])
# 1k -> 1v
root
[
'b2'
]
=
b2
=
LOBucket
([(
15
,
1
),
(
23
,
"hello"
)])
# 2k -> 2v
transaction
.
commit
()
with
open
(
"ztestdata_expect_test.go"
,
"w"
)
as
f
:
def
emit
(
v
):
print
>>
f
,
v
emit
(
"// Code generated by %s; DO NOT EDIT."
%
__file__
)
emit
(
"package btree
\
n
"
)
emit
(
"import
\
"
lab.nexedi.com/kirr/neo/go/zodb
\
"
\
n
"
)
emit
(
"
\
n
var _1fs_testEntry = [...]testEntry{"
)
for
b
in
(
b0
,
b1
,
b2
):
s
=
"testEntry{oid: %s, itemv: []kv{"
%
u64
(
b
.
_p_oid
)
for
k
,
v
in
b
.
items
():
if
isinstance
(
v
,
str
):
v
=
qq
(
v
)
s
+=
"{%s, %s}, "
%
(
k
,
v
)
s
+=
"},"
emit
(
"
\
t
"
+
s
)
emit
(
"}"
)
conn
.
close
()
db
.
close
()
if
__name__
==
'__main__'
:
main
()
go/zodb/btree/testdata/1.fs
0 → 100644
View file @
482dd563
File added
go/zodb/btree/testdata/1.fs.index
0 → 100644
View file @
482dd563
File added
go/zodb/btree/ztestdata_expect_test.go
0 → 100644
View file @
482dd563
// Code generated by ./py/gen-testdata; DO NOT EDIT.
package
btree
import
"lab.nexedi.com/kirr/neo/go/zodb"
var
_1fs_testEntry
=
[
...
]
testEntry
{
testEntry
{
oid
:
1
,
itemv
:
[]
kv
{},
testEntry
{
oid
:
2
,
itemv
:
[]
kv
{{
10
,
17
},
},
testEntry
{
oid
:
3
,
itemv
:
[]
kv
{{
15
,
1
},
{
23
,
"hello"
},
},
}
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