1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
|
/*
* Copyright 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "api/jsep_session_description.h"
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "absl/strings/str_cat.h"
#include "api/candidate.h"
#include "api/jsep.h"
#include "media/base/codec.h"
#include "p2p/base/p2p_constants.h"
#include "p2p/base/transport_description.h"
#include "p2p/base/transport_info.h"
#include "pc/session_description.h"
#include "pc/webrtc_sdp.h"
#include "rtc_base/crypto_random.h"
#include "rtc_base/net_helper.h"
#include "rtc_base/socket_address.h"
#include "test/gmock.h"
#include "test/gtest.h"
using ::testing::NotNull;
using ::testing::Values;
using webrtc::IceCandidate;
using webrtc::IceCandidateCollection;
using webrtc::IceCandidateType;
using webrtc::JsepSessionDescription;
using ::webrtc::MediaProtocolType;
using webrtc::SdpType;
using webrtc::SessionDescriptionInterface;
static const char kCandidateUfrag[] = "ufrag";
static const char kCandidatePwd[] = "pwd";
static const char kCandidateUfragVoice[] = "ufrag_voice";
static const char kCandidatePwdVoice[] = "pwd_voice";
static const char kCandidateUfragVideo[] = "ufrag_video";
static const char kCandidatePwdVideo[] = "pwd_video";
static const char kCandidateFoundation[] = "a0+B/1";
static const uint32_t kCandidatePriority = 2130706432U; // pref = 1.0
static const uint32_t kCandidateGeneration = 2;
// This creates a session description with both audio and video media contents.
// In SDP this is described by two m lines, one audio and one video.
static std::unique_ptr<webrtc::SessionDescription>
CreateCricketSessionDescription() {
auto desc = std::make_unique<webrtc::SessionDescription>();
// AudioContentDescription
auto audio = std::make_unique<webrtc::AudioContentDescription>();
// VideoContentDescription
auto video = std::make_unique<webrtc::VideoContentDescription>();
audio->AddCodec(webrtc::CreateAudioCodec(103, "ISAC", 16000, 0));
desc->AddContent(webrtc::CN_AUDIO, MediaProtocolType::kRtp, std::move(audio));
video->AddCodec(webrtc::CreateVideoCodec(120, "VP8"));
desc->AddContent(webrtc::CN_VIDEO, MediaProtocolType::kRtp, std::move(video));
desc->AddTransportInfo(webrtc::TransportInfo(
webrtc::CN_AUDIO,
webrtc::TransportDescription(
std::vector<std::string>(), kCandidateUfragVoice, kCandidatePwdVoice,
webrtc::ICEMODE_FULL, webrtc::CONNECTIONROLE_NONE, nullptr)));
desc->AddTransportInfo(webrtc::TransportInfo(
webrtc::CN_VIDEO,
webrtc::TransportDescription(
std::vector<std::string>(), kCandidateUfragVideo, kCandidatePwdVideo,
webrtc::ICEMODE_FULL, webrtc::CONNECTIONROLE_NONE, nullptr)));
return desc;
}
class JsepSessionDescriptionTest : public ::testing::Test {
protected:
void SetUp() override {
int port = 1234;
webrtc::SocketAddress address("127.0.0.1", port++);
webrtc::Candidate candidate(webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
address, 1, "", "", IceCandidateType::kHost, 0,
"1");
candidate_ = candidate;
const std::string session_id = absl::StrCat(webrtc::CreateRandomId64());
const std::string session_version = absl::StrCat(webrtc::CreateRandomId());
jsep_desc_ = std::make_unique<JsepSessionDescription>(SdpType::kOffer);
ASSERT_TRUE(jsep_desc_->Initialize(CreateCricketSessionDescription(),
session_id, session_version));
}
std::string Serialize(const SessionDescriptionInterface* desc) {
std::string sdp;
EXPECT_TRUE(desc->ToString(&sdp));
EXPECT_FALSE(sdp.empty());
return sdp;
}
std::unique_ptr<SessionDescriptionInterface> DeSerialize(
const std::string& sdp) {
auto jsep_desc = std::make_unique<JsepSessionDescription>(SdpType::kOffer);
EXPECT_TRUE(webrtc::SdpDeserialize(sdp, jsep_desc.get(), nullptr));
return std::move(jsep_desc);
}
webrtc::Candidate candidate_;
std::unique_ptr<JsepSessionDescription> jsep_desc_;
};
TEST_F(JsepSessionDescriptionTest, CloneDefault) {
auto new_desc = jsep_desc_->Clone();
EXPECT_EQ(jsep_desc_->type(), new_desc->type());
std::string old_desc_string;
std::string new_desc_string;
EXPECT_TRUE(jsep_desc_->ToString(&old_desc_string));
EXPECT_TRUE(new_desc->ToString(&new_desc_string));
EXPECT_EQ(old_desc_string, new_desc_string);
EXPECT_EQ(jsep_desc_->session_id(), new_desc->session_id());
EXPECT_EQ(jsep_desc_->session_version(), new_desc->session_version());
}
TEST_F(JsepSessionDescriptionTest, CloneRollback) {
auto jsep_desc = std::make_unique<JsepSessionDescription>(SdpType::kRollback);
auto new_desc = jsep_desc->Clone();
EXPECT_EQ(jsep_desc->type(), new_desc->type());
}
TEST_F(JsepSessionDescriptionTest, CloneWithCandidates) {
webrtc::Candidate candidate_v4(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("192.168.1.5", 1234), kCandidatePriority, "", "",
IceCandidateType::kSrflx, kCandidateGeneration, kCandidateFoundation);
webrtc::Candidate candidate_v6(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
IceCandidate jice_v4("audio", 0, candidate_v4);
IceCandidate jice_v6("audio", 0, candidate_v6);
IceCandidate jice_v4_video("video", 0, candidate_v4);
IceCandidate jice_v6_video("video", 0, candidate_v6);
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v4));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v6));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v4_video));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v6_video));
auto new_desc = jsep_desc_->Clone();
EXPECT_EQ(jsep_desc_->type(), new_desc->type());
std::string old_desc_string;
std::string new_desc_string;
EXPECT_TRUE(jsep_desc_->ToString(&old_desc_string));
EXPECT_TRUE(new_desc->ToString(&new_desc_string));
EXPECT_EQ(old_desc_string, new_desc_string);
}
// Test that number_of_mediasections() returns the number of media contents in
// a session description.
TEST_F(JsepSessionDescriptionTest, CheckSessionDescription) {
EXPECT_EQ(2u, jsep_desc_->number_of_mediasections());
}
// Test that we can add a candidate to a session description without MID.
TEST_F(JsepSessionDescriptionTest, AddCandidateWithoutMid) {
IceCandidate jsep_candidate("", 0, candidate_);
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
const IceCandidateCollection* ice_candidates = jsep_desc_->candidates(0);
ASSERT_TRUE(ice_candidates != nullptr);
EXPECT_EQ(1u, ice_candidates->count());
const IceCandidate* ice_candidate = ice_candidates->at(0);
ASSERT_TRUE(ice_candidate != nullptr);
candidate_.set_username(kCandidateUfragVoice);
candidate_.set_password(kCandidatePwdVoice);
EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
EXPECT_EQ(0, ice_candidate->sdp_mline_index());
EXPECT_EQ("audio", ice_candidate->sdp_mid());
EXPECT_EQ(0u, jsep_desc_->candidates(1)->count());
}
// Test that we can add and remove candidates to a session description with
// MID. Removing candidates requires MID.
TEST_F(JsepSessionDescriptionTest, AddAndRemoveIceCandidatesWithMid) {
// mid and m-line index don't match, in this case mid is preferred.
std::string mid = "video";
IceCandidate jsep_candidate(mid, 0, candidate_);
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
EXPECT_EQ(0u, jsep_desc_->candidates(0)->count());
const IceCandidateCollection* ice_candidates = jsep_desc_->candidates(1);
ASSERT_THAT(ice_candidates, NotNull());
EXPECT_EQ(1u, ice_candidates->count());
const IceCandidate* ice_candidate = ice_candidates->at(0);
ASSERT_THAT(ice_candidate, NotNull());
candidate_.set_username(kCandidateUfragVideo);
candidate_.set_password(kCandidatePwdVideo);
EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
// The mline index should have been updated according to mid.
EXPECT_EQ(1, ice_candidate->sdp_mline_index());
EXPECT_EQ(1u, jsep_desc_->RemoveCandidate(ice_candidate));
EXPECT_EQ(0u, jsep_desc_->candidates(0)->count());
EXPECT_EQ(0u, jsep_desc_->candidates(1)->count());
}
// TODO(bugs.webrtc.org/8395): Remove this test and leave
// AddAndRemoveIceCandidatesWithMid.
TEST_F(JsepSessionDescriptionTest, AddAndRemoveCandidatesWithMid) {
// mid and m-line index don't match, in this case mid is preferred.
std::string mid = "video";
IceCandidate jsep_candidate(mid, 0, candidate_);
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
EXPECT_EQ(0u, jsep_desc_->candidates(0)->count());
const IceCandidateCollection* ice_candidates = jsep_desc_->candidates(1);
ASSERT_TRUE(ice_candidates != nullptr);
EXPECT_EQ(1u, ice_candidates->count());
const IceCandidate* ice_candidate = ice_candidates->at(0);
ASSERT_TRUE(ice_candidate != nullptr);
candidate_.set_username(kCandidateUfragVideo);
candidate_.set_password(kCandidatePwdVideo);
EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
// The mline index should have been updated according to mid.
EXPECT_EQ(1, ice_candidate->sdp_mline_index());
std::vector<webrtc::Candidate> candidates(1, candidate_);
candidates[0].set_transport_name(mid);
EXPECT_EQ(1u, jsep_desc_->RemoveCandidates(candidates));
EXPECT_EQ(0u, jsep_desc_->candidates(0)->count());
EXPECT_EQ(0u, jsep_desc_->candidates(1)->count());
}
TEST_F(JsepSessionDescriptionTest, AddCandidateAlreadyHasUfrag) {
candidate_.set_username(kCandidateUfrag);
candidate_.set_password(kCandidatePwd);
IceCandidate jsep_candidate("audio", 0, candidate_);
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
const IceCandidateCollection* ice_candidates = jsep_desc_->candidates(0);
ASSERT_TRUE(ice_candidates != nullptr);
EXPECT_EQ(1u, ice_candidates->count());
const IceCandidate* ice_candidate = ice_candidates->at(0);
ASSERT_TRUE(ice_candidate != nullptr);
candidate_.set_username(kCandidateUfrag);
candidate_.set_password(kCandidatePwd);
EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
EXPECT_EQ(0u, jsep_desc_->candidates(1)->count());
}
// Test that we can not add a candidate if there is no corresponding media
// content in the session description.
TEST_F(JsepSessionDescriptionTest, AddBadCandidate) {
IceCandidate bad_candidate1("", 55, candidate_);
EXPECT_FALSE(jsep_desc_->AddCandidate(&bad_candidate1));
IceCandidate bad_candidate2("some weird mid", 0, candidate_);
EXPECT_FALSE(jsep_desc_->AddCandidate(&bad_candidate2));
}
// Tests that repeatedly adding the same candidate, with or without credentials,
// does not increase the number of candidates in the description.
TEST_F(JsepSessionDescriptionTest, AddCandidateDuplicates) {
IceCandidate jsep_candidate("", 0, candidate_);
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
EXPECT_EQ(1u, jsep_desc_->candidates(0)->count());
// Add the same candidate again. It should be ignored.
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
EXPECT_EQ(1u, jsep_desc_->candidates(0)->count());
// Create a new candidate, identical except that the ufrag and pwd are now
// populated.
candidate_.set_username(kCandidateUfragVoice);
candidate_.set_password(kCandidatePwdVoice);
IceCandidate jsep_candidate_with_credentials("", 0, candidate_);
// This should also be identified as redundant and ignored.
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate_with_credentials));
EXPECT_EQ(1u, jsep_desc_->candidates(0)->count());
}
// Test that the connection address is set to a hostname address after adding a
// hostname candidate.
TEST_F(JsepSessionDescriptionTest, AddHostnameCandidate) {
webrtc::Candidate c;
c.set_component(webrtc::ICE_CANDIDATE_COMPONENT_RTP);
c.set_protocol(webrtc::UDP_PROTOCOL_NAME);
c.set_address(webrtc::SocketAddress("example.local", 1234));
c.set_type(IceCandidateType::kHost);
const size_t audio_index = 0;
IceCandidate hostname_candidate("audio", audio_index, c);
EXPECT_TRUE(jsep_desc_->AddCandidate(&hostname_candidate));
ASSERT_NE(nullptr, jsep_desc_->description());
ASSERT_EQ(2u, jsep_desc_->description()->contents().size());
const auto& content = jsep_desc_->description()->contents()[audio_index];
EXPECT_EQ("0.0.0.0:9",
content.media_description()->connection_address().ToString());
}
// Test that we can serialize a JsepSessionDescription and deserialize it again.
TEST_F(JsepSessionDescriptionTest, SerializeDeserialize) {
std::string sdp = Serialize(jsep_desc_.get());
auto parsed_jsep_desc = DeSerialize(sdp);
EXPECT_EQ(2u, parsed_jsep_desc->number_of_mediasections());
std::string parsed_sdp = Serialize(parsed_jsep_desc.get());
EXPECT_EQ(sdp, parsed_sdp);
}
// Test that we can serialize a JsepSessionDescription when a hostname candidate
// is the default destination and deserialize it again. The connection address
// in the deserialized description should be the dummy address 0.0.0.0:9.
TEST_F(JsepSessionDescriptionTest, SerializeDeserializeWithHostnameCandidate) {
webrtc::Candidate c;
c.set_component(webrtc::ICE_CANDIDATE_COMPONENT_RTP);
c.set_protocol(webrtc::UDP_PROTOCOL_NAME);
c.set_address(webrtc::SocketAddress("example.local", 1234));
c.set_type(IceCandidateType::kHost);
const size_t audio_index = 0;
const size_t video_index = 1;
IceCandidate hostname_candidate_audio("audio", audio_index, c);
IceCandidate hostname_candidate_video("video", video_index, c);
EXPECT_TRUE(jsep_desc_->AddCandidate(&hostname_candidate_audio));
EXPECT_TRUE(jsep_desc_->AddCandidate(&hostname_candidate_video));
std::string sdp = Serialize(jsep_desc_.get());
auto parsed_jsep_desc = DeSerialize(sdp);
EXPECT_EQ(2u, parsed_jsep_desc->number_of_mediasections());
ASSERT_NE(nullptr, parsed_jsep_desc->description());
ASSERT_EQ(2u, parsed_jsep_desc->description()->contents().size());
const auto& audio_content =
parsed_jsep_desc->description()->contents()[audio_index];
const auto& video_content =
parsed_jsep_desc->description()->contents()[video_index];
EXPECT_EQ("0.0.0.0:9",
audio_content.media_description()->connection_address().ToString());
EXPECT_EQ("0.0.0.0:9",
video_content.media_description()->connection_address().ToString());
}
// Tests that we can serialize and deserialize a JsepSesssionDescription
// with candidates.
TEST_F(JsepSessionDescriptionTest, SerializeDeserializeWithCandidates) {
std::string sdp = Serialize(jsep_desc_.get());
// Add a candidate and check that the serialized result is different.
IceCandidate jsep_candidate("audio", 0, candidate_);
EXPECT_TRUE(jsep_desc_->AddCandidate(&jsep_candidate));
std::string sdp_with_candidate = Serialize(jsep_desc_.get());
EXPECT_NE(sdp, sdp_with_candidate);
auto parsed_jsep_desc = DeSerialize(sdp_with_candidate);
std::string parsed_sdp_with_candidate = Serialize(parsed_jsep_desc.get());
EXPECT_EQ(sdp_with_candidate, parsed_sdp_with_candidate);
}
// TODO(zhihuang): Modify these tests. These are used to verify that after
// adding the candidates, the connection_address field is set correctly. Modify
// those so that the "connection address" is tested directly.
// Tests serialization of SDP with only IPv6 candidates and verifies that IPv6
// is used as default address in c line according to preference.
TEST_F(JsepSessionDescriptionTest, SerializeSessionDescriptionWithIPv6Only) {
// Stun has a high preference than local host.
webrtc::Candidate candidate1(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
IceCandidateType::kSrflx, kCandidateGeneration, kCandidateFoundation);
webrtc::Candidate candidate2(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("::2", 1235), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
IceCandidate jice1("audio", 0, candidate1);
IceCandidate jice2("audio", 0, candidate2);
IceCandidate jice3("video", 0, candidate1);
IceCandidate jice4("video", 0, candidate2);
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
std::string message = Serialize(jsep_desc_.get());
// Should have a c line like this one.
EXPECT_NE(message.find("c=IN IP6 ::1"), std::string::npos);
// Shouldn't have a IP4 c line.
EXPECT_EQ(message.find("c=IN IP4"), std::string::npos);
}
// Tests serialization of SDP with both IPv4 and IPv6 candidates and
// verifies that IPv4 is used as default address in c line even if the
// preference of IPv4 is lower.
TEST_F(JsepSessionDescriptionTest,
SerializeSessionDescriptionWithBothIPFamilies) {
webrtc::Candidate candidate_v4(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("192.168.1.5", 1234), kCandidatePriority, "", "",
IceCandidateType::kSrflx, kCandidateGeneration, kCandidateFoundation);
webrtc::Candidate candidate_v6(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
IceCandidate jice_v4("audio", 0, candidate_v4);
IceCandidate jice_v6("audio", 0, candidate_v6);
IceCandidate jice_v4_video("video", 0, candidate_v4);
IceCandidate jice_v6_video("video", 0, candidate_v6);
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v4));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v6));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v4_video));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice_v6_video));
std::string message = Serialize(jsep_desc_.get());
// Should have a c line like this one.
EXPECT_NE(message.find("c=IN IP4 192.168.1.5"), std::string::npos);
// Shouldn't have a IP6 c line.
EXPECT_EQ(message.find("c=IN IP6"), std::string::npos);
}
// Tests serialization of SDP with both UDP and TCP candidates and
// verifies that UDP is used as default address in c line even if the
// preference of UDP is lower.
TEST_F(JsepSessionDescriptionTest,
SerializeSessionDescriptionWithBothProtocols) {
// Stun has a high preference than local host.
webrtc::Candidate candidate1(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
webrtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
IceCandidateType::kSrflx, kCandidateGeneration, kCandidateFoundation);
webrtc::Candidate candidate2(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("fe80::1234:5678:abcd:ef12", 1235),
kCandidatePriority, "", "", IceCandidateType::kHost, kCandidateGeneration,
kCandidateFoundation);
IceCandidate jice1("audio", 0, candidate1);
IceCandidate jice2("audio", 0, candidate2);
IceCandidate jice3("video", 0, candidate1);
IceCandidate jice4("video", 0, candidate2);
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
std::string message = Serialize(jsep_desc_.get());
// Should have a c line like this one.
EXPECT_NE(message.find("c=IN IP6 fe80::1234:5678:abcd:ef12"),
std::string::npos);
// Shouldn't have a IP4 c line.
EXPECT_EQ(message.find("c=IN IP4"), std::string::npos);
}
// Tests serialization of SDP with only TCP candidates and verifies that
// null IPv4 is used as default address in c line.
TEST_F(JsepSessionDescriptionTest, SerializeSessionDescriptionWithTCPOnly) {
// Stun has a high preference than local host.
webrtc::Candidate candidate1(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
webrtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
IceCandidateType::kSrflx, kCandidateGeneration, kCandidateFoundation);
webrtc::Candidate candidate2(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
webrtc::SocketAddress("::2", 1235), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
IceCandidate jice1("audio", 0, candidate1);
IceCandidate jice2("audio", 0, candidate2);
IceCandidate jice3("video", 0, candidate1);
IceCandidate jice4("video", 0, candidate2);
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice4));
std::string message = Serialize(jsep_desc_.get());
EXPECT_EQ(message.find("c=IN IP6 ::3"), std::string::npos);
// Should have a c line like this one when no any default exists.
EXPECT_NE(message.find("c=IN IP4 0.0.0.0"), std::string::npos);
}
// Tests that the connection address will be correctly set when the Candidate is
// removed.
TEST_F(JsepSessionDescriptionTest, RemoveCandidateAndSetConnectionAddress) {
webrtc::Candidate candidate1(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("::1", 1234), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
candidate1.set_transport_name("audio");
webrtc::Candidate candidate2(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "tcp",
webrtc::SocketAddress("::2", 1235), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
candidate2.set_transport_name("audio");
webrtc::Candidate candidate3(
webrtc::ICE_CANDIDATE_COMPONENT_RTP, "udp",
webrtc::SocketAddress("192.168.1.1", 1236), kCandidatePriority, "", "",
IceCandidateType::kHost, kCandidateGeneration, kCandidateFoundation);
candidate3.set_transport_name("audio");
IceCandidate jice1("audio", 0, candidate1);
IceCandidate jice2("audio", 0, candidate2);
IceCandidate jice3("audio", 0, candidate3);
size_t audio_index = 0;
auto media_desc =
jsep_desc_->description()->contents()[audio_index].media_description();
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice1));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice2));
ASSERT_TRUE(jsep_desc_->AddCandidate(&jice3));
std::vector<webrtc::Candidate> candidates;
EXPECT_EQ("192.168.1.1:1236", media_desc->connection_address().ToString());
candidates.push_back(candidate3);
ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
EXPECT_EQ("[::1]:1234", media_desc->connection_address().ToString());
candidates.clear();
candidates.push_back(candidate2);
ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
EXPECT_EQ("[::1]:1234", media_desc->connection_address().ToString());
candidates.clear();
candidates.push_back(candidate1);
ASSERT_TRUE(jsep_desc_->RemoveCandidates(candidates));
EXPECT_EQ("0.0.0.0:9", media_desc->connection_address().ToString());
}
class EnumerateAllSdpTypesTest : public ::testing::Test,
public ::testing::WithParamInterface<SdpType> {
};
TEST_P(EnumerateAllSdpTypesTest, TestIdentity) {
SdpType type = GetParam();
const char* str = webrtc::SdpTypeToString(type);
EXPECT_EQ(type, webrtc::SdpTypeFromString(str));
}
INSTANTIATE_TEST_SUITE_P(JsepSessionDescriptionTest,
EnumerateAllSdpTypesTest,
Values(SdpType::kOffer,
SdpType::kPrAnswer,
SdpType::kAnswer));
|