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
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
Joshua
wendelin.core
Commits
bc0ea4bf
Commit
bc0ea4bf
authored
May 02, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
547b77af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
wcfs/wcfs_test.py
wcfs/wcfs_test.py
+7
-6
No files found.
wcfs/wcfs_test.py
View file @
bc0ea4bf
...
...
@@ -36,6 +36,7 @@ import os, os.path, subprocess, threading
from
errno
import
EINVAL
from
golang
import
go
,
chan
,
func
,
defer
,
select
from
golang
import
context
from
golang.x.sync
import
errgroup
from
zodbtools.util
import
ashex
as
h
,
fromhex
from
pytest
import
raises
from
.internal
import
mm
...
...
@@ -650,18 +651,18 @@ def test_wcfs():
w
=
t
.
openwatch
()
ctx
=
context
.
background
()
# XXX stub
wg
,
ctx
=
errgroup
.
with_context
(
ctx
)
done
=
chan
()
@
func
def
_
():
defer
(
done
.
close
)
pinv
=
w
.
expectPin
(
ctx
,
[(
zf
,
2
,
at1
),
(
zf
,
3
,
at0
)])
#pinv = w.expectPin(ctx, {zf: [(2, at1), (3, at0)]}) XXX <- this way better? (sugar)
for
p
in
pinv
:
p
.
reply
(
b"ack"
)
go
(
_
)
assert
w
.
sendReq
(
ctx
,
b"watch %s @%s"
%
(
h
(
zf
.
_p_oid
),
h
(
at1
)))
==
"ok"
done
.
recv
()
wg
.
go
(
_
)
def
_
():
assert
w
.
sendReq
(
ctx
,
b"watch %s @%s"
%
(
h
(
zf
.
_p_oid
),
h
(
at1
)))
==
"ok"
wg
.
go
(
_
)
wg
.
wait
()
print
(
'
\
n
CCC
\
n
'
)
...
...
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