blob: 70946a3d817c26b12e534c1a6737971c6ae97232 [file] [log] [blame]
Taylor Brandstettera1c30352016-05-13 08:15:11 -07001/*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Jonas Olssona4d87372019-07-05 19:08:33 +020011#include "p2p/base/port_allocator.h"
12
Taylor Brandstettera1c30352016-05-13 08:15:11 -070013#include <memory>
14
Steve Anton10542f22019-01-11 09:11:00 -080015#include "p2p/base/fake_port_allocator.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "rtc_base/thread.h"
Steve Anton10542f22019-01-11 09:11:00 -080017#include "rtc_base/virtual_socket_server.h"
Yves Gerey3e707812018-11-28 16:47:49 +010018#include "test/gtest.h"
Taylor Brandstettera1c30352016-05-13 08:15:11 -070019
20static const char kContentName[] = "test content";
21// Based on ICE_UFRAG_LENGTH
zhihuang6d0d4bf2016-05-24 10:13:32 -070022static const char kIceUfrag[] = "UF00";
Taylor Brandstettera1c30352016-05-13 08:15:11 -070023// Based on ICE_PWD_LENGTH
24static const char kIcePwd[] = "TESTICEPWD00000000000000";
25static const char kTurnUsername[] = "test";
26static const char kTurnPassword[] = "test";
27
Mirko Bonadei6a489f22019-04-09 15:11:12 +020028class PortAllocatorTest : public ::testing::Test, public sigslot::has_slots<> {
Taylor Brandstettera1c30352016-05-13 08:15:11 -070029 public:
deadbeef9a6f4d42017-05-15 19:43:33 -070030 PortAllocatorTest()
deadbeef98e186c2017-05-16 18:00:06 -070031 : vss_(new rtc::VirtualSocketServer()), main_(vss_.get()) {
Taylor Brandstettera1c30352016-05-13 08:15:11 -070032 allocator_.reset(
33 new cricket::FakePortAllocator(rtc::Thread::Current(), nullptr));
34 }
35
36 protected:
37 void SetConfigurationWithPoolSize(int candidate_pool_size) {
deadbeef6de92f92016-12-12 18:49:32 -080038 EXPECT_TRUE(allocator_->SetConfiguration(
39 cricket::ServerAddresses(), std::vector<cricket::RelayServerConfig>(),
Honghai Zhangf8998cf2019-10-14 11:27:50 -070040 candidate_pool_size, webrtc::NO_PRUNE));
deadbeef6de92f92016-12-12 18:49:32 -080041 }
42
43 void SetConfigurationWithPoolSizeExpectFailure(int candidate_pool_size) {
44 EXPECT_FALSE(allocator_->SetConfiguration(
45 cricket::ServerAddresses(), std::vector<cricket::RelayServerConfig>(),
Honghai Zhangf8998cf2019-10-14 11:27:50 -070046 candidate_pool_size, webrtc::NO_PRUNE));
Taylor Brandstettera1c30352016-05-13 08:15:11 -070047 }
48
Taylor Brandstetter417eebe2016-05-23 16:02:19 -070049 std::unique_ptr<cricket::FakePortAllocatorSession> CreateSession(
Taylor Brandstetter417eebe2016-05-23 16:02:19 -070050 const std::string& content_name,
51 int component,
52 const std::string& ice_ufrag,
53 const std::string& ice_pwd) {
54 return std::unique_ptr<cricket::FakePortAllocatorSession>(
55 static_cast<cricket::FakePortAllocatorSession*>(
56 allocator_
johanfe1ffb12016-08-11 12:37:42 -070057 ->CreateSession(content_name, component, ice_ufrag, ice_pwd)
Taylor Brandstetter417eebe2016-05-23 16:02:19 -070058 .release()));
59 }
60
Taylor Brandstettera1c30352016-05-13 08:15:11 -070061 const cricket::FakePortAllocatorSession* GetPooledSession() const {
62 return static_cast<const cricket::FakePortAllocatorSession*>(
63 allocator_->GetPooledSession());
64 }
65
66 std::unique_ptr<cricket::FakePortAllocatorSession> TakePooledSession() {
67 return std::unique_ptr<cricket::FakePortAllocatorSession>(
68 static_cast<cricket::FakePortAllocatorSession*>(
69 allocator_->TakePooledSession(kContentName, 0, kIceUfrag, kIcePwd)
70 .release()));
71 }
72
73 int GetAllPooledSessionsReturnCount() {
74 int count = 0;
Jonas Oreland1cd39fa2018-10-11 07:47:12 +020075 while (TakePooledSession() != nullptr) {
Taylor Brandstettera1c30352016-05-13 08:15:11 -070076 ++count;
77 }
78 return count;
79 }
80
deadbeef9a6f4d42017-05-15 19:43:33 -070081 std::unique_ptr<rtc::VirtualSocketServer> vss_;
82 rtc::AutoSocketServerThread main_;
Taylor Brandstettera1c30352016-05-13 08:15:11 -070083 std::unique_ptr<cricket::FakePortAllocator> allocator_;
84 rtc::SocketAddress stun_server_1{"11.11.11.11", 3478};
85 rtc::SocketAddress stun_server_2{"22.22.22.22", 3478};
86 cricket::RelayServerConfig turn_server_1{"11.11.11.11", 3478,
87 kTurnUsername, kTurnPassword,
88 cricket::PROTO_UDP, false};
89 cricket::RelayServerConfig turn_server_2{"22.22.22.22", 3478,
90 kTurnUsername, kTurnPassword,
91 cricket::PROTO_UDP, false};
92};
93
94TEST_F(PortAllocatorTest, TestDefaults) {
95 EXPECT_EQ(0UL, allocator_->stun_servers().size());
96 EXPECT_EQ(0UL, allocator_->turn_servers().size());
97 EXPECT_EQ(0, allocator_->candidate_pool_size());
98 EXPECT_EQ(0, GetAllPooledSessionsReturnCount());
99}
100
Taylor Brandstetter417eebe2016-05-23 16:02:19 -0700101// Call CreateSession and verify that the parameters passed in and the
102// candidate filter are applied as expected.
103TEST_F(PortAllocatorTest, CreateSession) {
Qingsi Wangc129c352019-04-18 10:41:58 -0700104 allocator_->SetCandidateFilter(cricket::CF_RELAY);
johanfe1ffb12016-08-11 12:37:42 -0700105 auto session = CreateSession(kContentName, 1, kIceUfrag, kIcePwd);
Taylor Brandstetter417eebe2016-05-23 16:02:19 -0700106 ASSERT_NE(nullptr, session);
107 EXPECT_EQ(cricket::CF_RELAY, session->candidate_filter());
108 EXPECT_EQ(kContentName, session->content_name());
109 EXPECT_EQ(1, session->component());
110 EXPECT_EQ(kIceUfrag, session->ice_ufrag());
111 EXPECT_EQ(kIcePwd, session->ice_pwd());
112}
113
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700114TEST_F(PortAllocatorTest, SetConfigurationUpdatesIceServers) {
115 cricket::ServerAddresses stun_servers_1 = {stun_server_1};
116 std::vector<cricket::RelayServerConfig> turn_servers_1 = {turn_server_1};
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700117 EXPECT_TRUE(allocator_->SetConfiguration(stun_servers_1, turn_servers_1, 0,
118 webrtc::NO_PRUNE));
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700119 EXPECT_EQ(stun_servers_1, allocator_->stun_servers());
120 EXPECT_EQ(turn_servers_1, allocator_->turn_servers());
121
122 // Update with a different set of servers.
123 cricket::ServerAddresses stun_servers_2 = {stun_server_2};
124 std::vector<cricket::RelayServerConfig> turn_servers_2 = {turn_server_2};
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700125 EXPECT_TRUE(allocator_->SetConfiguration(stun_servers_2, turn_servers_2, 0,
126 webrtc::NO_PRUNE));
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700127 EXPECT_EQ(stun_servers_2, allocator_->stun_servers());
128 EXPECT_EQ(turn_servers_2, allocator_->turn_servers());
129}
130
131TEST_F(PortAllocatorTest, SetConfigurationUpdatesCandidatePoolSize) {
132 SetConfigurationWithPoolSize(2);
133 EXPECT_EQ(2, allocator_->candidate_pool_size());
134 SetConfigurationWithPoolSize(3);
135 EXPECT_EQ(3, allocator_->candidate_pool_size());
136 SetConfigurationWithPoolSize(1);
137 EXPECT_EQ(1, allocator_->candidate_pool_size());
138 SetConfigurationWithPoolSize(4);
139 EXPECT_EQ(4, allocator_->candidate_pool_size());
140}
141
142// A negative pool size should just be treated as zero.
deadbeef6de92f92016-12-12 18:49:32 -0800143TEST_F(PortAllocatorTest, SetConfigurationWithNegativePoolSizeFails) {
144 SetConfigurationWithPoolSizeExpectFailure(-1);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700145}
146
147// Test that if the candidate pool size is nonzero, pooled sessions are
148// created, and StartGettingPorts is called on them.
149TEST_F(PortAllocatorTest, SetConfigurationCreatesPooledSessions) {
150 SetConfigurationWithPoolSize(2);
151 auto session_1 = TakePooledSession();
152 auto session_2 = TakePooledSession();
153 ASSERT_NE(nullptr, session_1.get());
154 ASSERT_NE(nullptr, session_2.get());
155 EXPECT_EQ(1, session_1->port_config_count());
156 EXPECT_EQ(1, session_2->port_config_count());
157 EXPECT_EQ(0, GetAllPooledSessionsReturnCount());
158}
159
160// Test that if the candidate pool size is increased, pooled sessions are
161// created as necessary.
162TEST_F(PortAllocatorTest, SetConfigurationCreatesMorePooledSessions) {
163 SetConfigurationWithPoolSize(1);
164 SetConfigurationWithPoolSize(2);
165 EXPECT_EQ(2, GetAllPooledSessionsReturnCount());
166}
167
168// Test that if the candidate pool size is reduced, extra sessions are
169// destroyed.
170TEST_F(PortAllocatorTest, SetConfigurationDestroysPooledSessions) {
171 SetConfigurationWithPoolSize(2);
172 SetConfigurationWithPoolSize(1);
173 EXPECT_EQ(1, GetAllPooledSessionsReturnCount());
174}
175
deadbeef6de92f92016-12-12 18:49:32 -0800176// According to JSEP, existing pooled sessions should be destroyed and new
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700177// ones created when the ICE servers change.
178TEST_F(PortAllocatorTest,
179 SetConfigurationRecreatesPooledSessionsWhenIceServersChange) {
180 cricket::ServerAddresses stun_servers_1 = {stun_server_1};
181 std::vector<cricket::RelayServerConfig> turn_servers_1 = {turn_server_1};
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700182 allocator_->SetConfiguration(stun_servers_1, turn_servers_1, 1,
183 webrtc::NO_PRUNE);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700184 EXPECT_EQ(stun_servers_1, allocator_->stun_servers());
185 EXPECT_EQ(turn_servers_1, allocator_->turn_servers());
186
187 // Update with a different set of servers (and also change pool size).
188 cricket::ServerAddresses stun_servers_2 = {stun_server_2};
189 std::vector<cricket::RelayServerConfig> turn_servers_2 = {turn_server_2};
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700190 allocator_->SetConfiguration(stun_servers_2, turn_servers_2, 2,
191 webrtc::NO_PRUNE);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700192 EXPECT_EQ(stun_servers_2, allocator_->stun_servers());
193 EXPECT_EQ(turn_servers_2, allocator_->turn_servers());
194 auto session_1 = TakePooledSession();
195 auto session_2 = TakePooledSession();
196 ASSERT_NE(nullptr, session_1.get());
197 ASSERT_NE(nullptr, session_2.get());
198 EXPECT_EQ(stun_servers_2, session_1->stun_servers());
199 EXPECT_EQ(turn_servers_2, session_1->turn_servers());
200 EXPECT_EQ(stun_servers_2, session_2->stun_servers());
201 EXPECT_EQ(turn_servers_2, session_2->turn_servers());
202 EXPECT_EQ(0, GetAllPooledSessionsReturnCount());
203}
204
deadbeef42a42632017-03-10 15:18:00 -0800205// According to JSEP, after SetLocalDescription, setting different ICE servers
206// will not cause the pool to be refilled. This is implemented by the
207// PeerConnection calling FreezeCandidatePool when a local description is set.
208TEST_F(PortAllocatorTest,
209 SetConfigurationDoesNotRecreatePooledSessionsAfterFreezeCandidatePool) {
210 cricket::ServerAddresses stun_servers_1 = {stun_server_1};
211 std::vector<cricket::RelayServerConfig> turn_servers_1 = {turn_server_1};
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700212 allocator_->SetConfiguration(stun_servers_1, turn_servers_1, 1,
213 webrtc::NO_PRUNE);
deadbeef42a42632017-03-10 15:18:00 -0800214 EXPECT_EQ(stun_servers_1, allocator_->stun_servers());
215 EXPECT_EQ(turn_servers_1, allocator_->turn_servers());
216
217 // Update with a different set of servers, but first freeze the pool.
218 allocator_->FreezeCandidatePool();
219 cricket::ServerAddresses stun_servers_2 = {stun_server_2};
220 std::vector<cricket::RelayServerConfig> turn_servers_2 = {turn_server_2};
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700221 allocator_->SetConfiguration(stun_servers_2, turn_servers_2, 2,
222 webrtc::NO_PRUNE);
deadbeef42a42632017-03-10 15:18:00 -0800223 EXPECT_EQ(stun_servers_2, allocator_->stun_servers());
224 EXPECT_EQ(turn_servers_2, allocator_->turn_servers());
225 auto session = TakePooledSession();
226 ASSERT_NE(nullptr, session.get());
227 EXPECT_EQ(stun_servers_1, session->stun_servers());
228 EXPECT_EQ(turn_servers_1, session->turn_servers());
229 EXPECT_EQ(0, GetAllPooledSessionsReturnCount());
230}
231
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700232TEST_F(PortAllocatorTest, GetPooledSessionReturnsNextSession) {
233 SetConfigurationWithPoolSize(2);
234 auto peeked_session_1 = GetPooledSession();
235 auto session_1 = TakePooledSession();
236 EXPECT_EQ(session_1.get(), peeked_session_1);
237 auto peeked_session_2 = GetPooledSession();
238 auto session_2 = TakePooledSession();
239 EXPECT_EQ(session_2.get(), peeked_session_2);
240}
241
242// Verify that subclasses of PortAllocatorSession are given a chance to update
243// ICE parameters when TakePooledSession is called, and the base class updates
244// the info itself.
245TEST_F(PortAllocatorTest, TakePooledSessionUpdatesIceParameters) {
246 SetConfigurationWithPoolSize(1);
247 auto peeked_session = GetPooledSession();
248 ASSERT_NE(nullptr, peeked_session);
249 EXPECT_EQ(0, peeked_session->transport_info_update_count());
250 std::unique_ptr<cricket::FakePortAllocatorSession> session(
251 static_cast<cricket::FakePortAllocatorSession*>(
252 allocator_->TakePooledSession(kContentName, 1, kIceUfrag, kIcePwd)
253 .release()));
254 EXPECT_EQ(1, session->transport_info_update_count());
255 EXPECT_EQ(kContentName, session->content_name());
256 EXPECT_EQ(1, session->component());
257 EXPECT_EQ(kIceUfrag, session->ice_ufrag());
258 EXPECT_EQ(kIcePwd, session->ice_pwd());
259}
Taylor Brandstetter417eebe2016-05-23 16:02:19 -0700260
261// According to JSEP, candidate filtering should be done when the pooled
262// candidates are surfaced to the application. This means when a pooled
263// session is taken. So a pooled session should gather candidates
264// unfiltered until it's returned by TakePooledSession.
265TEST_F(PortAllocatorTest, TakePooledSessionUpdatesCandidateFilter) {
Qingsi Wangc129c352019-04-18 10:41:58 -0700266 allocator_->SetCandidateFilter(cricket::CF_RELAY);
Taylor Brandstetter417eebe2016-05-23 16:02:19 -0700267 SetConfigurationWithPoolSize(1);
268 auto peeked_session = GetPooledSession();
269 ASSERT_NE(nullptr, peeked_session);
270 EXPECT_EQ(cricket::CF_ALL, peeked_session->candidate_filter());
271 auto session = TakePooledSession();
272 EXPECT_EQ(cricket::CF_RELAY, session->candidate_filter());
273}
deadbeef42a42632017-03-10 15:18:00 -0800274
275// Verify that after DiscardCandidatePool, TakePooledSession doesn't return
276// anything.
277TEST_F(PortAllocatorTest, DiscardCandidatePool) {
278 SetConfigurationWithPoolSize(1);
279 allocator_->DiscardCandidatePool();
280 EXPECT_EQ(0, GetAllPooledSessionsReturnCount());
281}
Jonas Oreland1cd39fa2018-10-11 07:47:12 +0200282
283TEST_F(PortAllocatorTest, RestrictIceCredentialsChange) {
284 SetConfigurationWithPoolSize(1);
285 EXPECT_EQ(1, GetAllPooledSessionsReturnCount());
286 allocator_->DiscardCandidatePool();
287
288 // Only return pooled sessions with the ice credentials that
289 // match those requested in TakePooledSession().
290 allocator_->set_restrict_ice_credentials_change(true);
291 SetConfigurationWithPoolSize(1);
292 EXPECT_EQ(0, GetAllPooledSessionsReturnCount());
293 allocator_->DiscardCandidatePool();
294
295 SetConfigurationWithPoolSize(1);
296 auto credentials = allocator_->GetPooledIceCredentials();
297 ASSERT_EQ(1u, credentials.size());
298 EXPECT_EQ(nullptr,
299 allocator_->TakePooledSession(kContentName, 0, kIceUfrag, kIcePwd));
300 EXPECT_NE(nullptr,
301 allocator_->TakePooledSession(kContentName, 0, credentials[0].ufrag,
302 credentials[0].pwd));
303 EXPECT_EQ(nullptr,
304 allocator_->TakePooledSession(kContentName, 0, credentials[0].ufrag,
305 credentials[0].pwd));
306 allocator_->DiscardCandidatePool();
307}