| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/protocol/chromium_socket_factory.h" | 5 #include "remoting/protocol/chromium_socket_factory.h" |
| 6 | 6 |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
| 9 #include "testing/gmock/include/gmock/gmock.h" | 9 #include "testing/gmock/include/gmock/gmock.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 VerifyCanSendAndReceive(sending_socket.get()); | 78 VerifyCanSendAndReceive(sending_socket.get()); |
| 79 } | 79 } |
| 80 | 80 |
| 81 TEST_F(ChromiumSocketFactoryTest, SetOptions) { | 81 TEST_F(ChromiumSocketFactoryTest, SetOptions) { |
| 82 EXPECT_EQ(0, socket_->SetOption(rtc::Socket::OPT_SNDBUF, 4096)); | 82 EXPECT_EQ(0, socket_->SetOption(rtc::Socket::OPT_SNDBUF, 4096)); |
| 83 EXPECT_EQ(0, socket_->SetOption(rtc::Socket::OPT_RCVBUF, 4096)); | 83 EXPECT_EQ(0, socket_->SetOption(rtc::Socket::OPT_RCVBUF, 4096)); |
| 84 } | 84 } |
| 85 | 85 |
| 86 TEST_F(ChromiumSocketFactoryTest, PortRange) { | 86 TEST_F(ChromiumSocketFactoryTest, PortRange) { |
| 87 const int kMinPort = 12400; | 87 const uint16 kMinPort = 12400; |
| 88 const int kMaxPort = 12410; | 88 const uint16 kMaxPort = 12410; |
| 89 socket_.reset(socket_factory_->CreateUdpSocket( | 89 socket_.reset(socket_factory_->CreateUdpSocket( |
| 90 rtc::SocketAddress("127.0.0.1", 0), kMaxPort, kMaxPort)); | 90 rtc::SocketAddress("127.0.0.1", 0), kMaxPort, kMaxPort)); |
| 91 ASSERT_TRUE(socket_.get() != NULL); | 91 ASSERT_TRUE(socket_.get() != NULL); |
| 92 EXPECT_EQ(socket_->GetState(), rtc::AsyncPacketSocket::STATE_BOUND); | 92 EXPECT_EQ(socket_->GetState(), rtc::AsyncPacketSocket::STATE_BOUND); |
| 93 EXPECT_GE(socket_->GetLocalAddress().port(), kMinPort); | 93 EXPECT_GE(socket_->GetLocalAddress().port(), kMinPort); |
| 94 EXPECT_LE(socket_->GetLocalAddress().port(), kMaxPort); | 94 EXPECT_LE(socket_->GetLocalAddress().port(), kMaxPort); |
| 95 } | 95 } |
| 96 | 96 |
| 97 TEST_F(ChromiumSocketFactoryTest, TransientError) { | 97 TEST_F(ChromiumSocketFactoryTest, TransientError) { |
| 98 scoped_ptr<rtc::AsyncPacketSocket> sending_socket( | 98 scoped_ptr<rtc::AsyncPacketSocket> sending_socket( |
| 99 socket_factory_->CreateUdpSocket( | 99 socket_factory_->CreateUdpSocket( |
| 100 rtc::SocketAddress("127.0.0.1", 0), 0, 0)); | 100 rtc::SocketAddress("127.0.0.1", 0), 0, 0)); |
| 101 std::string test_packet("TEST"); | 101 std::string test_packet("TEST"); |
| 102 | 102 |
| 103 // Try sending a packet to an IPv6 address from a socket that's bound to an | 103 // Try sending a packet to an IPv6 address from a socket that's bound to an |
| 104 // IPv4 address. This send is expected to fail, but the socket should still be | 104 // IPv4 address. This send is expected to fail, but the socket should still be |
| 105 // functional. | 105 // functional. |
| 106 sending_socket->SendTo(test_packet.data(), test_packet.size(), | 106 sending_socket->SendTo(test_packet.data(), test_packet.size(), |
| 107 rtc::SocketAddress("::1", 0), | 107 rtc::SocketAddress("::1", 0), |
| 108 rtc::PacketOptions()); | 108 rtc::PacketOptions()); |
| 109 | 109 |
| 110 // Verify that socket is still usable. | 110 // Verify that socket is still usable. |
| 111 VerifyCanSendAndReceive(sending_socket.get()); | 111 VerifyCanSendAndReceive(sending_socket.get()); |
| 112 } | 112 } |
| 113 | 113 |
| 114 } // namespace protocol | 114 } // namespace protocol |
| 115 } // namespace remoting | 115 } // namespace remoting |
| OLD | NEW |