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
aa4b6f46
Commit
aa4b6f46
authored
May 24, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
a51a0274
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
go/zodb/persistent.go
go/zodb/persistent.go
+7
-7
go/zodb/persistent_test.go
go/zodb/persistent_test.go
+10
-10
No files found.
go/zodb/persistent.go
View file @
aa4b6f46
...
...
@@ -208,10 +208,10 @@ func (obj *Persistent) PActivate(ctx context.Context) (err error) {
"%v (want %v); .loading = %p (want %p)"
,
s
,
GHOST
,
l
,
loading
))
}
obj
.
serial
=
serial
// try to pass loaded state to object
if
err
==
nil
{
obj
.
serial
=
serial
switch
istate
:=
obj
.
istate
()
.
(
type
)
{
case
Stateful
:
err
=
istate
.
SetState
(
state
)
...
...
@@ -229,15 +229,15 @@ func (obj *Persistent) PActivate(ctx context.Context) (err error) {
if
err
==
nil
{
obj
.
state
=
UPTODATE
}
}
loading
.
err
=
err
// force reload on next activate if it was an error
if
err
!=
nil
{
}
else
{
obj
.
serial
=
InvalidTid
// force reload on next activate if it was an error
obj
.
loading
=
nil
}
loading
.
err
=
err
obj
.
mu
.
Unlock
()
close
(
loading
.
ready
)
...
...
go/zodb/persistent_test.go
View file @
aa4b6f46
...
...
@@ -487,13 +487,11 @@ func testPersistentDB(t0 *testing.T, rawcache bool) {
tdb
.
Add
(
101
,
"bonjour"
)
tdb
.
Add
(
102
,
"monde"
)
tdb
.
Commit
()
at0
:=
tdb
.
head
at0
:=
tdb
.
Commit
()
tdb
.
Add
(
101
,
"hello"
)
tdb
.
Add
(
102
,
"world"
)
tdb
.
Commit
()
at1
:=
tdb
.
head
at1
:=
tdb
.
Commit
()
tdb
.
Reopen
()
// so that at0 is not covered by db.δtail
db
:=
tdb
.
db
...
...
@@ -555,8 +553,7 @@ func testPersistentDB(t0 *testing.T, rawcache bool) {
// commit change to obj2 from external process
tdb
.
Add
(
102
,
"kitty"
)
tdb
.
Commit
()
at2
:=
tdb
.
head
at2
:=
tdb
.
Commit
()
// new db connection should see the change
t2
:=
tdb
.
Open
(
&
ConnOptions
{})
...
...
@@ -733,6 +730,8 @@ func testPersistentDB(t0 *testing.T, rawcache bool) {
t
.
checkObj
(
robj2
,
102
,
InvalidTid
,
GHOST
,
0
)
}
// Verify that PActivate works correctly after hitting an error from the storage.
// In this test the error is "object was deleted".
func
TestActivateAfterDelete
(
t0
*
testing
.
T
)
{
assert
:=
assert
.
New
(
t0
)
...
...
@@ -768,7 +767,7 @@ func TestActivateAfterDelete(t0 *testing.T) {
// conn stays at older view with obj pinned into the cache
t
.
checkObj
(
obj
,
101
,
at0
,
UPTODATE
,
0
,
"object"
)
// finish transaction and reopen new connection - it should be conn
// finish transaction and reopen new connection - it should be
the same
conn
t
.
Abort
()
assert
.
Equal
(
db
.
pool
,
[]
*
Connection
{
t
.
conn
})
t_
:=
tdb
.
Open
(
&
ConnOptions
{})
...
...
@@ -780,7 +779,7 @@ func TestActivateAfterDelete(t0 *testing.T) {
t
.
checkObj
(
obj
,
101
,
InvalidTid
,
GHOST
,
0
)
// activating obj should give "no data" error
//
(loop because second activate used to panic)
//
loop because second activate used to panic
for
i
:=
0
;
i
<
10
;
i
++
{
err
:=
obj
.
PActivate
(
t
.
ctx
)
eok
:=
&
NoDataError
{
Oid
:
obj
.
POid
(),
DeletedAt
:
at1
}
...
...
@@ -789,6 +788,8 @@ func TestActivateAfterDelete(t0 *testing.T) {
if
!
reflect
.
DeepEqual
(
e
,
eok
)
{
t
.
Fatalf
(
"(%d) after delete: err:
\n
have: %s
\n
want cause: %s"
,
i
,
err
,
eok
)
}
// obj should stay in the cache in ghost state
t
.
checkObj
(
obj
,
101
,
InvalidTid
,
GHOST
,
0
)
}
}
...
...
@@ -805,8 +806,7 @@ func TestLiveCache(t0 *testing.T) {
tdb
.
Add
(
102
,
"труд"
)
tdb
.
Add
(
103
,
"май"
)
tdb
.
Add
(
104
,
"весна"
)
tdb
.
Commit
()
at1
:=
tdb
.
head
at1
:=
tdb
.
Commit
()
zcc
:=
&
zcacheControl
{
map
[
Oid
]
PCachePolicy
{
// obj1 - default (currently: don't pin and don't keep state)
...
...
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