Rewrite the remaining few WebRtcSession tests.
Bug: webrtc:8222
Change-Id: I18e2a449b77cee2ecb8c0c2ae94c105247116458
Reviewed-on: https://webrtc-review.googlesource.com/8740
Commit-Queue: Steve Anton <steveanton@webrtc.org>
Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20399}
diff --git a/p2p/base/fakeicetransport.h b/p2p/base/fakeicetransport.h
index c5ce8a3..e53705a 100644
--- a/p2p/base/fakeicetransport.h
+++ b/p2p/base/fakeicetransport.h
@@ -190,8 +190,19 @@
SignalSentPacket(this, sent_packet);
return static_cast<int>(len);
}
- int SetOption(rtc::Socket::Option opt, int value) override { return true; }
- bool GetOption(rtc::Socket::Option opt, int* value) override { return true; }
+ int SetOption(rtc::Socket::Option opt, int value) override {
+ socket_options_[opt] = value;
+ return true;
+ }
+ bool GetOption(rtc::Socket::Option opt, int* value) override {
+ auto it = socket_options_.find(opt);
+ if (it != socket_options_.end()) {
+ *value = it->second;
+ return true;
+ } else {
+ return false;
+ }
+ }
int GetError() override { return 0; }
private:
@@ -244,6 +255,7 @@
bool receiving_ = false;
bool combine_outgoing_packets_ = false;
rtc::CopyOnWriteBuffer send_packet_;
+ std::map<rtc::Socket::Option, int> socket_options_;
};
} // namespace cricket
diff --git a/pc/BUILD.gn b/pc/BUILD.gn
index e98ccc3..25effcd 100644
--- a/pc/BUILD.gn
+++ b/pc/BUILD.gn
@@ -417,7 +417,6 @@
"videocapturertracksource_unittest.cc",
"videotrack_unittest.cc",
"webrtcsdp_unittest.cc",
- "webrtcsession_unittest.cc",
]
if (rtc_enable_sctp) {
diff --git a/pc/channel_unittest.cc b/pc/channel_unittest.cc
index ff5cea5..c040854 100644
--- a/pc/channel_unittest.cc
+++ b/pc/channel_unittest.cc
@@ -2051,6 +2051,35 @@
EXPECT_EQ(-1, media_channel1_->max_bps());
}
+ // Test that when a channel gets new transports with a call to
+ // |SetTransports|, the socket options from the old transports are merged with
+ // the options on the new transport.
+ // For example, audio and video may use separate socket options, but initially
+ // be unbundled, then later become bundled. When this happens, their preferred
+ // socket options should be merged to the underlying transport they share.
+ void SocketOptionsMergedOnSetTransport() {
+ constexpr int kSndBufSize = 4000;
+ constexpr int kRcvBufSize = 8000;
+
+ CreateChannels(0, 0);
+
+ channel1_->SetOption(cricket::BaseChannel::ST_RTP,
+ rtc::Socket::Option::OPT_SNDBUF, kSndBufSize);
+ channel2_->SetOption(cricket::BaseChannel::ST_RTP,
+ rtc::Socket::Option::OPT_RCVBUF, kRcvBufSize);
+
+ channel1_->SetTransports(channel2_->rtp_dtls_transport(),
+ channel2_->rtcp_dtls_transport());
+
+ int option_val;
+ ASSERT_TRUE(channel1_->rtp_dtls_transport()->GetOption(
+ rtc::Socket::Option::OPT_SNDBUF, &option_val));
+ EXPECT_EQ(kSndBufSize, option_val);
+ ASSERT_TRUE(channel1_->rtp_dtls_transport()->GetOption(
+ rtc::Socket::Option::OPT_RCVBUF, &option_val));
+ EXPECT_EQ(kRcvBufSize, option_val);
+ }
+
protected:
void WaitForThreads() { WaitForThreads(rtc::ArrayView<rtc::Thread*>()); }
static void ProcessThreadQueue(rtc::Thread* thread) {
@@ -2617,6 +2646,10 @@
Base::CanChangeMaxBitrate();
}
+TEST_F(VoiceChannelSingleThreadTest, SocketOptionsMergedOnSetTransport) {
+ Base::SocketOptionsMergedOnSetTransport();
+}
+
// VoiceChannelDoubleThreadTest
TEST_F(VoiceChannelDoubleThreadTest, TestInit) {
Base::TestInit();
@@ -2976,6 +3009,10 @@
Base::CanChangeMaxBitrate();
}
+TEST_F(VoiceChannelDoubleThreadTest, SocketOptionsMergedOnSetTransport) {
+ Base::SocketOptionsMergedOnSetTransport();
+}
+
// VideoChannelSingleThreadTest
TEST_F(VideoChannelSingleThreadTest, TestInit) {
Base::TestInit();
@@ -3207,6 +3244,10 @@
Base::CanChangeMaxBitrate();
}
+TEST_F(VideoChannelSingleThreadTest, SocketOptionsMergedOnSetTransport) {
+ Base::SocketOptionsMergedOnSetTransport();
+}
+
// VideoChannelDoubleThreadTest
TEST_F(VideoChannelDoubleThreadTest, TestInit) {
Base::TestInit();
@@ -3438,6 +3479,10 @@
Base::CanChangeMaxBitrate();
}
+TEST_F(VideoChannelDoubleThreadTest, SocketOptionsMergedOnSetTransport) {
+ Base::SocketOptionsMergedOnSetTransport();
+}
+
// RtpDataChannelSingleThreadTest
class RtpDataChannelSingleThreadTest : public ChannelTest<DataTraits> {
public:
@@ -3634,6 +3679,10 @@
Base::TestMediaMonitor();
}
+TEST_F(RtpDataChannelSingleThreadTest, SocketOptionsMergedOnSetTransport) {
+ Base::SocketOptionsMergedOnSetTransport();
+}
+
TEST_F(RtpDataChannelSingleThreadTest, TestSendData) {
CreateChannels(0, 0);
EXPECT_TRUE(SendInitiate());
@@ -3766,6 +3815,10 @@
Base::TestMediaMonitor();
}
+TEST_F(RtpDataChannelDoubleThreadTest, SocketOptionsMergedOnSetTransport) {
+ Base::SocketOptionsMergedOnSetTransport();
+}
+
TEST_F(RtpDataChannelDoubleThreadTest, TestSendData) {
CreateChannels(0, 0);
EXPECT_TRUE(SendInitiate());
diff --git a/pc/peerconnection.h b/pc/peerconnection.h
index 116b249..99737f9 100644
--- a/pc/peerconnection.h
+++ b/pc/peerconnection.h
@@ -33,12 +33,6 @@
class VideoRtpReceiver;
class RtcEventLog;
-// TODO(zhihuang): Remove this declaration when the WebRtcSession tests don't
-// need it.
-void ExtractSharedMediaSessionOptions(
- const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options,
- cricket::MediaSessionOptions* session_options);
-
// PeerConnection implements the PeerConnectionInterface interface.
// It uses WebRtcSession to implement the PeerConnection functionality.
class PeerConnection : public PeerConnectionInterface,
diff --git a/pc/peerconnection_crypto_unittest.cc b/pc/peerconnection_crypto_unittest.cc
index 68eec08..5d5296b 100644
--- a/pc/peerconnection_crypto_unittest.cc
+++ b/pc/peerconnection_crypto_unittest.cc
@@ -26,6 +26,7 @@
namespace webrtc {
using RTCConfiguration = PeerConnectionInterface::RTCConfiguration;
+using RTCOfferAnswerOptions = PeerConnectionInterface::RTCOfferAnswerOptions;
using ::testing::Values;
using ::testing::Combine;
@@ -46,6 +47,10 @@
CreateBuiltinAudioDecoderFactory(), nullptr, nullptr);
}
+ WrapperPtr CreatePeerConnection() {
+ return CreatePeerConnection(RTCConfiguration());
+ }
+
WrapperPtr CreatePeerConnection(const RTCConfiguration& config) {
return CreatePeerConnection(config, nullptr);
}
@@ -80,6 +85,25 @@
return wrapper;
}
+ cricket::ConnectionRole& AudioConnectionRole(
+ cricket::SessionDescription* desc) {
+ return ConnectionRoleFromContent(desc, cricket::GetFirstAudioContent(desc));
+ }
+
+ cricket::ConnectionRole& VideoConnectionRole(
+ cricket::SessionDescription* desc) {
+ return ConnectionRoleFromContent(desc, cricket::GetFirstVideoContent(desc));
+ }
+
+ cricket::ConnectionRole& ConnectionRoleFromContent(
+ cricket::SessionDescription* desc,
+ cricket::ContentInfo* content) {
+ RTC_DCHECK(content);
+ auto* transport_info = desc->GetTransportInfoByName(content->name);
+ RTC_DCHECK(transport_info);
+ return transport_info->description.connection_role;
+ }
+
std::unique_ptr<rtc::VirtualSocketServer> vss_;
rtc::AutoSocketServerThread main_;
rtc::scoped_refptr<PeerConnectionFactoryInterface> pc_factory_;
@@ -606,4 +630,58 @@
Values(CertGenResult::kSucceed, CertGenResult::kFail),
Values(1, 3)));
+// Test that we can create and set an answer correctly when different
+// SSL roles have been negotiated for different transports.
+// See: https://bugs.chromium.org/p/webrtc/issues/detail?id=4525
+TEST_F(PeerConnectionCryptoUnitTest, CreateAnswerWithDifferentSslRoles) {
+ auto caller = CreatePeerConnectionWithAudioVideo();
+ auto callee = CreatePeerConnectionWithAudioVideo();
+
+ RTCOfferAnswerOptions options_no_bundle;
+ options_no_bundle.use_rtp_mux = false;
+
+ // First, negotiate different SSL roles for audio and video.
+ ASSERT_TRUE(callee->SetRemoteDescription(caller->CreateOfferAndSetAsLocal()));
+ auto answer = callee->CreateAnswer(options_no_bundle);
+
+ AudioConnectionRole(answer->description()) = cricket::CONNECTIONROLE_ACTIVE;
+ VideoConnectionRole(answer->description()) = cricket::CONNECTIONROLE_PASSIVE;
+
+ ASSERT_TRUE(
+ callee->SetLocalDescription(CloneSessionDescription(answer.get())));
+ ASSERT_TRUE(caller->SetRemoteDescription(std::move(answer)));
+
+ // Now create an offer in the reverse direction, and ensure the initial
+ // offerer responds with an answer with the correct SSL roles.
+ ASSERT_TRUE(caller->SetRemoteDescription(callee->CreateOfferAndSetAsLocal()));
+ answer = caller->CreateAnswer(options_no_bundle);
+
+ EXPECT_EQ(cricket::CONNECTIONROLE_PASSIVE,
+ AudioConnectionRole(answer->description()));
+ EXPECT_EQ(cricket::CONNECTIONROLE_ACTIVE,
+ VideoConnectionRole(answer->description()));
+
+ ASSERT_TRUE(
+ caller->SetLocalDescription(CloneSessionDescription(answer.get())));
+ ASSERT_TRUE(callee->SetRemoteDescription(std::move(answer)));
+
+ // Lastly, start BUNDLE-ing on "audio", expecting that the "passive" role of
+ // audio is transferred over to video in the answer that completes the BUNDLE
+ // negotiation.
+ RTCOfferAnswerOptions options_bundle;
+ options_bundle.use_rtp_mux = true;
+
+ ASSERT_TRUE(caller->SetRemoteDescription(callee->CreateOfferAndSetAsLocal()));
+ answer = caller->CreateAnswer(options_bundle);
+
+ EXPECT_EQ(cricket::CONNECTIONROLE_PASSIVE,
+ AudioConnectionRole(answer->description()));
+ EXPECT_EQ(cricket::CONNECTIONROLE_PASSIVE,
+ VideoConnectionRole(answer->description()));
+
+ ASSERT_TRUE(
+ caller->SetLocalDescription(CloneSessionDescription(answer.get())));
+ ASSERT_TRUE(callee->SetRemoteDescription(std::move(answer)));
+}
+
} // namespace webrtc
diff --git a/pc/webrtcsession_unittest.cc b/pc/webrtcsession_unittest.cc
deleted file mode 100644
index ab83fb9..0000000
--- a/pc/webrtcsession_unittest.cc
+++ /dev/null
@@ -1,1112 +0,0 @@
-/*
- * 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 <memory>
-#include <utility>
-#include <vector>
-
-#include "api/fakemetricsobserver.h"
-#include "api/jsepicecandidate.h"
-#include "api/jsepsessiondescription.h"
-#include "media/base/fakemediaengine.h"
-#include "media/base/fakevideorenderer.h"
-#include "media/base/mediachannel.h"
-#include "media/engine/fakewebrtccall.h"
-#include "media/sctp/sctptransportinternal.h"
-#include "p2p/base/packettransportinternal.h"
-#include "p2p/base/stunserver.h"
-#include "p2p/base/teststunserver.h"
-#include "p2p/base/testturnserver.h"
-#include "p2p/client/basicportallocator.h"
-#include "pc/audiotrack.h"
-#include "pc/channelmanager.h"
-#include "pc/mediasession.h"
-#include "pc/peerconnection.h"
-#include "pc/sctputils.h"
-#include "pc/test/fakertccertificategenerator.h"
-#include "pc/test/fakesctptransport.h"
-#include "pc/videotrack.h"
-#include "pc/webrtcsession.h"
-#include "pc/webrtcsessiondescriptionfactory.h"
-#include "rtc_base/checks.h"
-#include "rtc_base/fakenetwork.h"
-#include "rtc_base/firewallsocketserver.h"
-#include "rtc_base/gunit.h"
-#include "rtc_base/logging.h"
-#include "rtc_base/stringutils.h"
-#include "rtc_base/virtualsocketserver.h"
-
-using cricket::FakeVoiceMediaChannel;
-using cricket::TransportInfo;
-using rtc::SocketAddress;
-using rtc::Thread;
-using webrtc::CreateSessionDescription;
-using webrtc::CreateSessionDescriptionObserver;
-using webrtc::CreateSessionDescriptionRequest;
-using webrtc::DataChannel;
-using webrtc::FakeMetricsObserver;
-using webrtc::IceCandidateCollection;
-using webrtc::InternalDataChannelInit;
-using webrtc::JsepIceCandidate;
-using webrtc::JsepSessionDescription;
-using webrtc::PeerConnectionFactoryInterface;
-using webrtc::PeerConnectionInterface;
-using webrtc::SessionDescriptionInterface;
-using webrtc::SessionStats;
-using webrtc::StreamCollection;
-using webrtc::WebRtcSession;
-using webrtc::kBundleWithoutRtcpMux;
-using webrtc::kCreateChannelFailed;
-using webrtc::kInvalidSdp;
-using webrtc::kMlineMismatchInAnswer;
-using webrtc::kPushDownTDFailed;
-using webrtc::kSdpWithoutIceUfragPwd;
-using webrtc::kSdpWithoutDtlsFingerprint;
-using webrtc::kSdpWithoutSdesCrypto;
-using webrtc::kSessionError;
-using webrtc::kSessionErrorDesc;
-using webrtc::kMaxUnsignalledRecvStreams;
-
-typedef PeerConnectionInterface::RTCOfferAnswerOptions RTCOfferAnswerOptions;
-
-static const int kClientAddrPort = 0;
-static const char kClientAddrHost1[] = "11.11.11.11";
-static const char kStunAddrHost[] = "99.99.99.1";
-
-static const char kSessionVersion[] = "1";
-
-// Media index of candidates belonging to the first media content.
-static const int kMediaContentIndex0 = 0;
-
-// Media index of candidates belonging to the second media content.
-static const int kMediaContentIndex1 = 1;
-
-static const int kIceCandidatesTimeout = 10000;
-
-static const char kStream1[] = "stream1";
-static const char kVideoTrack1[] = "video1";
-static const char kAudioTrack1[] = "audio1";
-
-static const char kStream2[] = "stream2";
-static const char kVideoTrack2[] = "video2";
-static const char kAudioTrack2[] = "audio2";
-
-static constexpr bool kActive = false;
-
-enum RTCCertificateGenerationMethod { ALREADY_GENERATED, DTLS_IDENTITY_STORE };
-
-class MockIceObserver : public webrtc::IceObserver {
- public:
- MockIceObserver()
- : oncandidatesready_(false),
- ice_connection_state_(PeerConnectionInterface::kIceConnectionNew),
- ice_gathering_state_(PeerConnectionInterface::kIceGatheringNew) {
- }
-
- virtual ~MockIceObserver() = default;
-
- void OnIceConnectionStateChange(
- PeerConnectionInterface::IceConnectionState new_state) override {
- ice_connection_state_ = new_state;
- ice_connection_state_history_.push_back(new_state);
- }
- void OnIceGatheringChange(
- PeerConnectionInterface::IceGatheringState new_state) override {
- // We can never transition back to "new".
- EXPECT_NE(PeerConnectionInterface::kIceGatheringNew, new_state);
- ice_gathering_state_ = new_state;
- oncandidatesready_ =
- new_state == PeerConnectionInterface::kIceGatheringComplete;
- }
-
- // Found a new candidate.
- void OnIceCandidate(
- std::unique_ptr<webrtc::IceCandidateInterface> candidate) override {
- switch (candidate->sdp_mline_index()) {
- case kMediaContentIndex0:
- mline_0_candidates_.push_back(candidate->candidate());
- break;
- case kMediaContentIndex1:
- mline_1_candidates_.push_back(candidate->candidate());
- break;
- default:
- RTC_NOTREACHED();
- }
-
- // The ICE gathering state should always be Gathering when a candidate is
- // received (or possibly Completed in the case of the final candidate).
- EXPECT_NE(PeerConnectionInterface::kIceGatheringNew, ice_gathering_state_);
- }
-
- // Some local candidates are removed.
- void OnIceCandidatesRemoved(
- const std::vector<cricket::Candidate>& candidates) override {
- num_candidates_removed_ += candidates.size();
- }
-
- bool oncandidatesready_;
- std::vector<cricket::Candidate> mline_0_candidates_;
- std::vector<cricket::Candidate> mline_1_candidates_;
- PeerConnectionInterface::IceConnectionState ice_connection_state_;
- PeerConnectionInterface::IceGatheringState ice_gathering_state_;
- std::vector<PeerConnectionInterface::IceConnectionState>
- ice_connection_state_history_;
- size_t num_candidates_removed_ = 0;
-};
-
-class WebRtcSessionForTest : public webrtc::WebRtcSession {
- public:
- WebRtcSessionForTest(
- webrtc::Call* fake_call,
- cricket::ChannelManager* channel_manager,
- const cricket::MediaConfig& media_config,
- webrtc::RtcEventLog* event_log,
- rtc::Thread* network_thread,
- rtc::Thread* worker_thread,
- rtc::Thread* signaling_thread,
- cricket::PortAllocator* port_allocator,
- webrtc::IceObserver* ice_observer,
- std::unique_ptr<cricket::TransportController> transport_controller,
- std::unique_ptr<FakeSctpTransportFactory> sctp_factory)
- : WebRtcSession(fake_call, channel_manager, media_config, event_log,
- network_thread,
- worker_thread,
- signaling_thread,
- port_allocator,
- std::move(transport_controller),
- std::move(sctp_factory)) {
- RegisterIceObserver(ice_observer);
- }
- virtual ~WebRtcSessionForTest() {}
-
- // Note that these methods are only safe to use if the signaling thread
- // is the same as the worker thread
- rtc::PacketTransportInternal* voice_rtp_transport_channel() {
- return rtp_transport_channel(voice_channel());
- }
-
- rtc::PacketTransportInternal* voice_rtcp_transport_channel() {
- return rtcp_transport_channel(voice_channel());
- }
-
- rtc::PacketTransportInternal* video_rtp_transport_channel() {
- return rtp_transport_channel(video_channel());
- }
-
- rtc::PacketTransportInternal* video_rtcp_transport_channel() {
- return rtcp_transport_channel(video_channel());
- }
-
- private:
- rtc::PacketTransportInternal* rtp_transport_channel(
- cricket::BaseChannel* ch) {
- if (!ch) {
- return nullptr;
- }
- return ch->rtp_dtls_transport();
- }
-
- rtc::PacketTransportInternal* rtcp_transport_channel(
- cricket::BaseChannel* ch) {
- if (!ch) {
- return nullptr;
- }
- return ch->rtcp_dtls_transport();
- }
-};
-
-class WebRtcSessionCreateSDPObserverForTest
- : public rtc::RefCountedObject<CreateSessionDescriptionObserver> {
- public:
- enum State {
- kInit,
- kFailed,
- kSucceeded,
- };
- WebRtcSessionCreateSDPObserverForTest() : state_(kInit) {}
-
- // CreateSessionDescriptionObserver implementation.
- virtual void OnSuccess(SessionDescriptionInterface* desc) {
- description_.reset(desc);
- state_ = kSucceeded;
- }
- virtual void OnFailure(const std::string& error) {
- state_ = kFailed;
- }
-
- SessionDescriptionInterface* description() { return description_.get(); }
-
- SessionDescriptionInterface* ReleaseDescription() {
- return description_.release();
- }
-
- State state() const { return state_; }
-
- protected:
- ~WebRtcSessionCreateSDPObserverForTest() {}
-
- private:
- std::unique_ptr<SessionDescriptionInterface> description_;
- State state_;
-};
-
-class WebRtcSessionTest
- : public testing::TestWithParam<RTCCertificateGenerationMethod>,
- public sigslot::has_slots<> {
- protected:
- // TODO Investigate why ChannelManager crashes, if it's created
- // after stun_server.
- WebRtcSessionTest()
- : vss_(new rtc::VirtualSocketServer()),
- fss_(new rtc::FirewallSocketServer(vss_.get())),
- thread_(fss_.get()),
- media_engine_(new cricket::FakeMediaEngine()),
- data_engine_(new cricket::FakeDataEngine()),
- channel_manager_(new cricket::ChannelManager(
- std::unique_ptr<cricket::MediaEngineInterface>(media_engine_),
- std::unique_ptr<cricket::DataEngineInterface>(data_engine_),
- rtc::Thread::Current())),
- fake_call_(webrtc::Call::Config(&event_log_)),
- tdesc_factory_(new cricket::TransportDescriptionFactory()),
- desc_factory_(
- new cricket::MediaSessionDescriptionFactory(channel_manager_.get(),
- tdesc_factory_.get())),
- stun_socket_addr_(
- rtc::SocketAddress(kStunAddrHost, cricket::STUN_SERVER_PORT)),
- stun_server_(cricket::TestStunServer::Create(Thread::Current(),
- stun_socket_addr_)),
- metrics_observer_(new rtc::RefCountedObject<FakeMetricsObserver>()) {
- cricket::ServerAddresses stun_servers;
- stun_servers.insert(stun_socket_addr_);
- allocator_.reset(new cricket::BasicPortAllocator(
- &network_manager_,
- stun_servers,
- SocketAddress(), SocketAddress(), SocketAddress()));
- allocator_->set_flags(cricket::PORTALLOCATOR_DISABLE_TCP |
- cricket::PORTALLOCATOR_DISABLE_RELAY);
- EXPECT_TRUE(channel_manager_->Init());
- allocator_->set_step_delay(cricket::kMinimumStepDelay);
- }
-
- void AddInterface(const SocketAddress& addr) {
- network_manager_.AddInterface(addr);
- }
-
- // If |cert_generator| != null or |rtc_configuration| contains |certificates|
- // then DTLS will be enabled unless explicitly disabled by |rtc_configuration|
- // options. When DTLS is enabled a certificate will be used if provided,
- // otherwise one will be generated using the |cert_generator|.
- void Init(
- std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
- PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy,
- const rtc::CryptoOptions& crypto_options) {
- ASSERT_TRUE(session_.get() == NULL);
- fake_sctp_transport_factory_ = new FakeSctpTransportFactory();
- session_.reset(new WebRtcSessionForTest(&fake_call_,
- channel_manager_.get(), cricket::MediaConfig(), &event_log_,
- rtc::Thread::Current(), rtc::Thread::Current(),
- rtc::Thread::Current(), allocator_.get(), &observer_,
- std::unique_ptr<cricket::TransportController>(
- new cricket::TransportController(
- rtc::Thread::Current(), rtc::Thread::Current(),
- allocator_.get(),
- /*redetermine_role_on_ice_restart=*/true, crypto_options)),
- std::unique_ptr<FakeSctpTransportFactory>(
- fake_sctp_transport_factory_)));
- session_->SignalDataChannelOpenMessage.connect(
- this, &WebRtcSessionTest::OnDataChannelOpenMessage);
-
- configuration_.rtcp_mux_policy = rtcp_mux_policy;
- EXPECT_EQ(PeerConnectionInterface::kIceConnectionNew,
- observer_.ice_connection_state_);
- EXPECT_EQ(PeerConnectionInterface::kIceGatheringNew,
- observer_.ice_gathering_state_);
-
- EXPECT_TRUE(session_->Initialize(options_, std::move(cert_generator),
- configuration_));
- session_->set_metrics_observer(metrics_observer_);
- crypto_options_ = crypto_options;
- }
-
- void OnDataChannelOpenMessage(const std::string& label,
- const InternalDataChannelInit& config) {
- last_data_channel_label_ = label;
- last_data_channel_config_ = config;
- }
-
- void Init() {
- Init(nullptr, PeerConnectionInterface::kRtcpMuxPolicyNegotiate,
- rtc::CryptoOptions());
- }
-
- void InitWithBundlePolicy(
- PeerConnectionInterface::BundlePolicy bundle_policy) {
- configuration_.bundle_policy = bundle_policy;
- Init();
- }
-
- // Successfully init with DTLS; with a certificate generated and supplied or
- // with a store that generates it for us.
- void InitWithDtls(RTCCertificateGenerationMethod cert_gen_method) {
- std::unique_ptr<FakeRTCCertificateGenerator> cert_generator;
- if (cert_gen_method == ALREADY_GENERATED) {
- configuration_.certificates.push_back(
- FakeRTCCertificateGenerator::GenerateCertificate());
- } else if (cert_gen_method == DTLS_IDENTITY_STORE) {
- cert_generator.reset(new FakeRTCCertificateGenerator());
- cert_generator->set_should_fail(false);
- } else {
- RTC_CHECK(false);
- }
- Init(std::move(cert_generator),
- PeerConnectionInterface::kRtcpMuxPolicyNegotiate,
- rtc::CryptoOptions());
- }
-
- // The following convenience functions can be applied for both local side and
- // remote side. The flags can be overwritten for different use cases.
- void SendAudioVideoStream1() {
- send_stream_1_ = true;
- send_stream_2_ = false;
- local_send_audio_ = true;
- local_send_video_ = true;
- remote_send_audio_ = true;
- remote_send_video_ = true;
- }
-
- void SendAudioVideoStream2() {
- send_stream_1_ = false;
- send_stream_2_ = true;
- local_send_audio_ = true;
- local_send_video_ = true;
- remote_send_audio_ = true;
- remote_send_video_ = true;
- }
-
- void SendAudioOnlyStream2() {
- send_stream_1_ = false;
- send_stream_2_ = true;
- local_send_audio_ = true;
- local_send_video_ = false;
- remote_send_audio_ = true;
- remote_send_video_ = false;
- }
-
- void SendVideoOnlyStream2() {
- send_stream_1_ = false;
- send_stream_2_ = true;
- local_send_audio_ = false;
- local_send_video_ = true;
- remote_send_audio_ = false;
- remote_send_video_ = true;
- }
-
- // Add the media sections to the options from |offered_media_sections_| when
- // creating an answer or a new offer.
- // This duplicates a lot of logic from PeerConnection but this can be fixed
- // when PeerConnection and WebRtcSession are merged.
- void AddExistingMediaSectionsAndSendersToOptions(
- cricket::MediaSessionOptions* session_options,
- bool send_audio,
- bool recv_audio,
- bool send_video,
- bool recv_video) {
- int num_sim_layer = 1;
- for (auto media_description_options : offered_media_sections_) {
- if (media_description_options.type == cricket::MEDIA_TYPE_AUDIO) {
- bool stopped = !send_audio && !recv_audio;
- auto media_desc_options = cricket::MediaDescriptionOptions(
- cricket::MEDIA_TYPE_AUDIO, media_description_options.mid,
- cricket::RtpTransceiverDirection(send_audio, recv_audio), stopped);
- if (send_stream_1_ && send_audio) {
- media_desc_options.AddAudioSender(kAudioTrack1, {kStream1});
- }
- if (send_stream_2_ && send_audio) {
- media_desc_options.AddAudioSender(kAudioTrack2, {kStream2});
- }
- session_options->media_description_options.push_back(
- media_desc_options);
- } else if (media_description_options.type == cricket::MEDIA_TYPE_VIDEO) {
- bool stopped = !send_video && !recv_video;
- auto media_desc_options = cricket::MediaDescriptionOptions(
- cricket::MEDIA_TYPE_VIDEO, media_description_options.mid,
- cricket::RtpTransceiverDirection(send_video, recv_video), stopped);
- if (send_stream_1_ && send_video) {
- media_desc_options.AddVideoSender(kVideoTrack1, {kStream1},
- num_sim_layer);
- }
- if (send_stream_2_ && send_video) {
- media_desc_options.AddVideoSender(kVideoTrack2, {kStream2},
- num_sim_layer);
- }
- session_options->media_description_options.push_back(
- media_desc_options);
- } else if (media_description_options.type == cricket::MEDIA_TYPE_DATA) {
- session_options->media_description_options.push_back(
- cricket::MediaDescriptionOptions(
- cricket::MEDIA_TYPE_DATA, media_description_options.mid,
- // Direction for data sections is meaningless, but legacy
- // endpoints might expect sendrecv.
- cricket::RtpTransceiverDirection(true, true), false));
- } else {
- RTC_NOTREACHED();
- }
- }
- }
-
- // Add the existing media sections first and then add new media sections if
- // needed.
- void AddMediaSectionsAndSendersToOptions(
- cricket::MediaSessionOptions* session_options,
- bool send_audio,
- bool recv_audio,
- bool send_video,
- bool recv_video) {
- AddExistingMediaSectionsAndSendersToOptions(
- session_options, send_audio, recv_audio, send_video, recv_video);
-
- if (!session_options->has_audio() && (send_audio || recv_audio)) {
- cricket::MediaDescriptionOptions media_desc_options =
- cricket::MediaDescriptionOptions(
- cricket::MEDIA_TYPE_AUDIO, cricket::CN_AUDIO,
- cricket::RtpTransceiverDirection(send_audio, recv_audio),
- kActive);
- if (send_stream_1_ && send_audio) {
- media_desc_options.AddAudioSender(kAudioTrack1, {kStream1});
- }
- if (send_stream_2_ && send_audio) {
- media_desc_options.AddAudioSender(kAudioTrack2, {kStream2});
- }
- session_options->media_description_options.push_back(media_desc_options);
- offered_media_sections_.push_back(media_desc_options);
- }
-
- if (!session_options->has_video() && (send_video || recv_video)) {
- cricket::MediaDescriptionOptions media_desc_options =
- cricket::MediaDescriptionOptions(
- cricket::MEDIA_TYPE_VIDEO, cricket::CN_VIDEO,
- cricket::RtpTransceiverDirection(send_video, recv_video),
- kActive);
- int num_sim_layer = 1;
- if (send_stream_1_ && send_video) {
- media_desc_options.AddVideoSender(kVideoTrack1, {kStream1},
- num_sim_layer);
- }
- if (send_stream_2_ && send_video) {
- media_desc_options.AddVideoSender(kVideoTrack2, {kStream2},
- num_sim_layer);
- }
- session_options->media_description_options.push_back(media_desc_options);
- offered_media_sections_.push_back(media_desc_options);
- }
-
- if (!session_options->has_data() &&
- (data_channel_ ||
- session_options->data_channel_type != cricket::DCT_NONE)) {
- cricket::MediaDescriptionOptions media_desc_options =
- cricket::MediaDescriptionOptions(
- cricket::MEDIA_TYPE_DATA, cricket::CN_DATA,
- cricket::RtpTransceiverDirection(true, true), kActive);
- if (session_options->data_channel_type == cricket::DCT_RTP) {
- media_desc_options.AddRtpDataChannel(data_channel_->label(),
- data_channel_->label());
- }
- session_options->media_description_options.push_back(media_desc_options);
- offered_media_sections_.push_back(media_desc_options);
- }
- }
-
- void GetOptionsForOffer(
- const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options,
- cricket::MediaSessionOptions* session_options) {
- ExtractSharedMediaSessionOptions(rtc_options, session_options);
-
- // |recv_X| is true by default if |offer_to_receive_X| is undefined.
- bool recv_audio = rtc_options.offer_to_receive_audio != 0;
- bool recv_video = rtc_options.offer_to_receive_video != 0;
-
- AddMediaSectionsAndSendersToOptions(session_options, local_send_audio_,
- recv_audio, local_send_video_,
- recv_video);
- session_options->bundle_enabled =
- session_options->bundle_enabled &&
- (session_options->has_audio() || session_options->has_video() ||
- session_options->has_data());
-
- session_options->crypto_options = crypto_options_;
- }
-
- void GetOptionsForAnswer(cricket::MediaSessionOptions* session_options) {
- AddExistingMediaSectionsAndSendersToOptions(
- session_options, local_send_audio_, local_recv_audio_,
- local_send_video_, local_recv_video_);
-
- session_options->bundle_enabled =
- session_options->bundle_enabled &&
- (session_options->has_audio() || session_options->has_video() ||
- session_options->has_data());
-
- if (session_->data_channel_type() != cricket::DCT_RTP) {
- session_options->data_channel_type = session_->data_channel_type();
- }
-
- session_options->crypto_options = crypto_options_;
- }
-
- void GetOptionsForRemoteAnswer(
- cricket::MediaSessionOptions* session_options) {
- bool recv_audio = local_send_audio_ || remote_recv_audio_;
- bool recv_video = local_send_video_ || remote_recv_video_;
- bool send_audio = false;
- bool send_video = false;
-
- AddExistingMediaSectionsAndSendersToOptions(
- session_options, send_audio, recv_audio, send_video, recv_video);
-
- session_options->bundle_enabled =
- session_options->bundle_enabled &&
- (session_options->has_audio() || session_options->has_video() ||
- session_options->has_data());
-
- if (session_->data_channel_type() != cricket::DCT_RTP) {
- session_options->data_channel_type = session_->data_channel_type();
- }
-
- session_options->crypto_options = crypto_options_;
- }
-
- void GetOptionsForRemoteOffer(cricket::MediaSessionOptions* session_options) {
- AddMediaSectionsAndSendersToOptions(session_options, remote_send_audio_,
- remote_recv_audio_, remote_send_video_,
- remote_recv_video_);
- session_options->bundle_enabled =
- (session_options->has_audio() || session_options->has_video() ||
- session_options->has_data());
-
- if (session_->data_channel_type() != cricket::DCT_RTP) {
- session_options->data_channel_type = session_->data_channel_type();
- }
-
- session_options->crypto_options = crypto_options_;
- }
-
- // Creates a local offer and applies it. Starts ICE.
- // Call SendAudioVideoStreamX() before this function
- // to decide which streams to create.
- void InitiateCall() {
- SessionDescriptionInterface* offer = CreateOffer();
- SetLocalDescriptionWithoutError(offer);
- EXPECT_TRUE_WAIT(PeerConnectionInterface::kIceGatheringNew !=
- observer_.ice_gathering_state_,
- kIceCandidatesTimeout);
- }
-
- SessionDescriptionInterface* CreateOffer() {
- PeerConnectionInterface::RTCOfferAnswerOptions options;
- options.offer_to_receive_audio =
- RTCOfferAnswerOptions::kOfferToReceiveMediaTrue;
- return CreateOffer(options);
- }
-
- SessionDescriptionInterface* CreateOffer(
- const PeerConnectionInterface::RTCOfferAnswerOptions options) {
- rtc::scoped_refptr<WebRtcSessionCreateSDPObserverForTest>
- observer = new WebRtcSessionCreateSDPObserverForTest();
- cricket::MediaSessionOptions session_options;
- GetOptionsForOffer(options, &session_options);
- session_->CreateOffer(observer, options, session_options);
- EXPECT_TRUE_WAIT(
- observer->state() != WebRtcSessionCreateSDPObserverForTest::kInit,
- 2000);
- return observer->ReleaseDescription();
- }
-
- SessionDescriptionInterface* CreateAnswer(
- const cricket::MediaSessionOptions& options) {
- rtc::scoped_refptr<WebRtcSessionCreateSDPObserverForTest> observer
- = new WebRtcSessionCreateSDPObserverForTest();
- cricket::MediaSessionOptions session_options = options;
- GetOptionsForAnswer(&session_options);
- session_->CreateAnswer(observer, session_options);
- EXPECT_TRUE_WAIT(
- observer->state() != WebRtcSessionCreateSDPObserverForTest::kInit,
- 2000);
- return observer->ReleaseDescription();
- }
-
- SessionDescriptionInterface* CreateAnswer() {
- cricket::MediaSessionOptions options;
- options.bundle_enabled = true;
- return CreateAnswer(options);
- }
-
- // Set the internal fake description factories to do DTLS-SRTP.
- void SetFactoryDtlsSrtp() {
- desc_factory_->set_secure(cricket::SEC_DISABLED);
- std::string identity_name = "WebRTC" +
- rtc::ToString(rtc::CreateRandomId());
- // Confirmed to work with KT_RSA and KT_ECDSA.
- tdesc_factory_->set_certificate(
- rtc::RTCCertificate::Create(std::unique_ptr<rtc::SSLIdentity>(
- rtc::SSLIdentity::Generate(identity_name, rtc::KT_DEFAULT))));
- tdesc_factory_->set_secure(cricket::SEC_REQUIRED);
- }
-
- // Compares ufrag/password only for the specified |media_type|.
- bool IceUfragPwdEqual(const cricket::SessionDescription* desc1,
- const cricket::SessionDescription* desc2,
- cricket::MediaType media_type) {
- if (desc1->contents().size() != desc2->contents().size()) {
- return false;
- }
-
- const cricket::ContentInfo* cinfo =
- cricket::GetFirstMediaContent(desc1->contents(), media_type);
- const cricket::TransportDescription* transport_desc1 =
- desc1->GetTransportDescriptionByName(cinfo->name);
- const cricket::TransportDescription* transport_desc2 =
- desc2->GetTransportDescriptionByName(cinfo->name);
- if (!transport_desc1 || !transport_desc2) {
- return false;
- }
- if (transport_desc1->ice_pwd != transport_desc2->ice_pwd ||
- transport_desc1->ice_ufrag != transport_desc2->ice_ufrag) {
- return false;
- }
- return true;
- }
-
- // Sets ufrag/pwd for specified |media_type|.
- void SetIceUfragPwd(SessionDescriptionInterface* current_desc,
- cricket::MediaType media_type,
- const std::string& ufrag,
- const std::string& pwd) {
- cricket::SessionDescription* desc = current_desc->description();
- const cricket::ContentInfo* cinfo =
- cricket::GetFirstMediaContent(desc->contents(), media_type);
- TransportInfo* transport_info = desc->GetTransportInfoByName(cinfo->name);
- cricket::TransportDescription* transport_desc =
- &transport_info->description;
- transport_desc->ice_ufrag = ufrag;
- transport_desc->ice_pwd = pwd;
- }
-
- void SetLocalDescriptionWithoutError(SessionDescriptionInterface* desc) {
- ASSERT_TRUE(session_->SetLocalDescription(rtc::WrapUnique(desc), nullptr));
- session_->MaybeStartGathering();
- }
- void SetLocalDescriptionExpectError(const std::string& action,
- const std::string& expected_error,
- SessionDescriptionInterface* desc) {
- std::string error;
- EXPECT_FALSE(session_->SetLocalDescription(rtc::WrapUnique(desc), &error));
- std::string sdp_type = "local ";
- sdp_type.append(action);
- EXPECT_NE(std::string::npos, error.find(sdp_type));
- EXPECT_NE(std::string::npos, error.find(expected_error));
- }
- void SetLocalDescriptionOfferExpectError(const std::string& expected_error,
- SessionDescriptionInterface* desc) {
- SetLocalDescriptionExpectError(SessionDescriptionInterface::kOffer,
- expected_error, desc);
- }
- void SetRemoteDescriptionWithoutError(SessionDescriptionInterface* desc) {
- ASSERT_TRUE(session_->SetRemoteDescription(rtc::WrapUnique(desc), nullptr));
- }
- void SetRemoteDescriptionExpectError(const std::string& action,
- const std::string& expected_error,
- SessionDescriptionInterface* desc) {
- std::string error;
- EXPECT_FALSE(session_->SetRemoteDescription(rtc::WrapUnique(desc), &error));
- std::string sdp_type = "remote ";
- sdp_type.append(action);
- EXPECT_NE(std::string::npos, error.find(sdp_type));
- EXPECT_NE(std::string::npos, error.find(expected_error));
- }
- void SetRemoteDescriptionOfferExpectError(
- const std::string& expected_error, SessionDescriptionInterface* desc) {
- SetRemoteDescriptionExpectError(SessionDescriptionInterface::kOffer,
- expected_error, desc);
- }
-
- JsepSessionDescription* CreateRemoteOfferWithVersion(
- cricket::MediaSessionOptions options,
- cricket::SecurePolicy secure_policy,
- const std::string& session_version,
- const SessionDescriptionInterface* current_desc) {
- std::string session_id = rtc::ToString(rtc::CreateRandomId64());
- const cricket::SessionDescription* cricket_desc = NULL;
- if (current_desc) {
- cricket_desc = current_desc->description();
- session_id = current_desc->session_id();
- }
-
- desc_factory_->set_secure(secure_policy);
- JsepSessionDescription* offer(
- new JsepSessionDescription(JsepSessionDescription::kOffer));
- if (!offer->Initialize(desc_factory_->CreateOffer(options, cricket_desc),
- session_id, session_version)) {
- delete offer;
- offer = NULL;
- }
- return offer;
- }
- JsepSessionDescription* CreateRemoteOffer(
- cricket::MediaSessionOptions options) {
- return CreateRemoteOfferWithVersion(options, cricket::SEC_ENABLED,
- kSessionVersion, NULL);
- }
- JsepSessionDescription* CreateRemoteOffer(
- cricket::MediaSessionOptions options, cricket::SecurePolicy sdes_policy) {
- return CreateRemoteOfferWithVersion(
- options, sdes_policy, kSessionVersion, NULL);
- }
- JsepSessionDescription* CreateRemoteOffer(
- cricket::MediaSessionOptions options,
- const SessionDescriptionInterface* current_desc) {
- return CreateRemoteOfferWithVersion(options, cricket::SEC_ENABLED,
- kSessionVersion, current_desc);
- }
-
- SessionDescriptionInterface* CreateRemoteOfferWithSctpPort(
- const char* sctp_stream_name,
- int new_port,
- cricket::MediaSessionOptions options) {
- options.data_channel_type = cricket::DCT_SCTP;
- GetOptionsForRemoteOffer(&options);
- return ChangeSDPSctpPort(new_port, CreateRemoteOffer(options));
- }
-
- // Takes ownership of offer_basis (and deletes it).
- SessionDescriptionInterface* ChangeSDPSctpPort(
- int new_port,
- webrtc::SessionDescriptionInterface* offer_basis) {
- // Stringify the input SDP, swap the 5000 for 'new_port' and create a new
- // SessionDescription from the mutated string.
- const char* default_port_str = "5000";
- char new_port_str[16];
- rtc::sprintfn(new_port_str, sizeof(new_port_str), "%d", new_port);
- std::string offer_str;
- offer_basis->ToString(&offer_str);
- rtc::replace_substrs(default_port_str, strlen(default_port_str),
- new_port_str, strlen(new_port_str),
- &offer_str);
- SessionDescriptionInterface* offer =
- CreateSessionDescription(offer_basis->type(), offer_str, nullptr);
- delete offer_basis;
- return offer;
- }
-
- // Create a remote offer. Call SendAudioVideoStreamX()
- // before this function to decide which streams to create.
- JsepSessionDescription* CreateRemoteOffer() {
- cricket::MediaSessionOptions options;
- GetOptionsForRemoteOffer(&options);
- return CreateRemoteOffer(options, session_->remote_description());
- }
-
- JsepSessionDescription* CreateRemoteAnswer(
- const SessionDescriptionInterface* offer,
- cricket::MediaSessionOptions options,
- cricket::SecurePolicy policy) {
- desc_factory_->set_secure(policy);
- const std::string session_id =
- rtc::ToString(rtc::CreateRandomId64());
- JsepSessionDescription* answer(
- new JsepSessionDescription(JsepSessionDescription::kAnswer));
- if (!answer->Initialize(desc_factory_->CreateAnswer(offer->description(),
- options, NULL),
- session_id, kSessionVersion)) {
- delete answer;
- answer = NULL;
- }
- return answer;
- }
-
- JsepSessionDescription* CreateRemoteAnswer(
- const SessionDescriptionInterface* offer,
- cricket::MediaSessionOptions options) {
- return CreateRemoteAnswer(offer, options, cricket::SEC_REQUIRED);
- }
-
- // Creates an answer session description.
- // Call SendAudioVideoStreamX() before this function
- // to decide which streams to create.
- JsepSessionDescription* CreateRemoteAnswer(
- const SessionDescriptionInterface* offer) {
- cricket::MediaSessionOptions options;
- GetOptionsForAnswer(&options);
- options.bundle_enabled = true;
- return CreateRemoteAnswer(offer, options, cricket::SEC_REQUIRED);
- }
-
- // The method sets up a call from the session to itself, in a loopback
- // arrangement. It also uses a firewall rule to create a temporary
- // disconnection, and then a permanent disconnection.
- // This code is placed in a method so that it can be invoked
- // by multiple tests with different allocators (e.g. with and without BUNDLE).
- // While running the call, this method also checks if the session goes through
- // the correct sequence of ICE states when a connection is established,
- // broken, and re-established.
- // The Connection state should go:
- // New -> Checking -> (Connected) -> Completed -> Disconnected -> Completed
- // -> Failed.
- // The Gathering state should go: New -> Gathering -> Completed.
-
- void SetupLoopbackCall() {
- Init();
- SendAudioVideoStream1();
- SessionDescriptionInterface* offer = CreateOffer();
-
- EXPECT_EQ(PeerConnectionInterface::kIceGatheringNew,
- observer_.ice_gathering_state_);
- SetLocalDescriptionWithoutError(offer);
- EXPECT_EQ(PeerConnectionInterface::kIceConnectionNew,
- observer_.ice_connection_state_);
- EXPECT_EQ_WAIT(PeerConnectionInterface::kIceGatheringGathering,
- observer_.ice_gathering_state_, kIceCandidatesTimeout);
- EXPECT_TRUE_WAIT(observer_.oncandidatesready_, kIceCandidatesTimeout);
- EXPECT_EQ_WAIT(PeerConnectionInterface::kIceGatheringComplete,
- observer_.ice_gathering_state_, kIceCandidatesTimeout);
-
- std::string sdp;
- offer->ToString(&sdp);
- SessionDescriptionInterface* desc = webrtc::CreateSessionDescription(
- JsepSessionDescription::kAnswer, sdp, nullptr);
- ASSERT_TRUE(desc != NULL);
- SetRemoteDescriptionWithoutError(desc);
-
- EXPECT_EQ_WAIT(PeerConnectionInterface::kIceConnectionChecking,
- observer_.ice_connection_state_, kIceCandidatesTimeout);
-
- // The ice connection state is "Connected" too briefly to catch in a test.
- EXPECT_EQ_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
- observer_.ice_connection_state_, kIceCandidatesTimeout);
- }
-
- void TestPacketOptions() {
- AddInterface(rtc::SocketAddress(kClientAddrHost1, kClientAddrPort));
-
- SetupLoopbackCall();
-
- // Wait for channel to be ready for sending.
- EXPECT_TRUE_WAIT(media_engine_->GetVideoChannel(0)->sending(), 100);
- uint8_t test_packet[15] = {0};
- rtc::PacketOptions options;
- options.packet_id = 10;
- media_engine_->GetVideoChannel(0)
- ->SendRtp(test_packet, sizeof(test_packet), options);
-
- const int kPacketTimeout = 2000;
- EXPECT_EQ_WAIT(10, fake_call_.last_sent_nonnegative_packet_id(),
- kPacketTimeout);
- EXPECT_GT(fake_call_.last_sent_packet().send_time_ms, -1);
- }
-
- void CreateDataChannel() {
- webrtc::InternalDataChannelInit dci;
- RTC_CHECK(session_.get());
- dci.reliable = session_->data_channel_type() == cricket::DCT_SCTP;
- data_channel_ = DataChannel::Create(
- session_.get(), session_->data_channel_type(), "datachannel", dci);
- }
-
- void SetLocalDescriptionWithDataChannel() {
- CreateDataChannel();
- SessionDescriptionInterface* offer = CreateOffer();
- SetLocalDescriptionWithoutError(offer);
- }
-
- webrtc::RtcEventLogNullImpl event_log_;
- std::unique_ptr<rtc::VirtualSocketServer> vss_;
- std::unique_ptr<rtc::FirewallSocketServer> fss_;
- rtc::AutoSocketServerThread thread_;
- // |media_engine_| and |data_engine_| are actually owned by
- // |channel_manager_|.
- cricket::FakeMediaEngine* media_engine_;
- cricket::FakeDataEngine* data_engine_;
- // Actually owned by session_.
- FakeSctpTransportFactory* fake_sctp_transport_factory_ = nullptr;
- std::unique_ptr<cricket::ChannelManager> channel_manager_;
- cricket::FakeCall fake_call_;
- std::unique_ptr<cricket::TransportDescriptionFactory> tdesc_factory_;
- std::unique_ptr<cricket::MediaSessionDescriptionFactory> desc_factory_;
- rtc::SocketAddress stun_socket_addr_;
- std::unique_ptr<cricket::TestStunServer> stun_server_;
- rtc::FakeNetworkManager network_manager_;
- std::unique_ptr<cricket::BasicPortAllocator> allocator_;
- PeerConnectionFactoryInterface::Options options_;
- PeerConnectionInterface::RTCConfiguration configuration_;
- std::unique_ptr<WebRtcSessionForTest> session_;
- MockIceObserver observer_;
- cricket::FakeVideoMediaChannel* video_channel_;
- cricket::FakeVoiceMediaChannel* voice_channel_;
- rtc::scoped_refptr<FakeMetricsObserver> metrics_observer_;
- // The following flags affect options created for CreateOffer/CreateAnswer.
- bool send_stream_1_ = false;
- bool send_stream_2_ = false;
- bool local_send_audio_ = false;
- bool local_send_video_ = false;
- bool local_recv_audio_ = true;
- bool local_recv_video_ = true;
- bool remote_send_audio_ = false;
- bool remote_send_video_ = false;
- bool remote_recv_audio_ = true;
- bool remote_recv_video_ = true;
- std::vector<cricket::MediaDescriptionOptions> offered_media_sections_;
- rtc::scoped_refptr<DataChannel> data_channel_;
- // Last values received from data channel creation signal.
- std::string last_data_channel_label_;
- InternalDataChannelInit last_data_channel_config_;
- rtc::CryptoOptions crypto_options_;
-};
-
-// Test that we can create and set an answer correctly when different
-// SSL roles have been negotiated for different transports.
-// See: https://bugs.chromium.org/p/webrtc/issues/detail?id=4525
-TEST_P(WebRtcSessionTest, TestCreateAnswerWithDifferentSslRoles) {
- SendAudioVideoStream1();
- InitWithDtls(GetParam());
- SetFactoryDtlsSrtp();
-
- SessionDescriptionInterface* offer = CreateOffer();
- SetLocalDescriptionWithoutError(offer);
-
- cricket::MediaSessionOptions options;
- GetOptionsForAnswer(&options);
-
- // First, negotiate different SSL roles.
- SessionDescriptionInterface* answer =
- CreateRemoteAnswer(offer, options, cricket::SEC_DISABLED);
- TransportInfo* audio_transport_info =
- answer->description()->GetTransportInfoByName("audio");
- audio_transport_info->description.connection_role =
- cricket::CONNECTIONROLE_ACTIVE;
- TransportInfo* video_transport_info =
- answer->description()->GetTransportInfoByName("video");
- video_transport_info->description.connection_role =
- cricket::CONNECTIONROLE_PASSIVE;
- SetRemoteDescriptionWithoutError(answer);
-
- // Now create an offer in the reverse direction, and ensure the initial
- // offerer responds with an answer with correct SSL roles.
- offer = CreateRemoteOfferWithVersion(options, cricket::SEC_DISABLED,
- kSessionVersion,
- session_->remote_description());
- SetRemoteDescriptionWithoutError(offer);
-
- cricket::MediaSessionOptions answer_options;
- answer_options.bundle_enabled = true;
- answer = CreateAnswer(answer_options);
- audio_transport_info = answer->description()->GetTransportInfoByName("audio");
- EXPECT_EQ(cricket::CONNECTIONROLE_PASSIVE,
- audio_transport_info->description.connection_role);
- video_transport_info = answer->description()->GetTransportInfoByName("video");
- EXPECT_EQ(cricket::CONNECTIONROLE_ACTIVE,
- video_transport_info->description.connection_role);
- SetLocalDescriptionWithoutError(answer);
-
- // Lastly, start BUNDLE-ing on "audio", expecting that the "passive" role of
- // audio is transferred over to video in the answer that completes the BUNDLE
- // negotiation.
- options.bundle_enabled = true;
- offer = CreateRemoteOfferWithVersion(options, cricket::SEC_DISABLED,
- kSessionVersion,
- session_->remote_description());
- SetRemoteDescriptionWithoutError(offer);
- answer = CreateAnswer(answer_options);
- audio_transport_info = answer->description()->GetTransportInfoByName("audio");
- EXPECT_EQ(cricket::CONNECTIONROLE_PASSIVE,
- audio_transport_info->description.connection_role);
- video_transport_info = answer->description()->GetTransportInfoByName("video");
- EXPECT_EQ(cricket::CONNECTIONROLE_PASSIVE,
- video_transport_info->description.connection_role);
- SetLocalDescriptionWithoutError(answer);
-}
-
-#ifdef HAVE_QUIC
-TEST_P(WebRtcSessionTest, TestNegotiateQuic) {
- configuration_.enable_quic = true;
- InitWithDtls(GetParam());
- EXPECT_TRUE(session_->data_channel_type() == cricket::DCT_QUIC);
- SessionDescriptionInterface* offer = CreateOffer();
- ASSERT_TRUE(offer);
- ASSERT_TRUE(offer->description());
- SetLocalDescriptionWithoutError(offer);
- cricket::MediaSessionOptions options;
- GetOptionsForAnswer(&options);
- SessionDescriptionInterface* answer =
- CreateRemoteAnswer(offer, options, cricket::SEC_DISABLED);
- ASSERT_TRUE(answer);
- ASSERT_TRUE(answer->description());
- SetRemoteDescriptionWithoutError(answer);
-}
-#endif // HAVE_QUIC
-
-// This verifies that the voice channel after bundle has both options from video
-// and voice channels.
-TEST_F(WebRtcSessionTest, TestSetSocketOptionBeforeBundle) {
- InitWithBundlePolicy(PeerConnectionInterface::kBundlePolicyBalanced);
- SendAudioVideoStream1();
-
- PeerConnectionInterface::RTCOfferAnswerOptions options;
- options.use_rtp_mux = true;
-
- SessionDescriptionInterface* offer = CreateOffer(options);
- SetLocalDescriptionWithoutError(offer);
-
- session_->video_channel()->SetOption(cricket::BaseChannel::ST_RTP,
- rtc::Socket::Option::OPT_SNDBUF, 4000);
-
- session_->voice_channel()->SetOption(cricket::BaseChannel::ST_RTP,
- rtc::Socket::Option::OPT_RCVBUF, 8000);
-
- int option_val;
- EXPECT_TRUE(session_->video_rtp_transport_channel()->GetOption(
- rtc::Socket::Option::OPT_SNDBUF, &option_val));
- EXPECT_EQ(4000, option_val);
- EXPECT_FALSE(session_->voice_rtp_transport_channel()->GetOption(
- rtc::Socket::Option::OPT_SNDBUF, &option_val));
-
- EXPECT_TRUE(session_->voice_rtp_transport_channel()->GetOption(
- rtc::Socket::Option::OPT_RCVBUF, &option_val));
- EXPECT_EQ(8000, option_val);
- EXPECT_FALSE(session_->video_rtp_transport_channel()->GetOption(
- rtc::Socket::Option::OPT_RCVBUF, &option_val));
-
- EXPECT_NE(session_->voice_rtp_transport_channel(),
- session_->video_rtp_transport_channel());
-
- SendAudioVideoStream2();
- SessionDescriptionInterface* answer =
- CreateRemoteAnswer(session_->local_description());
- SetRemoteDescriptionWithoutError(answer);
-
- EXPECT_TRUE(session_->voice_rtp_transport_channel()->GetOption(
- rtc::Socket::Option::OPT_SNDBUF, &option_val));
- EXPECT_EQ(4000, option_val);
-
- EXPECT_TRUE(session_->voice_rtp_transport_channel()->GetOption(
- rtc::Socket::Option::OPT_RCVBUF, &option_val));
- EXPECT_EQ(8000, option_val);
-}
-
-TEST_F(WebRtcSessionTest, TestPacketOptionsAndOnPacketSent) {
- TestPacketOptions();
-}
-
-// TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test
-// currently fails because upon disconnection and reconnection OnIceComplete is
-// called more than once without returning to IceGatheringGathering.
-
-INSTANTIATE_TEST_CASE_P(WebRtcSessionTests,
- WebRtcSessionTest,
- testing::Values(ALREADY_GENERATED,
- DTLS_IDENTITY_STORE));