Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1ffee9a0
Commit
1ffee9a0
authored
Oct 01, 2016
by
Berker Peksag
Browse files
Options
Browse Files
Download
Plain Diff
Issue #28283: Merge from 3.5
parents
34efe258
ae99454e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
86 deletions
+0
-86
Lib/test/test_asyncio/test_selector_events.py
Lib/test/test_asyncio/test_selector_events.py
+0
-86
No files found.
Lib/test/test_asyncio/test_selector_events.py
View file @
1ffee9a0
...
...
@@ -2,8 +2,6 @@
import
errno
import
socket
import
threading
import
time
import
unittest
from
unittest
import
mock
try
:
...
...
@@ -1786,89 +1784,5 @@ class SelectorDatagramTransportTests(test_utils.TestCase):
'Fatal error on transport
\
n
protocol:.*
\
n
transport:.*'
),
exc_info
=
(
ConnectionRefusedError
,
MOCK_ANY
,
MOCK_ANY
))
class
SelectorLoopFunctionalTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
loop
=
asyncio
.
new_event_loop
()
asyncio
.
set_event_loop
(
None
)
def
tearDown
(
self
):
self
.
loop
.
close
()
@
asyncio
.
coroutine
def
recv_all
(
self
,
sock
,
nbytes
):
buf
=
b''
while
len
(
buf
)
<
nbytes
:
buf
+=
yield
from
self
.
loop
.
sock_recv
(
sock
,
nbytes
-
len
(
buf
))
return
buf
def
test_sock_connect_sock_write_race
(
self
):
TIMEOUT
=
3.0
PAYLOAD
=
b'DATA'
*
1024
*
1024
class
Server
(
threading
.
Thread
):
def
__init__
(
self
,
*
args
,
srv_sock
,
**
kwargs
):
super
().
__init__
(
*
args
,
**
kwargs
)
self
.
srv_sock
=
srv_sock
def
run
(
self
):
with
self
.
srv_sock
:
srv_sock
.
listen
(
100
)
sock
,
addr
=
self
.
srv_sock
.
accept
()
sock
.
settimeout
(
TIMEOUT
)
with
sock
:
sock
.
sendall
(
b'helo'
)
buf
=
bytearray
()
while
len
(
buf
)
<
len
(
PAYLOAD
):
pack
=
sock
.
recv
(
1024
*
65
)
if
not
pack
:
break
buf
.
extend
(
pack
)
@
asyncio
.
coroutine
def
client
(
addr
):
sock
=
socket
.
socket
()
with
sock
:
sock
.
setblocking
(
False
)
started
=
time
.
monotonic
()
while
True
:
if
time
.
monotonic
()
-
started
>
TIMEOUT
:
self
.
fail
(
'unable to connect to the socket'
)
return
try
:
yield
from
self
.
loop
.
sock_connect
(
sock
,
addr
)
except
OSError
:
yield
from
asyncio
.
sleep
(
0.05
,
loop
=
self
.
loop
)
else
:
break
# Give 'Server' thread a chance to accept and send b'helo'
time
.
sleep
(
0.1
)
data
=
yield
from
self
.
recv_all
(
sock
,
4
)
self
.
assertEqual
(
data
,
b'helo'
)
yield
from
self
.
loop
.
sock_sendall
(
sock
,
PAYLOAD
)
srv_sock
=
socket
.
socket
()
srv_sock
.
settimeout
(
TIMEOUT
)
srv_sock
.
bind
((
'127.0.0.1'
,
0
))
srv_addr
=
srv_sock
.
getsockname
()
srv
=
Server
(
srv_sock
=
srv_sock
,
daemon
=
True
)
srv
.
start
()
try
:
self
.
loop
.
run_until_complete
(
asyncio
.
wait_for
(
client
(
srv_addr
),
loop
=
self
.
loop
,
timeout
=
TIMEOUT
))
finally
:
srv
.
join
()
if
__name__
==
'__main__'
:
unittest
.
main
()
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