Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Kirill Smelkov
gevent
Commits
256dfa9f
Commit
256dfa9f
authored
Oct 29, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test__api.py: ignore tests with socketpair on windows
parent
d019fc6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
24 deletions
+26
-24
greentest/test__api.py
greentest/test__api.py
+26
-24
No files found.
greentest/test__api.py
View file @
256dfa9f
...
...
@@ -62,30 +62,32 @@ class Test(greentest.TestCase):
assert
'Invalid switch'
in
str
(
result
),
repr
(
str
(
result
))
switcher
.
kill
()
def
_test_wait_read_invalid_switch
(
self
,
sleep
):
sock1
,
sock2
=
socket
.
socketpair
()
try
:
p
=
gevent
.
spawn
(
util
.
wrap_errors
(
AssertionError
,
socket
.
wait_read
),
sock1
.
fileno
())
gevent
.
get_hub
().
loop
.
run_callback
(
switch_None
,
p
)
if
sleep
is
not
None
:
gevent
.
sleep
(
sleep
)
result
=
p
.
get
()
assert
isinstance
(
result
,
AssertionError
),
result
assert
'Invalid switch'
in
str
(
result
),
repr
(
str
(
result
))
finally
:
sock1
.
close
()
sock2
.
close
()
def
test_invalid_switch_None
(
self
):
self
.
_test_wait_read_invalid_switch
(
None
)
def
test_invalid_switch_0
(
self
):
self
.
_test_wait_read_invalid_switch
(
0
)
def
test_invalid_switch_1
(
self
):
self
.
_test_wait_read_invalid_switch
(
0.001
)
# we don't test wait_write the same way, because socket is always ready to write
if
hasattr
(
socket
,
'socketpair'
):
def
_test_wait_read_invalid_switch
(
self
,
sleep
):
sock1
,
sock2
=
socket
.
socketpair
()
try
:
p
=
gevent
.
spawn
(
util
.
wrap_errors
(
AssertionError
,
socket
.
wait_read
),
sock1
.
fileno
())
gevent
.
get_hub
().
loop
.
run_callback
(
switch_None
,
p
)
if
sleep
is
not
None
:
gevent
.
sleep
(
sleep
)
result
=
p
.
get
()
assert
isinstance
(
result
,
AssertionError
),
result
assert
'Invalid switch'
in
str
(
result
),
repr
(
str
(
result
))
finally
:
sock1
.
close
()
sock2
.
close
()
def
test_invalid_switch_None
(
self
):
self
.
_test_wait_read_invalid_switch
(
None
)
def
test_invalid_switch_0
(
self
):
self
.
_test_wait_read_invalid_switch
(
0
)
def
test_invalid_switch_1
(
self
):
self
.
_test_wait_read_invalid_switch
(
0.001
)
# we don't test wait_write the same way, because socket is always ready to write
def
switch_None
(
g
):
...
...
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