Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
89661f8a
Commit
89661f8a
authored
May 18, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
c11ae38b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
wcfs/internal/xbtree_test.py
wcfs/internal/xbtree_test.py
+18
-4
No files found.
wcfs/internal/xbtree_test.py
View file @
89661f8a
...
...
@@ -532,19 +532,33 @@ def test_restructure():
b1
,
b3
=
kids
assert
isinstance
(
b1
,
LOBucket
)
assert
isinstance
(
b3
,
LOBucket
)
assert
crack_bucket
(
b1
)
==
([
1
],
[
X
[
1
]])
assert
crack_bucket
(
b3
)
==
([
3
],
[
X
[
3
]])
assert
b1
.
_p_oid
is
None
assert
b3
.
_p_oid
is
None
assert
crack_bucket
(
b1
)
==
([
1
],
[
X
[
1
]])
assert
crack_bucket
(
b3
)
==
([
3
],
[
X
[
3
]])
R
(
z
,
'T/B1,3'
)
# buckets were not yet assigned oid -> collapsed back into T
assert
crack_btree
(
z
)
==
(
BTREE_ONE
,
((
1
,
X
[
1
],
3
,
X
[
3
]),),
None
)
R
(
z
,
'T3/B1-B3'
)
kind
,
keys
,
kids
=
crack_btree
(
z
)
# XXX here -> btree_one
assert
(
kind
,
keys
)
==
(
BTREE_NORMAL
,
[
3
])
assert
len
(
kids
)
==
2
b1
,
b3
=
kids
assert
isinstance
(
b1
,
LOBucket
)
assert
isinstance
(
b3
,
LOBucket
)
assert
b1
.
_p_oid
is
None
assert
b3
.
_p_oid
is
None
assert
crack_bucket
(
b1
)
==
([
1
],
[
X
[
1
]])
assert
crack_bucket
(
b3
)
==
([
3
],
[
X
[
3
]])
transaction
.
commit
()
# force buckets to be assigned oid
assert
b1
.
_p_oid
is
not
None
assert
b3
.
_p_oid
is
not
None
# XXX -> after commit
# restructure back - buckets not collapsed back into T
R
(
z
,
'T/B1,3'
)
kind
,
keys
,
kids
=
crack_btree
(
z
)
assert
(
kind
,
keys
)
==
(
BTREE_NORMAL
,
[])
assert
len
(
kids
)
==
1
b13
=
kids
[
0
]
...
...
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