| // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <memory> |
| |
| #include "base/macros.h" |
| #include "base/memory/scoped_refptr.h" |
| #include "base/test/bind_test_util.h" |
| #include "chrome/browser/extensions/extension_service_test_base.h" |
| #include "chrome/test/base/testing_profile.h" |
| #include "content/public/browser/browser_context.h" |
| #include "content/public/test/test_storage_partition.h" |
| #include "extensions/browser/api/socket/tcp_socket.h" |
| #include "net/base/address_list.h" |
| #include "net/base/completion_callback.h" |
| #include "net/base/io_buffer.h" |
| #include "net/base/net_errors.h" |
| #include "net/base/test_completion_callback.h" |
| #include "net/socket/socket_test_util.h" |
| #include "net/traffic_annotation/network_traffic_annotation.h" |
| #include "net/url_request/url_request_test_util.h" |
| #include "services/network/network_context.h" |
| #include "services/network/public/mojom/network_context.mojom.h" |
| |
| namespace extensions { |
| |
| namespace { |
| |
| const char kTestMsg[] = "abcdefghij"; |
| const int kTestMsgLength = strlen(kTestMsg); |
| |
| const char FAKE_ID[] = "abcdefghijklmnopqrst"; |
| |
| class TCPSocketUnitTestBase : public extensions::ExtensionServiceTestBase { |
| public: |
| TCPSocketUnitTestBase() |
| : url_request_context_(true /* delay_initialization */) {} |
| ~TCPSocketUnitTestBase() override {} |
| |
| std::unique_ptr<TCPSocket> CreateSocket() { |
| auto socket = std::make_unique<TCPSocket>(&profile_, FAKE_ID); |
| socket->SetStoragePartitionForTest(&partition_); |
| return socket; |
| } |
| |
| std::unique_ptr<TCPSocket> CreateAndConnectSocketWithAddress( |
| const net::IPEndPoint& ip_end_point) { |
| auto socket = CreateSocket(); |
| net::AddressList address(ip_end_point); |
| net::TestCompletionCallback callback; |
| socket->Connect(address, callback.callback()); |
| EXPECT_EQ(net::OK, callback.WaitForResult()); |
| return socket; |
| } |
| |
| std::unique_ptr<TCPSocket> CreateAndConnectSocket() { |
| net::IPEndPoint ip_end_point(net::IPAddress::IPv4Localhost(), 1234); |
| return CreateAndConnectSocketWithAddress(ip_end_point); |
| } |
| |
| // Reads data from |socket| and compares it with |expected_data|. |
| void ReadData(Socket* socket, const std::string& expected_data) { |
| std::string received_data; |
| const int count = 512; |
| while (true) { |
| base::RunLoop run_loop; |
| int net_error = net::ERR_FAILED; |
| socket->Read(count, |
| base::BindLambdaForTesting( |
| [&](int result, scoped_refptr<net::IOBuffer> io_buffer, |
| bool socket_destroying) { |
| net_error = result; |
| EXPECT_FALSE(socket_destroying); |
| if (result > 0) |
| received_data.append(io_buffer->data(), result); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| if (net_error <= 0) |
| break; |
| } |
| EXPECT_EQ(expected_data, received_data); |
| } |
| |
| protected: |
| // extensions::ExtensionServiceTestBase implementation. |
| void SetUp() override { InitializeEmptyExtensionService(); } |
| |
| void Initialize() { |
| url_request_context_.Init(); |
| network_context_ = std::make_unique<network::NetworkContext>( |
| nullptr, mojo::MakeRequest(&network_context_ptr_), |
| &url_request_context_); |
| partition_.set_network_context(network_context_ptr_.get()); |
| } |
| |
| net::TestURLRequestContext url_request_context_; |
| |
| private: |
| TestingProfile profile_; |
| content::TestStoragePartition partition_; |
| std::unique_ptr<network::NetworkContext> network_context_; |
| network::mojom::NetworkContextPtr network_context_ptr_; |
| }; |
| |
| } // namespace |
| |
| class TCPSocketUnitTest : public TCPSocketUnitTestBase, |
| public ::testing::WithParamInterface<net::IoMode> { |
| public: |
| TCPSocketUnitTest() : TCPSocketUnitTestBase() { |
| mock_client_socket_factory_.set_enable_read_if_ready(true); |
| url_request_context_.set_client_socket_factory( |
| &mock_client_socket_factory_); |
| Initialize(); |
| } |
| ~TCPSocketUnitTest() override {} |
| |
| net::MockClientSocketFactory* mock_client_socket_factory() { |
| return &mock_client_socket_factory_; |
| } |
| |
| private: |
| net::MockClientSocketFactory mock_client_socket_factory_; |
| }; |
| |
| INSTANTIATE_TEST_CASE_P(/* no prefix */, |
| TCPSocketUnitTest, |
| testing::Values(net::SYNCHRONOUS, net::ASYNC)); |
| |
| TEST_F(TCPSocketUnitTest, SocketConnectError) { |
| net::IPEndPoint ip_end_point(net::IPAddress::IPv4Localhost(), 1234); |
| net::StaticSocketDataProvider data_provider((base::span<net::MockRead>()), |
| base::span<net::MockWrite>()); |
| data_provider.set_connect_data( |
| net::MockConnect(net::ASYNC, net::ERR_FAILED, ip_end_point)); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateSocket(); |
| |
| net::AddressList address(ip_end_point); |
| net::TestCompletionCallback callback; |
| socket->Connect(address, callback.callback()); |
| EXPECT_EQ(net::ERR_FAILED, callback.WaitForResult()); |
| } |
| |
| TEST_P(TCPSocketUnitTest, SocketConnectAfterDisconnect) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = {net::MockRead(io_mode, net::OK)}; |
| net::StaticSocketDataProvider data_provider1(kReads, |
| base::span<net::MockWrite>()); |
| net::StaticSocketDataProvider data_provider2(kReads, |
| base::span<net::MockWrite>()); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider1); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider2); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| socket->Disconnect(false /* socket_destroying */); |
| net::TestCompletionCallback callback2; |
| net::IPEndPoint ip_end_point(net::IPAddress::IPv4Localhost(), 1234); |
| net::AddressList address(ip_end_point); |
| socket->Connect(address, callback2.callback()); |
| EXPECT_EQ(net::OK, callback2.WaitForResult()); |
| |
| EXPECT_TRUE(data_provider1.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider1.AllWriteDataConsumed()); |
| EXPECT_TRUE(data_provider2.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider2.AllWriteDataConsumed()); |
| } |
| |
| TEST_F(TCPSocketUnitTest, DestroyWhileReadPending) { |
| const net::MockRead kReads[] = { |
| net::MockRead(net::SYNCHRONOUS, net::ERR_IO_PENDING)}; |
| net::StaticSocketDataProvider data_provider(kReads, |
| base::span<net::MockWrite>()); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| int net_result = net::ERR_FAILED; |
| base::RunLoop run_loop; |
| int count = 1; |
| // Read one byte, and it should be pending. |
| socket->Read(count, |
| base::BindLambdaForTesting( |
| [&](int result, scoped_refptr<net::IOBuffer> io_buffer, |
| bool socket_destroying) { |
| net_result = result; |
| // |socket_destroying| should correctly denote that this |
| // read callback is invoked through the destructor of |
| // TCPSocket. |
| EXPECT_TRUE(socket_destroying); |
| run_loop.Quit(); |
| })); |
| // Destroy socket. |
| socket = nullptr; |
| // Wait for read callback. |
| run_loop.Run(); |
| EXPECT_EQ(net::ERR_CONNECTION_CLOSED, net_result); |
| } |
| |
| TEST_P(TCPSocketUnitTest, Read) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(io_mode, kTestMsg, kTestMsgLength), |
| net::MockRead(io_mode, net::OK)}; |
| net::StaticSocketDataProvider data_provider(kReads, |
| base::span<net::MockWrite>()); |
| |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| ReadData(socket.get(), kTestMsg); |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| // Tests the case where a message is split over two separate socket reads. |
| TEST_P(TCPSocketUnitTest, SocketMultipleRead) { |
| const char kFirstHalfTestMsg[] = "abcde"; |
| const char kSecondHalfTestMsg[] = "fghij"; |
| EXPECT_EQ(kTestMsg, std::string(kFirstHalfTestMsg) + kSecondHalfTestMsg); |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(io_mode, kFirstHalfTestMsg, strlen(kFirstHalfTestMsg)), |
| net::MockRead(io_mode, kSecondHalfTestMsg, strlen(kSecondHalfTestMsg)), |
| net::MockRead(io_mode, net::OK)}; |
| net::StaticSocketDataProvider data_provider(kReads, |
| base::span<net::MockWrite>()); |
| |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| ReadData(socket.get(), kTestMsg); |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| // Tests the case where read size is smaller than the actual message. |
| TEST_P(TCPSocketUnitTest, SocketPartialRead) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(io_mode, kTestMsg, kTestMsgLength), |
| net::MockRead(io_mode, net::OK)}; |
| net::StaticSocketDataProvider data_provider(kReads, |
| base::span<net::MockWrite>()); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| int count = 1; |
| std::string received_data; |
| while (true) { |
| int net_result = net::ERR_FAILED; |
| base::RunLoop run_loop; |
| socket->Read(count, |
| base::BindLambdaForTesting( |
| [&](int result, scoped_refptr<net::IOBuffer> io_buffer, |
| bool socket_destroying) { |
| net_result = result; |
| EXPECT_FALSE(socket_destroying); |
| if (result > 0) |
| received_data.append(io_buffer->data(), result); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| if (net_result <= 0) |
| break; |
| // Double the read size in the next iteration. |
| count *= 2; |
| } |
| EXPECT_EQ(kTestMsg, received_data); |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| TEST_P(TCPSocketUnitTest, ReadError) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(io_mode, kTestMsg, kTestMsgLength), |
| net::MockRead(io_mode, net::ERR_INSUFFICIENT_RESOURCES)}; |
| net::StaticSocketDataProvider data_provider(kReads, |
| base::span<net::MockWrite>()); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| const int count = 512; |
| int net_error = net::OK; |
| while (true) { |
| base::RunLoop run_loop; |
| socket->Read(count, |
| base::BindLambdaForTesting( |
| [&](int result, scoped_refptr<net::IOBuffer> io_buffer, |
| bool socket_destroying) { |
| net_error = result; |
| EXPECT_FALSE(socket_destroying); |
| if (result <= 0) { |
| EXPECT_FALSE(socket->IsConnected()); |
| EXPECT_EQ(nullptr, io_buffer); |
| } else { |
| EXPECT_TRUE(socket->IsConnected()); |
| } |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| if (net_error <= 0) |
| break; |
| } |
| // Note that TCPSocket only detects that receive pipe is broken and propagates |
| // it as 0 byte read. It doesn't know the specific net error code. To know the |
| // specific net error code, it needs to register itself as a |
| // network::mojom::SocketObserver. However, that gets tricky because of two |
| // separate mojo pipes. |
| EXPECT_EQ(0, net_error); |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| TEST_P(TCPSocketUnitTest, Write) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(net::SYNCHRONOUS, net::ERR_IO_PENDING)}; |
| const net::MockWrite kWrites[] = { |
| net::MockWrite(io_mode, kTestMsg, kTestMsgLength)}; |
| |
| net::StaticSocketDataProvider data_provider(kReads, kWrites); |
| |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| auto io_buffer = base::MakeRefCounted<net::StringIOBuffer>(kTestMsg); |
| net::TestCompletionCallback write_callback; |
| socket->Write(io_buffer.get(), kTestMsgLength, write_callback.callback()); |
| EXPECT_EQ(kTestMsgLength, write_callback.WaitForResult()); |
| } |
| |
| // Tests the case where a message is split over two separate socket writes. |
| TEST_P(TCPSocketUnitTest, MultipleWrite) { |
| const char kFirstHalfTestMsg[] = "abcde"; |
| const char kSecondHalfTestMsg[] = "fghij"; |
| EXPECT_EQ(kTestMsg, std::string(kFirstHalfTestMsg) + kSecondHalfTestMsg); |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(net::SYNCHRONOUS, net::ERR_IO_PENDING)}; |
| const net::MockWrite kWrites[] = { |
| net::MockWrite(io_mode, kFirstHalfTestMsg, strlen(kFirstHalfTestMsg)), |
| net::MockWrite(io_mode, kSecondHalfTestMsg, strlen(kSecondHalfTestMsg))}; |
| |
| net::StaticSocketDataProvider data_provider(kReads, kWrites); |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| int num_bytes_written = 0; |
| auto io_buffer = base::MakeRefCounted<net::StringIOBuffer>(kTestMsg); |
| auto drainable_io_buffer = base::MakeRefCounted<net::DrainableIOBuffer>( |
| io_buffer.get(), kTestMsgLength); |
| while (num_bytes_written < kTestMsgLength) { |
| net::TestCompletionCallback write_callback; |
| socket->Write(drainable_io_buffer.get(), kTestMsgLength - num_bytes_written, |
| write_callback.callback()); |
| int result = write_callback.WaitForResult(); |
| ASSERT_GT(result, net::OK); |
| drainable_io_buffer->DidConsume(result); |
| num_bytes_written += result; |
| // Flushes the write. |
| base::RunLoop().RunUntilIdle(); |
| } |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| TEST_P(TCPSocketUnitTest, PartialWrite) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(net::SYNCHRONOUS, net::ERR_IO_PENDING)}; |
| const net::MockWrite kWrites[] = { |
| net::MockWrite(io_mode, "a", 1), net::MockWrite(io_mode, "bc", 2), |
| net::MockWrite(io_mode, "defg", 4), net::MockWrite(io_mode, "hij", 3)}; |
| |
| net::StaticSocketDataProvider data_provider(kReads, kWrites); |
| |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| // Start with writing one byte, and double that in the next iteration. |
| int num_bytes_to_write = 1; |
| int num_bytes_written = 0; |
| auto io_buffer = base::MakeRefCounted<net::StringIOBuffer>(kTestMsg); |
| auto drainable_io_buffer = base::MakeRefCounted<net::DrainableIOBuffer>( |
| io_buffer.get(), kTestMsgLength); |
| while (num_bytes_written < kTestMsgLength) { |
| net::TestCompletionCallback write_callback; |
| socket->Write( |
| drainable_io_buffer.get(), |
| std::max(kTestMsgLength - num_bytes_written, num_bytes_to_write), |
| write_callback.callback()); |
| int result = write_callback.WaitForResult(); |
| ASSERT_GT(result, net::OK); |
| drainable_io_buffer->DidConsume(result); |
| num_bytes_written += result; |
| num_bytes_to_write *= 2; |
| // Flushes the write. |
| base::RunLoop().RunUntilIdle(); |
| } |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| TEST_P(TCPSocketUnitTest, WriteError) { |
| net::IoMode io_mode = GetParam(); |
| const net::MockRead kReads[] = { |
| net::MockRead(net::SYNCHRONOUS, net::ERR_IO_PENDING)}; |
| const net::MockWrite kWrites[] = { |
| net::MockWrite(io_mode, net::ERR_INSUFFICIENT_RESOURCES)}; |
| |
| net::StaticSocketDataProvider data_provider(kReads, kWrites); |
| |
| mock_client_socket_factory()->AddSocketDataProvider(&data_provider); |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| |
| // Mojo data pipe might buffer some write data, so continue writing until the |
| // write error is received. |
| auto io_buffer = base::MakeRefCounted<net::StringIOBuffer>(kTestMsg); |
| int net_error = net::OK; |
| while (true) { |
| base::RunLoop run_loop; |
| socket->Write(io_buffer.get(), kTestMsgLength, |
| base::BindLambdaForTesting([&](int result) { |
| EXPECT_EQ(result > 0, socket->IsConnected()); |
| net_error = result; |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| if (net_error <= 0) |
| break; |
| } |
| // Note that TCPSocket only detects that send pipe is broken and propagates |
| // it as a net::ERR_FAILED. It doesn't know the specific net error code. To do |
| // that, it needs to register itself as a network::mojom::SocketObserver. |
| EXPECT_EQ(net::ERR_FAILED, net_error); |
| EXPECT_TRUE(data_provider.AllReadDataConsumed()); |
| EXPECT_TRUE(data_provider.AllWriteDataConsumed()); |
| } |
| |
| namespace { |
| |
| class ExtensionsMockClientSocket : public net::MockTCPClientSocket { |
| public: |
| ExtensionsMockClientSocket(net::SocketDataProvider* provider, bool success) |
| : MockTCPClientSocket( |
| net::AddressList( |
| net::IPEndPoint(net::IPAddress::IPv4Localhost(), 1234)), |
| nullptr /* netlog */, |
| provider), |
| success_(success) { |
| this->set_enable_read_if_ready(true); |
| } |
| ~ExtensionsMockClientSocket() override {} |
| |
| bool SetNoDelay(bool no_delay) override { return success_; } |
| bool SetKeepAlive(bool enable, int delay) override { return success_; } |
| |
| private: |
| // Whether to return success for SetNoDelay() and SetKeepAlive(). |
| const bool success_; |
| |
| DISALLOW_COPY_AND_ASSIGN(ExtensionsMockClientSocket); |
| }; |
| |
| static const net::MockRead kMockReads[] = {net::MockRead(net::ASYNC, net::OK)}; |
| |
| // A ClientSocketFactory to create sockets that simulate SetNoDelay and |
| // SetKeepAlive success and failures. |
| class TestSocketFactory : public net::ClientSocketFactory { |
| public: |
| explicit TestSocketFactory(bool success) : success_(success) {} |
| ~TestSocketFactory() override = default; |
| |
| std::unique_ptr<net::DatagramClientSocket> CreateDatagramClientSocket( |
| net::DatagramSocket::BindType, |
| net::NetLog*, |
| const net::NetLogSource&) override { |
| NOTIMPLEMENTED(); |
| return nullptr; |
| } |
| std::unique_ptr<net::TransportClientSocket> CreateTransportClientSocket( |
| const net::AddressList&, |
| std::unique_ptr<net::SocketPerformanceWatcher>, |
| net::NetLog*, |
| const net::NetLogSource&) override { |
| providers_.push_back(std::make_unique<net::StaticSocketDataProvider>( |
| kMockReads, base::span<net::MockWrite>())); |
| return std::make_unique<ExtensionsMockClientSocket>(providers_.back().get(), |
| success_); |
| } |
| std::unique_ptr<net::SSLClientSocket> CreateSSLClientSocket( |
| std::unique_ptr<net::ClientSocketHandle>, |
| const net::HostPortPair&, |
| const net::SSLConfig&, |
| const net::SSLClientSocketContext&) override { |
| NOTIMPLEMENTED(); |
| return std::unique_ptr<net::SSLClientSocket>(); |
| } |
| std::unique_ptr<net::ProxyClientSocket> CreateProxyClientSocket( |
| std::unique_ptr<net::ClientSocketHandle> transport_socket, |
| const std::string& user_agent, |
| const net::HostPortPair& endpoint, |
| net::HttpAuthController* http_auth_controller, |
| bool tunnel, |
| bool using_spdy, |
| net::NextProto negotiated_protocol, |
| bool is_https_proxy, |
| const net::NetworkTrafficAnnotationTag& traffic_annotation) override { |
| NOTIMPLEMENTED(); |
| return nullptr; |
| } |
| void ClearSSLSessionCache() override { NOTIMPLEMENTED(); } |
| |
| private: |
| std::vector<std::unique_ptr<net::StaticSocketDataProvider>> providers_; |
| // Whether to return success for net::TransportClientSocket::SetNoDelay() and |
| // SetKeepAlive(). |
| const bool success_; |
| |
| DISALLOW_COPY_AND_ASSIGN(TestSocketFactory); |
| }; |
| |
| } // namespace |
| |
| class TCPSocketSettingsTest : public TCPSocketUnitTestBase, |
| public ::testing::WithParamInterface<bool> { |
| public: |
| TCPSocketSettingsTest() |
| : TCPSocketUnitTestBase(), client_socket_factory_(GetParam()) { |
| url_request_context_.set_client_socket_factory(&client_socket_factory_); |
| Initialize(); |
| } |
| ~TCPSocketSettingsTest() override {} |
| |
| private: |
| TestSocketFactory client_socket_factory_; |
| }; |
| |
| INSTANTIATE_TEST_CASE_P(/* no prefix */, |
| TCPSocketSettingsTest, |
| testing::Bool()); |
| |
| TEST_P(TCPSocketSettingsTest, SetNoDelay) { |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| bool expected_success = GetParam(); |
| { |
| base::RunLoop run_loop; |
| socket->SetNoDelay(true, base::BindLambdaForTesting([&](bool success) { |
| EXPECT_EQ(expected_success, success); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| } |
| |
| { |
| base::RunLoop run_loop; |
| socket->SetNoDelay(false, base::BindLambdaForTesting([&](bool success) { |
| EXPECT_EQ(expected_success, success); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| } |
| } |
| |
| TEST_P(TCPSocketSettingsTest, SetKeepAlive) { |
| std::unique_ptr<TCPSocket> socket = CreateAndConnectSocket(); |
| bool expected_success = GetParam(); |
| { |
| base::RunLoop run_loop; |
| socket->SetKeepAlive(true /* enable */, 123 /* delay */, |
| base::BindLambdaForTesting([&](bool success) { |
| EXPECT_EQ(expected_success, success); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| } |
| |
| { |
| base::RunLoop run_loop; |
| socket->SetKeepAlive(false /* enable */, 123 /* delay */, |
| base::BindLambdaForTesting([&](bool success) { |
| EXPECT_EQ(expected_success, success); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| } |
| } |
| |
| class TCPSocketServerTest : public TCPSocketUnitTestBase { |
| public: |
| TCPSocketServerTest() : TCPSocketUnitTestBase() { Initialize(); } |
| ~TCPSocketServerTest() override {} |
| |
| private: |
| net::MockClientSocketFactory mock_client_socket_factory_; |
| }; |
| |
| TEST_F(TCPSocketServerTest, ListenAccept) { |
| // Create a server socket. |
| std::unique_ptr<TCPSocket> socket = CreateSocket(); |
| net::TestCompletionCallback callback; |
| base::RunLoop run_loop; |
| socket->Listen( |
| "127.0.0.1", 0 /* port */, 1 /* backlog */, |
| base::BindLambdaForTesting([&](int result, const std::string& error_msg) { |
| EXPECT_EQ(net::OK, result); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| net::IPEndPoint server_addr; |
| EXPECT_TRUE(socket->GetLocalAddress(&server_addr)); |
| |
| base::RunLoop accept_run_loop; |
| net::IPEndPoint accept_client_addr; |
| socket->Accept(base::BindLambdaForTesting( |
| [&](int result, network::mojom::TCPConnectedSocketPtr accepted_socket, |
| const base::Optional<net::IPEndPoint>& remote_addr, |
| mojo::ScopedDataPipeConsumerHandle receive_handle, |
| mojo::ScopedDataPipeProducerHandle send_handle) { |
| EXPECT_EQ(net::OK, result); |
| accept_client_addr = remote_addr.value(); |
| accept_run_loop.Quit(); |
| })); |
| |
| // Create a client socket to talk to the server socket. |
| auto client_socket = CreateAndConnectSocketWithAddress(server_addr); |
| accept_run_loop.Run(); |
| |
| net::IPEndPoint peer_addr; |
| EXPECT_TRUE(client_socket->GetPeerAddress(&peer_addr)); |
| net::IPEndPoint client_addr; |
| EXPECT_TRUE(client_socket->GetLocalAddress(&client_addr)); |
| EXPECT_EQ(server_addr, peer_addr); |
| EXPECT_EQ(client_addr, accept_client_addr); |
| } |
| |
| TEST_F(TCPSocketServerTest, ReadAndWrite) { |
| // Create a server socket. |
| std::unique_ptr<TCPSocket> socket = CreateSocket(); |
| net::TestCompletionCallback callback; |
| base::RunLoop run_loop; |
| socket->Listen( |
| "127.0.0.1", 0 /* port */, 1 /* backlog */, |
| base::BindLambdaForTesting([&](int result, const std::string& error_msg) { |
| EXPECT_EQ(net::OK, result); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| net::IPEndPoint server_addr; |
| EXPECT_TRUE(socket->GetLocalAddress(&server_addr)); |
| |
| base::RunLoop accept_run_loop; |
| std::unique_ptr<TCPSocket> accepted_socket; |
| |
| socket->Accept(base::BindLambdaForTesting( |
| [&](int result, network::mojom::TCPConnectedSocketPtr connected_socket, |
| const base::Optional<net::IPEndPoint>& remote_addr, |
| mojo::ScopedDataPipeConsumerHandle receive_handle, |
| mojo::ScopedDataPipeProducerHandle send_handle) { |
| EXPECT_EQ(net::OK, result); |
| accepted_socket = std::make_unique<TCPSocket>( |
| std::move(connected_socket), std::move(receive_handle), |
| std::move(send_handle), remote_addr, FAKE_ID); |
| accept_run_loop.Quit(); |
| })); |
| |
| // Create a client socket to talk to the server socket. |
| auto client_socket = CreateAndConnectSocketWithAddress(server_addr); |
| net::TestCompletionCallback connect_callback; |
| accept_run_loop.Run(); |
| |
| // Send data from the client to the server. |
| auto io_buffer = base::MakeRefCounted<net::StringIOBuffer>(kTestMsg); |
| net::TestCompletionCallback write_callback; |
| client_socket->Write(io_buffer.get(), kTestMsgLength, |
| write_callback.callback()); |
| EXPECT_EQ(kTestMsgLength, write_callback.WaitForResult()); |
| |
| std::string received_contents; |
| while (received_contents.size() < kTestMsgLength) { |
| base::RunLoop run_loop; |
| accepted_socket->Read( |
| kTestMsgLength, |
| base::BindLambdaForTesting([&](int result, |
| scoped_refptr<net::IOBuffer> io_buffer, |
| bool socket_destroying) { |
| ASSERT_GT(result, 0); |
| EXPECT_FALSE(socket_destroying); |
| received_contents.append(std::string(io_buffer->data(), result)); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| } |
| EXPECT_EQ(kTestMsg, received_contents); |
| |
| // Send data from the server to the client. |
| net::TestCompletionCallback write_callback2; |
| accepted_socket->Write(io_buffer.get(), kTestMsgLength, |
| write_callback2.callback()); |
| EXPECT_EQ(kTestMsgLength, write_callback2.WaitForResult()); |
| |
| std::string sent_contents; |
| while (sent_contents.size() < kTestMsgLength) { |
| base::RunLoop run_loop; |
| client_socket->Read( |
| kTestMsgLength, |
| base::BindLambdaForTesting([&](int result, |
| scoped_refptr<net::IOBuffer> io_buffer, |
| bool socket_destroying) { |
| ASSERT_GT(result, 0); |
| EXPECT_FALSE(socket_destroying); |
| sent_contents.append(std::string(io_buffer->data(), result)); |
| run_loop.Quit(); |
| })); |
| run_loop.Run(); |
| } |
| EXPECT_EQ(kTestMsg, sent_contents); |
| } |
| |
| } // namespace extensions |