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
e9ecca3a
Commit
e9ecca3a
authored
Apr 29, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
7b4ad4d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
40 deletions
+76
-40
wcfs/δbtail_test.go
wcfs/δbtail_test.go
+76
-40
No files found.
wcfs/δbtail_test.go
View file @
e9ecca3a
...
...
@@ -21,28 +21,6 @@ package main
// tests for δbtail.go
// XXX doc (2 ways of testing: explicit + allstructs), treegen py helper
// Adjacency matrix
//
// A, B - topologies ex T/B1 T2/B1-B3
// Av, Bv - topologies with values ex T/B1:a T2/B1:b-B3:c
//
// δ(Av, Bv) - full diff {k -> v} for changed keys; DEL = k -> ø
// ex δ(T/B1:a, T2/B1:b-B3:c) = {1:b 3:c} XXX include "was" value too?
//
// Δ(T, Av, Bv) - subset of δ(Av, Bv) corresponding to initial tracking set T
// ex Δ({1}, T/B1:a, T2/B1:b-B3:c) = {1:b} (no 3:c)
//
// kadj(A,B) {} k -> {k'}: - adjacency matrix
// ∃v1,v2: k'∈ Δ({k}, Av1, Bv2)
//
// ex kadj(T/B1, T2/B1-B3) = {1:{1} 3:{1,3} ∞:{1,3}} k ∈ A+B+{∞}
// + {0:{1} 2:{1,3} + ... all possible keys}
//
// Δ(T, Av, Bv) = δ(Av, Bv)/kadj(A,B)[T]
//
// i.e. = δ(Av, Bv) for k: k ∈ U kadj(A,B)[·]
// ·∈T
import
(
"bufio"
"context"
...
...
@@ -544,12 +522,51 @@ func xzgetBlkDataAt(db *zodb.DB, zblkOid zodb.Oid, at zodb.Tid) string {
return
xzgetBlkData
(
ctx
,
zconn
,
zblkOid
)
}
// KAdjMatrix is adjacency matrix that describes how set of tracked keys
// changes when tree topology is updated from A to B.
//
// Adjacency matrix
//
// A, B - topologies ex T/B1 T2/B1-B3
// Av, Bv - topologies with values ex T/B1:a T2/B1:b-B3:c
//
// δ(Av, Bv) - full diff {k -> v} for changed keys; DEL = k -> ø
// ex δ(T/B1:a, T2/B1:b-B3:c) = {1:b 3:c} XXX include "was" value too?
//
// Δ(T, Av, Bv) - subset of δ(Av, Bv) corresponding to initial tracking set T
// ex Δ({1}, T/B1:a, T2/B1:b-B3:c) = {1:b} (no 3:c)
//
// kadj(A,B) {} k -> {k'}: - adjacency matrix
// ∃v1,v2: k'∈ Δ({k}, Av1, Bv2)
//
// ex kadj(T/B1, T2/B1-B3) = {1:{1} 3:{1,3} ∞:{1,3}} k ∈ A+B+{∞}
// + {0:{1} 2:{1,3} + ... all possible keys}
//
// Δ(T, Av, Bv) = δ(Av, Bv)/kadj(A,B)[T]
//
// i.e. = δ(Av, Bv) for k: k ∈ U kadj(A,B)[·]
// ·∈T
type
KAdjMatrix
map
[
Key
]
SetKey
// Map returns kadj·keys .
func
(
kadj
KAdjMatrix
)
Map
(
keys
SetKey
)
SetKey
{
res
:=
SetKey
{}
for
k
:=
range
keys
{
to
,
ok
:=
kadj
[
k
]
if
!
ok
{
panicf
(
"%d ∉ kadj
\n\n
kadj: %v"
,
k
,
kadj
)
}
res
.
Update
(
to
)
}
return
res
}
// KAdj computes adjacency matrix for t1 -> t2 transition.
// KAdj itself is verified by testΔBTail on entries with .kadjOK set.
func
KAdj
(
t1
,
t2
*
tTreeCommit
)
(
kadj
map
[
Key
]
SetKey
)
{
func
KAdj
(
t1
,
t2
*
tTreeCommit
)
(
kadj
KAdjMatrix
)
{
// kadj = {} k -> adjacent keys.
// if k is tracked -> changes to adjacents must be in Update(t1->t2).
kadj
=
map
[
Key
]
SetKey
{}
kadj
=
KAdjMatrix
{}
for
k
:=
range
allTestKeys
(
t1
,
t2
)
{
adj1
:=
SetKey
{}
adj2
:=
SetKey
{}
...
...
@@ -798,7 +815,7 @@ func assertTrack(t *testing.T, subj string, trackIdx, trackIdxOK trackIndex) {
}
}
// assertTrack verifies state of .trackIdx and .
newTrackIdx
.
// assertTrack verifies state of .trackIdx and .
trackNew
.
// XXX place
func
(
δbtail
*
ΔBtail
)
assertTrack
(
t
*
testing
.
T
,
subj
string
,
trackIdxOK
,
trackNewOK
trackIndex
)
{
assertTrack
(
t
,
subj
+
": trackIdx"
,
δbtail
.
trackIdx
,
trackIdxOK
)
...
...
@@ -848,28 +865,27 @@ func xverifyΔBTail_rebuild(t *testing.T, db *zodb.DB, treeRoot zodb.Oid, t0, t1
keys1
.
Add
(
tAllKeyv
[
idx1
])
}
t
.
Run
(
fmt
.
Sprintf
(
"
track=%s
;R"
,
keys1
),
func
(
t
*
testing
.
T
)
{
t
.
Run
(
fmt
.
Sprintf
(
"
T(%s)
;R"
,
keys1
),
func
(
t
*
testing
.
T
)
{
δbtail
:=
NewΔBtail
(
t0
.
at
,
db
)
// assert trackIdx=ø,
newTrackIdx
=ø, vδB=[]
// assert trackIdx=ø,
trackNew
=ø, vδB=[]
δbtail
.
assertTrack
(
t
,
"@at0"
,
ø
,
ø
)
// XXX + vδB
step1
:=
func
()
{
// XXX will be not needed with clone
xverifyΔBTail_rebuild1
(
t
,
db
,
δbtail
,
t0
,
t1
,
treeRoot
,
xat
,
// after Update(t0->t1):
/*trackIdx=*/
ø
,
// after Track(keys)
keys1
,
/*
newTrackIdx
=*/
t1
.
xkv
.
trackIdx
(
keys1
),
/*
trackNew
=*/
t1
.
xkv
.
trackIdx
(
keys1
),
// after rebuild
/*trackIdx=*/
t1
.
xkv
.
trackIdx
(
keys1
),
/*vδB=*/
/*XXX temp*/
nil
/*[δ1/Tadj(keys1)*/
)
assertTrack
(
t
,
"@at1 trackIdx"
,
δbtail
.
trackIdx
,
t1
.
xkv
.
trackIdx
(
keys1
))
}
step1
()
/* TODO reenable
// tRestKeys2 = tAllKeys - keys1
tRestKeys2
:=
tAllKeys
.
Difference
(
keys1
)
tRestKeyv2
:=
tRestKeys2
.
SortedElements
()
...
...
@@ -879,13 +895,33 @@ func xverifyΔBTail_rebuild(t *testing.T, db *zodb.DB, treeRoot zodb.Oid, t0, t1
keys2
.
Add
(
tRestKeyv2
[
idx2
])
}
δbtail_ = δbtail.Clone()
// XXX t.Run
xverifyΔBTail_rebuild1(t, δbtail_, t1, t2, keys,
trackIdx==Tadj(t2,Tadj(t1,keys1)) v Tadj(t2,keys2),
vδΒ=[δ1/keys1+keys2, δ2/keys1+keys2])
t
.
Run
(
fmt
.
Sprintf
(
" →%s T(%s);R"
,
t2
.
tree
,
keys2
),
func
(
t
*
testing
.
T
)
{
// XXX implement Clone and go the clone way if test starts running too slow
//δbtail_ := δbtail.Clone()
δbtail
=
NewΔBtail
(
t0
.
at
,
db
)
step1
()
δbtail_
:=
δbtail
// tracked keys1 becomes tracked keys1_2 after Update(t1->t2)
keys1_2
:=
kadj12
.
Map
(
keys1
)
xverifyΔBTail_rebuild1
(
t
,
db
,
δbtail_
,
t1
,
t2
,
treeRoot
,
xat
,
// after Update(t1->t2):
/*trackIdx=*/
t2
.
xkv
.
trackIdx
(
keys1_2
),
// after Track(keys2)
keys2
,
// FIXME vvv trackNew should not cover ranges that are already in trackIdx
/*trackNew*/
t2
.
xkv
.
trackIdx
(
keys2
),
// after rebuild
/* trackIdx=*/
t2
.
xkv
.
trackIdx
(
keys1_2
.
Union
(
keys2
)),
/*vδB=*/
/*XXX temp*/
nil
/*[δ1/keys1+keys2, δ2/keys1+keys2]*/
)
})
}
*/
})
}
})
...
...
@@ -894,7 +930,7 @@ func xverifyΔBTail_rebuild(t *testing.T, db *zodb.DB, treeRoot zodb.Oid, t0, t1
// xverifyΔBTail_rebuild1 verifies ΔBTree state:
// 1. after Update(ti->tj),
// 2. after further Track(keys), rebuild
func
xverifyΔBTail_rebuild1
(
t
*
testing
.
T
,
db
*
zodb
.
DB
,
δbtail
*
ΔBtail
,
ti
,
tj
*
tTreeCommit
,
treeRoot
zodb
.
Oid
,
xat
map
[
zodb
.
Tid
]
string
,
trackIdx
trackIndex
,
keys
SetKey
,
newTrackIdx
,
trackIdxAfterRebuild
trackIndex
,
vδBok
[]
ΔB
)
{
func
xverifyΔBTail_rebuild1
(
t
*
testing
.
T
,
db
*
zodb
.
DB
,
δbtail
*
ΔBtail
,
ti
,
tj
*
tTreeCommit
,
treeRoot
zodb
.
Oid
,
xat
map
[
zodb
.
Tid
]
string
,
trackIdx
trackIndex
,
keys
SetKey
,
trackNew
,
trackIdxAfterRebuild
trackIndex
,
vδBok
[]
ΔB
)
{
X
:=
exc
.
Raiseif
ø
:=
trackIndex
{}
...
...
@@ -916,7 +952,7 @@ func xverifyΔBTail_rebuild1(t *testing.T, db *zodb.DB, δbtail *ΔBtail, ti, tj
err
=
δbtail
.
Track
(
k
,
ok
,
path
);
X
(
err
)
}
δbtail
.
assertTrack
(
t
,
fmt
.
Sprintf
(
"@%s: after Track(%v)"
,
xat
[
tj
.
at
],
keys
),
trackIdx
,
newTrackIdx
)
δbtail
.
assertTrack
(
t
,
fmt
.
Sprintf
(
"@%s: after Track(%v)"
,
xat
[
tj
.
at
],
keys
),
trackIdx
,
trackNew
)
// XXX vδB=[ø]
δbtail
.
rebuild
()
...
...
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