OLD | NEW |
---|---|
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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
536 session_options->recv_video = | 536 session_options->recv_video = |
537 session_options->HasSendMediaStream(cricket::MEDIA_TYPE_VIDEO); | 537 session_options->HasSendMediaStream(cricket::MEDIA_TYPE_VIDEO); |
538 } | 538 } |
539 session_options->bundle_enabled = | 539 session_options->bundle_enabled = |
540 session_options->bundle_enabled && | 540 session_options->bundle_enabled && |
541 (session_options->has_audio() || session_options->has_video() || | 541 (session_options->has_audio() || session_options->has_video() || |
542 session_options->has_data()); | 542 session_options->has_data()); |
543 | 543 |
544 if (session_->data_channel_type() == cricket::DCT_SCTP && data_channel_) { | 544 if (session_->data_channel_type() == cricket::DCT_SCTP && data_channel_) { |
545 session_options->data_channel_type = cricket::DCT_SCTP; | 545 session_options->data_channel_type = cricket::DCT_SCTP; |
546 } else if (session_->data_channel_type() == cricket::DCT_QUIC) { | |
547 session_options->data_channel_type = cricket::DCT_QUIC; | |
546 } | 548 } |
547 } | 549 } |
548 | 550 |
549 void GetOptionsForAnswer(cricket::MediaSessionOptions* session_options) { | 551 void GetOptionsForAnswer(cricket::MediaSessionOptions* session_options) { |
550 // ParseConstraintsForAnswer is used to set some defaults. | 552 // ParseConstraintsForAnswer is used to set some defaults. |
551 ASSERT_TRUE(webrtc::ParseConstraintsForAnswer(nullptr, session_options)); | 553 ASSERT_TRUE(webrtc::ParseConstraintsForAnswer(nullptr, session_options)); |
552 | 554 |
553 AddStreamsToOptions(session_options); | 555 AddStreamsToOptions(session_options); |
554 session_options->bundle_enabled = | 556 session_options->bundle_enabled = |
555 session_options->bundle_enabled && | 557 session_options->bundle_enabled && |
556 (session_options->has_audio() || session_options->has_video() || | 558 (session_options->has_audio() || session_options->has_video() || |
557 session_options->has_data()); | 559 session_options->has_data()); |
558 | 560 |
559 if (session_->data_channel_type() == cricket::DCT_SCTP) { | 561 if (session_->data_channel_type() == cricket::DCT_SCTP) { |
560 session_options->data_channel_type = cricket::DCT_SCTP; | 562 session_options->data_channel_type = cricket::DCT_SCTP; |
563 } else if (session_->data_channel_type() == cricket::DCT_QUIC) { | |
564 session_options->data_channel_type = cricket::DCT_QUIC; | |
pthatcher1
2016/07/22 17:57:57
Why not just do
session_options->data_channel_ty
Zhi Huang
2016/07/25 23:40:36
Oh, I should have noticed this.
| |
561 } | 565 } |
562 } | 566 } |
563 | 567 |
564 // Creates a local offer and applies it. Starts ICE. | 568 // Creates a local offer and applies it. Starts ICE. |
565 // Call SendAudioVideoStreamX() before this function | 569 // Call SendAudioVideoStreamX() before this function |
566 // to decide which streams to create. | 570 // to decide which streams to create. |
567 void InitiateCall() { | 571 void InitiateCall() { |
568 SessionDescriptionInterface* offer = CreateOffer(); | 572 SessionDescriptionInterface* offer = CreateOffer(); |
569 SetLocalDescriptionWithoutError(offer); | 573 SetLocalDescriptionWithoutError(offer); |
570 EXPECT_TRUE_WAIT(PeerConnectionInterface::kIceGatheringNew != | 574 EXPECT_TRUE_WAIT(PeerConnectionInterface::kIceGatheringNew != |
(...skipping 3569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4140 candidate1.set_address(rtc::SocketAddress("1.1.1.1", 5000)); | 4144 candidate1.set_address(rtc::SocketAddress("1.1.1.1", 5000)); |
4141 candidate1.set_component(1); | 4145 candidate1.set_component(1); |
4142 JsepIceCandidate ice_candidate(kMediaContentName1, kMediaContentIndex1, | 4146 JsepIceCandidate ice_candidate(kMediaContentName1, kMediaContentIndex1, |
4143 candidate1); | 4147 candidate1); |
4144 EXPECT_TRUE(session_->ProcessIceMessage(&ice_candidate)); | 4148 EXPECT_TRUE(session_->ProcessIceMessage(&ice_candidate)); |
4145 | 4149 |
4146 answer = CreateAnswer(); | 4150 answer = CreateAnswer(); |
4147 SetLocalDescriptionWithoutError(answer); | 4151 SetLocalDescriptionWithoutError(answer); |
4148 } | 4152 } |
4149 | 4153 |
4154 #ifdef HAVE_QUIC | |
4155 TEST_P(WebRtcSessionTest, TestNegotiateQuic) { | |
4156 configuration_.enable_quic = true; | |
4157 InitWithDtls(GetParam()); | |
4158 EXPECT_TRUE(session_->data_channel_type() == cricket::DCT_QUIC); | |
4159 SessionDescriptionInterface* offer = CreateOffer(); | |
4160 ASSERT_TRUE(offer); | |
4161 ASSERT_TRUE(offer->description()); | |
4162 SetLocalDescriptionWithoutError(offer); | |
4163 cricket::MediaSessionOptions options; | |
4164 options.recv_audio = true; | |
4165 options.recv_video = true; | |
4166 SessionDescriptionInterface* answer = | |
4167 CreateRemoteAnswer(offer, options, cricket::SEC_DISABLED); | |
4168 ASSERT_TRUE(answer); | |
4169 ASSERT_TRUE(answer->description()); | |
4170 SetRemoteDescriptionWithoutError(answer); | |
4171 } | |
4172 | |
4173 // Verify the QuicDataTransport can set new transports. | |
4174 TEST_P(WebRtcSessionTest, TestQuicSetTransport) { | |
4175 configuration_.enable_quic = true; | |
4176 InitWithDtls(GetParam()); | |
4177 EXPECT_TRUE(session_->data_channel_type() == cricket::DCT_QUIC); | |
4178 SessionDescriptionInterface* offer = CreateOffer(); | |
4179 ASSERT_TRUE(offer); | |
4180 ASSERT_TRUE(offer->description()); | |
4181 SetLocalDescriptionWithoutError(offer); | |
4182 std::string transport_name = "new data channel"; | |
4183 EXPECT_NE(transport_name, session_->quic_data_transport()->transport_name()); | |
4184 session_->quic_data_transport()->SetTransport(transport_name); | |
Taylor Brandstetter
2016/07/21 23:39:57
Again, is this something we can really support?
| |
4185 EXPECT_EQ(transport_name, session_->quic_data_transport()->transport_name()); | |
4186 } | |
4187 #endif // HAVE_QUIC | |
4188 | |
4150 // Tests that RTX codec is removed from the answer when it isn't supported | 4189 // Tests that RTX codec is removed from the answer when it isn't supported |
4151 // by local side. | 4190 // by local side. |
4152 TEST_F(WebRtcSessionTest, TestRtxRemovedByCreateAnswer) { | 4191 TEST_F(WebRtcSessionTest, TestRtxRemovedByCreateAnswer) { |
4153 Init(); | 4192 Init(); |
4154 SendAudioVideoStream1(); | 4193 SendAudioVideoStream1(); |
4155 std::string offer_sdp(kSdpWithRtx); | 4194 std::string offer_sdp(kSdpWithRtx); |
4156 | 4195 |
4157 SessionDescriptionInterface* offer = | 4196 SessionDescriptionInterface* offer = |
4158 CreateSessionDescription(JsepSessionDescription::kOffer, offer_sdp, NULL); | 4197 CreateSessionDescription(JsepSessionDescription::kOffer, offer_sdp, NULL); |
4159 EXPECT_TRUE(offer->ToString(&offer_sdp)); | 4198 EXPECT_TRUE(offer->ToString(&offer_sdp)); |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4258 } | 4297 } |
4259 | 4298 |
4260 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test | 4299 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test |
4261 // currently fails because upon disconnection and reconnection OnIceComplete is | 4300 // currently fails because upon disconnection and reconnection OnIceComplete is |
4262 // called more than once without returning to IceGatheringGathering. | 4301 // called more than once without returning to IceGatheringGathering. |
4263 | 4302 |
4264 INSTANTIATE_TEST_CASE_P(WebRtcSessionTests, | 4303 INSTANTIATE_TEST_CASE_P(WebRtcSessionTests, |
4265 WebRtcSessionTest, | 4304 WebRtcSessionTest, |
4266 testing::Values(ALREADY_GENERATED, | 4305 testing::Values(ALREADY_GENERATED, |
4267 DTLS_IDENTITY_STORE)); | 4306 DTLS_IDENTITY_STORE)); |
OLD | NEW |