| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/jingle_glue/chromium_socket_factory.h" | 5 #include "remoting/jingle_glue/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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 sending_socket.reset(socket_factory_->CreateUdpSocket( | 59 sending_socket.reset(socket_factory_->CreateUdpSocket( |
| 60 talk_base::SocketAddress("127.0.0.1", 0), 0, 0)); | 60 talk_base::SocketAddress("127.0.0.1", 0), 0, 0)); |
| 61 ASSERT_TRUE(sending_socket.get() != NULL); | 61 ASSERT_TRUE(sending_socket.get() != NULL); |
| 62 EXPECT_EQ(sending_socket->GetState(), | 62 EXPECT_EQ(sending_socket->GetState(), |
| 63 talk_base::AsyncPacketSocket::STATE_BOUND); | 63 talk_base::AsyncPacketSocket::STATE_BOUND); |
| 64 address = sending_socket->GetLocalAddress(); | 64 address = sending_socket->GetLocalAddress(); |
| 65 | 65 |
| 66 std::string test_packet("TEST PACKET"); | 66 std::string test_packet("TEST PACKET"); |
| 67 int attempts = 0; | 67 int attempts = 0; |
| 68 talk_base::PacketOptions options; |
| 68 while (last_packet_.empty() && attempts++ < kMaxAttempts) { | 69 while (last_packet_.empty() && attempts++ < kMaxAttempts) { |
| 69 sending_socket->SendTo(test_packet.data(), test_packet.size(), | 70 sending_socket->SendTo(test_packet.data(), test_packet.size(), |
| 70 socket_->GetLocalAddress(), | 71 socket_->GetLocalAddress(), options); |
| 71 talk_base::DSCP_NO_CHANGE); | |
| 72 message_loop_.PostDelayedTask(FROM_HERE, run_loop_.QuitClosure(), | 72 message_loop_.PostDelayedTask(FROM_HERE, run_loop_.QuitClosure(), |
| 73 kAttemptPeriod); | 73 kAttemptPeriod); |
| 74 run_loop_.Run(); | 74 run_loop_.Run(); |
| 75 } | 75 } |
| 76 EXPECT_EQ(test_packet, last_packet_); | 76 EXPECT_EQ(test_packet, last_packet_); |
| 77 EXPECT_EQ(address, last_address_); | 77 EXPECT_EQ(address, last_address_); |
| 78 } | 78 } |
| 79 | 79 |
| 80 TEST_F(ChromiumSocketFactoryTest, SetOptions) { | 80 TEST_F(ChromiumSocketFactoryTest, SetOptions) { |
| 81 EXPECT_EQ(0, socket_->SetOption(talk_base::Socket::OPT_SNDBUF, 4096)); | 81 EXPECT_EQ(0, socket_->SetOption(talk_base::Socket::OPT_SNDBUF, 4096)); |
| 82 EXPECT_EQ(0, socket_->SetOption(talk_base::Socket::OPT_RCVBUF, 4096)); | 82 EXPECT_EQ(0, socket_->SetOption(talk_base::Socket::OPT_RCVBUF, 4096)); |
| 83 } | 83 } |
| 84 | 84 |
| 85 TEST_F(ChromiumSocketFactoryTest, PortRange) { | 85 TEST_F(ChromiumSocketFactoryTest, PortRange) { |
| 86 const int kMinPort = 12400; | 86 const int kMinPort = 12400; |
| 87 const int kMaxPort = 12410; | 87 const int kMaxPort = 12410; |
| 88 socket_.reset(socket_factory_->CreateUdpSocket( | 88 socket_.reset(socket_factory_->CreateUdpSocket( |
| 89 talk_base::SocketAddress("127.0.0.1", 0), kMaxPort, kMaxPort)); | 89 talk_base::SocketAddress("127.0.0.1", 0), kMaxPort, kMaxPort)); |
| 90 ASSERT_TRUE(socket_.get() != NULL); | 90 ASSERT_TRUE(socket_.get() != NULL); |
| 91 EXPECT_EQ(socket_->GetState(), talk_base::AsyncPacketSocket::STATE_BOUND); | 91 EXPECT_EQ(socket_->GetState(), talk_base::AsyncPacketSocket::STATE_BOUND); |
| 92 EXPECT_GE(socket_->GetLocalAddress().port(), kMinPort); | 92 EXPECT_GE(socket_->GetLocalAddress().port(), kMinPort); |
| 93 EXPECT_LE(socket_->GetLocalAddress().port(), kMaxPort); | 93 EXPECT_LE(socket_->GetLocalAddress().port(), kMaxPort); |
| 94 } | 94 } |
| 95 | 95 |
| 96 } // namespace remoting | 96 } // namespace remoting |
| OLD | NEW |