OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 while (GetPooledSession()) { | 66 while (GetPooledSession()) { |
67 TakePooledSession(); | 67 TakePooledSession(); |
68 ++count; | 68 ++count; |
69 } | 69 } |
70 return count; | 70 return count; |
71 } | 71 } |
72 | 72 |
73 std::unique_ptr<cricket::FakePortAllocator> allocator_; | 73 std::unique_ptr<cricket::FakePortAllocator> allocator_; |
74 rtc::SocketAddress stun_server_1{"11.11.11.11", 3478}; | 74 rtc::SocketAddress stun_server_1{"11.11.11.11", 3478}; |
75 rtc::SocketAddress stun_server_2{"22.22.22.22", 3478}; | 75 rtc::SocketAddress stun_server_2{"22.22.22.22", 3478}; |
76 cricket::RelayServerConfig turn_server_1{"11.11.11.11", 3478, | 76 cricket::RelayServerConfig turn_server_1{ |
77 kTurnUsername, kTurnPassword, | 77 "11.11.11.11", 3478, |
78 cricket::PROTO_UDP, false}; | 78 kTurnUsername, kTurnPassword, |
79 cricket::RelayServerConfig turn_server_2{"22.22.22.22", 3478, | 79 cricket::PROTO_UDP, cricket::PROTO_FLAG_NONE}; |
80 kTurnUsername, kTurnPassword, | 80 cricket::RelayServerConfig turn_server_2{ |
81 cricket::PROTO_UDP, false}; | 81 "22.22.22.22", 3478, |
| 82 kTurnUsername, kTurnPassword, |
| 83 cricket::PROTO_UDP, cricket::PROTO_FLAG_NONE}; |
82 }; | 84 }; |
83 | 85 |
84 TEST_F(PortAllocatorTest, TestDefaults) { | 86 TEST_F(PortAllocatorTest, TestDefaults) { |
85 EXPECT_EQ(0UL, allocator_->stun_servers().size()); | 87 EXPECT_EQ(0UL, allocator_->stun_servers().size()); |
86 EXPECT_EQ(0UL, allocator_->turn_servers().size()); | 88 EXPECT_EQ(0UL, allocator_->turn_servers().size()); |
87 EXPECT_EQ(0, allocator_->candidate_pool_size()); | 89 EXPECT_EQ(0, allocator_->candidate_pool_size()); |
88 EXPECT_EQ(0, GetAllPooledSessionsReturnCount()); | 90 EXPECT_EQ(0, GetAllPooledSessionsReturnCount()); |
89 } | 91 } |
90 | 92 |
91 // Call CreateSession and verify that the parameters passed in and the | 93 // Call CreateSession and verify that the parameters passed in and the |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // unfiltered until it's returned by TakePooledSession. | 237 // unfiltered until it's returned by TakePooledSession. |
236 TEST_F(PortAllocatorTest, TakePooledSessionUpdatesCandidateFilter) { | 238 TEST_F(PortAllocatorTest, TakePooledSessionUpdatesCandidateFilter) { |
237 allocator_->set_candidate_filter(cricket::CF_RELAY); | 239 allocator_->set_candidate_filter(cricket::CF_RELAY); |
238 SetConfigurationWithPoolSize(1); | 240 SetConfigurationWithPoolSize(1); |
239 auto peeked_session = GetPooledSession(); | 241 auto peeked_session = GetPooledSession(); |
240 ASSERT_NE(nullptr, peeked_session); | 242 ASSERT_NE(nullptr, peeked_session); |
241 EXPECT_EQ(cricket::CF_ALL, peeked_session->candidate_filter()); | 243 EXPECT_EQ(cricket::CF_ALL, peeked_session->candidate_filter()); |
242 auto session = TakePooledSession(); | 244 auto session = TakePooledSession(); |
243 EXPECT_EQ(cricket::CF_RELAY, session->candidate_filter()); | 245 EXPECT_EQ(cricket::CF_RELAY, session->candidate_filter()); |
244 } | 246 } |
OLD | NEW |