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

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

Issue 2742903002: Parse the connection data in SDP (c= line). (Closed)
Patch Set: Make the unit tests cleaner. 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
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 // Used to test the candidate removal.
343 cricket::Candidate candidate3(
344 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
345 rtc::SocketAddress("::3", 1236), kCandidatePriority, "", "",
346 cricket::LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation);
347 candidate3.set_transport_name("audio");
348
349 JsepIceCandidate jice1("audio", 0, candidate1);
350 JsepIceCandidate jice2("audio", 0, candidate2);
351 JsepIceCandidate jice3("video", 0, candidate1);
352 JsepIceCandidate jice4("video", 0, candidate2);
353 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
354 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
355 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
356 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
357
358 // Tests the candidate removal.
Taylor Brandstetter 2017/03/20 18:29:58 nit: The candidate removal case would be better as
Zhi Huang 2017/03/21 03:43:12 Done.
359 JsepIceCandidate jice5("audio", 0, candidate3);
360 ASSERT_TRUE(jsep_desc_->AddCandidate(&jice5));
361 std::string message = Serialize(jsep_desc_.get());
362 // Should have a c line like this one.
363 EXPECT_NE(message.find("c=IN IP6 ::3"), std::string::npos);
364 // Remove the udp candidate.
365 std::vector<cricket::Candidate> candidates;
366 candidates.push_back(candidate3);
367 ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
368 message = Serialize(jsep_desc_.get());
369 EXPECT_EQ(message.find("c=IN IP6 ::3"), std::string::npos);
370 // Should have a c line like this one when no any default exists.
371 EXPECT_NE(message.find("c=IN IP4 0.0.0.0"), std::string::npos);
372 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698