-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nodelay #680
Merged
Nodelay #680
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
c67fb88
Implement tcp_nodelay
asvetlov 0a2ce33
Add more tests
asvetlov d4edcbc
Skip test if unix socket is not available
asvetlov 96e378f
Force value for set_tcp_nodelay to bool
asvetlov 69296ec
Add cork support to StreamWriter
asvetlov 2ab6b89
Implement cork and nodelay interference
asvetlov c49cdc1
Use right order: disable conflicting flag before enabling another one
asvetlov d9a9cf2
Implement tcp_cork on web response level
asvetlov 2db9b74
Enable TCP_CORK for web.Response
asvetlov faa0b20
Enable TCP_CORK for sending static file
asvetlov 62bd949
Explicitly return to nodelay state after sending corked data
asvetlov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
import pytest | ||
import socket | ||
from aiohttp.parsers import StreamWriter | ||
from unittest import mock | ||
|
||
|
||
def test_nodelay_default(loop): | ||
transport = mock.Mock() | ||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | ||
transport.get_extra_info.return_value = s | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
assert not writer.tcp_nodelay | ||
assert not s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY) | ||
|
||
|
||
def test_set_nodelay_no_change(loop): | ||
transport = mock.Mock() | ||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | ||
transport.get_extra_info.return_value = s | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
writer.set_tcp_nodelay(False) | ||
assert not writer.tcp_nodelay | ||
assert not s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY) | ||
|
||
|
||
def test_set_nodelay_enable(loop): | ||
transport = mock.Mock() | ||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | ||
transport.get_extra_info.return_value = s | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
writer.set_tcp_nodelay(True) | ||
assert writer.tcp_nodelay | ||
assert s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY) | ||
|
||
|
||
def test_set_nodelay_enable_and_disable(loop): | ||
transport = mock.Mock() | ||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | ||
transport.get_extra_info.return_value = s | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
writer.set_tcp_nodelay(True) | ||
writer.set_tcp_nodelay(False) | ||
assert not writer.tcp_nodelay | ||
assert not s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY) | ||
|
||
|
||
def test_set_nodelay_enable_ipv6(loop): | ||
transport = mock.Mock() | ||
s = socket.socket(socket.AF_INET6, socket.SOCK_STREAM) | ||
transport.get_extra_info.return_value = s | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
writer.set_tcp_nodelay(True) | ||
assert writer.tcp_nodelay | ||
assert s.getsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY) | ||
|
||
|
||
@pytest.mark.skipif(not hasattr(socket, 'AF_UNIX'), | ||
reason="requires unix sockets") | ||
def test_set_nodelay_enable_unix(loop): | ||
transport = mock.Mock() | ||
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | ||
transport.get_extra_info.return_value = s | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
writer.set_tcp_nodelay(True) | ||
assert writer.tcp_nodelay | ||
|
||
|
||
def test_set_nodelay_enable_no_socket(loop): | ||
transport = mock.Mock() | ||
transport.get_extra_info.return_value = None | ||
proto = mock.Mock() | ||
reader = mock.Mock() | ||
writer = StreamWriter(transport, proto, reader, loop) | ||
writer.set_tcp_nodelay(True) | ||
assert writer.tcp_nodelay | ||
assert writer._socket is None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -591,6 +591,48 @@ def test_prepare_calls_signal(): | |
sig.assert_called_with(req, resp) | ||
|
||
|
||
def test_default_nodelay(): | ||
resp = StreamResponse() | ||
assert resp.tcp_nodelay | ||
|
||
|
||
def test_set_tcp_nodelay_before_start(): | ||
resp = StreamResponse() | ||
resp.set_tcp_nodelay(False) | ||
assert not resp.tcp_nodelay | ||
resp.set_tcp_nodelay(True) | ||
assert resp.tcp_nodelay | ||
|
||
|
||
@pytest.mark.run_loop | ||
def test_set_tcp_nodelay_on_start(): | ||
req = make_request('GET', '/') | ||
resp = StreamResponse() | ||
|
||
with mock.patch('aiohttp.web_reqrep.ResponseImpl'): | ||
resp_impl = yield from resp.prepare(req) | ||
resp_impl.transport.set_tcp_nodelay.assert_called_with(True) | ||
|
||
|
||
@pytest.mark.run_loop | ||
def test_set_tcp_nodelay_after_start(): | ||
req = make_request('GET', '/') | ||
resp = StreamResponse() | ||
|
||
with mock.patch('aiohttp.web_reqrep.ResponseImpl'): | ||
resp_impl = yield from resp.prepare(req) | ||
resp_impl.transport.set_tcp_nodelay.assert_called_with(True) | ||
resp.set_tcp_nodelay(False) | ||
assert not resp.tcp_nodelay | ||
resp_impl.transport.set_tcp_nodelay.assert_called_with(False) | ||
resp.set_tcp_nodelay(True) | ||
assert resp.tcp_nodelay | ||
resp_impl.transport.set_tcp_nodelay.assert_called_with(True) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
|
||
# Response class | ||
|
||
|
||
def test_response_ctor(): | ||
resp = Response() | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious, why not setter for
tcp_nodelay
property?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought about property's setter but found that syscall worth explicit function call.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.