Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: webrtc/pc/jsepsessiondescription_unittest.cc

Issue 2742903002: Parse the connection data in SDP (c= line). (Closed)
Patch Set: Monior fix according to the style guide. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/pc/jsepsessiondescription.cc ('k') | webrtc/pc/mediasession.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 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 16 matching lines...) Expand all
27 using webrtc::JsepIceCandidate; 27 using webrtc::JsepIceCandidate;
28 using webrtc::JsepSessionDescription; 28 using webrtc::JsepSessionDescription;
29 using webrtc::SessionDescriptionInterface; 29 using webrtc::SessionDescriptionInterface;
30 30
31 static const char kCandidateUfrag[] = "ufrag"; 31 static const char kCandidateUfrag[] = "ufrag";
32 static const char kCandidatePwd[] = "pwd"; 32 static const char kCandidatePwd[] = "pwd";
33 static const char kCandidateUfragVoice[] = "ufrag_voice"; 33 static const char kCandidateUfragVoice[] = "ufrag_voice";
34 static const char kCandidatePwdVoice[] = "pwd_voice"; 34 static const char kCandidatePwdVoice[] = "pwd_voice";
35 static const char kCandidateUfragVideo[] = "ufrag_video"; 35 static const char kCandidateUfragVideo[] = "ufrag_video";
36 static const char kCandidatePwdVideo[] = "pwd_video"; 36 static const char kCandidatePwdVideo[] = "pwd_video";
37 static const char kCandidateFoundation[] = "a0+B/1";
38 static const uint32_t kCandidatePriority = 2130706432U; // pref = 1.0
39 static const uint32_t kCandidateGeneration = 2;
37 40
38 // This creates a session description with both audio and video media contents. 41 // This creates a session description with both audio and video media contents.
39 // In SDP this is described by two m lines, one audio and one video. 42 // In SDP this is described by two m lines, one audio and one video.
40 static cricket::SessionDescription* CreateCricketSessionDescription() { 43 static cricket::SessionDescription* CreateCricketSessionDescription() {
41 cricket::SessionDescription* desc(new cricket::SessionDescription()); 44 cricket::SessionDescription* desc(new cricket::SessionDescription());
42 // AudioContentDescription 45 // AudioContentDescription
43 std::unique_ptr<cricket::AudioContentDescription> audio( 46 std::unique_ptr<cricket::AudioContentDescription> audio(
44 new cricket::AudioContentDescription()); 47 new cricket::AudioContentDescription());
45 48
46 // VideoContentDescription 49 // VideoContentDescription
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate)); 224 EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
222 std::string sdp_with_candidate = Serialize(jsep_desc_.get()); 225 std::string sdp_with_candidate = Serialize(jsep_desc_.get());
223 EXPECT_NE(sdp, sdp_with_candidate); 226 EXPECT_NE(sdp, sdp_with_candidate);
224 227
225 std::unique_ptr<SessionDescriptionInterface> parsed_jsep_desc( 228 std::unique_ptr<SessionDescriptionInterface> parsed_jsep_desc(
226 DeSerialize(sdp_with_candidate)); 229 DeSerialize(sdp_with_candidate));
227 std::string parsed_sdp_with_candidate = Serialize(parsed_jsep_desc.get()); 230 std::string parsed_sdp_with_candidate = Serialize(parsed_jsep_desc.get());
228 231
229 EXPECT_EQ(sdp_with_candidate, parsed_sdp_with_candidate); 232 EXPECT_EQ(sdp_with_candidate, parsed_sdp_with_candidate);
230 } 233 }
234
235 // TODO(zhihuang): Modify these tests. These are used to verify that after
236 // adding the candidates, the connection_address field is set correctly. Modify
237 // those so that the "connection address" is tested directly.
238 // Tests serialization of SDP with only IPv6 candidates and verifies that IPv6
239 // is used as default address in c line according to preference.
240 TEST_F(JsepSessionDescriptionTest, SerializeSessionDescriptionWithIPv6Only) {
241 // Stun has a high preference than local host.
242 cricket::Candidate candidate1(
243 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
244 rtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
245 cricket::STUN_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
246 cricket::Candidate candidate2(
247 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
248 rtc::SocketAddress("::2", 1235), kCandidatePriority, "", "",
249 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
250
251 JsepIceCandidate jice1("audio", 0, candidate1);
252 JsepIceCandidate jice2("audio", 0, candidate2);
253 JsepIceCandidate jice3("video", 0, candidate1);
254 JsepIceCandidate jice4("video", 0, candidate2);
255 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
256 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
257 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
258 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
259 std::string message = Serialize(jsep_desc_.get());
260
261 // Should have a c line like this one.
262 EXPECT_NE(message.find("c=IN IP6 ::1"), std::string::npos);
263 // Shouldn't have a IP4 c line.
264 EXPECT_EQ(message.find("c=IN IP4"), std::string::npos);
265 }
266
267 // Tests serialization of SDP with both IPv4 and IPv6 candidates and
268 // verifies that IPv4 is used as default address in c line even if the
269 // preference of IPv4 is lower.
270 TEST_F(JsepSessionDescriptionTest,
271 SerializeSessionDescriptionWithBothIPFamilies) {
272 cricket::Candidate candidate_v4(
273 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
274 rtc::SocketAddress("192.168.1.5", 1234), kCandidatePriority, "", "",
275 cricket::STUN_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
276 cricket::Candidate candidate_v6(
277 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
278 rtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
279 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
280
281 JsepIceCandidate jice_v4("audio", 0, candidate_v4);
282 JsepIceCandidate jice_v6("audio", 0, candidate_v6);
283 JsepIceCandidate jice_v4_video("video", 0, candidate_v4);
284 JsepIceCandidate jice_v6_video("video", 0, candidate_v6);
285 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v4));
286 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v6));
287 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v4_video));
288 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v6_video));
289 std::string message = Serialize(jsep_desc_.get());
290
291 // Should have a c line like this one.
292 EXPECT_NE(message.find("c=IN IP4 192.168.1.5"), std::string::npos);
293 // Shouldn't have a IP6 c line.
294 EXPECT_EQ(message.find("c=IN IP6"), std::string::npos);
295 }
296
297 // Tests serialization of SDP with both UDP and TCP candidates and
298 // verifies that UDP is used as default address in c line even if the
299 // preference of UDP is lower.
300 TEST_F(JsepSessionDescriptionTest,
301 SerializeSessionDescriptionWithBothProtocols) {
302 // Stun has a high preference than local host.
303 cricket::Candidate candidate1(
304 cricket::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
305 rtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
306 cricket::STUN_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
307 cricket::Candidate candidate2(
308 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
309 rtc::SocketAddress("fe80::1234:5678:abcd:ef12", 1235), kCandidatePriority,
310 "", "", cricket::LOCAL_PORT_TYPE, kCandidateGeneration,
311 kCandidateFoundation);
312
313 JsepIceCandidate jice1("audio", 0, candidate1);
314 JsepIceCandidate jice2("audio", 0, candidate2);
315 JsepIceCandidate jice3("video", 0, candidate1);
316 JsepIceCandidate jice4("video", 0, candidate2);
317 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
318 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
319 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
320 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
321 std::string message = Serialize(jsep_desc_.get());
322
323 // Should have a c line like this one.
324 EXPECT_NE(message.find("c=IN IP6 fe80::1234:5678:abcd:ef12"),
325 std::string::npos);
326 // Shouldn't have a IP4 c line.
327 EXPECT_EQ(message.find("c=IN IP4"), std::string::npos);
328 }
329
330 // Tests serialization of SDP with only TCP candidates and verifies that
331 // null IPv4 is used as default address in c line.
332 TEST_F(JsepSessionDescriptionTest, SerializeSessionDescriptionWithTCPOnly) {
333 // Stun has a high preference than local host.
334 cricket::Candidate candidate1(
335 cricket::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
336 rtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
337 cricket::STUN_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
338 cricket::Candidate candidate2(
339 cricket::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
340 rtc::SocketAddress("::2", 1235), kCandidatePriority, "", "",
341 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
342
343 JsepIceCandidate jice1("audio", 0, candidate1);
344 JsepIceCandidate jice2("audio", 0, candidate2);
345 JsepIceCandidate jice3("video", 0, candidate1);
346 JsepIceCandidate jice4("video", 0, candidate2);
347 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
348 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
349 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
350 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
351
352 std::string message = Serialize(jsep_desc_.get());
353 EXPECT_EQ(message.find("c=IN IP6 ::3"), std::string::npos);
354 // Should have a c line like this one when no any default exists.
355 EXPECT_NE(message.find("c=IN IP4 0.0.0.0"), std::string::npos);
356 }
357
358 // Tests that the connection address will be correctly set when the Candidate is
359 // removed.
360 TEST_F(JsepSessionDescriptionTest, RemoveCandidateAndSetConnectionAddress) {
361 cricket::Candidate candidate1(
362 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
363 rtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
364 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
365 candidate1.set_transport_name("audio");
366
367 cricket::Candidate candidate2(
368 cricket::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
369 rtc::SocketAddress("::2", 1235), kCandidatePriority, "", "",
370 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
371 candidate2.set_transport_name("audio");
372
373 cricket::Candidate candidate3(
374 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
375 rtc::SocketAddress("192.168.1.1", 1236), kCandidatePriority, "", "",
376 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
377 candidate3.set_transport_name("audio");
378
379 JsepIceCandidate jice1("audio", 0, candidate1);
380 JsepIceCandidate jice2("audio", 0, candidate2);
381 JsepIceCandidate jice3("audio", 0, candidate3);
382
383 size_t audio_index = 0;
384 auto media_desc = static_cast<cricket::MediaContentDescription*>(
385 jsep_desc_->description()->contents()[audio_index].description);
386
387 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
388 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
389 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
390
391 std::vector<cricket::Candidate> candidates;
392 EXPECT_EQ("192.168.1.1:1236", media_desc->connection_address().ToString());
393
394 candidates.push_back(candidate3);
395 ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
396 EXPECT_EQ("[::1]:1234", media_desc->connection_address().ToString());
397
398 candidates.clear();
399 candidates.push_back(candidate2);
400 ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
401 EXPECT_EQ("[::1]:1234", media_desc->connection_address().ToString());
402
403 candidates.clear();
404 candidates.push_back(candidate1);
405 ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
406 EXPECT_EQ("0.0.0.0:9", media_desc->connection_address().ToString());
407 }
OLDNEW
« no previous file with comments | « webrtc/pc/jsepsessiondescription.cc ('k') | webrtc/pc/mediasession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698