blob: ab617c685bc4aa06cf6359b39cd21f00ef9ae1fb [file] [log] [blame]
deadbeef1dcb1642017-03-29 21:08:16 -07001/*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11// Disable for TSan v2, see
12// https://code.google.com/p/webrtc/issues/detail?id=1205 for details.
13#if !defined(THREAD_SANITIZER)
14
15#include <stdio.h>
16
deadbeef1dcb1642017-03-29 21:08:16 -070017#include <functional>
18#include <list>
19#include <map>
20#include <memory>
21#include <utility>
22#include <vector>
23
Steve Anton64b626b2019-01-28 17:25:26 -080024#include "absl/algorithm/container.h"
Steve Anton10542f22019-01-11 09:11:00 -080025#include "api/media_stream_interface.h"
26#include "api/peer_connection_interface.h"
27#include "api/peer_connection_proxy.h"
Danil Chapovalov9da25bd2019-06-20 10:19:42 +020028#include "api/rtc_event_log/rtc_event_log_factory.h"
Steve Anton10542f22019-01-11 09:11:00 -080029#include "api/rtp_receiver_interface.h"
Danil Chapovalov9da25bd2019-06-20 10:19:42 +020030#include "api/task_queue/default_task_queue_factory.h"
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080031#include "api/test/loopback_media_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080032#include "api/uma_metrics.h"
Anders Carlsson67537952018-05-03 11:28:29 +020033#include "api/video_codecs/sdp_video_format.h"
Qingsi Wang7685e862018-06-11 20:15:46 -070034#include "call/call.h"
35#include "logging/rtc_event_log/fake_rtc_event_log_factory.h"
Steve Anton10542f22019-01-11 09:11:00 -080036#include "media/engine/fake_webrtc_video_engine.h"
37#include "media/engine/webrtc_media_engine.h"
Danil Chapovalov9da25bd2019-06-20 10:19:42 +020038#include "media/engine/webrtc_media_engine_defaults.h"
Qingsi Wang25ec8882019-11-15 12:33:05 -080039#include "p2p/base/fake_ice_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080040#include "p2p/base/mock_async_resolver.h"
41#include "p2p/base/p2p_constants.h"
42#include "p2p/base/port_interface.h"
43#include "p2p/base/test_stun_server.h"
44#include "p2p/base/test_turn_customizer.h"
45#include "p2p/base/test_turn_server.h"
46#include "p2p/client/basic_port_allocator.h"
47#include "pc/dtmf_sender.h"
48#include "pc/local_audio_source.h"
49#include "pc/media_session.h"
50#include "pc/peer_connection.h"
51#include "pc/peer_connection_factory.h"
52#include "pc/rtp_media_utils.h"
53#include "pc/session_description.h"
54#include "pc/test/fake_audio_capture_module.h"
55#include "pc/test/fake_periodic_video_track_source.h"
56#include "pc/test/fake_rtc_certificate_generator.h"
57#include "pc/test/fake_video_track_renderer.h"
58#include "pc/test/mock_peer_connection_observers.h"
Jonas Olssonb75d9e92019-02-22 10:33:29 +010059#include "rtc_base/fake_clock.h"
Qingsi Wangecd30542019-05-22 14:34:56 -070060#include "rtc_base/fake_mdns_responder.h"
Steve Anton10542f22019-01-11 09:11:00 -080061#include "rtc_base/fake_network.h"
62#include "rtc_base/firewall_socket_server.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020063#include "rtc_base/gunit.h"
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +020064#include "rtc_base/numerics/safe_conversions.h"
Steve Anton10542f22019-01-11 09:11:00 -080065#include "rtc_base/test_certificate_verifier.h"
66#include "rtc_base/time_utils.h"
67#include "rtc_base/virtual_socket_server.h"
Mirko Bonadei17f48782018-09-28 08:51:10 +020068#include "system_wrappers/include/metrics.h"
Qingsi Wangc129c352019-04-18 10:41:58 -070069#include "test/field_trial.h"
Elad Alon99c3fe52017-10-13 16:29:40 +020070#include "test/gmock.h"
deadbeef1dcb1642017-03-29 21:08:16 -070071
Mirko Bonadeiab64e8a2018-12-12 12:10:18 +010072namespace webrtc {
73namespace {
74
75using ::cricket::ContentInfo;
76using ::cricket::StreamParams;
77using ::rtc::SocketAddress;
78using ::testing::_;
Seth Hampson2f0d7022018-02-20 11:54:42 -080079using ::testing::Combine;
Steve Anton64b626b2019-01-28 17:25:26 -080080using ::testing::Contains;
Mirko Bonadeie46f5db2019-03-26 20:14:46 +010081using ::testing::DoAll;
Steve Antonede9ca52017-10-16 13:04:27 -070082using ::testing::ElementsAre;
Qingsi Wang1dac6d82018-12-12 15:28:47 -080083using ::testing::NiceMock;
Steve Anton64b626b2019-01-28 17:25:26 -080084using ::testing::Return;
Zach Stein6fcdc2f2018-08-23 16:25:55 -070085using ::testing::SetArgPointee;
Steve Antonffa6ce42018-11-30 09:26:08 -080086using ::testing::UnorderedElementsAreArray;
Mirko Bonadeiab64e8a2018-12-12 12:10:18 +010087using ::testing::Values;
Steve Anton74255ff2018-01-24 18:32:57 -080088using RTCConfiguration = PeerConnectionInterface::RTCConfiguration;
deadbeef1dcb1642017-03-29 21:08:16 -070089
90static const int kDefaultTimeout = 10000;
91static const int kMaxWaitForStatsMs = 3000;
92static const int kMaxWaitForActivationMs = 5000;
93static const int kMaxWaitForFramesMs = 10000;
94// Default number of audio/video frames to wait for before considering a test
95// successful.
96static const int kDefaultExpectedAudioFrameCount = 3;
97static const int kDefaultExpectedVideoFrameCount = 3;
98
deadbeef1dcb1642017-03-29 21:08:16 -070099static const char kDataChannelLabel[] = "data_channel";
100
101// SRTP cipher name negotiated by the tests. This must be updated if the
102// default changes.
Taylor Brandstetterfd350d72018-04-03 16:29:26 -0700103static const int kDefaultSrtpCryptoSuite = rtc::SRTP_AES128_CM_SHA1_80;
deadbeef1dcb1642017-03-29 21:08:16 -0700104static const int kDefaultSrtpCryptoSuiteGcm = rtc::SRTP_AEAD_AES_256_GCM;
105
Steve Antonede9ca52017-10-16 13:04:27 -0700106static const SocketAddress kDefaultLocalAddress("192.168.1.1", 0);
107
deadbeef1dcb1642017-03-29 21:08:16 -0700108// Helper function for constructing offer/answer options to initiate an ICE
109// restart.
110PeerConnectionInterface::RTCOfferAnswerOptions IceRestartOfferAnswerOptions() {
111 PeerConnectionInterface::RTCOfferAnswerOptions options;
112 options.ice_restart = true;
113 return options;
114}
115
deadbeefd8ad7882017-04-18 16:01:17 -0700116// Remove all stream information (SSRCs, track IDs, etc.) and "msid-semantic"
117// attribute from received SDP, simulating a legacy endpoint.
118void RemoveSsrcsAndMsids(cricket::SessionDescription* desc) {
119 for (ContentInfo& content : desc->contents()) {
Steve Antonb1c1de12017-12-21 15:14:30 -0800120 content.media_description()->mutable_streams().clear();
deadbeefd8ad7882017-04-18 16:01:17 -0700121 }
122 desc->set_msid_supported(false);
Henrik Boström5b147782018-12-04 11:25:05 +0100123 desc->set_msid_signaling(0);
deadbeefd8ad7882017-04-18 16:01:17 -0700124}
125
Seth Hampson5897a6e2018-04-03 11:16:33 -0700126// Removes all stream information besides the stream ids, simulating an
127// endpoint that only signals a=msid lines to convey stream_ids.
128void RemoveSsrcsAndKeepMsids(cricket::SessionDescription* desc) {
129 for (ContentInfo& content : desc->contents()) {
Steve Antondf527fd2018-04-27 15:52:03 -0700130 std::string track_id;
Seth Hampson5897a6e2018-04-03 11:16:33 -0700131 std::vector<std::string> stream_ids;
132 if (!content.media_description()->streams().empty()) {
Steve Antondf527fd2018-04-27 15:52:03 -0700133 const StreamParams& first_stream =
134 content.media_description()->streams()[0];
135 track_id = first_stream.id;
136 stream_ids = first_stream.stream_ids();
Seth Hampson5897a6e2018-04-03 11:16:33 -0700137 }
138 content.media_description()->mutable_streams().clear();
Steve Antondf527fd2018-04-27 15:52:03 -0700139 StreamParams new_stream;
140 new_stream.id = track_id;
Seth Hampson5897a6e2018-04-03 11:16:33 -0700141 new_stream.set_stream_ids(stream_ids);
142 content.media_description()->AddStream(new_stream);
143 }
144}
145
zhihuangf8164932017-05-19 13:09:47 -0700146int FindFirstMediaStatsIndexByKind(
147 const std::string& kind,
148 const std::vector<const webrtc::RTCMediaStreamTrackStats*>&
149 media_stats_vec) {
150 for (size_t i = 0; i < media_stats_vec.size(); i++) {
151 if (media_stats_vec[i]->kind.ValueToString() == kind) {
152 return i;
153 }
154 }
155 return -1;
156}
157
deadbeef1dcb1642017-03-29 21:08:16 -0700158class SignalingMessageReceiver {
159 public:
Steve Antona3a92c22017-12-07 10:27:41 -0800160 virtual void ReceiveSdpMessage(SdpType type, const std::string& msg) = 0;
deadbeef1dcb1642017-03-29 21:08:16 -0700161 virtual void ReceiveIceMessage(const std::string& sdp_mid,
162 int sdp_mline_index,
163 const std::string& msg) = 0;
164
165 protected:
166 SignalingMessageReceiver() {}
167 virtual ~SignalingMessageReceiver() {}
168};
169
170class MockRtpReceiverObserver : public webrtc::RtpReceiverObserverInterface {
171 public:
172 explicit MockRtpReceiverObserver(cricket::MediaType media_type)
173 : expected_media_type_(media_type) {}
174
175 void OnFirstPacketReceived(cricket::MediaType media_type) override {
176 ASSERT_EQ(expected_media_type_, media_type);
177 first_packet_received_ = true;
178 }
179
180 bool first_packet_received() const { return first_packet_received_; }
181
182 virtual ~MockRtpReceiverObserver() {}
183
184 private:
185 bool first_packet_received_ = false;
186 cricket::MediaType expected_media_type_;
187};
188
189// Helper class that wraps a peer connection, observes it, and can accept
190// signaling messages from another wrapper.
191//
192// Uses a fake network, fake A/V capture, and optionally fake
193// encoders/decoders, though they aren't used by default since they don't
194// advertise support of any codecs.
Steve Anton94286cb2017-09-26 16:20:19 -0700195// TODO(steveanton): See how this could become a subclass of
Seth Hampson2f0d7022018-02-20 11:54:42 -0800196// PeerConnectionWrapper defined in peerconnectionwrapper.h.
deadbeef1dcb1642017-03-29 21:08:16 -0700197class PeerConnectionWrapper : public webrtc::PeerConnectionObserver,
Steve Anton15324772018-01-16 10:26:49 -0800198 public SignalingMessageReceiver {
deadbeef1dcb1642017-03-29 21:08:16 -0700199 public:
200 // Different factory methods for convenience.
201 // TODO(deadbeef): Could use the pattern of:
202 //
203 // PeerConnectionWrapper =
204 // WrapperBuilder.WithConfig(...).WithOptions(...).build();
205 //
206 // To reduce some code duplication.
207 static PeerConnectionWrapper* CreateWithDtlsIdentityStore(
208 const std::string& debug_name,
209 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
210 rtc::Thread* network_thread,
211 rtc::Thread* worker_thread) {
212 PeerConnectionWrapper* client(new PeerConnectionWrapper(debug_name));
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700213 webrtc::PeerConnectionDependencies dependencies(nullptr);
214 dependencies.cert_generator = std::move(cert_generator);
Niels Möllerf06f9232018-08-07 12:32:18 +0200215 if (!client->Init(nullptr, nullptr, std::move(dependencies), network_thread,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800216 worker_thread, nullptr,
217 /*media_transport_factory=*/nullptr)) {
deadbeef1dcb1642017-03-29 21:08:16 -0700218 delete client;
219 return nullptr;
220 }
221 return client;
222 }
223
deadbeef2f425aa2017-04-14 10:41:32 -0700224 webrtc::PeerConnectionFactoryInterface* pc_factory() const {
225 return peer_connection_factory_.get();
226 }
227
deadbeef1dcb1642017-03-29 21:08:16 -0700228 webrtc::PeerConnectionInterface* pc() const { return peer_connection_.get(); }
229
230 // If a signaling message receiver is set (via ConnectFakeSignaling), this
231 // will set the whole offer/answer exchange in motion. Just need to wait for
232 // the signaling state to reach "stable".
233 void CreateAndSetAndSignalOffer() {
Eldar Rello5ab79e62019-10-09 18:29:44 +0300234 auto offer = CreateOfferAndWait();
deadbeef1dcb1642017-03-29 21:08:16 -0700235 ASSERT_NE(nullptr, offer);
236 EXPECT_TRUE(SetLocalDescriptionAndSendSdpMessage(std::move(offer)));
237 }
238
239 // Sets the options to be used when CreateAndSetAndSignalOffer is called, or
240 // when a remote offer is received (via fake signaling) and an answer is
241 // generated. By default, uses default options.
242 void SetOfferAnswerOptions(
243 const PeerConnectionInterface::RTCOfferAnswerOptions& options) {
244 offer_answer_options_ = options;
245 }
246
247 // Set a callback to be invoked when SDP is received via the fake signaling
248 // channel, which provides an opportunity to munge (modify) the SDP. This is
249 // used to test SDP being applied that a PeerConnection would normally not
250 // generate, but a non-JSEP endpoint might.
251 void SetReceivedSdpMunger(
252 std::function<void(cricket::SessionDescription*)> munger) {
Mirko Bonadeic61ce0d2017-11-21 17:04:20 +0100253 received_sdp_munger_ = std::move(munger);
deadbeef1dcb1642017-03-29 21:08:16 -0700254 }
255
deadbeefc964d0b2017-04-03 10:03:35 -0700256 // Similar to the above, but this is run on SDP immediately after it's
deadbeef1dcb1642017-03-29 21:08:16 -0700257 // generated.
258 void SetGeneratedSdpMunger(
259 std::function<void(cricket::SessionDescription*)> munger) {
Mirko Bonadeic61ce0d2017-11-21 17:04:20 +0100260 generated_sdp_munger_ = std::move(munger);
deadbeef1dcb1642017-03-29 21:08:16 -0700261 }
262
Seth Hampson2f0d7022018-02-20 11:54:42 -0800263 // Set a callback to be invoked when a remote offer is received via the fake
264 // signaling channel. This provides an opportunity to change the
265 // PeerConnection state before an answer is created and sent to the caller.
266 void SetRemoteOfferHandler(std::function<void()> handler) {
267 remote_offer_handler_ = std::move(handler);
268 }
269
Qingsi Wang1dac6d82018-12-12 15:28:47 -0800270 void SetRemoteAsyncResolver(rtc::MockAsyncResolver* resolver) {
271 remote_async_resolver_ = resolver;
Zach Stein6fcdc2f2018-08-23 16:25:55 -0700272 }
273
Steve Antonede9ca52017-10-16 13:04:27 -0700274 // Every ICE connection state in order that has been seen by the observer.
275 std::vector<PeerConnectionInterface::IceConnectionState>
276 ice_connection_state_history() const {
277 return ice_connection_state_history_;
278 }
Steve Anton6f25b092017-10-23 09:39:20 -0700279 void clear_ice_connection_state_history() {
280 ice_connection_state_history_.clear();
281 }
Steve Antonede9ca52017-10-16 13:04:27 -0700282
Jonas Olssonacd8ae72019-02-25 15:26:24 +0100283 // Every standardized ICE connection state in order that has been seen by the
284 // observer.
285 std::vector<PeerConnectionInterface::IceConnectionState>
286 standardized_ice_connection_state_history() const {
287 return standardized_ice_connection_state_history_;
288 }
289
Jonas Olsson635474e2018-10-18 15:58:17 +0200290 // Every PeerConnection state in order that has been seen by the observer.
291 std::vector<PeerConnectionInterface::PeerConnectionState>
292 peer_connection_state_history() const {
293 return peer_connection_state_history_;
294 }
295
Steve Antonede9ca52017-10-16 13:04:27 -0700296 // Every ICE gathering state in order that has been seen by the observer.
297 std::vector<PeerConnectionInterface::IceGatheringState>
298 ice_gathering_state_history() const {
299 return ice_gathering_state_history_;
deadbeef1dcb1642017-03-29 21:08:16 -0700300 }
Alex Drake00c7ecf2019-08-06 10:54:47 -0700301 std::vector<cricket::CandidatePairChangeEvent>
302 ice_candidate_pair_change_history() const {
303 return ice_candidate_pair_change_history_;
304 }
deadbeef1dcb1642017-03-29 21:08:16 -0700305
Eldar Rello5ab79e62019-10-09 18:29:44 +0300306 // Every PeerConnection signaling state in order that has been seen by the
307 // observer.
308 std::vector<PeerConnectionInterface::SignalingState>
309 peer_connection_signaling_state_history() const {
310 return peer_connection_signaling_state_history_;
311 }
312
Steve Anton15324772018-01-16 10:26:49 -0800313 void AddAudioVideoTracks() {
314 AddAudioTrack();
315 AddVideoTrack();
deadbeef1dcb1642017-03-29 21:08:16 -0700316 }
317
Steve Anton74255ff2018-01-24 18:32:57 -0800318 rtc::scoped_refptr<RtpSenderInterface> AddAudioTrack() {
319 return AddTrack(CreateLocalAudioTrack());
320 }
deadbeef1dcb1642017-03-29 21:08:16 -0700321
Steve Anton74255ff2018-01-24 18:32:57 -0800322 rtc::scoped_refptr<RtpSenderInterface> AddVideoTrack() {
323 return AddTrack(CreateLocalVideoTrack());
324 }
deadbeef1dcb1642017-03-29 21:08:16 -0700325
326 rtc::scoped_refptr<webrtc::AudioTrackInterface> CreateLocalAudioTrack() {
Niels Möller2d02e082018-05-21 11:23:35 +0200327 cricket::AudioOptions options;
deadbeef1dcb1642017-03-29 21:08:16 -0700328 // Disable highpass filter so that we can get all the test audio frames.
Niels Möller2d02e082018-05-21 11:23:35 +0200329 options.highpass_filter = false;
deadbeef1dcb1642017-03-29 21:08:16 -0700330 rtc::scoped_refptr<webrtc::AudioSourceInterface> source =
Niels Möller2d02e082018-05-21 11:23:35 +0200331 peer_connection_factory_->CreateAudioSource(options);
deadbeef1dcb1642017-03-29 21:08:16 -0700332 // TODO(perkj): Test audio source when it is implemented. Currently audio
333 // always use the default input.
deadbeefb1a15d72017-09-07 14:12:05 -0700334 return peer_connection_factory_->CreateAudioTrack(rtc::CreateRandomUuid(),
deadbeef1dcb1642017-03-29 21:08:16 -0700335 source);
336 }
337
338 rtc::scoped_refptr<webrtc::VideoTrackInterface> CreateLocalVideoTrack() {
Johannes Kron965e7942018-09-13 15:36:20 +0200339 webrtc::FakePeriodicVideoSource::Config config;
340 config.timestamp_offset_ms = rtc::TimeMillis();
341 return CreateLocalVideoTrackInternal(config);
deadbeef1dcb1642017-03-29 21:08:16 -0700342 }
343
344 rtc::scoped_refptr<webrtc::VideoTrackInterface>
Niels Möller5c7efe72018-05-11 10:34:46 +0200345 CreateLocalVideoTrackWithConfig(
346 webrtc::FakePeriodicVideoSource::Config config) {
347 return CreateLocalVideoTrackInternal(config);
deadbeef1dcb1642017-03-29 21:08:16 -0700348 }
349
350 rtc::scoped_refptr<webrtc::VideoTrackInterface>
351 CreateLocalVideoTrackWithRotation(webrtc::VideoRotation rotation) {
Niels Möller5c7efe72018-05-11 10:34:46 +0200352 webrtc::FakePeriodicVideoSource::Config config;
353 config.rotation = rotation;
Johannes Kron965e7942018-09-13 15:36:20 +0200354 config.timestamp_offset_ms = rtc::TimeMillis();
Niels Möller5c7efe72018-05-11 10:34:46 +0200355 return CreateLocalVideoTrackInternal(config);
deadbeef1dcb1642017-03-29 21:08:16 -0700356 }
357
Steve Anton74255ff2018-01-24 18:32:57 -0800358 rtc::scoped_refptr<RtpSenderInterface> AddTrack(
359 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800360 const std::vector<std::string>& stream_ids = {}) {
361 auto result = pc()->AddTrack(track, stream_ids);
Steve Anton15324772018-01-16 10:26:49 -0800362 EXPECT_EQ(RTCErrorType::NONE, result.error().type());
Steve Anton74255ff2018-01-24 18:32:57 -0800363 return result.MoveValue();
364 }
365
366 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceiversOfType(
367 cricket::MediaType media_type) {
368 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> receivers;
Mirko Bonadei739baf02019-01-27 17:29:42 +0100369 for (const auto& receiver : pc()->GetReceivers()) {
Steve Anton74255ff2018-01-24 18:32:57 -0800370 if (receiver->media_type() == media_type) {
371 receivers.push_back(receiver);
372 }
373 }
374 return receivers;
deadbeef1dcb1642017-03-29 21:08:16 -0700375 }
376
Seth Hampson2f0d7022018-02-20 11:54:42 -0800377 rtc::scoped_refptr<RtpTransceiverInterface> GetFirstTransceiverOfType(
378 cricket::MediaType media_type) {
379 for (auto transceiver : pc()->GetTransceivers()) {
380 if (transceiver->receiver()->media_type() == media_type) {
381 return transceiver;
382 }
383 }
384 return nullptr;
385 }
386
deadbeef1dcb1642017-03-29 21:08:16 -0700387 bool SignalingStateStable() {
388 return pc()->signaling_state() == webrtc::PeerConnectionInterface::kStable;
389 }
390
391 void CreateDataChannel() { CreateDataChannel(nullptr); }
392
393 void CreateDataChannel(const webrtc::DataChannelInit* init) {
Steve Antonda6c0952017-10-23 11:41:54 -0700394 CreateDataChannel(kDataChannelLabel, init);
395 }
396
397 void CreateDataChannel(const std::string& label,
398 const webrtc::DataChannelInit* init) {
399 data_channel_ = pc()->CreateDataChannel(label, init);
deadbeef1dcb1642017-03-29 21:08:16 -0700400 ASSERT_TRUE(data_channel_.get() != nullptr);
401 data_observer_.reset(new MockDataChannelObserver(data_channel_));
402 }
403
404 DataChannelInterface* data_channel() { return data_channel_; }
405 const MockDataChannelObserver* data_observer() const {
406 return data_observer_.get();
407 }
408
409 int audio_frames_received() const {
410 return fake_audio_capture_module_->frames_received();
411 }
412
413 // Takes minimum of video frames received for each track.
414 //
415 // Can be used like:
416 // EXPECT_GE(expected_frames, min_video_frames_received_per_track());
417 //
418 // To ensure that all video tracks received at least a certain number of
419 // frames.
420 int min_video_frames_received_per_track() const {
421 int min_frames = INT_MAX;
Anders Carlsson5f2bb622018-05-14 09:48:06 +0200422 if (fake_video_renderers_.empty()) {
423 return 0;
deadbeef1dcb1642017-03-29 21:08:16 -0700424 }
deadbeef1dcb1642017-03-29 21:08:16 -0700425
Anders Carlsson5f2bb622018-05-14 09:48:06 +0200426 for (const auto& pair : fake_video_renderers_) {
427 min_frames = std::min(min_frames, pair.second->num_rendered_frames());
deadbeef1dcb1642017-03-29 21:08:16 -0700428 }
Anders Carlsson5f2bb622018-05-14 09:48:06 +0200429 return min_frames;
deadbeef1dcb1642017-03-29 21:08:16 -0700430 }
431
432 // Returns a MockStatsObserver in a state after stats gathering finished,
433 // which can be used to access the gathered stats.
deadbeefd8ad7882017-04-18 16:01:17 -0700434 rtc::scoped_refptr<MockStatsObserver> OldGetStatsForTrack(
deadbeef1dcb1642017-03-29 21:08:16 -0700435 webrtc::MediaStreamTrackInterface* track) {
436 rtc::scoped_refptr<MockStatsObserver> observer(
437 new rtc::RefCountedObject<MockStatsObserver>());
438 EXPECT_TRUE(peer_connection_->GetStats(
439 observer, nullptr, PeerConnectionInterface::kStatsOutputLevelStandard));
440 EXPECT_TRUE_WAIT(observer->called(), kDefaultTimeout);
441 return observer;
442 }
443
444 // Version that doesn't take a track "filter", and gathers all stats.
deadbeefd8ad7882017-04-18 16:01:17 -0700445 rtc::scoped_refptr<MockStatsObserver> OldGetStats() {
446 return OldGetStatsForTrack(nullptr);
447 }
448
449 // Synchronously gets stats and returns them. If it times out, fails the test
450 // and returns null.
451 rtc::scoped_refptr<const webrtc::RTCStatsReport> NewGetStats() {
452 rtc::scoped_refptr<webrtc::MockRTCStatsCollectorCallback> callback(
453 new rtc::RefCountedObject<webrtc::MockRTCStatsCollectorCallback>());
454 peer_connection_->GetStats(callback);
455 EXPECT_TRUE_WAIT(callback->called(), kDefaultTimeout);
456 return callback->report();
deadbeef1dcb1642017-03-29 21:08:16 -0700457 }
458
459 int rendered_width() {
460 EXPECT_FALSE(fake_video_renderers_.empty());
461 return fake_video_renderers_.empty()
462 ? 0
463 : fake_video_renderers_.begin()->second->width();
464 }
465
466 int rendered_height() {
467 EXPECT_FALSE(fake_video_renderers_.empty());
468 return fake_video_renderers_.empty()
469 ? 0
470 : fake_video_renderers_.begin()->second->height();
471 }
472
473 double rendered_aspect_ratio() {
474 if (rendered_height() == 0) {
475 return 0.0;
476 }
477 return static_cast<double>(rendered_width()) / rendered_height();
478 }
479
480 webrtc::VideoRotation rendered_rotation() {
481 EXPECT_FALSE(fake_video_renderers_.empty());
482 return fake_video_renderers_.empty()
483 ? webrtc::kVideoRotation_0
484 : fake_video_renderers_.begin()->second->rotation();
485 }
486
487 int local_rendered_width() {
488 return local_video_renderer_ ? local_video_renderer_->width() : 0;
489 }
490
491 int local_rendered_height() {
492 return local_video_renderer_ ? local_video_renderer_->height() : 0;
493 }
494
495 double local_rendered_aspect_ratio() {
496 if (local_rendered_height() == 0) {
497 return 0.0;
498 }
499 return static_cast<double>(local_rendered_width()) /
500 local_rendered_height();
501 }
502
503 size_t number_of_remote_streams() {
504 if (!pc()) {
505 return 0;
506 }
507 return pc()->remote_streams()->count();
508 }
509
510 StreamCollectionInterface* remote_streams() const {
511 if (!pc()) {
512 ADD_FAILURE();
513 return nullptr;
514 }
515 return pc()->remote_streams();
516 }
517
518 StreamCollectionInterface* local_streams() {
519 if (!pc()) {
520 ADD_FAILURE();
521 return nullptr;
522 }
523 return pc()->local_streams();
524 }
525
526 webrtc::PeerConnectionInterface::SignalingState signaling_state() {
527 return pc()->signaling_state();
528 }
529
530 webrtc::PeerConnectionInterface::IceConnectionState ice_connection_state() {
531 return pc()->ice_connection_state();
532 }
533
Jonas Olsson7a6739e2019-01-15 16:31:55 +0100534 webrtc::PeerConnectionInterface::IceConnectionState
535 standardized_ice_connection_state() {
536 return pc()->standardized_ice_connection_state();
537 }
538
deadbeef1dcb1642017-03-29 21:08:16 -0700539 webrtc::PeerConnectionInterface::IceGatheringState ice_gathering_state() {
540 return pc()->ice_gathering_state();
541 }
542
543 // Returns a MockRtpReceiverObserver for each RtpReceiver returned by
544 // GetReceivers. They're updated automatically when a remote offer/answer
545 // from the fake signaling channel is applied, or when
546 // ResetRtpReceiverObservers below is called.
547 const std::vector<std::unique_ptr<MockRtpReceiverObserver>>&
548 rtp_receiver_observers() {
549 return rtp_receiver_observers_;
550 }
551
552 void ResetRtpReceiverObservers() {
553 rtp_receiver_observers_.clear();
Mirko Bonadeic61ce0d2017-11-21 17:04:20 +0100554 for (const rtc::scoped_refptr<RtpReceiverInterface>& receiver :
555 pc()->GetReceivers()) {
deadbeef1dcb1642017-03-29 21:08:16 -0700556 std::unique_ptr<MockRtpReceiverObserver> observer(
557 new MockRtpReceiverObserver(receiver->media_type()));
558 receiver->SetObserver(observer.get());
559 rtp_receiver_observers_.push_back(std::move(observer));
560 }
561 }
562
Qingsi Wangecd30542019-05-22 14:34:56 -0700563 rtc::FakeNetworkManager* network_manager() const {
Steve Antonede9ca52017-10-16 13:04:27 -0700564 return fake_network_manager_.get();
565 }
566 cricket::PortAllocator* port_allocator() const { return port_allocator_; }
567
Qingsi Wang7685e862018-06-11 20:15:46 -0700568 webrtc::FakeRtcEventLogFactory* event_log_factory() const {
569 return event_log_factory_;
570 }
571
Qingsi Wangc129c352019-04-18 10:41:58 -0700572 const cricket::Candidate& last_candidate_gathered() const {
573 return last_candidate_gathered_;
574 }
Eldar Relloda13ea22019-06-01 12:23:43 +0300575 const cricket::IceCandidateErrorEvent& error_event() const {
576 return error_event_;
577 }
Qingsi Wangc129c352019-04-18 10:41:58 -0700578
Qingsi Wangecd30542019-05-22 14:34:56 -0700579 // Sets the mDNS responder for the owned fake network manager and keeps a
580 // reference to the responder.
581 void SetMdnsResponder(
582 std::unique_ptr<webrtc::FakeMdnsResponder> mdns_responder) {
583 RTC_DCHECK(mdns_responder != nullptr);
584 mdns_responder_ = mdns_responder.get();
585 network_manager()->set_mdns_responder(std::move(mdns_responder));
586 }
587
Eldar Rello5ab79e62019-10-09 18:29:44 +0300588 // Returns null on failure.
589 std::unique_ptr<SessionDescriptionInterface> CreateOfferAndWait() {
590 rtc::scoped_refptr<MockCreateSessionDescriptionObserver> observer(
591 new rtc::RefCountedObject<MockCreateSessionDescriptionObserver>());
592 pc()->CreateOffer(observer, offer_answer_options_);
593 return WaitForDescriptionFromObserver(observer);
594 }
595
deadbeef1dcb1642017-03-29 21:08:16 -0700596 private:
597 explicit PeerConnectionWrapper(const std::string& debug_name)
598 : debug_name_(debug_name) {}
599
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800600 bool Init(
601 const PeerConnectionFactory::Options* options,
602 const PeerConnectionInterface::RTCConfiguration* config,
603 webrtc::PeerConnectionDependencies dependencies,
604 rtc::Thread* network_thread,
605 rtc::Thread* worker_thread,
606 std::unique_ptr<webrtc::FakeRtcEventLogFactory> event_log_factory,
607 std::unique_ptr<webrtc::MediaTransportFactory> media_transport_factory) {
deadbeef1dcb1642017-03-29 21:08:16 -0700608 // There's an error in this test code if Init ends up being called twice.
609 RTC_DCHECK(!peer_connection_);
610 RTC_DCHECK(!peer_connection_factory_);
611
612 fake_network_manager_.reset(new rtc::FakeNetworkManager());
Steve Antonede9ca52017-10-16 13:04:27 -0700613 fake_network_manager_->AddInterface(kDefaultLocalAddress);
deadbeef1dcb1642017-03-29 21:08:16 -0700614
615 std::unique_ptr<cricket::PortAllocator> port_allocator(
616 new cricket::BasicPortAllocator(fake_network_manager_.get()));
Steve Antonede9ca52017-10-16 13:04:27 -0700617 port_allocator_ = port_allocator.get();
deadbeef1dcb1642017-03-29 21:08:16 -0700618 fake_audio_capture_module_ = FakeAudioCaptureModule::Create();
619 if (!fake_audio_capture_module_) {
620 return false;
621 }
deadbeef1dcb1642017-03-29 21:08:16 -0700622 rtc::Thread* const signaling_thread = rtc::Thread::Current();
Qingsi Wang7685e862018-06-11 20:15:46 -0700623
624 webrtc::PeerConnectionFactoryDependencies pc_factory_dependencies;
625 pc_factory_dependencies.network_thread = network_thread;
626 pc_factory_dependencies.worker_thread = worker_thread;
627 pc_factory_dependencies.signaling_thread = signaling_thread;
Danil Chapovalov9da25bd2019-06-20 10:19:42 +0200628 pc_factory_dependencies.task_queue_factory =
629 webrtc::CreateDefaultTaskQueueFactory();
630 cricket::MediaEngineDependencies media_deps;
631 media_deps.task_queue_factory =
632 pc_factory_dependencies.task_queue_factory.get();
633 media_deps.adm = fake_audio_capture_module_;
634 webrtc::SetMediaEngineDefaults(&media_deps);
Qingsi Wang7685e862018-06-11 20:15:46 -0700635 pc_factory_dependencies.media_engine =
Danil Chapovalov9da25bd2019-06-20 10:19:42 +0200636 cricket::CreateMediaEngine(std::move(media_deps));
Qingsi Wang7685e862018-06-11 20:15:46 -0700637 pc_factory_dependencies.call_factory = webrtc::CreateCallFactory();
638 if (event_log_factory) {
639 event_log_factory_ = event_log_factory.get();
640 pc_factory_dependencies.event_log_factory = std::move(event_log_factory);
641 } else {
642 pc_factory_dependencies.event_log_factory =
Mirko Bonadei317a1f02019-09-17 17:06:18 +0200643 std::make_unique<webrtc::RtcEventLogFactory>(
Danil Chapovalov9da25bd2019-06-20 10:19:42 +0200644 pc_factory_dependencies.task_queue_factory.get());
Qingsi Wang7685e862018-06-11 20:15:46 -0700645 }
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800646 if (media_transport_factory) {
647 pc_factory_dependencies.media_transport_factory =
648 std::move(media_transport_factory);
649 }
Qingsi Wang7685e862018-06-11 20:15:46 -0700650 peer_connection_factory_ = webrtc::CreateModularPeerConnectionFactory(
651 std::move(pc_factory_dependencies));
652
deadbeef1dcb1642017-03-29 21:08:16 -0700653 if (!peer_connection_factory_) {
654 return false;
655 }
656 if (options) {
657 peer_connection_factory_->SetOptions(*options);
658 }
Seth Hampson2f0d7022018-02-20 11:54:42 -0800659 if (config) {
660 sdp_semantics_ = config->sdp_semantics;
661 }
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700662
663 dependencies.allocator = std::move(port_allocator);
Niels Möllerf06f9232018-08-07 12:32:18 +0200664 peer_connection_ = CreatePeerConnection(config, std::move(dependencies));
deadbeef1dcb1642017-03-29 21:08:16 -0700665 return peer_connection_.get() != nullptr;
666 }
667
668 rtc::scoped_refptr<webrtc::PeerConnectionInterface> CreatePeerConnection(
deadbeef1dcb1642017-03-29 21:08:16 -0700669 const PeerConnectionInterface::RTCConfiguration* config,
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700670 webrtc::PeerConnectionDependencies dependencies) {
deadbeef1dcb1642017-03-29 21:08:16 -0700671 PeerConnectionInterface::RTCConfiguration modified_config;
672 // If |config| is null, this will result in a default configuration being
673 // used.
674 if (config) {
675 modified_config = *config;
676 }
677 // Disable resolution adaptation; we don't want it interfering with the
678 // test results.
679 // TODO(deadbeef): Do something more robust. Since we're testing for aspect
680 // ratios and not specific resolutions, is this even necessary?
681 modified_config.set_cpu_adaptation(false);
682
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700683 dependencies.observer = this;
deadbeef1dcb1642017-03-29 21:08:16 -0700684 return peer_connection_factory_->CreatePeerConnection(
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700685 modified_config, std::move(dependencies));
deadbeef1dcb1642017-03-29 21:08:16 -0700686 }
687
688 void set_signaling_message_receiver(
689 SignalingMessageReceiver* signaling_message_receiver) {
690 signaling_message_receiver_ = signaling_message_receiver;
691 }
692
693 void set_signaling_delay_ms(int delay_ms) { signaling_delay_ms_ = delay_ms; }
694
Steve Antonede9ca52017-10-16 13:04:27 -0700695 void set_signal_ice_candidates(bool signal) {
696 signal_ice_candidates_ = signal;
697 }
698
deadbeef1dcb1642017-03-29 21:08:16 -0700699 rtc::scoped_refptr<webrtc::VideoTrackInterface> CreateLocalVideoTrackInternal(
Niels Möller5c7efe72018-05-11 10:34:46 +0200700 webrtc::FakePeriodicVideoSource::Config config) {
deadbeef1dcb1642017-03-29 21:08:16 -0700701 // Set max frame rate to 10fps to reduce the risk of test flakiness.
702 // TODO(deadbeef): Do something more robust.
Niels Möller5c7efe72018-05-11 10:34:46 +0200703 config.frame_interval_ms = 100;
deadbeef1dcb1642017-03-29 21:08:16 -0700704
Niels Möller5c7efe72018-05-11 10:34:46 +0200705 video_track_sources_.emplace_back(
Niels Möller0f405822018-05-17 09:16:41 +0200706 new rtc::RefCountedObject<webrtc::FakePeriodicVideoTrackSource>(
707 config, false /* remote */));
deadbeef1dcb1642017-03-29 21:08:16 -0700708 rtc::scoped_refptr<webrtc::VideoTrackInterface> track(
Niels Möller5c7efe72018-05-11 10:34:46 +0200709 peer_connection_factory_->CreateVideoTrack(
710 rtc::CreateRandomUuid(), video_track_sources_.back()));
deadbeef1dcb1642017-03-29 21:08:16 -0700711 if (!local_video_renderer_) {
712 local_video_renderer_.reset(new webrtc::FakeVideoTrackRenderer(track));
713 }
714 return track;
715 }
716
717 void HandleIncomingOffer(const std::string& msg) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100718 RTC_LOG(LS_INFO) << debug_name_ << ": HandleIncomingOffer";
Steve Antona3a92c22017-12-07 10:27:41 -0800719 std::unique_ptr<SessionDescriptionInterface> desc =
720 webrtc::CreateSessionDescription(SdpType::kOffer, msg);
deadbeef1dcb1642017-03-29 21:08:16 -0700721 if (received_sdp_munger_) {
722 received_sdp_munger_(desc->description());
723 }
724
725 EXPECT_TRUE(SetRemoteDescription(std::move(desc)));
726 // Setting a remote description may have changed the number of receivers,
727 // so reset the receiver observers.
728 ResetRtpReceiverObservers();
Seth Hampson2f0d7022018-02-20 11:54:42 -0800729 if (remote_offer_handler_) {
730 remote_offer_handler_();
731 }
deadbeef1dcb1642017-03-29 21:08:16 -0700732 auto answer = CreateAnswer();
733 ASSERT_NE(nullptr, answer);
734 EXPECT_TRUE(SetLocalDescriptionAndSendSdpMessage(std::move(answer)));
735 }
736
737 void HandleIncomingAnswer(const std::string& msg) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100738 RTC_LOG(LS_INFO) << debug_name_ << ": HandleIncomingAnswer";
Steve Antona3a92c22017-12-07 10:27:41 -0800739 std::unique_ptr<SessionDescriptionInterface> desc =
740 webrtc::CreateSessionDescription(SdpType::kAnswer, msg);
deadbeef1dcb1642017-03-29 21:08:16 -0700741 if (received_sdp_munger_) {
742 received_sdp_munger_(desc->description());
743 }
744
745 EXPECT_TRUE(SetRemoteDescription(std::move(desc)));
746 // Set the RtpReceiverObserver after receivers are created.
747 ResetRtpReceiverObservers();
748 }
749
750 // Returns null on failure.
deadbeef1dcb1642017-03-29 21:08:16 -0700751 std::unique_ptr<SessionDescriptionInterface> CreateAnswer() {
752 rtc::scoped_refptr<MockCreateSessionDescriptionObserver> observer(
753 new rtc::RefCountedObject<MockCreateSessionDescriptionObserver>());
754 pc()->CreateAnswer(observer, offer_answer_options_);
755 return WaitForDescriptionFromObserver(observer);
756 }
757
758 std::unique_ptr<SessionDescriptionInterface> WaitForDescriptionFromObserver(
Mirko Bonadeic61ce0d2017-11-21 17:04:20 +0100759 MockCreateSessionDescriptionObserver* observer) {
deadbeef1dcb1642017-03-29 21:08:16 -0700760 EXPECT_EQ_WAIT(true, observer->called(), kDefaultTimeout);
761 if (!observer->result()) {
762 return nullptr;
763 }
764 auto description = observer->MoveDescription();
765 if (generated_sdp_munger_) {
766 generated_sdp_munger_(description->description());
767 }
768 return description;
769 }
770
771 // Setting the local description and sending the SDP message over the fake
772 // signaling channel are combined into the same method because the SDP
773 // message needs to be sent as soon as SetLocalDescription finishes, without
774 // waiting for the observer to be called. This ensures that ICE candidates
775 // don't outrace the description.
776 bool SetLocalDescriptionAndSendSdpMessage(
777 std::unique_ptr<SessionDescriptionInterface> desc) {
778 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
779 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
Mirko Bonadei675513b2017-11-09 11:09:25 +0100780 RTC_LOG(LS_INFO) << debug_name_ << ": SetLocalDescriptionAndSendSdpMessage";
Steve Antona3a92c22017-12-07 10:27:41 -0800781 SdpType type = desc->GetType();
deadbeef1dcb1642017-03-29 21:08:16 -0700782 std::string sdp;
783 EXPECT_TRUE(desc->ToString(&sdp));
Bjorn A Mellemb689af42019-08-21 10:44:59 -0700784 RTC_LOG(LS_INFO) << debug_name_ << ": local SDP contents=\n" << sdp;
deadbeef1dcb1642017-03-29 21:08:16 -0700785 pc()->SetLocalDescription(observer, desc.release());
Seth Hampson2f0d7022018-02-20 11:54:42 -0800786 if (sdp_semantics_ == SdpSemantics::kUnifiedPlan) {
787 RemoveUnusedVideoRenderers();
788 }
deadbeef1dcb1642017-03-29 21:08:16 -0700789 // As mentioned above, we need to send the message immediately after
790 // SetLocalDescription.
791 SendSdpMessage(type, sdp);
792 EXPECT_TRUE_WAIT(observer->called(), kDefaultTimeout);
793 return true;
794 }
795
796 bool SetRemoteDescription(std::unique_ptr<SessionDescriptionInterface> desc) {
797 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
798 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
Mirko Bonadei675513b2017-11-09 11:09:25 +0100799 RTC_LOG(LS_INFO) << debug_name_ << ": SetRemoteDescription";
deadbeef1dcb1642017-03-29 21:08:16 -0700800 pc()->SetRemoteDescription(observer, desc.release());
Seth Hampson2f0d7022018-02-20 11:54:42 -0800801 if (sdp_semantics_ == SdpSemantics::kUnifiedPlan) {
802 RemoveUnusedVideoRenderers();
803 }
deadbeef1dcb1642017-03-29 21:08:16 -0700804 EXPECT_TRUE_WAIT(observer->called(), kDefaultTimeout);
805 return observer->result();
806 }
807
Seth Hampson2f0d7022018-02-20 11:54:42 -0800808 // This is a work around to remove unused fake_video_renderers from
809 // transceivers that have either stopped or are no longer receiving.
810 void RemoveUnusedVideoRenderers() {
811 auto transceivers = pc()->GetTransceivers();
812 for (auto& transceiver : transceivers) {
813 if (transceiver->receiver()->media_type() != cricket::MEDIA_TYPE_VIDEO) {
814 continue;
815 }
816 // Remove fake video renderers from any stopped transceivers.
817 if (transceiver->stopped()) {
818 auto it =
819 fake_video_renderers_.find(transceiver->receiver()->track()->id());
820 if (it != fake_video_renderers_.end()) {
821 fake_video_renderers_.erase(it);
822 }
823 }
824 // Remove fake video renderers from any transceivers that are no longer
825 // receiving.
826 if ((transceiver->current_direction() &&
827 !webrtc::RtpTransceiverDirectionHasRecv(
828 *transceiver->current_direction()))) {
829 auto it =
830 fake_video_renderers_.find(transceiver->receiver()->track()->id());
831 if (it != fake_video_renderers_.end()) {
832 fake_video_renderers_.erase(it);
833 }
834 }
835 }
836 }
837
deadbeef1dcb1642017-03-29 21:08:16 -0700838 // Simulate sending a blob of SDP with delay |signaling_delay_ms_| (0 by
839 // default).
Steve Antona3a92c22017-12-07 10:27:41 -0800840 void SendSdpMessage(SdpType type, const std::string& msg) {
deadbeef1dcb1642017-03-29 21:08:16 -0700841 if (signaling_delay_ms_ == 0) {
842 RelaySdpMessageIfReceiverExists(type, msg);
843 } else {
844 invoker_.AsyncInvokeDelayed<void>(
845 RTC_FROM_HERE, rtc::Thread::Current(),
846 rtc::Bind(&PeerConnectionWrapper::RelaySdpMessageIfReceiverExists,
847 this, type, msg),
848 signaling_delay_ms_);
849 }
850 }
851
Steve Antona3a92c22017-12-07 10:27:41 -0800852 void RelaySdpMessageIfReceiverExists(SdpType type, const std::string& msg) {
deadbeef1dcb1642017-03-29 21:08:16 -0700853 if (signaling_message_receiver_) {
854 signaling_message_receiver_->ReceiveSdpMessage(type, msg);
855 }
856 }
857
858 // Simulate trickling an ICE candidate with delay |signaling_delay_ms_| (0 by
859 // default).
860 void SendIceMessage(const std::string& sdp_mid,
861 int sdp_mline_index,
862 const std::string& msg) {
863 if (signaling_delay_ms_ == 0) {
864 RelayIceMessageIfReceiverExists(sdp_mid, sdp_mline_index, msg);
865 } else {
866 invoker_.AsyncInvokeDelayed<void>(
867 RTC_FROM_HERE, rtc::Thread::Current(),
868 rtc::Bind(&PeerConnectionWrapper::RelayIceMessageIfReceiverExists,
869 this, sdp_mid, sdp_mline_index, msg),
870 signaling_delay_ms_);
871 }
872 }
873
874 void RelayIceMessageIfReceiverExists(const std::string& sdp_mid,
875 int sdp_mline_index,
876 const std::string& msg) {
877 if (signaling_message_receiver_) {
878 signaling_message_receiver_->ReceiveIceMessage(sdp_mid, sdp_mline_index,
879 msg);
880 }
881 }
882
883 // SignalingMessageReceiver callbacks.
Steve Antona3a92c22017-12-07 10:27:41 -0800884 void ReceiveSdpMessage(SdpType type, const std::string& msg) override {
885 if (type == SdpType::kOffer) {
deadbeef1dcb1642017-03-29 21:08:16 -0700886 HandleIncomingOffer(msg);
887 } else {
888 HandleIncomingAnswer(msg);
889 }
890 }
891
892 void ReceiveIceMessage(const std::string& sdp_mid,
893 int sdp_mline_index,
894 const std::string& msg) override {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100895 RTC_LOG(LS_INFO) << debug_name_ << ": ReceiveIceMessage";
deadbeef1dcb1642017-03-29 21:08:16 -0700896 std::unique_ptr<webrtc::IceCandidateInterface> candidate(
897 webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, msg, nullptr));
898 EXPECT_TRUE(pc()->AddIceCandidate(candidate.get()));
899 }
900
901 // PeerConnectionObserver callbacks.
902 void OnSignalingChange(
903 webrtc::PeerConnectionInterface::SignalingState new_state) override {
904 EXPECT_EQ(pc()->signaling_state(), new_state);
Eldar Rello5ab79e62019-10-09 18:29:44 +0300905 peer_connection_signaling_state_history_.push_back(new_state);
deadbeef1dcb1642017-03-29 21:08:16 -0700906 }
Steve Anton15324772018-01-16 10:26:49 -0800907 void OnAddTrack(rtc::scoped_refptr<RtpReceiverInterface> receiver,
908 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
909 streams) override {
910 if (receiver->media_type() == cricket::MEDIA_TYPE_VIDEO) {
911 rtc::scoped_refptr<VideoTrackInterface> video_track(
912 static_cast<VideoTrackInterface*>(receiver->track().get()));
913 ASSERT_TRUE(fake_video_renderers_.find(video_track->id()) ==
deadbeef1dcb1642017-03-29 21:08:16 -0700914 fake_video_renderers_.end());
Steve Anton15324772018-01-16 10:26:49 -0800915 fake_video_renderers_[video_track->id()] =
Mirko Bonadei317a1f02019-09-17 17:06:18 +0200916 std::make_unique<FakeVideoTrackRenderer>(video_track);
deadbeef1dcb1642017-03-29 21:08:16 -0700917 }
918 }
Steve Anton15324772018-01-16 10:26:49 -0800919 void OnRemoveTrack(
920 rtc::scoped_refptr<RtpReceiverInterface> receiver) override {
921 if (receiver->media_type() == cricket::MEDIA_TYPE_VIDEO) {
922 auto it = fake_video_renderers_.find(receiver->track()->id());
923 RTC_DCHECK(it != fake_video_renderers_.end());
924 fake_video_renderers_.erase(it);
925 }
926 }
deadbeef1dcb1642017-03-29 21:08:16 -0700927 void OnRenegotiationNeeded() override {}
928 void OnIceConnectionChange(
929 webrtc::PeerConnectionInterface::IceConnectionState new_state) override {
930 EXPECT_EQ(pc()->ice_connection_state(), new_state);
Steve Antonede9ca52017-10-16 13:04:27 -0700931 ice_connection_state_history_.push_back(new_state);
deadbeef1dcb1642017-03-29 21:08:16 -0700932 }
Jonas Olssonacd8ae72019-02-25 15:26:24 +0100933 void OnStandardizedIceConnectionChange(
934 webrtc::PeerConnectionInterface::IceConnectionState new_state) override {
935 standardized_ice_connection_state_history_.push_back(new_state);
936 }
Jonas Olsson635474e2018-10-18 15:58:17 +0200937 void OnConnectionChange(
938 webrtc::PeerConnectionInterface::PeerConnectionState new_state) override {
939 peer_connection_state_history_.push_back(new_state);
940 }
941
deadbeef1dcb1642017-03-29 21:08:16 -0700942 void OnIceGatheringChange(
943 webrtc::PeerConnectionInterface::IceGatheringState new_state) override {
deadbeef1dcb1642017-03-29 21:08:16 -0700944 EXPECT_EQ(pc()->ice_gathering_state(), new_state);
Steve Antonede9ca52017-10-16 13:04:27 -0700945 ice_gathering_state_history_.push_back(new_state);
deadbeef1dcb1642017-03-29 21:08:16 -0700946 }
Alex Drake00c7ecf2019-08-06 10:54:47 -0700947
948 void OnIceSelectedCandidatePairChanged(
949 const cricket::CandidatePairChangeEvent& event) {
950 ice_candidate_pair_change_history_.push_back(event);
951 }
Alex Drake43faee02019-08-12 16:27:34 -0700952
deadbeef1dcb1642017-03-29 21:08:16 -0700953 void OnIceCandidate(const webrtc::IceCandidateInterface* candidate) override {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100954 RTC_LOG(LS_INFO) << debug_name_ << ": OnIceCandidate";
deadbeef1dcb1642017-03-29 21:08:16 -0700955
Qingsi Wang1dac6d82018-12-12 15:28:47 -0800956 if (remote_async_resolver_) {
957 const auto& local_candidate = candidate->candidate();
Qingsi Wang1dac6d82018-12-12 15:28:47 -0800958 if (local_candidate.address().IsUnresolvedIP()) {
959 RTC_DCHECK(local_candidate.type() == cricket::LOCAL_PORT_TYPE);
960 rtc::SocketAddress resolved_addr(local_candidate.address());
Qingsi Wangecd30542019-05-22 14:34:56 -0700961 const auto resolved_ip = mdns_responder_->GetMappedAddressForName(
Qingsi Wang1dac6d82018-12-12 15:28:47 -0800962 local_candidate.address().hostname());
963 RTC_DCHECK(!resolved_ip.IsNil());
964 resolved_addr.SetResolvedIP(resolved_ip);
965 EXPECT_CALL(*remote_async_resolver_, GetResolvedAddress(_, _))
966 .WillOnce(DoAll(SetArgPointee<1>(resolved_addr), Return(true)));
967 EXPECT_CALL(*remote_async_resolver_, Destroy(_));
Zach Stein6fcdc2f2018-08-23 16:25:55 -0700968 }
Zach Stein6fcdc2f2018-08-23 16:25:55 -0700969 }
970
deadbeef1dcb1642017-03-29 21:08:16 -0700971 std::string ice_sdp;
Qingsi Wang1dac6d82018-12-12 15:28:47 -0800972 EXPECT_TRUE(candidate->ToString(&ice_sdp));
Steve Antonede9ca52017-10-16 13:04:27 -0700973 if (signaling_message_receiver_ == nullptr || !signal_ice_candidates_) {
deadbeef1dcb1642017-03-29 21:08:16 -0700974 // Remote party may be deleted.
975 return;
976 }
Qingsi Wang1dac6d82018-12-12 15:28:47 -0800977 SendIceMessage(candidate->sdp_mid(), candidate->sdp_mline_index(), ice_sdp);
Qingsi Wangc129c352019-04-18 10:41:58 -0700978 last_candidate_gathered_ = candidate->candidate();
deadbeef1dcb1642017-03-29 21:08:16 -0700979 }
Eldar Rello0095d372019-12-02 22:22:07 +0200980 void OnIceCandidateError(const std::string& address,
981 int port,
Eldar Relloda13ea22019-06-01 12:23:43 +0300982 const std::string& url,
983 int error_code,
984 const std::string& error_text) override {
Eldar Rello0095d372019-12-02 22:22:07 +0200985 error_event_ = cricket::IceCandidateErrorEvent(address, port, url,
Eldar Relloda13ea22019-06-01 12:23:43 +0300986 error_code, error_text);
987 }
deadbeef1dcb1642017-03-29 21:08:16 -0700988 void OnDataChannel(
989 rtc::scoped_refptr<DataChannelInterface> data_channel) override {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100990 RTC_LOG(LS_INFO) << debug_name_ << ": OnDataChannel";
deadbeef1dcb1642017-03-29 21:08:16 -0700991 data_channel_ = data_channel;
992 data_observer_.reset(new MockDataChannelObserver(data_channel));
993 }
994
deadbeef1dcb1642017-03-29 21:08:16 -0700995 std::string debug_name_;
996
997 std::unique_ptr<rtc::FakeNetworkManager> fake_network_manager_;
Qingsi Wangecd30542019-05-22 14:34:56 -0700998 // Reference to the mDNS responder owned by |fake_network_manager_| after set.
999 webrtc::FakeMdnsResponder* mdns_responder_ = nullptr;
deadbeef1dcb1642017-03-29 21:08:16 -07001000
1001 rtc::scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_;
1002 rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface>
1003 peer_connection_factory_;
1004
Steve Antonede9ca52017-10-16 13:04:27 -07001005 cricket::PortAllocator* port_allocator_;
deadbeef1dcb1642017-03-29 21:08:16 -07001006 // Needed to keep track of number of frames sent.
1007 rtc::scoped_refptr<FakeAudioCaptureModule> fake_audio_capture_module_;
1008 // Needed to keep track of number of frames received.
1009 std::map<std::string, std::unique_ptr<webrtc::FakeVideoTrackRenderer>>
1010 fake_video_renderers_;
1011 // Needed to ensure frames aren't received for removed tracks.
1012 std::vector<std::unique_ptr<webrtc::FakeVideoTrackRenderer>>
1013 removed_fake_video_renderers_;
deadbeef1dcb1642017-03-29 21:08:16 -07001014
1015 // For remote peer communication.
1016 SignalingMessageReceiver* signaling_message_receiver_ = nullptr;
1017 int signaling_delay_ms_ = 0;
Steve Antonede9ca52017-10-16 13:04:27 -07001018 bool signal_ice_candidates_ = true;
Qingsi Wangc129c352019-04-18 10:41:58 -07001019 cricket::Candidate last_candidate_gathered_;
Eldar Relloda13ea22019-06-01 12:23:43 +03001020 cricket::IceCandidateErrorEvent error_event_;
deadbeef1dcb1642017-03-29 21:08:16 -07001021
Niels Möller5c7efe72018-05-11 10:34:46 +02001022 // Store references to the video sources we've created, so that we can stop
deadbeef1dcb1642017-03-29 21:08:16 -07001023 // them, if required.
Niels Möller5c7efe72018-05-11 10:34:46 +02001024 std::vector<rtc::scoped_refptr<webrtc::VideoTrackSource>>
1025 video_track_sources_;
deadbeef1dcb1642017-03-29 21:08:16 -07001026 // |local_video_renderer_| attached to the first created local video track.
1027 std::unique_ptr<webrtc::FakeVideoTrackRenderer> local_video_renderer_;
1028
Seth Hampson2f0d7022018-02-20 11:54:42 -08001029 SdpSemantics sdp_semantics_;
deadbeef1dcb1642017-03-29 21:08:16 -07001030 PeerConnectionInterface::RTCOfferAnswerOptions offer_answer_options_;
1031 std::function<void(cricket::SessionDescription*)> received_sdp_munger_;
1032 std::function<void(cricket::SessionDescription*)> generated_sdp_munger_;
Seth Hampson2f0d7022018-02-20 11:54:42 -08001033 std::function<void()> remote_offer_handler_;
Qingsi Wang1dac6d82018-12-12 15:28:47 -08001034 rtc::MockAsyncResolver* remote_async_resolver_ = nullptr;
deadbeef1dcb1642017-03-29 21:08:16 -07001035 rtc::scoped_refptr<DataChannelInterface> data_channel_;
1036 std::unique_ptr<MockDataChannelObserver> data_observer_;
1037
1038 std::vector<std::unique_ptr<MockRtpReceiverObserver>> rtp_receiver_observers_;
1039
Steve Antonede9ca52017-10-16 13:04:27 -07001040 std::vector<PeerConnectionInterface::IceConnectionState>
1041 ice_connection_state_history_;
Jonas Olssonacd8ae72019-02-25 15:26:24 +01001042 std::vector<PeerConnectionInterface::IceConnectionState>
1043 standardized_ice_connection_state_history_;
Jonas Olsson635474e2018-10-18 15:58:17 +02001044 std::vector<PeerConnectionInterface::PeerConnectionState>
1045 peer_connection_state_history_;
Steve Antonede9ca52017-10-16 13:04:27 -07001046 std::vector<PeerConnectionInterface::IceGatheringState>
1047 ice_gathering_state_history_;
Alex Drake00c7ecf2019-08-06 10:54:47 -07001048 std::vector<cricket::CandidatePairChangeEvent>
1049 ice_candidate_pair_change_history_;
Eldar Rello5ab79e62019-10-09 18:29:44 +03001050 std::vector<PeerConnectionInterface::SignalingState>
1051 peer_connection_signaling_state_history_;
Qingsi Wang7685e862018-06-11 20:15:46 -07001052 webrtc::FakeRtcEventLogFactory* event_log_factory_;
1053
deadbeef1dcb1642017-03-29 21:08:16 -07001054 rtc::AsyncInvoker invoker_;
1055
Seth Hampson2f0d7022018-02-20 11:54:42 -08001056 friend class PeerConnectionIntegrationBaseTest;
deadbeef1dcb1642017-03-29 21:08:16 -07001057};
1058
Elad Alon99c3fe52017-10-13 16:29:40 +02001059class MockRtcEventLogOutput : public webrtc::RtcEventLogOutput {
1060 public:
1061 virtual ~MockRtcEventLogOutput() = default;
1062 MOCK_CONST_METHOD0(IsActive, bool());
1063 MOCK_METHOD1(Write, bool(const std::string&));
1064};
1065
Seth Hampson2f0d7022018-02-20 11:54:42 -08001066// This helper object is used for both specifying how many audio/video frames
1067// are expected to be received for a caller/callee. It provides helper functions
1068// to specify these expectations. The object initially starts in a state of no
1069// expectations.
1070class MediaExpectations {
1071 public:
1072 enum ExpectFrames {
1073 kExpectSomeFrames,
1074 kExpectNoFrames,
1075 kNoExpectation,
1076 };
1077
1078 void ExpectBidirectionalAudioAndVideo() {
1079 ExpectBidirectionalAudio();
1080 ExpectBidirectionalVideo();
1081 }
1082
1083 void ExpectBidirectionalAudio() {
1084 CallerExpectsSomeAudio();
1085 CalleeExpectsSomeAudio();
1086 }
1087
1088 void ExpectNoAudio() {
1089 CallerExpectsNoAudio();
1090 CalleeExpectsNoAudio();
1091 }
1092
1093 void ExpectBidirectionalVideo() {
1094 CallerExpectsSomeVideo();
1095 CalleeExpectsSomeVideo();
1096 }
1097
1098 void ExpectNoVideo() {
1099 CallerExpectsNoVideo();
1100 CalleeExpectsNoVideo();
1101 }
1102
1103 void CallerExpectsSomeAudioAndVideo() {
1104 CallerExpectsSomeAudio();
1105 CallerExpectsSomeVideo();
1106 }
1107
1108 void CalleeExpectsSomeAudioAndVideo() {
1109 CalleeExpectsSomeAudio();
1110 CalleeExpectsSomeVideo();
1111 }
1112
1113 // Caller's audio functions.
1114 void CallerExpectsSomeAudio(
1115 int expected_audio_frames = kDefaultExpectedAudioFrameCount) {
1116 caller_audio_expectation_ = kExpectSomeFrames;
1117 caller_audio_frames_expected_ = expected_audio_frames;
1118 }
1119
1120 void CallerExpectsNoAudio() {
1121 caller_audio_expectation_ = kExpectNoFrames;
1122 caller_audio_frames_expected_ = 0;
1123 }
1124
1125 // Caller's video functions.
1126 void CallerExpectsSomeVideo(
1127 int expected_video_frames = kDefaultExpectedVideoFrameCount) {
1128 caller_video_expectation_ = kExpectSomeFrames;
1129 caller_video_frames_expected_ = expected_video_frames;
1130 }
1131
1132 void CallerExpectsNoVideo() {
1133 caller_video_expectation_ = kExpectNoFrames;
1134 caller_video_frames_expected_ = 0;
1135 }
1136
1137 // Callee's audio functions.
1138 void CalleeExpectsSomeAudio(
1139 int expected_audio_frames = kDefaultExpectedAudioFrameCount) {
1140 callee_audio_expectation_ = kExpectSomeFrames;
1141 callee_audio_frames_expected_ = expected_audio_frames;
1142 }
1143
1144 void CalleeExpectsNoAudio() {
1145 callee_audio_expectation_ = kExpectNoFrames;
1146 callee_audio_frames_expected_ = 0;
1147 }
1148
1149 // Callee's video functions.
1150 void CalleeExpectsSomeVideo(
1151 int expected_video_frames = kDefaultExpectedVideoFrameCount) {
1152 callee_video_expectation_ = kExpectSomeFrames;
1153 callee_video_frames_expected_ = expected_video_frames;
1154 }
1155
1156 void CalleeExpectsNoVideo() {
1157 callee_video_expectation_ = kExpectNoFrames;
1158 callee_video_frames_expected_ = 0;
1159 }
1160
1161 ExpectFrames caller_audio_expectation_ = kNoExpectation;
1162 ExpectFrames caller_video_expectation_ = kNoExpectation;
1163 ExpectFrames callee_audio_expectation_ = kNoExpectation;
1164 ExpectFrames callee_video_expectation_ = kNoExpectation;
1165 int caller_audio_frames_expected_ = 0;
1166 int caller_video_frames_expected_ = 0;
1167 int callee_audio_frames_expected_ = 0;
1168 int callee_video_frames_expected_ = 0;
1169};
1170
Qingsi Wang25ec8882019-11-15 12:33:05 -08001171class MockIceTransport : public webrtc::IceTransportInterface {
1172 public:
1173 MockIceTransport(const std::string& name, int component)
1174 : internal_(std::make_unique<cricket::FakeIceTransport>(
1175 name,
1176 component,
1177 nullptr /* network_thread */)) {}
1178 ~MockIceTransport() = default;
1179 cricket::IceTransportInternal* internal() { return internal_.get(); }
1180
1181 private:
1182 std::unique_ptr<cricket::FakeIceTransport> internal_;
1183};
1184
1185class MockIceTransportFactory : public IceTransportFactory {
1186 public:
1187 ~MockIceTransportFactory() override = default;
1188 rtc::scoped_refptr<IceTransportInterface> CreateIceTransport(
1189 const std::string& transport_name,
1190 int component,
1191 IceTransportInit init) {
1192 RecordIceTransportCreated();
1193 return new rtc::RefCountedObject<MockIceTransport>(transport_name,
1194 component);
1195 }
1196 MOCK_METHOD0(RecordIceTransportCreated, void());
1197};
1198
deadbeef1dcb1642017-03-29 21:08:16 -07001199// Tests two PeerConnections connecting to each other end-to-end, using a
1200// virtual network, fake A/V capture and fake encoder/decoders. The
1201// PeerConnections share the threads/socket servers, but use separate versions
1202// of everything else (including "PeerConnectionFactory"s).
Mirko Bonadei6a489f22019-04-09 15:11:12 +02001203class PeerConnectionIntegrationBaseTest : public ::testing::Test {
deadbeef1dcb1642017-03-29 21:08:16 -07001204 public:
Seth Hampson2f0d7022018-02-20 11:54:42 -08001205 explicit PeerConnectionIntegrationBaseTest(SdpSemantics sdp_semantics)
1206 : sdp_semantics_(sdp_semantics),
1207 ss_(new rtc::VirtualSocketServer()),
Steve Antonede9ca52017-10-16 13:04:27 -07001208 fss_(new rtc::FirewallSocketServer(ss_.get())),
1209 network_thread_(new rtc::Thread(fss_.get())),
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001210 worker_thread_(rtc::Thread::Create()),
1211 loopback_media_transports_(network_thread_.get()) {
Sebastian Jansson8a793a02018-03-13 15:21:48 +01001212 network_thread_->SetName("PCNetworkThread", this);
1213 worker_thread_->SetName("PCWorkerThread", this);
deadbeef1dcb1642017-03-29 21:08:16 -07001214 RTC_CHECK(network_thread_->Start());
1215 RTC_CHECK(worker_thread_->Start());
Qingsi Wang7fc821d2018-07-12 12:54:53 -07001216 webrtc::metrics::Reset();
deadbeef1dcb1642017-03-29 21:08:16 -07001217 }
1218
Seth Hampson2f0d7022018-02-20 11:54:42 -08001219 ~PeerConnectionIntegrationBaseTest() {
Seth Hampsonaed71642018-06-11 07:41:32 -07001220 // The PeerConnections should deleted before the TurnCustomizers.
1221 // A TurnPort is created with a raw pointer to a TurnCustomizer. The
1222 // TurnPort has the same lifetime as the PeerConnection, so it's expected
1223 // that the TurnCustomizer outlives the life of the PeerConnection or else
1224 // when Send() is called it will hit a seg fault.
deadbeef1dcb1642017-03-29 21:08:16 -07001225 if (caller_) {
1226 caller_->set_signaling_message_receiver(nullptr);
Seth Hampsonaed71642018-06-11 07:41:32 -07001227 delete SetCallerPcWrapperAndReturnCurrent(nullptr);
deadbeef1dcb1642017-03-29 21:08:16 -07001228 }
1229 if (callee_) {
1230 callee_->set_signaling_message_receiver(nullptr);
Seth Hampsonaed71642018-06-11 07:41:32 -07001231 delete SetCalleePcWrapperAndReturnCurrent(nullptr);
deadbeef1dcb1642017-03-29 21:08:16 -07001232 }
Seth Hampsonaed71642018-06-11 07:41:32 -07001233
1234 // If turn servers were created for the test they need to be destroyed on
1235 // the network thread.
1236 network_thread()->Invoke<void>(RTC_FROM_HERE, [this] {
1237 turn_servers_.clear();
1238 turn_customizers_.clear();
1239 });
deadbeef1dcb1642017-03-29 21:08:16 -07001240 }
1241
1242 bool SignalingStateStable() {
1243 return caller_->SignalingStateStable() && callee_->SignalingStateStable();
1244 }
1245
deadbeef71452802017-05-07 17:21:01 -07001246 bool DtlsConnected() {
Alex Loiko9289eda2018-11-23 16:18:59 +00001247 // TODO(deadbeef): kIceConnectionConnected currently means both ICE and DTLS
1248 // are connected. This is an important distinction. Once we have separate
1249 // ICE and DTLS state, this check needs to use the DTLS state.
1250 return (callee()->ice_connection_state() ==
1251 webrtc::PeerConnectionInterface::kIceConnectionConnected ||
1252 callee()->ice_connection_state() ==
1253 webrtc::PeerConnectionInterface::kIceConnectionCompleted) &&
1254 (caller()->ice_connection_state() ==
1255 webrtc::PeerConnectionInterface::kIceConnectionConnected ||
1256 caller()->ice_connection_state() ==
1257 webrtc::PeerConnectionInterface::kIceConnectionCompleted);
deadbeef71452802017-05-07 17:21:01 -07001258 }
1259
Qingsi Wang7685e862018-06-11 20:15:46 -07001260 // When |event_log_factory| is null, the default implementation of the event
1261 // log factory will be used.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001262 std::unique_ptr<PeerConnectionWrapper> CreatePeerConnectionWrapper(
1263 const std::string& debug_name,
Seth Hampson2f0d7022018-02-20 11:54:42 -08001264 const PeerConnectionFactory::Options* options,
1265 const RTCConfiguration* config,
Qingsi Wang7685e862018-06-11 20:15:46 -07001266 webrtc::PeerConnectionDependencies dependencies,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001267 std::unique_ptr<webrtc::FakeRtcEventLogFactory> event_log_factory,
1268 std::unique_ptr<webrtc::MediaTransportFactory> media_transport_factory) {
Seth Hampson2f0d7022018-02-20 11:54:42 -08001269 RTCConfiguration modified_config;
1270 if (config) {
1271 modified_config = *config;
1272 }
Steve Anton3acffc32018-04-12 17:21:03 -07001273 modified_config.sdp_semantics = sdp_semantics_;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001274 if (!dependencies.cert_generator) {
1275 dependencies.cert_generator =
Mirko Bonadei317a1f02019-09-17 17:06:18 +02001276 std::make_unique<FakeRTCCertificateGenerator>();
Seth Hampson2f0d7022018-02-20 11:54:42 -08001277 }
1278 std::unique_ptr<PeerConnectionWrapper> client(
1279 new PeerConnectionWrapper(debug_name));
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001280
Niels Möllerf06f9232018-08-07 12:32:18 +02001281 if (!client->Init(options, &modified_config, std::move(dependencies),
1282 network_thread_.get(), worker_thread_.get(),
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001283 std::move(event_log_factory),
1284 std::move(media_transport_factory))) {
Seth Hampson2f0d7022018-02-20 11:54:42 -08001285 return nullptr;
1286 }
1287 return client;
1288 }
1289
Qingsi Wang7685e862018-06-11 20:15:46 -07001290 std::unique_ptr<PeerConnectionWrapper>
1291 CreatePeerConnectionWrapperWithFakeRtcEventLog(
1292 const std::string& debug_name,
Qingsi Wang7685e862018-06-11 20:15:46 -07001293 const PeerConnectionFactory::Options* options,
1294 const RTCConfiguration* config,
1295 webrtc::PeerConnectionDependencies dependencies) {
1296 std::unique_ptr<webrtc::FakeRtcEventLogFactory> event_log_factory(
1297 new webrtc::FakeRtcEventLogFactory(rtc::Thread::Current()));
Niels Möllerf06f9232018-08-07 12:32:18 +02001298 return CreatePeerConnectionWrapper(debug_name, options, config,
Qingsi Wang7685e862018-06-11 20:15:46 -07001299 std::move(dependencies),
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001300 std::move(event_log_factory),
1301 /*media_transport_factory=*/nullptr);
Qingsi Wang7685e862018-06-11 20:15:46 -07001302 }
1303
deadbeef1dcb1642017-03-29 21:08:16 -07001304 bool CreatePeerConnectionWrappers() {
1305 return CreatePeerConnectionWrappersWithConfig(
1306 PeerConnectionInterface::RTCConfiguration(),
1307 PeerConnectionInterface::RTCConfiguration());
1308 }
1309
Steve Anton3acffc32018-04-12 17:21:03 -07001310 bool CreatePeerConnectionWrappersWithSdpSemantics(
1311 SdpSemantics caller_semantics,
1312 SdpSemantics callee_semantics) {
1313 // Can't specify the sdp_semantics in the passed-in configuration since it
1314 // will be overwritten by CreatePeerConnectionWrapper with whatever is
1315 // stored in sdp_semantics_. So get around this by modifying the instance
1316 // variable before calling CreatePeerConnectionWrapper for the caller and
1317 // callee PeerConnections.
1318 SdpSemantics original_semantics = sdp_semantics_;
1319 sdp_semantics_ = caller_semantics;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001320 caller_ = CreatePeerConnectionWrapper(
Niels Möllerf06f9232018-08-07 12:32:18 +02001321 "Caller", nullptr, nullptr, webrtc::PeerConnectionDependencies(nullptr),
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001322 nullptr, /*media_transport_factory=*/nullptr);
Steve Anton3acffc32018-04-12 17:21:03 -07001323 sdp_semantics_ = callee_semantics;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001324 callee_ = CreatePeerConnectionWrapper(
Niels Möllerf06f9232018-08-07 12:32:18 +02001325 "Callee", nullptr, nullptr, webrtc::PeerConnectionDependencies(nullptr),
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001326 nullptr, /*media_transport_factory=*/nullptr);
Steve Anton3acffc32018-04-12 17:21:03 -07001327 sdp_semantics_ = original_semantics;
1328 return caller_ && callee_;
1329 }
1330
deadbeef1dcb1642017-03-29 21:08:16 -07001331 bool CreatePeerConnectionWrappersWithConfig(
1332 const PeerConnectionInterface::RTCConfiguration& caller_config,
1333 const PeerConnectionInterface::RTCConfiguration& callee_config) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001334 caller_ = CreatePeerConnectionWrapper(
Niels Möllerf06f9232018-08-07 12:32:18 +02001335 "Caller", nullptr, &caller_config,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001336 webrtc::PeerConnectionDependencies(nullptr), nullptr,
1337 /*media_transport_factory=*/nullptr);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001338 callee_ = CreatePeerConnectionWrapper(
Niels Möllerf06f9232018-08-07 12:32:18 +02001339 "Callee", nullptr, &callee_config,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001340 webrtc::PeerConnectionDependencies(nullptr), nullptr,
1341 /*media_transport_factory=*/nullptr);
1342 return caller_ && callee_;
1343 }
1344
1345 bool CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
1346 const PeerConnectionInterface::RTCConfiguration& caller_config,
1347 const PeerConnectionInterface::RTCConfiguration& callee_config,
1348 std::unique_ptr<webrtc::MediaTransportFactory> caller_factory,
1349 std::unique_ptr<webrtc::MediaTransportFactory> callee_factory) {
1350 caller_ =
1351 CreatePeerConnectionWrapper("Caller", nullptr, &caller_config,
1352 webrtc::PeerConnectionDependencies(nullptr),
1353 nullptr, std::move(caller_factory));
1354 callee_ =
1355 CreatePeerConnectionWrapper("Callee", nullptr, &callee_config,
1356 webrtc::PeerConnectionDependencies(nullptr),
1357 nullptr, std::move(callee_factory));
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001358 return caller_ && callee_;
1359 }
1360
1361 bool CreatePeerConnectionWrappersWithConfigAndDeps(
1362 const PeerConnectionInterface::RTCConfiguration& caller_config,
1363 webrtc::PeerConnectionDependencies caller_dependencies,
1364 const PeerConnectionInterface::RTCConfiguration& callee_config,
1365 webrtc::PeerConnectionDependencies callee_dependencies) {
1366 caller_ =
Niels Möllerf06f9232018-08-07 12:32:18 +02001367 CreatePeerConnectionWrapper("Caller", nullptr, &caller_config,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001368 std::move(caller_dependencies), nullptr,
1369 /*media_transport_factory=*/nullptr);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001370 callee_ =
Niels Möllerf06f9232018-08-07 12:32:18 +02001371 CreatePeerConnectionWrapper("Callee", nullptr, &callee_config,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001372 std::move(callee_dependencies), nullptr,
1373 /*media_transport_factory=*/nullptr);
deadbeef1dcb1642017-03-29 21:08:16 -07001374 return caller_ && callee_;
1375 }
1376
1377 bool CreatePeerConnectionWrappersWithOptions(
1378 const PeerConnectionFactory::Options& caller_options,
1379 const PeerConnectionFactory::Options& callee_options) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001380 caller_ = CreatePeerConnectionWrapper(
Niels Möllerf06f9232018-08-07 12:32:18 +02001381 "Caller", &caller_options, nullptr,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001382 webrtc::PeerConnectionDependencies(nullptr), nullptr,
1383 /*media_transport_factory=*/nullptr);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001384 callee_ = CreatePeerConnectionWrapper(
Niels Möllerf06f9232018-08-07 12:32:18 +02001385 "Callee", &callee_options, nullptr,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001386 webrtc::PeerConnectionDependencies(nullptr), nullptr,
1387 /*media_transport_factory=*/nullptr);
Qingsi Wang7685e862018-06-11 20:15:46 -07001388 return caller_ && callee_;
1389 }
1390
1391 bool CreatePeerConnectionWrappersWithFakeRtcEventLog() {
1392 PeerConnectionInterface::RTCConfiguration default_config;
1393 caller_ = CreatePeerConnectionWrapperWithFakeRtcEventLog(
Niels Möllerf06f9232018-08-07 12:32:18 +02001394 "Caller", nullptr, &default_config,
Qingsi Wang7685e862018-06-11 20:15:46 -07001395 webrtc::PeerConnectionDependencies(nullptr));
1396 callee_ = CreatePeerConnectionWrapperWithFakeRtcEventLog(
Niels Möllerf06f9232018-08-07 12:32:18 +02001397 "Callee", nullptr, &default_config,
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001398 webrtc::PeerConnectionDependencies(nullptr));
deadbeef1dcb1642017-03-29 21:08:16 -07001399 return caller_ && callee_;
1400 }
1401
Seth Hampson2f0d7022018-02-20 11:54:42 -08001402 std::unique_ptr<PeerConnectionWrapper>
1403 CreatePeerConnectionWrapperWithAlternateKey() {
deadbeef1dcb1642017-03-29 21:08:16 -07001404 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator(
1405 new FakeRTCCertificateGenerator());
1406 cert_generator->use_alternate_key();
1407
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001408 webrtc::PeerConnectionDependencies dependencies(nullptr);
1409 dependencies.cert_generator = std::move(cert_generator);
Niels Möllerf06f9232018-08-07 12:32:18 +02001410 return CreatePeerConnectionWrapper("New Peer", nullptr, nullptr,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001411 std::move(dependencies), nullptr,
1412 /*media_transport_factory=*/nullptr);
deadbeef1dcb1642017-03-29 21:08:16 -07001413 }
1414
Seth Hampsonaed71642018-06-11 07:41:32 -07001415 cricket::TestTurnServer* CreateTurnServer(
1416 rtc::SocketAddress internal_address,
1417 rtc::SocketAddress external_address,
1418 cricket::ProtocolType type = cricket::ProtocolType::PROTO_UDP,
1419 const std::string& common_name = "test turn server") {
1420 rtc::Thread* thread = network_thread();
1421 std::unique_ptr<cricket::TestTurnServer> turn_server =
1422 network_thread()->Invoke<std::unique_ptr<cricket::TestTurnServer>>(
1423 RTC_FROM_HERE,
1424 [thread, internal_address, external_address, type, common_name] {
Mirko Bonadei317a1f02019-09-17 17:06:18 +02001425 return std::make_unique<cricket::TestTurnServer>(
Seth Hampsonaed71642018-06-11 07:41:32 -07001426 thread, internal_address, external_address, type,
1427 /*ignore_bad_certs=*/true, common_name);
1428 });
1429 turn_servers_.push_back(std::move(turn_server));
1430 // Interactions with the turn server should be done on the network thread.
1431 return turn_servers_.back().get();
1432 }
1433
1434 cricket::TestTurnCustomizer* CreateTurnCustomizer() {
1435 std::unique_ptr<cricket::TestTurnCustomizer> turn_customizer =
1436 network_thread()->Invoke<std::unique_ptr<cricket::TestTurnCustomizer>>(
1437 RTC_FROM_HERE,
Mirko Bonadei317a1f02019-09-17 17:06:18 +02001438 [] { return std::make_unique<cricket::TestTurnCustomizer>(); });
Seth Hampsonaed71642018-06-11 07:41:32 -07001439 turn_customizers_.push_back(std::move(turn_customizer));
1440 // Interactions with the turn customizer should be done on the network
1441 // thread.
1442 return turn_customizers_.back().get();
1443 }
1444
1445 // Checks that the function counters for a TestTurnCustomizer are greater than
1446 // 0.
1447 void ExpectTurnCustomizerCountersIncremented(
1448 cricket::TestTurnCustomizer* turn_customizer) {
1449 unsigned int allow_channel_data_counter =
1450 network_thread()->Invoke<unsigned int>(
1451 RTC_FROM_HERE, [turn_customizer] {
1452 return turn_customizer->allow_channel_data_cnt_;
1453 });
1454 EXPECT_GT(allow_channel_data_counter, 0u);
1455 unsigned int modify_counter = network_thread()->Invoke<unsigned int>(
1456 RTC_FROM_HERE,
1457 [turn_customizer] { return turn_customizer->modify_cnt_; });
1458 EXPECT_GT(modify_counter, 0u);
1459 }
1460
deadbeef1dcb1642017-03-29 21:08:16 -07001461 // Once called, SDP blobs and ICE candidates will be automatically signaled
1462 // between PeerConnections.
1463 void ConnectFakeSignaling() {
1464 caller_->set_signaling_message_receiver(callee_.get());
1465 callee_->set_signaling_message_receiver(caller_.get());
1466 }
1467
Steve Antonede9ca52017-10-16 13:04:27 -07001468 // Once called, SDP blobs will be automatically signaled between
1469 // PeerConnections. Note that ICE candidates will not be signaled unless they
1470 // are in the exchanged SDP blobs.
1471 void ConnectFakeSignalingForSdpOnly() {
1472 ConnectFakeSignaling();
1473 SetSignalIceCandidates(false);
1474 }
1475
deadbeef1dcb1642017-03-29 21:08:16 -07001476 void SetSignalingDelayMs(int delay_ms) {
1477 caller_->set_signaling_delay_ms(delay_ms);
1478 callee_->set_signaling_delay_ms(delay_ms);
1479 }
1480
Steve Antonede9ca52017-10-16 13:04:27 -07001481 void SetSignalIceCandidates(bool signal) {
1482 caller_->set_signal_ice_candidates(signal);
1483 callee_->set_signal_ice_candidates(signal);
1484 }
1485
deadbeef1dcb1642017-03-29 21:08:16 -07001486 // Messages may get lost on the unreliable DataChannel, so we send multiple
1487 // times to avoid test flakiness.
1488 void SendRtpDataWithRetries(webrtc::DataChannelInterface* dc,
1489 const std::string& data,
1490 int retries) {
1491 for (int i = 0; i < retries; ++i) {
1492 dc->Send(DataBuffer(data));
1493 }
1494 }
1495
1496 rtc::Thread* network_thread() { return network_thread_.get(); }
1497
1498 rtc::VirtualSocketServer* virtual_socket_server() { return ss_.get(); }
1499
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001500 webrtc::MediaTransportPair* loopback_media_transports() {
1501 return &loopback_media_transports_;
1502 }
1503
deadbeef1dcb1642017-03-29 21:08:16 -07001504 PeerConnectionWrapper* caller() { return caller_.get(); }
1505
1506 // Set the |caller_| to the |wrapper| passed in and return the
1507 // original |caller_|.
1508 PeerConnectionWrapper* SetCallerPcWrapperAndReturnCurrent(
1509 PeerConnectionWrapper* wrapper) {
1510 PeerConnectionWrapper* old = caller_.release();
1511 caller_.reset(wrapper);
1512 return old;
1513 }
1514
1515 PeerConnectionWrapper* callee() { return callee_.get(); }
1516
1517 // Set the |callee_| to the |wrapper| passed in and return the
1518 // original |callee_|.
1519 PeerConnectionWrapper* SetCalleePcWrapperAndReturnCurrent(
1520 PeerConnectionWrapper* wrapper) {
1521 PeerConnectionWrapper* old = callee_.release();
1522 callee_.reset(wrapper);
1523 return old;
1524 }
1525
Qingsi Wang1dac6d82018-12-12 15:28:47 -08001526 void SetPortAllocatorFlags(uint32_t caller_flags, uint32_t callee_flags) {
1527 network_thread()->Invoke<void>(
1528 RTC_FROM_HERE, rtc::Bind(&cricket::PortAllocator::set_flags,
1529 caller()->port_allocator(), caller_flags));
1530 network_thread()->Invoke<void>(
1531 RTC_FROM_HERE, rtc::Bind(&cricket::PortAllocator::set_flags,
1532 callee()->port_allocator(), callee_flags));
1533 }
1534
Steve Antonede9ca52017-10-16 13:04:27 -07001535 rtc::FirewallSocketServer* firewall() const { return fss_.get(); }
1536
Seth Hampson2f0d7022018-02-20 11:54:42 -08001537 // Expects the provided number of new frames to be received within
1538 // kMaxWaitForFramesMs. The new expected frames are specified in
1539 // |media_expectations|. Returns false if any of the expectations were
1540 // not met.
1541 bool ExpectNewFrames(const MediaExpectations& media_expectations) {
1542 // First initialize the expected frame counts based upon the current
1543 // frame count.
1544 int total_caller_audio_frames_expected = caller()->audio_frames_received();
1545 if (media_expectations.caller_audio_expectation_ ==
1546 MediaExpectations::kExpectSomeFrames) {
1547 total_caller_audio_frames_expected +=
1548 media_expectations.caller_audio_frames_expected_;
1549 }
1550 int total_caller_video_frames_expected =
deadbeef1dcb1642017-03-29 21:08:16 -07001551 caller()->min_video_frames_received_per_track();
Seth Hampson2f0d7022018-02-20 11:54:42 -08001552 if (media_expectations.caller_video_expectation_ ==
1553 MediaExpectations::kExpectSomeFrames) {
1554 total_caller_video_frames_expected +=
1555 media_expectations.caller_video_frames_expected_;
1556 }
1557 int total_callee_audio_frames_expected = callee()->audio_frames_received();
1558 if (media_expectations.callee_audio_expectation_ ==
1559 MediaExpectations::kExpectSomeFrames) {
1560 total_callee_audio_frames_expected +=
1561 media_expectations.callee_audio_frames_expected_;
1562 }
1563 int total_callee_video_frames_expected =
deadbeef1dcb1642017-03-29 21:08:16 -07001564 callee()->min_video_frames_received_per_track();
Seth Hampson2f0d7022018-02-20 11:54:42 -08001565 if (media_expectations.callee_video_expectation_ ==
1566 MediaExpectations::kExpectSomeFrames) {
1567 total_callee_video_frames_expected +=
1568 media_expectations.callee_video_frames_expected_;
1569 }
deadbeef1dcb1642017-03-29 21:08:16 -07001570
Seth Hampson2f0d7022018-02-20 11:54:42 -08001571 // Wait for the expected frames.
deadbeef1dcb1642017-03-29 21:08:16 -07001572 EXPECT_TRUE_WAIT(caller()->audio_frames_received() >=
Seth Hampson2f0d7022018-02-20 11:54:42 -08001573 total_caller_audio_frames_expected &&
deadbeef1dcb1642017-03-29 21:08:16 -07001574 caller()->min_video_frames_received_per_track() >=
Seth Hampson2f0d7022018-02-20 11:54:42 -08001575 total_caller_video_frames_expected &&
deadbeef1dcb1642017-03-29 21:08:16 -07001576 callee()->audio_frames_received() >=
Seth Hampson2f0d7022018-02-20 11:54:42 -08001577 total_callee_audio_frames_expected &&
deadbeef1dcb1642017-03-29 21:08:16 -07001578 callee()->min_video_frames_received_per_track() >=
Seth Hampson2f0d7022018-02-20 11:54:42 -08001579 total_callee_video_frames_expected,
1580 kMaxWaitForFramesMs);
1581 bool expectations_correct =
1582 caller()->audio_frames_received() >=
1583 total_caller_audio_frames_expected &&
1584 caller()->min_video_frames_received_per_track() >=
1585 total_caller_video_frames_expected &&
1586 callee()->audio_frames_received() >=
1587 total_callee_audio_frames_expected &&
1588 callee()->min_video_frames_received_per_track() >=
1589 total_callee_video_frames_expected;
deadbeef1dcb1642017-03-29 21:08:16 -07001590
Seth Hampson2f0d7022018-02-20 11:54:42 -08001591 // After the combined wait, print out a more detailed message upon
1592 // failure.
deadbeef1dcb1642017-03-29 21:08:16 -07001593 EXPECT_GE(caller()->audio_frames_received(),
Seth Hampson2f0d7022018-02-20 11:54:42 -08001594 total_caller_audio_frames_expected);
deadbeef1dcb1642017-03-29 21:08:16 -07001595 EXPECT_GE(caller()->min_video_frames_received_per_track(),
Seth Hampson2f0d7022018-02-20 11:54:42 -08001596 total_caller_video_frames_expected);
deadbeef1dcb1642017-03-29 21:08:16 -07001597 EXPECT_GE(callee()->audio_frames_received(),
Seth Hampson2f0d7022018-02-20 11:54:42 -08001598 total_callee_audio_frames_expected);
deadbeef1dcb1642017-03-29 21:08:16 -07001599 EXPECT_GE(callee()->min_video_frames_received_per_track(),
Seth Hampson2f0d7022018-02-20 11:54:42 -08001600 total_callee_video_frames_expected);
1601
1602 // We want to make sure nothing unexpected was received.
1603 if (media_expectations.caller_audio_expectation_ ==
1604 MediaExpectations::kExpectNoFrames) {
1605 EXPECT_EQ(caller()->audio_frames_received(),
1606 total_caller_audio_frames_expected);
1607 if (caller()->audio_frames_received() !=
1608 total_caller_audio_frames_expected) {
1609 expectations_correct = false;
1610 }
1611 }
1612 if (media_expectations.caller_video_expectation_ ==
1613 MediaExpectations::kExpectNoFrames) {
1614 EXPECT_EQ(caller()->min_video_frames_received_per_track(),
1615 total_caller_video_frames_expected);
1616 if (caller()->min_video_frames_received_per_track() !=
1617 total_caller_video_frames_expected) {
1618 expectations_correct = false;
1619 }
1620 }
1621 if (media_expectations.callee_audio_expectation_ ==
1622 MediaExpectations::kExpectNoFrames) {
1623 EXPECT_EQ(callee()->audio_frames_received(),
1624 total_callee_audio_frames_expected);
1625 if (callee()->audio_frames_received() !=
1626 total_callee_audio_frames_expected) {
1627 expectations_correct = false;
1628 }
1629 }
1630 if (media_expectations.callee_video_expectation_ ==
1631 MediaExpectations::kExpectNoFrames) {
1632 EXPECT_EQ(callee()->min_video_frames_received_per_track(),
1633 total_callee_video_frames_expected);
1634 if (callee()->min_video_frames_received_per_track() !=
1635 total_callee_video_frames_expected) {
1636 expectations_correct = false;
1637 }
1638 }
1639 return expectations_correct;
deadbeef1dcb1642017-03-29 21:08:16 -07001640 }
1641
Steve Antond91969e2019-05-30 12:27:03 -07001642 void ClosePeerConnections() {
1643 caller()->pc()->Close();
1644 callee()->pc()->Close();
1645 }
1646
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07001647 void TestNegotiatedCipherSuite(
1648 const PeerConnectionFactory::Options& caller_options,
1649 const PeerConnectionFactory::Options& callee_options,
1650 int expected_cipher_suite) {
deadbeef1dcb1642017-03-29 21:08:16 -07001651 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(caller_options,
1652 callee_options));
deadbeef1dcb1642017-03-29 21:08:16 -07001653 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08001654 caller()->AddAudioVideoTracks();
1655 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07001656 caller()->CreateAndSetAndSignalOffer();
Qingsi Wang7fc821d2018-07-12 12:54:53 -07001657 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07001658 EXPECT_EQ_WAIT(rtc::SrtpCryptoSuiteToName(expected_cipher_suite),
deadbeefd8ad7882017-04-18 16:01:17 -07001659 caller()->OldGetStats()->SrtpCipher(), kDefaultTimeout);
Qingsi Wang7fc821d2018-07-12 12:54:53 -07001660 // TODO(bugs.webrtc.org/9456): Fix it.
Ying Wangef3998f2019-12-09 13:06:53 +01001661 EXPECT_METRIC_EQ(1, webrtc::metrics::NumEvents(
1662 "WebRTC.PeerConnection.SrtpCryptoSuite.Audio",
1663 expected_cipher_suite));
deadbeef1dcb1642017-03-29 21:08:16 -07001664 }
1665
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07001666 void TestGcmNegotiationUsesCipherSuite(bool local_gcm_enabled,
1667 bool remote_gcm_enabled,
Philipp Hancke2ebbff82019-10-26 06:12:55 +02001668 bool aes_ctr_enabled,
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07001669 int expected_cipher_suite) {
1670 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07001671 caller_options.crypto_options.srtp.enable_gcm_crypto_suites =
1672 local_gcm_enabled;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02001673 caller_options.crypto_options.srtp.enable_aes128_sha1_80_crypto_cipher =
1674 aes_ctr_enabled;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07001675 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07001676 callee_options.crypto_options.srtp.enable_gcm_crypto_suites =
1677 remote_gcm_enabled;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02001678 callee_options.crypto_options.srtp.enable_aes128_sha1_80_crypto_cipher =
1679 aes_ctr_enabled;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07001680 TestNegotiatedCipherSuite(caller_options, callee_options,
1681 expected_cipher_suite);
1682 }
1683
Seth Hampson2f0d7022018-02-20 11:54:42 -08001684 protected:
Steve Anton3acffc32018-04-12 17:21:03 -07001685 SdpSemantics sdp_semantics_;
Seth Hampson2f0d7022018-02-20 11:54:42 -08001686
deadbeef1dcb1642017-03-29 21:08:16 -07001687 private:
1688 // |ss_| is used by |network_thread_| so it must be destroyed later.
deadbeef1dcb1642017-03-29 21:08:16 -07001689 std::unique_ptr<rtc::VirtualSocketServer> ss_;
Steve Antonede9ca52017-10-16 13:04:27 -07001690 std::unique_ptr<rtc::FirewallSocketServer> fss_;
deadbeef1dcb1642017-03-29 21:08:16 -07001691 // |network_thread_| and |worker_thread_| are used by both
1692 // |caller_| and |callee_| so they must be destroyed
1693 // later.
1694 std::unique_ptr<rtc::Thread> network_thread_;
1695 std::unique_ptr<rtc::Thread> worker_thread_;
Seth Hampsonaed71642018-06-11 07:41:32 -07001696 // The turn servers and turn customizers should be accessed & deleted on the
1697 // network thread to avoid a race with the socket read/write that occurs
1698 // on the network thread.
1699 std::vector<std::unique_ptr<cricket::TestTurnServer>> turn_servers_;
1700 std::vector<std::unique_ptr<cricket::TestTurnCustomizer>> turn_customizers_;
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001701 webrtc::MediaTransportPair loopback_media_transports_;
deadbeef1dcb1642017-03-29 21:08:16 -07001702 std::unique_ptr<PeerConnectionWrapper> caller_;
1703 std::unique_ptr<PeerConnectionWrapper> callee_;
1704};
1705
Seth Hampson2f0d7022018-02-20 11:54:42 -08001706class PeerConnectionIntegrationTest
1707 : public PeerConnectionIntegrationBaseTest,
1708 public ::testing::WithParamInterface<SdpSemantics> {
1709 protected:
1710 PeerConnectionIntegrationTest()
1711 : PeerConnectionIntegrationBaseTest(GetParam()) {}
1712};
1713
1714class PeerConnectionIntegrationTestPlanB
1715 : public PeerConnectionIntegrationBaseTest {
1716 protected:
1717 PeerConnectionIntegrationTestPlanB()
1718 : PeerConnectionIntegrationBaseTest(SdpSemantics::kPlanB) {}
1719};
1720
1721class PeerConnectionIntegrationTestUnifiedPlan
1722 : public PeerConnectionIntegrationBaseTest {
1723 protected:
1724 PeerConnectionIntegrationTestUnifiedPlan()
1725 : PeerConnectionIntegrationBaseTest(SdpSemantics::kUnifiedPlan) {}
1726};
1727
deadbeef1dcb1642017-03-29 21:08:16 -07001728// Test the OnFirstPacketReceived callback from audio/video RtpReceivers. This
1729// includes testing that the callback is invoked if an observer is connected
1730// after the first packet has already been received.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001731TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07001732 RtpReceiverObserverOnFirstPacketReceived) {
1733 ASSERT_TRUE(CreatePeerConnectionWrappers());
1734 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08001735 caller()->AddAudioVideoTracks();
1736 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07001737 // Start offer/answer exchange and wait for it to complete.
1738 caller()->CreateAndSetAndSignalOffer();
1739 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
1740 // Should be one receiver each for audio/video.
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02001741 EXPECT_EQ(2U, caller()->rtp_receiver_observers().size());
1742 EXPECT_EQ(2U, callee()->rtp_receiver_observers().size());
deadbeef1dcb1642017-03-29 21:08:16 -07001743 // Wait for all "first packet received" callbacks to be fired.
1744 EXPECT_TRUE_WAIT(
Steve Anton64b626b2019-01-28 17:25:26 -08001745 absl::c_all_of(caller()->rtp_receiver_observers(),
1746 [](const std::unique_ptr<MockRtpReceiverObserver>& o) {
1747 return o->first_packet_received();
1748 }),
deadbeef1dcb1642017-03-29 21:08:16 -07001749 kMaxWaitForFramesMs);
1750 EXPECT_TRUE_WAIT(
Steve Anton64b626b2019-01-28 17:25:26 -08001751 absl::c_all_of(callee()->rtp_receiver_observers(),
1752 [](const std::unique_ptr<MockRtpReceiverObserver>& o) {
1753 return o->first_packet_received();
1754 }),
deadbeef1dcb1642017-03-29 21:08:16 -07001755 kMaxWaitForFramesMs);
1756 // If new observers are set after the first packet was already received, the
1757 // callback should still be invoked.
1758 caller()->ResetRtpReceiverObservers();
1759 callee()->ResetRtpReceiverObservers();
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02001760 EXPECT_EQ(2U, caller()->rtp_receiver_observers().size());
1761 EXPECT_EQ(2U, callee()->rtp_receiver_observers().size());
deadbeef1dcb1642017-03-29 21:08:16 -07001762 EXPECT_TRUE(
Steve Anton64b626b2019-01-28 17:25:26 -08001763 absl::c_all_of(caller()->rtp_receiver_observers(),
1764 [](const std::unique_ptr<MockRtpReceiverObserver>& o) {
1765 return o->first_packet_received();
1766 }));
deadbeef1dcb1642017-03-29 21:08:16 -07001767 EXPECT_TRUE(
Steve Anton64b626b2019-01-28 17:25:26 -08001768 absl::c_all_of(callee()->rtp_receiver_observers(),
1769 [](const std::unique_ptr<MockRtpReceiverObserver>& o) {
1770 return o->first_packet_received();
1771 }));
deadbeef1dcb1642017-03-29 21:08:16 -07001772}
1773
1774class DummyDtmfObserver : public DtmfSenderObserverInterface {
1775 public:
1776 DummyDtmfObserver() : completed_(false) {}
1777
1778 // Implements DtmfSenderObserverInterface.
1779 void OnToneChange(const std::string& tone) override {
1780 tones_.push_back(tone);
1781 if (tone.empty()) {
1782 completed_ = true;
1783 }
1784 }
1785
1786 const std::vector<std::string>& tones() const { return tones_; }
1787 bool completed() const { return completed_; }
1788
1789 private:
1790 bool completed_;
1791 std::vector<std::string> tones_;
1792};
1793
1794// Assumes |sender| already has an audio track added and the offer/answer
1795// exchange is done.
1796void TestDtmfFromSenderToReceiver(PeerConnectionWrapper* sender,
1797 PeerConnectionWrapper* receiver) {
Steve Anton15324772018-01-16 10:26:49 -08001798 // We should be able to get a DTMF sender from the local sender.
1799 rtc::scoped_refptr<DtmfSenderInterface> dtmf_sender =
1800 sender->pc()->GetSenders().at(0)->GetDtmfSender();
1801 ASSERT_TRUE(dtmf_sender);
deadbeef1dcb1642017-03-29 21:08:16 -07001802 DummyDtmfObserver observer;
deadbeef1dcb1642017-03-29 21:08:16 -07001803 dtmf_sender->RegisterObserver(&observer);
1804
1805 // Test the DtmfSender object just created.
1806 EXPECT_TRUE(dtmf_sender->CanInsertDtmf());
1807 EXPECT_TRUE(dtmf_sender->InsertDtmf("1a", 100, 50));
1808
1809 EXPECT_TRUE_WAIT(observer.completed(), kDefaultTimeout);
1810 std::vector<std::string> tones = {"1", "a", ""};
1811 EXPECT_EQ(tones, observer.tones());
1812 dtmf_sender->UnregisterObserver();
1813 // TODO(deadbeef): Verify the tones were actually received end-to-end.
1814}
1815
1816// Verifies the DtmfSenderObserver callbacks for a DtmfSender (one in each
1817// direction).
Seth Hampson2f0d7022018-02-20 11:54:42 -08001818TEST_P(PeerConnectionIntegrationTest, DtmfSenderObserver) {
deadbeef1dcb1642017-03-29 21:08:16 -07001819 ASSERT_TRUE(CreatePeerConnectionWrappers());
1820 ConnectFakeSignaling();
1821 // Only need audio for DTMF.
Steve Anton15324772018-01-16 10:26:49 -08001822 caller()->AddAudioTrack();
1823 callee()->AddAudioTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07001824 caller()->CreateAndSetAndSignalOffer();
1825 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
deadbeef71452802017-05-07 17:21:01 -07001826 // DTLS must finish before the DTMF sender can be used reliably.
1827 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07001828 TestDtmfFromSenderToReceiver(caller(), callee());
1829 TestDtmfFromSenderToReceiver(callee(), caller());
1830}
1831
1832// Basic end-to-end test, verifying media can be encoded/transmitted/decoded
1833// between two connections, using DTLS-SRTP.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001834TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithDtls) {
deadbeef1dcb1642017-03-29 21:08:16 -07001835 ASSERT_TRUE(CreatePeerConnectionWrappers());
1836 ConnectFakeSignaling();
Harald Alvestrand194939b2018-01-24 16:04:13 +01001837
deadbeef1dcb1642017-03-29 21:08:16 -07001838 // Do normal offer/answer and wait for some frames to be received in each
1839 // direction.
Steve Anton15324772018-01-16 10:26:49 -08001840 caller()->AddAudioVideoTracks();
1841 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07001842 caller()->CreateAndSetAndSignalOffer();
1843 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08001844 MediaExpectations media_expectations;
1845 media_expectations.ExpectBidirectionalAudioAndVideo();
1846 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Ying Wangef3998f2019-12-09 13:06:53 +01001847 EXPECT_METRIC_LE(
1848 2, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1849 webrtc::kEnumCounterKeyProtocolDtls));
1850 EXPECT_METRIC_EQ(
1851 0, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1852 webrtc::kEnumCounterKeyProtocolSdes));
deadbeef1dcb1642017-03-29 21:08:16 -07001853}
1854
1855// Uses SDES instead of DTLS for key agreement.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001856TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithSdes) {
deadbeef1dcb1642017-03-29 21:08:16 -07001857 PeerConnectionInterface::RTCConfiguration sdes_config;
1858 sdes_config.enable_dtls_srtp.emplace(false);
1859 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(sdes_config, sdes_config));
1860 ConnectFakeSignaling();
1861
1862 // Do normal offer/answer and wait for some frames to be received in each
1863 // direction.
Steve Anton15324772018-01-16 10:26:49 -08001864 caller()->AddAudioVideoTracks();
1865 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07001866 caller()->CreateAndSetAndSignalOffer();
1867 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08001868 MediaExpectations media_expectations;
1869 media_expectations.ExpectBidirectionalAudioAndVideo();
1870 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Ying Wangef3998f2019-12-09 13:06:53 +01001871 EXPECT_METRIC_LE(
1872 2, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1873 webrtc::kEnumCounterKeyProtocolSdes));
1874 EXPECT_METRIC_EQ(
1875 0, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1876 webrtc::kEnumCounterKeyProtocolDtls));
deadbeef1dcb1642017-03-29 21:08:16 -07001877}
1878
Steve Anton9a44b2d2019-07-12 12:58:30 -07001879// Basic end-to-end test specifying the |enable_encrypted_rtp_header_extensions|
1880// option to offer encrypted versions of all header extensions alongside the
1881// unencrypted versions.
1882TEST_P(PeerConnectionIntegrationTest,
1883 EndToEndCallWithEncryptedRtpHeaderExtensions) {
1884 CryptoOptions crypto_options;
1885 crypto_options.srtp.enable_encrypted_rtp_header_extensions = true;
1886 PeerConnectionInterface::RTCConfiguration config;
1887 config.crypto_options = crypto_options;
1888 // Note: This allows offering >14 RTP header extensions.
1889 config.offer_extmap_allow_mixed = true;
1890 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
1891 ConnectFakeSignaling();
1892
1893 // Do normal offer/answer and wait for some frames to be received in each
1894 // direction.
1895 caller()->AddAudioVideoTracks();
1896 callee()->AddAudioVideoTracks();
1897 caller()->CreateAndSetAndSignalOffer();
1898 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
1899 MediaExpectations media_expectations;
1900 media_expectations.ExpectBidirectionalAudioAndVideo();
1901 ASSERT_TRUE(ExpectNewFrames(media_expectations));
1902}
1903
Steve Anton8c0f7a72017-10-03 10:03:10 -07001904// Tests that the GetRemoteAudioSSLCertificate method returns the remote DTLS
1905// certificate once the DTLS handshake has finished.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001906TEST_P(PeerConnectionIntegrationTest,
Steve Anton8c0f7a72017-10-03 10:03:10 -07001907 GetRemoteAudioSSLCertificateReturnsExchangedCertificate) {
1908 auto GetRemoteAudioSSLCertificate = [](PeerConnectionWrapper* wrapper) {
1909 auto pci = reinterpret_cast<PeerConnectionProxy*>(wrapper->pc());
1910 auto pc = reinterpret_cast<PeerConnection*>(pci->internal());
1911 return pc->GetRemoteAudioSSLCertificate();
1912 };
Zhi Huang70b820f2018-01-27 14:16:15 -08001913 auto GetRemoteAudioSSLCertChain = [](PeerConnectionWrapper* wrapper) {
1914 auto pci = reinterpret_cast<PeerConnectionProxy*>(wrapper->pc());
1915 auto pc = reinterpret_cast<PeerConnection*>(pci->internal());
1916 return pc->GetRemoteAudioSSLCertChain();
1917 };
Steve Anton8c0f7a72017-10-03 10:03:10 -07001918
1919 auto caller_cert = rtc::RTCCertificate::FromPEM(kRsaPems[0]);
1920 auto callee_cert = rtc::RTCCertificate::FromPEM(kRsaPems[1]);
1921
1922 // Configure each side with a known certificate so they can be compared later.
1923 PeerConnectionInterface::RTCConfiguration caller_config;
1924 caller_config.enable_dtls_srtp.emplace(true);
1925 caller_config.certificates.push_back(caller_cert);
1926 PeerConnectionInterface::RTCConfiguration callee_config;
1927 callee_config.enable_dtls_srtp.emplace(true);
1928 callee_config.certificates.push_back(callee_cert);
1929 ASSERT_TRUE(
1930 CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
1931 ConnectFakeSignaling();
1932
1933 // When first initialized, there should not be a remote SSL certificate (and
1934 // calling this method should not crash).
1935 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertificate(caller()));
1936 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertificate(callee()));
Zhi Huang70b820f2018-01-27 14:16:15 -08001937 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertChain(caller()));
1938 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertChain(callee()));
Steve Anton8c0f7a72017-10-03 10:03:10 -07001939
Steve Anton15324772018-01-16 10:26:49 -08001940 caller()->AddAudioTrack();
1941 callee()->AddAudioTrack();
Steve Anton8c0f7a72017-10-03 10:03:10 -07001942 caller()->CreateAndSetAndSignalOffer();
1943 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
1944 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
1945
1946 // Once DTLS has been connected, each side should return the other's SSL
1947 // certificate when calling GetRemoteAudioSSLCertificate.
1948
1949 auto caller_remote_cert = GetRemoteAudioSSLCertificate(caller());
1950 ASSERT_TRUE(caller_remote_cert);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001951 EXPECT_EQ(callee_cert->GetSSLCertificate().ToPEMString(),
Steve Anton8c0f7a72017-10-03 10:03:10 -07001952 caller_remote_cert->ToPEMString());
1953
1954 auto callee_remote_cert = GetRemoteAudioSSLCertificate(callee());
1955 ASSERT_TRUE(callee_remote_cert);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001956 EXPECT_EQ(caller_cert->GetSSLCertificate().ToPEMString(),
Steve Anton8c0f7a72017-10-03 10:03:10 -07001957 callee_remote_cert->ToPEMString());
Zhi Huang70b820f2018-01-27 14:16:15 -08001958
1959 auto caller_remote_cert_chain = GetRemoteAudioSSLCertChain(caller());
1960 ASSERT_TRUE(caller_remote_cert_chain);
1961 ASSERT_EQ(1U, caller_remote_cert_chain->GetSize());
1962 auto remote_cert = &caller_remote_cert_chain->Get(0);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001963 EXPECT_EQ(callee_cert->GetSSLCertificate().ToPEMString(),
Zhi Huang70b820f2018-01-27 14:16:15 -08001964 remote_cert->ToPEMString());
1965
1966 auto callee_remote_cert_chain = GetRemoteAudioSSLCertChain(callee());
1967 ASSERT_TRUE(callee_remote_cert_chain);
1968 ASSERT_EQ(1U, callee_remote_cert_chain->GetSize());
1969 remote_cert = &callee_remote_cert_chain->Get(0);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001970 EXPECT_EQ(caller_cert->GetSSLCertificate().ToPEMString(),
Zhi Huang70b820f2018-01-27 14:16:15 -08001971 remote_cert->ToPEMString());
Steve Anton8c0f7a72017-10-03 10:03:10 -07001972}
1973
deadbeef1dcb1642017-03-29 21:08:16 -07001974// This test sets up a call between two parties with a source resolution of
1975// 1280x720 and verifies that a 16:9 aspect ratio is received.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001976TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07001977 Send1280By720ResolutionAndReceive16To9AspectRatio) {
1978 ASSERT_TRUE(CreatePeerConnectionWrappers());
1979 ConnectFakeSignaling();
1980
Niels Möller5c7efe72018-05-11 10:34:46 +02001981 // Add video tracks with 16:9 aspect ratio, size 1280 x 720.
1982 webrtc::FakePeriodicVideoSource::Config config;
1983 config.width = 1280;
1984 config.height = 720;
Johannes Kron965e7942018-09-13 15:36:20 +02001985 config.timestamp_offset_ms = rtc::TimeMillis();
Niels Möller5c7efe72018-05-11 10:34:46 +02001986 caller()->AddTrack(caller()->CreateLocalVideoTrackWithConfig(config));
1987 callee()->AddTrack(callee()->CreateLocalVideoTrackWithConfig(config));
deadbeef1dcb1642017-03-29 21:08:16 -07001988
1989 // Do normal offer/answer and wait for at least one frame to be received in
1990 // each direction.
1991 caller()->CreateAndSetAndSignalOffer();
1992 ASSERT_TRUE_WAIT(caller()->min_video_frames_received_per_track() > 0 &&
1993 callee()->min_video_frames_received_per_track() > 0,
1994 kMaxWaitForFramesMs);
1995
1996 // Check rendered aspect ratio.
1997 EXPECT_EQ(16.0 / 9, caller()->local_rendered_aspect_ratio());
1998 EXPECT_EQ(16.0 / 9, caller()->rendered_aspect_ratio());
1999 EXPECT_EQ(16.0 / 9, callee()->local_rendered_aspect_ratio());
2000 EXPECT_EQ(16.0 / 9, callee()->rendered_aspect_ratio());
2001}
2002
2003// This test sets up an one-way call, with media only from caller to
2004// callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002005TEST_P(PeerConnectionIntegrationTest, OneWayMediaCall) {
deadbeef1dcb1642017-03-29 21:08:16 -07002006 ASSERT_TRUE(CreatePeerConnectionWrappers());
2007 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002008 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002009 caller()->CreateAndSetAndSignalOffer();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002010 MediaExpectations media_expectations;
2011 media_expectations.CalleeExpectsSomeAudioAndVideo();
2012 media_expectations.CallerExpectsNoAudio();
2013 media_expectations.CallerExpectsNoVideo();
2014 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002015}
2016
2017// This test sets up a audio call initially, with the callee rejecting video
2018// initially. Then later the callee decides to upgrade to audio/video, and
2019// initiates a new offer/answer exchange.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002020TEST_P(PeerConnectionIntegrationTest, AudioToVideoUpgrade) {
deadbeef1dcb1642017-03-29 21:08:16 -07002021 ASSERT_TRUE(CreatePeerConnectionWrappers());
2022 ConnectFakeSignaling();
2023 // Initially, offer an audio/video stream from the caller, but refuse to
2024 // send/receive video on the callee side.
Steve Anton15324772018-01-16 10:26:49 -08002025 caller()->AddAudioVideoTracks();
2026 callee()->AddAudioTrack();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002027 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2028 PeerConnectionInterface::RTCOfferAnswerOptions options;
2029 options.offer_to_receive_video = 0;
2030 callee()->SetOfferAnswerOptions(options);
2031 } else {
2032 callee()->SetRemoteOfferHandler([this] {
2033 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
2034 });
2035 }
deadbeef1dcb1642017-03-29 21:08:16 -07002036 // Do offer/answer and make sure audio is still received end-to-end.
2037 caller()->CreateAndSetAndSignalOffer();
2038 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002039 {
2040 MediaExpectations media_expectations;
2041 media_expectations.ExpectBidirectionalAudio();
2042 media_expectations.ExpectNoVideo();
2043 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2044 }
deadbeef1dcb1642017-03-29 21:08:16 -07002045 // Sanity check that the callee's description has a rejected video section.
2046 ASSERT_NE(nullptr, callee()->pc()->local_description());
2047 const ContentInfo* callee_video_content =
2048 GetFirstVideoContent(callee()->pc()->local_description()->description());
2049 ASSERT_NE(nullptr, callee_video_content);
2050 EXPECT_TRUE(callee_video_content->rejected);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002051
deadbeef1dcb1642017-03-29 21:08:16 -07002052 // Now negotiate with video and ensure negotiation succeeds, with video
2053 // frames and additional audio frames being received.
Steve Anton15324772018-01-16 10:26:49 -08002054 callee()->AddVideoTrack();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002055 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2056 PeerConnectionInterface::RTCOfferAnswerOptions options;
2057 options.offer_to_receive_video = 1;
2058 callee()->SetOfferAnswerOptions(options);
2059 } else {
2060 callee()->SetRemoteOfferHandler(nullptr);
2061 caller()->SetRemoteOfferHandler([this] {
2062 // The caller creates a new transceiver to receive video on when receiving
2063 // the offer, but by default it is send only.
2064 auto transceivers = caller()->pc()->GetTransceivers();
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02002065 ASSERT_EQ(3U, transceivers.size());
Seth Hampson2f0d7022018-02-20 11:54:42 -08002066 ASSERT_EQ(cricket::MEDIA_TYPE_VIDEO,
2067 transceivers[2]->receiver()->media_type());
2068 transceivers[2]->sender()->SetTrack(caller()->CreateLocalVideoTrack());
2069 transceivers[2]->SetDirection(RtpTransceiverDirection::kSendRecv);
2070 });
2071 }
deadbeef1dcb1642017-03-29 21:08:16 -07002072 callee()->CreateAndSetAndSignalOffer();
2073 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002074 {
2075 // Expect additional audio frames to be received after the upgrade.
2076 MediaExpectations media_expectations;
2077 media_expectations.ExpectBidirectionalAudioAndVideo();
2078 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2079 }
deadbeef1dcb1642017-03-29 21:08:16 -07002080}
2081
deadbeef4389b4d2017-09-07 09:07:36 -07002082// Simpler than the above test; just add an audio track to an established
2083// video-only connection.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002084TEST_P(PeerConnectionIntegrationTest, AddAudioToVideoOnlyCall) {
deadbeef4389b4d2017-09-07 09:07:36 -07002085 ASSERT_TRUE(CreatePeerConnectionWrappers());
2086 ConnectFakeSignaling();
2087 // Do initial offer/answer with just a video track.
Steve Anton15324772018-01-16 10:26:49 -08002088 caller()->AddVideoTrack();
2089 callee()->AddVideoTrack();
deadbeef4389b4d2017-09-07 09:07:36 -07002090 caller()->CreateAndSetAndSignalOffer();
2091 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2092 // Now add an audio track and do another offer/answer.
Steve Anton15324772018-01-16 10:26:49 -08002093 caller()->AddAudioTrack();
2094 callee()->AddAudioTrack();
deadbeef4389b4d2017-09-07 09:07:36 -07002095 caller()->CreateAndSetAndSignalOffer();
2096 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2097 // Ensure both audio and video frames are received end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002098 MediaExpectations media_expectations;
2099 media_expectations.ExpectBidirectionalAudioAndVideo();
2100 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef4389b4d2017-09-07 09:07:36 -07002101}
2102
deadbeef1dcb1642017-03-29 21:08:16 -07002103// This test sets up a call that's transferred to a new caller with a different
2104// DTLS fingerprint.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002105TEST_P(PeerConnectionIntegrationTest, CallTransferredForCallee) {
deadbeef1dcb1642017-03-29 21:08:16 -07002106 ASSERT_TRUE(CreatePeerConnectionWrappers());
2107 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002108 caller()->AddAudioVideoTracks();
2109 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002110 caller()->CreateAndSetAndSignalOffer();
2111 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2112
2113 // Keep the original peer around which will still send packets to the
2114 // receiving client. These SRTP packets will be dropped.
2115 std::unique_ptr<PeerConnectionWrapper> original_peer(
2116 SetCallerPcWrapperAndReturnCurrent(
Seth Hampson2f0d7022018-02-20 11:54:42 -08002117 CreatePeerConnectionWrapperWithAlternateKey().release()));
deadbeef1dcb1642017-03-29 21:08:16 -07002118 // TODO(deadbeef): Why do we call Close here? That goes against the comment
2119 // directly above.
2120 original_peer->pc()->Close();
2121
2122 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002123 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002124 caller()->CreateAndSetAndSignalOffer();
2125 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2126 // Wait for some additional frames to be transmitted end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002127 MediaExpectations media_expectations;
2128 media_expectations.ExpectBidirectionalAudioAndVideo();
2129 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002130}
2131
2132// This test sets up a call that's transferred to a new callee with a different
2133// DTLS fingerprint.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002134TEST_P(PeerConnectionIntegrationTest, CallTransferredForCaller) {
deadbeef1dcb1642017-03-29 21:08:16 -07002135 ASSERT_TRUE(CreatePeerConnectionWrappers());
2136 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002137 caller()->AddAudioVideoTracks();
2138 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002139 caller()->CreateAndSetAndSignalOffer();
2140 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2141
2142 // Keep the original peer around which will still send packets to the
2143 // receiving client. These SRTP packets will be dropped.
2144 std::unique_ptr<PeerConnectionWrapper> original_peer(
2145 SetCalleePcWrapperAndReturnCurrent(
Seth Hampson2f0d7022018-02-20 11:54:42 -08002146 CreatePeerConnectionWrapperWithAlternateKey().release()));
deadbeef1dcb1642017-03-29 21:08:16 -07002147 // TODO(deadbeef): Why do we call Close here? That goes against the comment
2148 // directly above.
2149 original_peer->pc()->Close();
2150
2151 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002152 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002153 caller()->SetOfferAnswerOptions(IceRestartOfferAnswerOptions());
2154 caller()->CreateAndSetAndSignalOffer();
2155 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2156 // Wait for some additional frames to be transmitted end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002157 MediaExpectations media_expectations;
2158 media_expectations.ExpectBidirectionalAudioAndVideo();
2159 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002160}
2161
2162// This test sets up a non-bundled call and negotiates bundling at the same
2163// time as starting an ICE restart. When bundling is in effect in the restart,
2164// the DTLS-SRTP context should be successfully reset.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002165TEST_P(PeerConnectionIntegrationTest, BundlingEnabledWhileIceRestartOccurs) {
deadbeef1dcb1642017-03-29 21:08:16 -07002166 ASSERT_TRUE(CreatePeerConnectionWrappers());
2167 ConnectFakeSignaling();
2168
Steve Anton15324772018-01-16 10:26:49 -08002169 caller()->AddAudioVideoTracks();
2170 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002171 // Remove the bundle group from the SDP received by the callee.
2172 callee()->SetReceivedSdpMunger([](cricket::SessionDescription* desc) {
2173 desc->RemoveGroupByName("BUNDLE");
2174 });
2175 caller()->CreateAndSetAndSignalOffer();
2176 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002177 {
2178 MediaExpectations media_expectations;
2179 media_expectations.ExpectBidirectionalAudioAndVideo();
2180 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2181 }
deadbeef1dcb1642017-03-29 21:08:16 -07002182 // Now stop removing the BUNDLE group, and trigger an ICE restart.
2183 callee()->SetReceivedSdpMunger(nullptr);
2184 caller()->SetOfferAnswerOptions(IceRestartOfferAnswerOptions());
2185 caller()->CreateAndSetAndSignalOffer();
2186 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2187
2188 // Expect additional frames to be received after the ICE restart.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002189 {
2190 MediaExpectations media_expectations;
2191 media_expectations.ExpectBidirectionalAudioAndVideo();
2192 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2193 }
deadbeef1dcb1642017-03-29 21:08:16 -07002194}
2195
2196// Test CVO (Coordination of Video Orientation). If a video source is rotated
2197// and both peers support the CVO RTP header extension, the actual video frames
2198// don't need to be encoded in different resolutions, since the rotation is
2199// communicated through the RTP header extension.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002200TEST_P(PeerConnectionIntegrationTest, RotatedVideoWithCVOExtension) {
deadbeef1dcb1642017-03-29 21:08:16 -07002201 ASSERT_TRUE(CreatePeerConnectionWrappers());
2202 ConnectFakeSignaling();
2203 // Add rotated video tracks.
Steve Anton15324772018-01-16 10:26:49 -08002204 caller()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002205 caller()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_90));
Steve Anton15324772018-01-16 10:26:49 -08002206 callee()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002207 callee()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_270));
2208
2209 // Wait for video frames to be received by both sides.
2210 caller()->CreateAndSetAndSignalOffer();
2211 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2212 ASSERT_TRUE_WAIT(caller()->min_video_frames_received_per_track() > 0 &&
2213 callee()->min_video_frames_received_per_track() > 0,
2214 kMaxWaitForFramesMs);
2215
2216 // Ensure that the aspect ratio is unmodified.
2217 // TODO(deadbeef): Where does 4:3 come from? Should be explicit in the test,
2218 // not just assumed.
2219 EXPECT_EQ(4.0 / 3, caller()->local_rendered_aspect_ratio());
2220 EXPECT_EQ(4.0 / 3, caller()->rendered_aspect_ratio());
2221 EXPECT_EQ(4.0 / 3, callee()->local_rendered_aspect_ratio());
2222 EXPECT_EQ(4.0 / 3, callee()->rendered_aspect_ratio());
2223 // Ensure that the CVO bits were surfaced to the renderer.
2224 EXPECT_EQ(webrtc::kVideoRotation_270, caller()->rendered_rotation());
2225 EXPECT_EQ(webrtc::kVideoRotation_90, callee()->rendered_rotation());
2226}
2227
2228// Test that when the CVO extension isn't supported, video is rotated the
2229// old-fashioned way, by encoding rotated frames.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002230TEST_P(PeerConnectionIntegrationTest, RotatedVideoWithoutCVOExtension) {
deadbeef1dcb1642017-03-29 21:08:16 -07002231 ASSERT_TRUE(CreatePeerConnectionWrappers());
2232 ConnectFakeSignaling();
2233 // Add rotated video tracks.
Steve Anton15324772018-01-16 10:26:49 -08002234 caller()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002235 caller()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_90));
Steve Anton15324772018-01-16 10:26:49 -08002236 callee()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002237 callee()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_270));
2238
2239 // Remove the CVO extension from the offered SDP.
2240 callee()->SetReceivedSdpMunger([](cricket::SessionDescription* desc) {
2241 cricket::VideoContentDescription* video =
2242 GetFirstVideoContentDescription(desc);
2243 video->ClearRtpHeaderExtensions();
2244 });
2245 // Wait for video frames to be received by both sides.
2246 caller()->CreateAndSetAndSignalOffer();
2247 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2248 ASSERT_TRUE_WAIT(caller()->min_video_frames_received_per_track() > 0 &&
2249 callee()->min_video_frames_received_per_track() > 0,
2250 kMaxWaitForFramesMs);
2251
2252 // Expect that the aspect ratio is inversed to account for the 90/270 degree
2253 // rotation.
2254 // TODO(deadbeef): Where does 4:3 come from? Should be explicit in the test,
2255 // not just assumed.
2256 EXPECT_EQ(3.0 / 4, caller()->local_rendered_aspect_ratio());
2257 EXPECT_EQ(3.0 / 4, caller()->rendered_aspect_ratio());
2258 EXPECT_EQ(3.0 / 4, callee()->local_rendered_aspect_ratio());
2259 EXPECT_EQ(3.0 / 4, callee()->rendered_aspect_ratio());
2260 // Expect that each endpoint is unaware of the rotation of the other endpoint.
2261 EXPECT_EQ(webrtc::kVideoRotation_0, caller()->rendered_rotation());
2262 EXPECT_EQ(webrtc::kVideoRotation_0, callee()->rendered_rotation());
2263}
2264
deadbeef1dcb1642017-03-29 21:08:16 -07002265// Test that if the answerer rejects the audio m= section, no audio is sent or
2266// received, but video still can be.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002267TEST_P(PeerConnectionIntegrationTest, AnswererRejectsAudioSection) {
deadbeef1dcb1642017-03-29 21:08:16 -07002268 ASSERT_TRUE(CreatePeerConnectionWrappers());
2269 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002270 caller()->AddAudioVideoTracks();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002271 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2272 // Only add video track for callee, and set offer_to_receive_audio to 0, so
2273 // it will reject the audio m= section completely.
2274 PeerConnectionInterface::RTCOfferAnswerOptions options;
2275 options.offer_to_receive_audio = 0;
2276 callee()->SetOfferAnswerOptions(options);
2277 } else {
2278 // Stopping the audio RtpTransceiver will cause the media section to be
2279 // rejected in the answer.
2280 callee()->SetRemoteOfferHandler([this] {
2281 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_AUDIO)->Stop();
2282 });
2283 }
Steve Anton15324772018-01-16 10:26:49 -08002284 callee()->AddTrack(callee()->CreateLocalVideoTrack());
deadbeef1dcb1642017-03-29 21:08:16 -07002285 // Do offer/answer and wait for successful end-to-end video frames.
2286 caller()->CreateAndSetAndSignalOffer();
2287 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002288 MediaExpectations media_expectations;
2289 media_expectations.ExpectBidirectionalVideo();
2290 media_expectations.ExpectNoAudio();
2291 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2292
deadbeef1dcb1642017-03-29 21:08:16 -07002293 // Sanity check that the callee's description has a rejected audio section.
2294 ASSERT_NE(nullptr, callee()->pc()->local_description());
2295 const ContentInfo* callee_audio_content =
2296 GetFirstAudioContent(callee()->pc()->local_description()->description());
2297 ASSERT_NE(nullptr, callee_audio_content);
2298 EXPECT_TRUE(callee_audio_content->rejected);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002299 if (sdp_semantics_ == SdpSemantics::kUnifiedPlan) {
2300 // The caller's transceiver should have stopped after receiving the answer.
2301 EXPECT_TRUE(caller()
2302 ->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_AUDIO)
2303 ->stopped());
2304 }
deadbeef1dcb1642017-03-29 21:08:16 -07002305}
2306
2307// Test that if the answerer rejects the video m= section, no video is sent or
2308// received, but audio still can be.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002309TEST_P(PeerConnectionIntegrationTest, AnswererRejectsVideoSection) {
deadbeef1dcb1642017-03-29 21:08:16 -07002310 ASSERT_TRUE(CreatePeerConnectionWrappers());
2311 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002312 caller()->AddAudioVideoTracks();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002313 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2314 // Only add audio track for callee, and set offer_to_receive_video to 0, so
2315 // it will reject the video m= section completely.
2316 PeerConnectionInterface::RTCOfferAnswerOptions options;
2317 options.offer_to_receive_video = 0;
2318 callee()->SetOfferAnswerOptions(options);
2319 } else {
2320 // Stopping the video RtpTransceiver will cause the media section to be
2321 // rejected in the answer.
2322 callee()->SetRemoteOfferHandler([this] {
2323 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
2324 });
2325 }
Steve Anton15324772018-01-16 10:26:49 -08002326 callee()->AddTrack(callee()->CreateLocalAudioTrack());
deadbeef1dcb1642017-03-29 21:08:16 -07002327 // Do offer/answer and wait for successful end-to-end audio frames.
2328 caller()->CreateAndSetAndSignalOffer();
2329 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002330 MediaExpectations media_expectations;
2331 media_expectations.ExpectBidirectionalAudio();
2332 media_expectations.ExpectNoVideo();
2333 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2334
deadbeef1dcb1642017-03-29 21:08:16 -07002335 // Sanity check that the callee's description has a rejected video section.
2336 ASSERT_NE(nullptr, callee()->pc()->local_description());
2337 const ContentInfo* callee_video_content =
2338 GetFirstVideoContent(callee()->pc()->local_description()->description());
2339 ASSERT_NE(nullptr, callee_video_content);
2340 EXPECT_TRUE(callee_video_content->rejected);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002341 if (sdp_semantics_ == SdpSemantics::kUnifiedPlan) {
2342 // The caller's transceiver should have stopped after receiving the answer.
2343 EXPECT_TRUE(caller()
2344 ->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)
2345 ->stopped());
2346 }
deadbeef1dcb1642017-03-29 21:08:16 -07002347}
2348
2349// Test that if the answerer rejects both audio and video m= sections, nothing
2350// bad happens.
2351// TODO(deadbeef): Test that a data channel still works. Currently this doesn't
2352// test anything but the fact that negotiation succeeds, which doesn't mean
2353// much.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002354TEST_P(PeerConnectionIntegrationTest, AnswererRejectsAudioAndVideoSections) {
deadbeef1dcb1642017-03-29 21:08:16 -07002355 ASSERT_TRUE(CreatePeerConnectionWrappers());
2356 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002357 caller()->AddAudioVideoTracks();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002358 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2359 // Don't give the callee any tracks, and set offer_to_receive_X to 0, so it
2360 // will reject both audio and video m= sections.
2361 PeerConnectionInterface::RTCOfferAnswerOptions options;
2362 options.offer_to_receive_audio = 0;
2363 options.offer_to_receive_video = 0;
2364 callee()->SetOfferAnswerOptions(options);
2365 } else {
2366 callee()->SetRemoteOfferHandler([this] {
2367 // Stopping all transceivers will cause all media sections to be rejected.
Mirko Bonadei739baf02019-01-27 17:29:42 +01002368 for (const auto& transceiver : callee()->pc()->GetTransceivers()) {
Seth Hampson2f0d7022018-02-20 11:54:42 -08002369 transceiver->Stop();
2370 }
2371 });
2372 }
deadbeef1dcb1642017-03-29 21:08:16 -07002373 // Do offer/answer and wait for stable signaling state.
2374 caller()->CreateAndSetAndSignalOffer();
2375 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002376
deadbeef1dcb1642017-03-29 21:08:16 -07002377 // Sanity check that the callee's description has rejected m= sections.
2378 ASSERT_NE(nullptr, callee()->pc()->local_description());
2379 const ContentInfo* callee_audio_content =
2380 GetFirstAudioContent(callee()->pc()->local_description()->description());
2381 ASSERT_NE(nullptr, callee_audio_content);
2382 EXPECT_TRUE(callee_audio_content->rejected);
2383 const ContentInfo* callee_video_content =
2384 GetFirstVideoContent(callee()->pc()->local_description()->description());
2385 ASSERT_NE(nullptr, callee_video_content);
2386 EXPECT_TRUE(callee_video_content->rejected);
2387}
2388
2389// This test sets up an audio and video call between two parties. After the
2390// call runs for a while, the caller sends an updated offer with video being
2391// rejected. Once the re-negotiation is done, the video flow should stop and
2392// the audio flow should continue.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002393TEST_P(PeerConnectionIntegrationTest, VideoRejectedInSubsequentOffer) {
deadbeef1dcb1642017-03-29 21:08:16 -07002394 ASSERT_TRUE(CreatePeerConnectionWrappers());
2395 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002396 caller()->AddAudioVideoTracks();
2397 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002398 caller()->CreateAndSetAndSignalOffer();
2399 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002400 {
2401 MediaExpectations media_expectations;
2402 media_expectations.ExpectBidirectionalAudioAndVideo();
2403 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2404 }
deadbeef1dcb1642017-03-29 21:08:16 -07002405 // Renegotiate, rejecting the video m= section.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002406 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2407 caller()->SetGeneratedSdpMunger(
2408 [](cricket::SessionDescription* description) {
2409 for (cricket::ContentInfo& content : description->contents()) {
2410 if (cricket::IsVideoContent(&content)) {
2411 content.rejected = true;
2412 }
2413 }
2414 });
2415 } else {
2416 caller()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
2417 }
deadbeef1dcb1642017-03-29 21:08:16 -07002418 caller()->CreateAndSetAndSignalOffer();
2419 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
2420
2421 // Sanity check that the caller's description has a rejected video section.
2422 ASSERT_NE(nullptr, caller()->pc()->local_description());
2423 const ContentInfo* caller_video_content =
2424 GetFirstVideoContent(caller()->pc()->local_description()->description());
2425 ASSERT_NE(nullptr, caller_video_content);
2426 EXPECT_TRUE(caller_video_content->rejected);
deadbeef1dcb1642017-03-29 21:08:16 -07002427 // Wait for some additional audio frames to be received.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002428 {
2429 MediaExpectations media_expectations;
2430 media_expectations.ExpectBidirectionalAudio();
2431 media_expectations.ExpectNoVideo();
2432 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2433 }
deadbeef1dcb1642017-03-29 21:08:16 -07002434}
2435
Taylor Brandstetter60c8dc82018-04-11 15:20:27 -07002436// Do one offer/answer with audio, another that disables it (rejecting the m=
2437// section), and another that re-enables it. Regression test for:
2438// bugs.webrtc.org/6023
2439TEST_F(PeerConnectionIntegrationTestPlanB, EnableAudioAfterRejecting) {
2440 ASSERT_TRUE(CreatePeerConnectionWrappers());
2441 ConnectFakeSignaling();
2442
2443 // Add audio track, do normal offer/answer.
2444 rtc::scoped_refptr<webrtc::AudioTrackInterface> track =
2445 caller()->CreateLocalAudioTrack();
2446 rtc::scoped_refptr<webrtc::RtpSenderInterface> sender =
2447 caller()->pc()->AddTrack(track, {"stream"}).MoveValue();
2448 caller()->CreateAndSetAndSignalOffer();
2449 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2450
2451 // Remove audio track, and set offer_to_receive_audio to false to cause the
2452 // m= section to be completely disabled, not just "recvonly".
2453 caller()->pc()->RemoveTrack(sender);
2454 PeerConnectionInterface::RTCOfferAnswerOptions options;
2455 options.offer_to_receive_audio = 0;
2456 caller()->SetOfferAnswerOptions(options);
2457 caller()->CreateAndSetAndSignalOffer();
2458 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2459
2460 // Add the audio track again, expecting negotiation to succeed and frames to
2461 // flow.
2462 sender = caller()->pc()->AddTrack(track, {"stream"}).MoveValue();
2463 options.offer_to_receive_audio = 1;
2464 caller()->SetOfferAnswerOptions(options);
2465 caller()->CreateAndSetAndSignalOffer();
2466 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2467
2468 MediaExpectations media_expectations;
2469 media_expectations.CalleeExpectsSomeAudio();
2470 EXPECT_TRUE(ExpectNewFrames(media_expectations));
2471}
2472
deadbeef1dcb1642017-03-29 21:08:16 -07002473// Basic end-to-end test, but without SSRC/MSID signaling. This functionality
2474// is needed to support legacy endpoints.
2475// TODO(deadbeef): When we support the MID extension and demuxing on MID, also
2476// add a test for an end-to-end test without MID signaling either (basically,
2477// the minimum acceptable SDP).
Seth Hampson2f0d7022018-02-20 11:54:42 -08002478TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithoutSsrcOrMsidSignaling) {
deadbeef1dcb1642017-03-29 21:08:16 -07002479 ASSERT_TRUE(CreatePeerConnectionWrappers());
2480 ConnectFakeSignaling();
2481 // Add audio and video, testing that packets can be demuxed on payload type.
Steve Anton15324772018-01-16 10:26:49 -08002482 caller()->AddAudioVideoTracks();
2483 callee()->AddAudioVideoTracks();
deadbeefd8ad7882017-04-18 16:01:17 -07002484 // Remove SSRCs and MSIDs from the received offer SDP.
2485 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
deadbeef1dcb1642017-03-29 21:08:16 -07002486 caller()->CreateAndSetAndSignalOffer();
2487 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002488 MediaExpectations media_expectations;
2489 media_expectations.ExpectBidirectionalAudioAndVideo();
2490 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002491}
2492
Seth Hampson5897a6e2018-04-03 11:16:33 -07002493// Basic end-to-end test, without SSRC signaling. This means that the track
2494// was created properly and frames are delivered when the MSIDs are communicated
2495// with a=msid lines and no a=ssrc lines.
2496TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
2497 EndToEndCallWithoutSsrcSignaling) {
2498 const char kStreamId[] = "streamId";
2499 ASSERT_TRUE(CreatePeerConnectionWrappers());
2500 ConnectFakeSignaling();
2501 // Add just audio tracks.
2502 caller()->AddTrack(caller()->CreateLocalAudioTrack(), {kStreamId});
2503 callee()->AddAudioTrack();
2504
2505 // Remove SSRCs from the received offer SDP.
2506 callee()->SetReceivedSdpMunger(RemoveSsrcsAndKeepMsids);
2507 caller()->CreateAndSetAndSignalOffer();
2508 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2509 MediaExpectations media_expectations;
2510 media_expectations.ExpectBidirectionalAudio();
2511 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2512}
2513
Steve Antondf527fd2018-04-27 15:52:03 -07002514// Tests that video flows between multiple video tracks when SSRCs are not
2515// signaled. This exercises the MID RTP header extension which is needed to
2516// demux the incoming video tracks.
2517TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
2518 EndToEndCallWithTwoVideoTracksAndNoSignaledSsrc) {
2519 ASSERT_TRUE(CreatePeerConnectionWrappers());
2520 ConnectFakeSignaling();
2521 caller()->AddVideoTrack();
2522 caller()->AddVideoTrack();
2523 callee()->AddVideoTrack();
2524 callee()->AddVideoTrack();
2525
2526 caller()->SetReceivedSdpMunger(&RemoveSsrcsAndKeepMsids);
2527 callee()->SetReceivedSdpMunger(&RemoveSsrcsAndKeepMsids);
2528 caller()->CreateAndSetAndSignalOffer();
2529 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2530 ASSERT_EQ(2u, caller()->pc()->GetReceivers().size());
2531 ASSERT_EQ(2u, callee()->pc()->GetReceivers().size());
2532
2533 // Expect video to be received in both directions on both tracks.
2534 MediaExpectations media_expectations;
2535 media_expectations.ExpectBidirectionalVideo();
2536 EXPECT_TRUE(ExpectNewFrames(media_expectations));
2537}
2538
Henrik Boström5b147782018-12-04 11:25:05 +01002539TEST_F(PeerConnectionIntegrationTestUnifiedPlan, NoStreamsMsidLinePresent) {
2540 ASSERT_TRUE(CreatePeerConnectionWrappers());
2541 ConnectFakeSignaling();
2542 caller()->AddAudioTrack();
2543 caller()->AddVideoTrack();
2544 caller()->CreateAndSetAndSignalOffer();
2545 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2546 auto callee_receivers = callee()->pc()->GetReceivers();
2547 ASSERT_EQ(2u, callee_receivers.size());
2548 EXPECT_TRUE(callee_receivers[0]->stream_ids().empty());
2549 EXPECT_TRUE(callee_receivers[1]->stream_ids().empty());
2550}
2551
2552TEST_F(PeerConnectionIntegrationTestUnifiedPlan, NoStreamsMsidLineMissing) {
2553 ASSERT_TRUE(CreatePeerConnectionWrappers());
2554 ConnectFakeSignaling();
2555 caller()->AddAudioTrack();
2556 caller()->AddVideoTrack();
2557 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2558 caller()->CreateAndSetAndSignalOffer();
2559 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2560 auto callee_receivers = callee()->pc()->GetReceivers();
2561 ASSERT_EQ(2u, callee_receivers.size());
2562 ASSERT_EQ(1u, callee_receivers[0]->stream_ids().size());
2563 ASSERT_EQ(1u, callee_receivers[1]->stream_ids().size());
2564 EXPECT_EQ(callee_receivers[0]->stream_ids()[0],
2565 callee_receivers[1]->stream_ids()[0]);
2566 EXPECT_EQ(callee_receivers[0]->streams()[0],
2567 callee_receivers[1]->streams()[0]);
2568}
2569
deadbeef1dcb1642017-03-29 21:08:16 -07002570// Test that if two video tracks are sent (from caller to callee, in this test),
2571// they're transmitted correctly end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002572TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithTwoVideoTracks) {
deadbeef1dcb1642017-03-29 21:08:16 -07002573 ASSERT_TRUE(CreatePeerConnectionWrappers());
2574 ConnectFakeSignaling();
2575 // Add one audio/video stream, and one video-only stream.
Steve Anton15324772018-01-16 10:26:49 -08002576 caller()->AddAudioVideoTracks();
2577 caller()->AddVideoTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07002578 caller()->CreateAndSetAndSignalOffer();
2579 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Steve Anton15324772018-01-16 10:26:49 -08002580 ASSERT_EQ(3u, callee()->pc()->GetReceivers().size());
Seth Hampson2f0d7022018-02-20 11:54:42 -08002581
2582 MediaExpectations media_expectations;
2583 media_expectations.CalleeExpectsSomeAudioAndVideo();
2584 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002585}
2586
2587static void MakeSpecCompliantMaxBundleOffer(cricket::SessionDescription* desc) {
2588 bool first = true;
2589 for (cricket::ContentInfo& content : desc->contents()) {
2590 if (first) {
2591 first = false;
2592 continue;
2593 }
2594 content.bundle_only = true;
2595 }
2596 first = true;
2597 for (cricket::TransportInfo& transport : desc->transport_infos()) {
2598 if (first) {
2599 first = false;
2600 continue;
2601 }
2602 transport.description.ice_ufrag.clear();
2603 transport.description.ice_pwd.clear();
2604 transport.description.connection_role = cricket::CONNECTIONROLE_NONE;
2605 transport.description.identity_fingerprint.reset(nullptr);
2606 }
2607}
2608
2609// Test that if applying a true "max bundle" offer, which uses ports of 0,
2610// "a=bundle-only", omitting "a=fingerprint", "a=setup", "a=ice-ufrag" and
2611// "a=ice-pwd" for all but the audio "m=" section, negotiation still completes
2612// successfully and media flows.
2613// TODO(deadbeef): Update this test to also omit "a=rtcp-mux", once that works.
2614// TODO(deadbeef): Won't need this test once we start generating actual
2615// standards-compliant SDP.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002616TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07002617 EndToEndCallWithSpecCompliantMaxBundleOffer) {
2618 ASSERT_TRUE(CreatePeerConnectionWrappers());
2619 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002620 caller()->AddAudioVideoTracks();
2621 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002622 // Do the equivalent of setting the port to 0, adding a=bundle-only, and
2623 // removing a=ice-ufrag, a=ice-pwd, a=fingerprint and a=setup from all
2624 // but the first m= section.
2625 callee()->SetReceivedSdpMunger(MakeSpecCompliantMaxBundleOffer);
2626 caller()->CreateAndSetAndSignalOffer();
2627 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002628 MediaExpectations media_expectations;
2629 media_expectations.ExpectBidirectionalAudioAndVideo();
2630 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002631}
2632
2633// Test that we can receive the audio output level from a remote audio track.
2634// TODO(deadbeef): Use a fake audio source and verify that the output level is
2635// exactly what the source on the other side was configured with.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002636TEST_P(PeerConnectionIntegrationTest, GetAudioOutputLevelStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002637 ASSERT_TRUE(CreatePeerConnectionWrappers());
2638 ConnectFakeSignaling();
2639 // Just add an audio track.
Steve Anton15324772018-01-16 10:26:49 -08002640 caller()->AddAudioTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07002641 caller()->CreateAndSetAndSignalOffer();
2642 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2643
2644 // Get the audio output level stats. Note that the level is not available
2645 // until an RTCP packet has been received.
deadbeefd8ad7882017-04-18 16:01:17 -07002646 EXPECT_TRUE_WAIT(callee()->OldGetStats()->AudioOutputLevel() > 0,
deadbeef1dcb1642017-03-29 21:08:16 -07002647 kMaxWaitForFramesMs);
2648}
2649
2650// Test that an audio input level is reported.
2651// TODO(deadbeef): Use a fake audio source and verify that the input level is
2652// exactly what the source was configured with.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002653TEST_P(PeerConnectionIntegrationTest, GetAudioInputLevelStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002654 ASSERT_TRUE(CreatePeerConnectionWrappers());
2655 ConnectFakeSignaling();
2656 // Just add an audio track.
Steve Anton15324772018-01-16 10:26:49 -08002657 caller()->AddAudioTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07002658 caller()->CreateAndSetAndSignalOffer();
2659 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2660
2661 // Get the audio input level stats. The level should be available very
2662 // soon after the test starts.
deadbeefd8ad7882017-04-18 16:01:17 -07002663 EXPECT_TRUE_WAIT(caller()->OldGetStats()->AudioInputLevel() > 0,
deadbeef1dcb1642017-03-29 21:08:16 -07002664 kMaxWaitForStatsMs);
2665}
2666
2667// Test that we can get incoming byte counts from both audio and video tracks.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002668TEST_P(PeerConnectionIntegrationTest, GetBytesReceivedStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002669 ASSERT_TRUE(CreatePeerConnectionWrappers());
2670 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002671 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002672 // Do offer/answer, wait for the callee to receive some frames.
2673 caller()->CreateAndSetAndSignalOffer();
2674 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002675
2676 MediaExpectations media_expectations;
2677 media_expectations.CalleeExpectsSomeAudioAndVideo();
2678 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002679
2680 // Get a handle to the remote tracks created, so they can be used as GetStats
2681 // filters.
Mirko Bonadei739baf02019-01-27 17:29:42 +01002682 for (const auto& receiver : callee()->pc()->GetReceivers()) {
Steve Anton15324772018-01-16 10:26:49 -08002683 // We received frames, so we definitely should have nonzero "received bytes"
2684 // stats at this point.
2685 EXPECT_GT(callee()->OldGetStatsForTrack(receiver->track())->BytesReceived(),
2686 0);
2687 }
deadbeef1dcb1642017-03-29 21:08:16 -07002688}
2689
2690// Test that we can get outgoing byte counts from both audio and video tracks.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002691TEST_P(PeerConnectionIntegrationTest, GetBytesSentStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002692 ASSERT_TRUE(CreatePeerConnectionWrappers());
2693 ConnectFakeSignaling();
2694 auto audio_track = caller()->CreateLocalAudioTrack();
2695 auto video_track = caller()->CreateLocalVideoTrack();
Steve Anton15324772018-01-16 10:26:49 -08002696 caller()->AddTrack(audio_track);
2697 caller()->AddTrack(video_track);
deadbeef1dcb1642017-03-29 21:08:16 -07002698 // Do offer/answer, wait for the callee to receive some frames.
2699 caller()->CreateAndSetAndSignalOffer();
2700 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002701 MediaExpectations media_expectations;
2702 media_expectations.CalleeExpectsSomeAudioAndVideo();
2703 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002704
2705 // The callee received frames, so we definitely should have nonzero "sent
2706 // bytes" stats at this point.
deadbeefd8ad7882017-04-18 16:01:17 -07002707 EXPECT_GT(caller()->OldGetStatsForTrack(audio_track)->BytesSent(), 0);
2708 EXPECT_GT(caller()->OldGetStatsForTrack(video_track)->BytesSent(), 0);
2709}
2710
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002711// Test that we can get capture start ntp time.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002712TEST_P(PeerConnectionIntegrationTest, GetCaptureStartNtpTimeWithOldStatsApi) {
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002713 ASSERT_TRUE(CreatePeerConnectionWrappers());
2714 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002715 caller()->AddAudioTrack();
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002716
Steve Anton15324772018-01-16 10:26:49 -08002717 callee()->AddAudioTrack();
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002718
2719 // Do offer/answer, wait for the callee to receive some frames.
2720 caller()->CreateAndSetAndSignalOffer();
2721 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2722
2723 // Get the remote audio track created on the receiver, so they can be used as
2724 // GetStats filters.
Steve Antonfc853712018-03-01 13:48:58 -08002725 auto receivers = callee()->pc()->GetReceivers();
2726 ASSERT_EQ(1u, receivers.size());
2727 auto remote_audio_track = receivers[0]->track();
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002728
2729 // Get the audio output level stats. Note that the level is not available
2730 // until an RTCP packet has been received.
Zhi Huange830e682018-03-30 10:48:35 -07002731 EXPECT_TRUE_WAIT(
2732 callee()->OldGetStatsForTrack(remote_audio_track)->CaptureStartNtpTime() >
2733 0,
2734 2 * kMaxWaitForFramesMs);
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002735}
2736
Steve Antona41959e2018-11-28 11:15:33 -08002737// Test that the track ID is associated with all local and remote SSRC stats
2738// using the old GetStats() and more than 1 audio and more than 1 video track.
2739// This is a regression test for crbug.com/906988
2740TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
2741 OldGetStatsAssociatesTrackIdForManyMediaSections) {
2742 ASSERT_TRUE(CreatePeerConnectionWrappers());
2743 ConnectFakeSignaling();
2744 auto audio_sender_1 = caller()->AddAudioTrack();
2745 auto video_sender_1 = caller()->AddVideoTrack();
2746 auto audio_sender_2 = caller()->AddAudioTrack();
2747 auto video_sender_2 = caller()->AddVideoTrack();
2748 caller()->CreateAndSetAndSignalOffer();
2749 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2750
2751 MediaExpectations media_expectations;
2752 media_expectations.CalleeExpectsSomeAudioAndVideo();
2753 ASSERT_TRUE_WAIT(ExpectNewFrames(media_expectations), kDefaultTimeout);
2754
2755 std::vector<std::string> track_ids = {
2756 audio_sender_1->track()->id(), video_sender_1->track()->id(),
2757 audio_sender_2->track()->id(), video_sender_2->track()->id()};
2758
2759 auto caller_stats = caller()->OldGetStats();
2760 EXPECT_THAT(caller_stats->TrackIds(), UnorderedElementsAreArray(track_ids));
2761 auto callee_stats = callee()->OldGetStats();
2762 EXPECT_THAT(callee_stats->TrackIds(), UnorderedElementsAreArray(track_ids));
2763}
2764
Steve Antonffa6ce42018-11-30 09:26:08 -08002765// Test that the new GetStats() returns stats for all outgoing/incoming streams
2766// with the correct track IDs if there are more than one audio and more than one
2767// video senders/receivers.
2768TEST_P(PeerConnectionIntegrationTest, NewGetStatsManyAudioAndManyVideoStreams) {
2769 ASSERT_TRUE(CreatePeerConnectionWrappers());
2770 ConnectFakeSignaling();
2771 auto audio_sender_1 = caller()->AddAudioTrack();
2772 auto video_sender_1 = caller()->AddVideoTrack();
2773 auto audio_sender_2 = caller()->AddAudioTrack();
2774 auto video_sender_2 = caller()->AddVideoTrack();
2775 caller()->CreateAndSetAndSignalOffer();
2776 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2777
2778 MediaExpectations media_expectations;
2779 media_expectations.CalleeExpectsSomeAudioAndVideo();
2780 ASSERT_TRUE_WAIT(ExpectNewFrames(media_expectations), kDefaultTimeout);
2781
2782 std::vector<std::string> track_ids = {
2783 audio_sender_1->track()->id(), video_sender_1->track()->id(),
2784 audio_sender_2->track()->id(), video_sender_2->track()->id()};
2785
2786 rtc::scoped_refptr<const webrtc::RTCStatsReport> caller_report =
2787 caller()->NewGetStats();
2788 ASSERT_TRUE(caller_report);
2789 auto outbound_stream_stats =
2790 caller_report->GetStatsOfType<webrtc::RTCOutboundRTPStreamStats>();
2791 ASSERT_EQ(4u, outbound_stream_stats.size());
2792 std::vector<std::string> outbound_track_ids;
2793 for (const auto& stat : outbound_stream_stats) {
2794 ASSERT_TRUE(stat->bytes_sent.is_defined());
2795 EXPECT_LT(0u, *stat->bytes_sent);
Rasmus Brandt2efae772019-06-27 14:29:34 +02002796 if (*stat->kind == "video") {
2797 ASSERT_TRUE(stat->key_frames_encoded.is_defined());
2798 EXPECT_GT(*stat->key_frames_encoded, 0u);
2799 ASSERT_TRUE(stat->frames_encoded.is_defined());
2800 EXPECT_GE(*stat->frames_encoded, *stat->key_frames_encoded);
2801 }
Steve Antonffa6ce42018-11-30 09:26:08 -08002802 ASSERT_TRUE(stat->track_id.is_defined());
2803 const auto* track_stat =
2804 caller_report->GetAs<webrtc::RTCMediaStreamTrackStats>(*stat->track_id);
2805 ASSERT_TRUE(track_stat);
2806 outbound_track_ids.push_back(*track_stat->track_identifier);
2807 }
2808 EXPECT_THAT(outbound_track_ids, UnorderedElementsAreArray(track_ids));
2809
2810 rtc::scoped_refptr<const webrtc::RTCStatsReport> callee_report =
2811 callee()->NewGetStats();
2812 ASSERT_TRUE(callee_report);
2813 auto inbound_stream_stats =
2814 callee_report->GetStatsOfType<webrtc::RTCInboundRTPStreamStats>();
2815 ASSERT_EQ(4u, inbound_stream_stats.size());
2816 std::vector<std::string> inbound_track_ids;
2817 for (const auto& stat : inbound_stream_stats) {
2818 ASSERT_TRUE(stat->bytes_received.is_defined());
2819 EXPECT_LT(0u, *stat->bytes_received);
Rasmus Brandt2efae772019-06-27 14:29:34 +02002820 if (*stat->kind == "video") {
2821 ASSERT_TRUE(stat->key_frames_decoded.is_defined());
2822 EXPECT_GT(*stat->key_frames_decoded, 0u);
2823 ASSERT_TRUE(stat->frames_decoded.is_defined());
2824 EXPECT_GE(*stat->frames_decoded, *stat->key_frames_decoded);
2825 }
Steve Antonffa6ce42018-11-30 09:26:08 -08002826 ASSERT_TRUE(stat->track_id.is_defined());
2827 const auto* track_stat =
2828 callee_report->GetAs<webrtc::RTCMediaStreamTrackStats>(*stat->track_id);
2829 ASSERT_TRUE(track_stat);
2830 inbound_track_ids.push_back(*track_stat->track_identifier);
2831 }
2832 EXPECT_THAT(inbound_track_ids, UnorderedElementsAreArray(track_ids));
2833}
2834
2835// Test that we can get stats (using the new stats implementation) for
deadbeefd8ad7882017-04-18 16:01:17 -07002836// unsignaled streams. Meaning when SSRCs/MSIDs aren't signaled explicitly in
2837// SDP.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002838TEST_P(PeerConnectionIntegrationTest,
deadbeefd8ad7882017-04-18 16:01:17 -07002839 GetStatsForUnsignaledStreamWithNewStatsApi) {
2840 ASSERT_TRUE(CreatePeerConnectionWrappers());
2841 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002842 caller()->AddAudioTrack();
deadbeefd8ad7882017-04-18 16:01:17 -07002843 // Remove SSRCs and MSIDs from the received offer SDP.
2844 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2845 caller()->CreateAndSetAndSignalOffer();
2846 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002847 MediaExpectations media_expectations;
2848 media_expectations.CalleeExpectsSomeAudio(1);
2849 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeefd8ad7882017-04-18 16:01:17 -07002850
2851 // We received a frame, so we should have nonzero "bytes received" stats for
2852 // the unsignaled stream, if stats are working for it.
2853 rtc::scoped_refptr<const webrtc::RTCStatsReport> report =
2854 callee()->NewGetStats();
2855 ASSERT_NE(nullptr, report);
2856 auto inbound_stream_stats =
2857 report->GetStatsOfType<webrtc::RTCInboundRTPStreamStats>();
2858 ASSERT_EQ(1U, inbound_stream_stats.size());
2859 ASSERT_TRUE(inbound_stream_stats[0]->bytes_received.is_defined());
2860 ASSERT_GT(*inbound_stream_stats[0]->bytes_received, 0U);
zhihuangf8164932017-05-19 13:09:47 -07002861 ASSERT_TRUE(inbound_stream_stats[0]->track_id.is_defined());
2862}
2863
Taylor Brandstettera4653442018-06-19 09:44:26 -07002864// Same as above but for the legacy stats implementation.
2865TEST_P(PeerConnectionIntegrationTest,
2866 GetStatsForUnsignaledStreamWithOldStatsApi) {
2867 ASSERT_TRUE(CreatePeerConnectionWrappers());
2868 ConnectFakeSignaling();
2869 caller()->AddAudioTrack();
2870 // Remove SSRCs and MSIDs from the received offer SDP.
2871 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2872 caller()->CreateAndSetAndSignalOffer();
2873 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2874
2875 // Note that, since the old stats implementation associates SSRCs with tracks
2876 // using SDP, when SSRCs aren't signaled in SDP these stats won't have an
2877 // associated track ID. So we can't use the track "selector" argument.
2878 //
2879 // Also, we use "EXPECT_TRUE_WAIT" because the stats collector may decide to
2880 // return cached stats if not enough time has passed since the last update.
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02002881 EXPECT_TRUE_WAIT(callee()->OldGetStats()->BytesReceived() > 0,
Taylor Brandstettera4653442018-06-19 09:44:26 -07002882 kDefaultTimeout);
2883}
2884
zhihuangf8164932017-05-19 13:09:47 -07002885// Test that we can successfully get the media related stats (audio level
2886// etc.) for the unsignaled stream.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002887TEST_P(PeerConnectionIntegrationTest,
zhihuangf8164932017-05-19 13:09:47 -07002888 GetMediaStatsForUnsignaledStreamWithNewStatsApi) {
2889 ASSERT_TRUE(CreatePeerConnectionWrappers());
2890 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002891 caller()->AddAudioVideoTracks();
zhihuangf8164932017-05-19 13:09:47 -07002892 // Remove SSRCs and MSIDs from the received offer SDP.
2893 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2894 caller()->CreateAndSetAndSignalOffer();
2895 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002896 MediaExpectations media_expectations;
2897 media_expectations.CalleeExpectsSomeAudio(1);
2898 media_expectations.CalleeExpectsSomeVideo(1);
2899 ASSERT_TRUE(ExpectNewFrames(media_expectations));
zhihuangf8164932017-05-19 13:09:47 -07002900
2901 rtc::scoped_refptr<const webrtc::RTCStatsReport> report =
2902 callee()->NewGetStats();
2903 ASSERT_NE(nullptr, report);
2904
2905 auto media_stats = report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
2906 auto audio_index = FindFirstMediaStatsIndexByKind("audio", media_stats);
2907 ASSERT_GE(audio_index, 0);
2908 EXPECT_TRUE(media_stats[audio_index]->audio_level.is_defined());
deadbeef1dcb1642017-03-29 21:08:16 -07002909}
2910
deadbeef4e2deab2017-09-20 13:56:21 -07002911// Helper for test below.
2912void ModifySsrcs(cricket::SessionDescription* desc) {
2913 for (ContentInfo& content : desc->contents()) {
Steve Antondf527fd2018-04-27 15:52:03 -07002914 for (StreamParams& stream :
Steve Antonb1c1de12017-12-21 15:14:30 -08002915 content.media_description()->mutable_streams()) {
deadbeef4e2deab2017-09-20 13:56:21 -07002916 for (uint32_t& ssrc : stream.ssrcs) {
2917 ssrc = rtc::CreateRandomId();
2918 }
2919 }
2920 }
2921}
2922
2923// Test that the "RTCMediaSteamTrackStats" object is updated correctly when
2924// SSRCs are unsignaled, and the SSRC of the received (audio) stream changes.
2925// This should result in two "RTCInboundRTPStreamStats", but only one
2926// "RTCMediaStreamTrackStats", whose counters go up continuously rather than
2927// being reset to 0 once the SSRC change occurs.
2928//
2929// Regression test for this bug:
2930// https://bugs.chromium.org/p/webrtc/issues/detail?id=8158
2931//
2932// The bug causes the track stats to only represent one of the two streams:
2933// whichever one has the higher SSRC. So with this bug, there was a 50% chance
2934// that the track stat counters would reset to 0 when the new stream is
2935// received, and a 50% chance that they'll stop updating (while
2936// "concealed_samples" continues increasing, due to silence being generated for
2937// the inactive stream).
Seth Hampson2f0d7022018-02-20 11:54:42 -08002938TEST_P(PeerConnectionIntegrationTest,
Steve Anton83119dd2017-11-10 16:19:52 -08002939 TrackStatsUpdatedCorrectlyWhenUnsignaledSsrcChanges) {
deadbeef4e2deab2017-09-20 13:56:21 -07002940 ASSERT_TRUE(CreatePeerConnectionWrappers());
2941 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002942 caller()->AddAudioTrack();
deadbeef4e2deab2017-09-20 13:56:21 -07002943 // Remove SSRCs and MSIDs from the received offer SDP, simulating an endpoint
2944 // that doesn't signal SSRCs (from the callee's perspective).
2945 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2946 caller()->CreateAndSetAndSignalOffer();
2947 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2948 // Wait for 50 audio frames (500ms of audio) to be received by the callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002949 {
2950 MediaExpectations media_expectations;
2951 media_expectations.CalleeExpectsSomeAudio(50);
2952 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2953 }
deadbeef4e2deab2017-09-20 13:56:21 -07002954 // Some audio frames were received, so we should have nonzero "samples
2955 // received" for the track.
2956 rtc::scoped_refptr<const webrtc::RTCStatsReport> report =
2957 callee()->NewGetStats();
2958 ASSERT_NE(nullptr, report);
2959 auto track_stats = report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
2960 ASSERT_EQ(1U, track_stats.size());
2961 ASSERT_TRUE(track_stats[0]->total_samples_received.is_defined());
2962 ASSERT_GT(*track_stats[0]->total_samples_received, 0U);
2963 // uint64_t prev_samples_received = *track_stats[0]->total_samples_received;
2964
2965 // Create a new offer and munge it to cause the caller to use a new SSRC.
2966 caller()->SetGeneratedSdpMunger(ModifySsrcs);
2967 caller()->CreateAndSetAndSignalOffer();
2968 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2969 // Wait for 25 more audio frames (250ms of audio) to be received, from the new
2970 // SSRC.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002971 {
2972 MediaExpectations media_expectations;
2973 media_expectations.CalleeExpectsSomeAudio(25);
2974 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2975 }
deadbeef4e2deab2017-09-20 13:56:21 -07002976
2977 report = callee()->NewGetStats();
2978 ASSERT_NE(nullptr, report);
2979 track_stats = report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
2980 ASSERT_EQ(1U, track_stats.size());
2981 ASSERT_TRUE(track_stats[0]->total_samples_received.is_defined());
2982 // The "total samples received" stat should only be greater than it was
2983 // before.
2984 // TODO(deadbeef): Uncomment this assertion once the bug is completely fixed.
2985 // Right now, the new SSRC will cause the counters to reset to 0.
2986 // EXPECT_GT(*track_stats[0]->total_samples_received, prev_samples_received);
2987
2988 // Additionally, the percentage of concealed samples (samples generated to
Steve Anton83119dd2017-11-10 16:19:52 -08002989 // conceal packet loss) should be less than 50%. If it's greater, that's a
deadbeef4e2deab2017-09-20 13:56:21 -07002990 // good sign that we're seeing stats from the old stream that's no longer
2991 // receiving packets, and is generating concealed samples of silence.
Steve Anton83119dd2017-11-10 16:19:52 -08002992 constexpr double kAcceptableConcealedSamplesPercentage = 0.50;
deadbeef4e2deab2017-09-20 13:56:21 -07002993 ASSERT_TRUE(track_stats[0]->concealed_samples.is_defined());
2994 EXPECT_LT(*track_stats[0]->concealed_samples,
2995 *track_stats[0]->total_samples_received *
2996 kAcceptableConcealedSamplesPercentage);
2997
2998 // Also ensure that we have two "RTCInboundRTPStreamStats" as expected, as a
2999 // sanity check that the SSRC really changed.
3000 // TODO(deadbeef): This isn't working right now, because we're not returning
3001 // *any* stats for the inactive stream. Uncomment when the bug is completely
3002 // fixed.
3003 // auto inbound_stream_stats =
3004 // report->GetStatsOfType<webrtc::RTCInboundRTPStreamStats>();
3005 // ASSERT_EQ(2U, inbound_stream_stats.size());
3006}
3007
deadbeef1dcb1642017-03-29 21:08:16 -07003008// Test that DTLS 1.0 is used if both sides only support DTLS 1.0.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003009TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithDtls10) {
deadbeef1dcb1642017-03-29 21:08:16 -07003010 PeerConnectionFactory::Options dtls_10_options;
3011 dtls_10_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3012 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(dtls_10_options,
3013 dtls_10_options));
3014 ConnectFakeSignaling();
3015 // Do normal offer/answer and wait for some frames to be received in each
3016 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003017 caller()->AddAudioVideoTracks();
3018 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003019 caller()->CreateAndSetAndSignalOffer();
3020 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003021 MediaExpectations media_expectations;
3022 media_expectations.ExpectBidirectionalAudioAndVideo();
3023 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003024}
3025
3026// Test getting cipher stats and UMA metrics when DTLS 1.0 is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003027TEST_P(PeerConnectionIntegrationTest, Dtls10CipherStatsAndUmaMetrics) {
deadbeef1dcb1642017-03-29 21:08:16 -07003028 PeerConnectionFactory::Options dtls_10_options;
3029 dtls_10_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3030 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(dtls_10_options,
3031 dtls_10_options));
3032 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08003033 caller()->AddAudioVideoTracks();
3034 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003035 caller()->CreateAndSetAndSignalOffer();
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003036 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07003037 EXPECT_TRUE_WAIT(rtc::SSLStreamAdapter::IsAcceptableCipher(
deadbeefd8ad7882017-04-18 16:01:17 -07003038 caller()->OldGetStats()->DtlsCipher(), rtc::KT_DEFAULT),
deadbeef1dcb1642017-03-29 21:08:16 -07003039 kDefaultTimeout);
3040 EXPECT_EQ_WAIT(rtc::SrtpCryptoSuiteToName(kDefaultSrtpCryptoSuite),
deadbeefd8ad7882017-04-18 16:01:17 -07003041 caller()->OldGetStats()->SrtpCipher(), kDefaultTimeout);
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003042 // TODO(bugs.webrtc.org/9456): Fix it.
Ying Wangef3998f2019-12-09 13:06:53 +01003043 EXPECT_METRIC_EQ(1, webrtc::metrics::NumEvents(
3044 "WebRTC.PeerConnection.SrtpCryptoSuite.Audio",
3045 kDefaultSrtpCryptoSuite));
deadbeef1dcb1642017-03-29 21:08:16 -07003046}
3047
3048// Test getting cipher stats and UMA metrics when DTLS 1.2 is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003049TEST_P(PeerConnectionIntegrationTest, Dtls12CipherStatsAndUmaMetrics) {
deadbeef1dcb1642017-03-29 21:08:16 -07003050 PeerConnectionFactory::Options dtls_12_options;
3051 dtls_12_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
3052 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(dtls_12_options,
3053 dtls_12_options));
3054 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08003055 caller()->AddAudioVideoTracks();
3056 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003057 caller()->CreateAndSetAndSignalOffer();
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003058 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07003059 EXPECT_TRUE_WAIT(rtc::SSLStreamAdapter::IsAcceptableCipher(
deadbeefd8ad7882017-04-18 16:01:17 -07003060 caller()->OldGetStats()->DtlsCipher(), rtc::KT_DEFAULT),
deadbeef1dcb1642017-03-29 21:08:16 -07003061 kDefaultTimeout);
3062 EXPECT_EQ_WAIT(rtc::SrtpCryptoSuiteToName(kDefaultSrtpCryptoSuite),
deadbeefd8ad7882017-04-18 16:01:17 -07003063 caller()->OldGetStats()->SrtpCipher(), kDefaultTimeout);
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003064 // TODO(bugs.webrtc.org/9456): Fix it.
Ying Wangef3998f2019-12-09 13:06:53 +01003065 EXPECT_METRIC_EQ(1, webrtc::metrics::NumEvents(
3066 "WebRTC.PeerConnection.SrtpCryptoSuite.Audio",
3067 kDefaultSrtpCryptoSuite));
deadbeef1dcb1642017-03-29 21:08:16 -07003068}
3069
3070// Test that DTLS 1.0 can be used if the caller supports DTLS 1.2 and the
3071// callee only supports 1.0.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003072TEST_P(PeerConnectionIntegrationTest, CallerDtls12ToCalleeDtls10) {
deadbeef1dcb1642017-03-29 21:08:16 -07003073 PeerConnectionFactory::Options caller_options;
3074 caller_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
3075 PeerConnectionFactory::Options callee_options;
3076 callee_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3077 ASSERT_TRUE(
3078 CreatePeerConnectionWrappersWithOptions(caller_options, callee_options));
3079 ConnectFakeSignaling();
3080 // Do normal offer/answer and wait for some frames to be received in each
3081 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003082 caller()->AddAudioVideoTracks();
3083 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003084 caller()->CreateAndSetAndSignalOffer();
3085 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003086 MediaExpectations media_expectations;
3087 media_expectations.ExpectBidirectionalAudioAndVideo();
3088 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003089}
3090
3091// Test that DTLS 1.0 can be used if the caller only supports DTLS 1.0 and the
3092// callee supports 1.2.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003093TEST_P(PeerConnectionIntegrationTest, CallerDtls10ToCalleeDtls12) {
deadbeef1dcb1642017-03-29 21:08:16 -07003094 PeerConnectionFactory::Options caller_options;
3095 caller_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3096 PeerConnectionFactory::Options callee_options;
3097 callee_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
3098 ASSERT_TRUE(
3099 CreatePeerConnectionWrappersWithOptions(caller_options, callee_options));
3100 ConnectFakeSignaling();
3101 // Do normal offer/answer and wait for some frames to be received in each
3102 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003103 caller()->AddAudioVideoTracks();
3104 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003105 caller()->CreateAndSetAndSignalOffer();
3106 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003107 MediaExpectations media_expectations;
3108 media_expectations.ExpectBidirectionalAudioAndVideo();
3109 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003110}
3111
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003112// The three tests below verify that "enable_aes128_sha1_32_crypto_cipher"
3113// works as expected; the cipher should only be used if enabled by both sides.
3114TEST_P(PeerConnectionIntegrationTest,
3115 Aes128Sha1_32_CipherNotUsedWhenOnlyCallerSupported) {
3116 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003117 caller_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003118 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003119 callee_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher =
3120 false;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003121 int expected_cipher_suite = rtc::SRTP_AES128_CM_SHA1_80;
3122 TestNegotiatedCipherSuite(caller_options, callee_options,
3123 expected_cipher_suite);
3124}
3125
3126TEST_P(PeerConnectionIntegrationTest,
3127 Aes128Sha1_32_CipherNotUsedWhenOnlyCalleeSupported) {
3128 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003129 caller_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher =
3130 false;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003131 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003132 callee_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003133 int expected_cipher_suite = rtc::SRTP_AES128_CM_SHA1_80;
3134 TestNegotiatedCipherSuite(caller_options, callee_options,
3135 expected_cipher_suite);
3136}
3137
3138TEST_P(PeerConnectionIntegrationTest, Aes128Sha1_32_CipherUsedWhenSupported) {
3139 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003140 caller_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003141 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003142 callee_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003143 int expected_cipher_suite = rtc::SRTP_AES128_CM_SHA1_32;
3144 TestNegotiatedCipherSuite(caller_options, callee_options,
3145 expected_cipher_suite);
3146}
3147
deadbeef1dcb1642017-03-29 21:08:16 -07003148// Test that a non-GCM cipher is used if both sides only support non-GCM.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003149TEST_P(PeerConnectionIntegrationTest, NonGcmCipherUsedWhenGcmNotSupported) {
deadbeef1dcb1642017-03-29 21:08:16 -07003150 bool local_gcm_enabled = false;
3151 bool remote_gcm_enabled = false;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003152 bool aes_ctr_enabled = true;
deadbeef1dcb1642017-03-29 21:08:16 -07003153 int expected_cipher_suite = kDefaultSrtpCryptoSuite;
3154 TestGcmNegotiationUsesCipherSuite(local_gcm_enabled, remote_gcm_enabled,
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003155 aes_ctr_enabled, expected_cipher_suite);
deadbeef1dcb1642017-03-29 21:08:16 -07003156}
3157
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003158// Test that a GCM cipher is used if both ends support it and non-GCM is
3159// disabled.
3160TEST_P(PeerConnectionIntegrationTest, GcmCipherUsedWhenOnlyGcmSupported) {
deadbeef1dcb1642017-03-29 21:08:16 -07003161 bool local_gcm_enabled = true;
3162 bool remote_gcm_enabled = true;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003163 bool aes_ctr_enabled = false;
deadbeef1dcb1642017-03-29 21:08:16 -07003164 int expected_cipher_suite = kDefaultSrtpCryptoSuiteGcm;
3165 TestGcmNegotiationUsesCipherSuite(local_gcm_enabled, remote_gcm_enabled,
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003166 aes_ctr_enabled, expected_cipher_suite);
deadbeef1dcb1642017-03-29 21:08:16 -07003167}
3168
deadbeef7914b8c2017-04-21 03:23:33 -07003169// Verify that media can be transmitted end-to-end when GCM crypto suites are
3170// enabled. Note that the above tests, such as GcmCipherUsedWhenGcmSupported,
3171// only verify that a GCM cipher is negotiated, and not necessarily that SRTP
3172// works with it.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003173TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithGcmCipher) {
deadbeef7914b8c2017-04-21 03:23:33 -07003174 PeerConnectionFactory::Options gcm_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003175 gcm_options.crypto_options.srtp.enable_gcm_crypto_suites = true;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003176 gcm_options.crypto_options.srtp.enable_aes128_sha1_80_crypto_cipher = false;
deadbeef7914b8c2017-04-21 03:23:33 -07003177 ASSERT_TRUE(
3178 CreatePeerConnectionWrappersWithOptions(gcm_options, gcm_options));
3179 ConnectFakeSignaling();
3180 // Do normal offer/answer and wait for some frames to be received in each
3181 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003182 caller()->AddAudioVideoTracks();
3183 callee()->AddAudioVideoTracks();
deadbeef7914b8c2017-04-21 03:23:33 -07003184 caller()->CreateAndSetAndSignalOffer();
3185 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003186 MediaExpectations media_expectations;
3187 media_expectations.ExpectBidirectionalAudioAndVideo();
3188 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef7914b8c2017-04-21 03:23:33 -07003189}
3190
deadbeef1dcb1642017-03-29 21:08:16 -07003191// This test sets up a call between two parties with audio, video and an RTP
3192// data channel.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003193TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithRtpDataChannel) {
Niels Möllerf06f9232018-08-07 12:32:18 +02003194 PeerConnectionInterface::RTCConfiguration rtc_config;
3195 rtc_config.enable_rtp_data_channel = true;
3196 rtc_config.enable_dtls_srtp = false;
3197 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003198 ConnectFakeSignaling();
3199 // Expect that data channel created on caller side will show up for callee as
3200 // well.
3201 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003202 caller()->AddAudioVideoTracks();
3203 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003204 caller()->CreateAndSetAndSignalOffer();
3205 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3206 // Ensure the existence of the RTP data channel didn't impede audio/video.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003207 MediaExpectations media_expectations;
3208 media_expectations.ExpectBidirectionalAudioAndVideo();
3209 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003210 ASSERT_NE(nullptr, caller()->data_channel());
3211 ASSERT_NE(nullptr, callee()->data_channel());
3212 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3213 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3214
3215 // Ensure data can be sent in both directions.
3216 std::string data = "hello world";
3217 SendRtpDataWithRetries(caller()->data_channel(), data, 5);
3218 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3219 kDefaultTimeout);
3220 SendRtpDataWithRetries(callee()->data_channel(), data, 5);
3221 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3222 kDefaultTimeout);
3223}
3224
3225// Ensure that an RTP data channel is signaled as closed for the caller when
3226// the callee rejects it in a subsequent offer.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003227TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07003228 RtpDataChannelSignaledClosedInCalleeOffer) {
3229 // Same procedure as above test.
Niels Möllerf06f9232018-08-07 12:32:18 +02003230 PeerConnectionInterface::RTCConfiguration rtc_config;
3231 rtc_config.enable_rtp_data_channel = true;
3232 rtc_config.enable_dtls_srtp = false;
3233 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003234 ConnectFakeSignaling();
3235 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003236 caller()->AddAudioVideoTracks();
3237 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003238 caller()->CreateAndSetAndSignalOffer();
3239 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3240 ASSERT_NE(nullptr, caller()->data_channel());
3241 ASSERT_NE(nullptr, callee()->data_channel());
3242 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3243 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3244
3245 // Close the data channel on the callee, and do an updated offer/answer.
3246 callee()->data_channel()->Close();
3247 callee()->CreateAndSetAndSignalOffer();
3248 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3249 EXPECT_FALSE(caller()->data_observer()->IsOpen());
3250 EXPECT_FALSE(callee()->data_observer()->IsOpen());
3251}
3252
3253// Tests that data is buffered in an RTP data channel until an observer is
3254// registered for it.
3255//
3256// NOTE: RTP data channels can receive data before the underlying
3257// transport has detected that a channel is writable and thus data can be
3258// received before the data channel state changes to open. That is hard to test
3259// but the same buffering is expected to be used in that case.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003260TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07003261 DataBufferedUntilRtpDataChannelObserverRegistered) {
3262 // Use fake clock and simulated network delay so that we predictably can wait
3263 // until an SCTP message has been delivered without "sleep()"ing.
3264 rtc::ScopedFakeClock fake_clock;
3265 // Some things use a time of "0" as a special value, so we need to start out
3266 // the fake clock at a nonzero time.
3267 // TODO(deadbeef): Fix this.
Sebastian Jansson5f83cf02018-05-08 14:52:22 +02003268 fake_clock.AdvanceTime(webrtc::TimeDelta::seconds(1));
deadbeef1dcb1642017-03-29 21:08:16 -07003269 virtual_socket_server()->set_delay_mean(5); // 5 ms per hop.
3270 virtual_socket_server()->UpdateDelayDistribution();
3271
Niels Möllerf06f9232018-08-07 12:32:18 +02003272 PeerConnectionInterface::RTCConfiguration rtc_config;
3273 rtc_config.enable_rtp_data_channel = true;
3274 rtc_config.enable_dtls_srtp = false;
3275 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003276 ConnectFakeSignaling();
3277 caller()->CreateDataChannel();
3278 caller()->CreateAndSetAndSignalOffer();
3279 ASSERT_TRUE(caller()->data_channel() != nullptr);
3280 ASSERT_TRUE_SIMULATED_WAIT(callee()->data_channel() != nullptr,
3281 kDefaultTimeout, fake_clock);
3282 ASSERT_TRUE_SIMULATED_WAIT(caller()->data_observer()->IsOpen(),
3283 kDefaultTimeout, fake_clock);
3284 ASSERT_EQ_SIMULATED_WAIT(DataChannelInterface::kOpen,
3285 callee()->data_channel()->state(), kDefaultTimeout,
3286 fake_clock);
3287
3288 // Unregister the observer which is normally automatically registered.
3289 callee()->data_channel()->UnregisterObserver();
3290 // Send data and advance fake clock until it should have been received.
3291 std::string data = "hello world";
3292 caller()->data_channel()->Send(DataBuffer(data));
3293 SIMULATED_WAIT(false, 50, fake_clock);
3294
3295 // Attach data channel and expect data to be received immediately. Note that
3296 // EXPECT_EQ_WAIT is used, such that the simulated clock is not advanced any
3297 // further, but data can be received even if the callback is asynchronous.
3298 MockDataChannelObserver new_observer(callee()->data_channel());
3299 EXPECT_EQ_SIMULATED_WAIT(data, new_observer.last_message(), kDefaultTimeout,
3300 fake_clock);
Seth Hampson1d4a76d2018-06-19 14:31:41 -07003301 // Closing the PeerConnections destroys the ports before the ScopedFakeClock.
3302 // If this is not done a DCHECK can be hit in ports.cc, because a large
3303 // negative number is calculated for the rtt due to the global clock changing.
Steve Antond91969e2019-05-30 12:27:03 -07003304 ClosePeerConnections();
deadbeef1dcb1642017-03-29 21:08:16 -07003305}
3306
3307// This test sets up a call between two parties with audio, video and but only
3308// the caller client supports RTP data channels.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003309TEST_P(PeerConnectionIntegrationTest, RtpDataChannelsRejectedByCallee) {
Niels Möllerf06f9232018-08-07 12:32:18 +02003310 PeerConnectionInterface::RTCConfiguration rtc_config_1;
3311 rtc_config_1.enable_rtp_data_channel = true;
deadbeef1dcb1642017-03-29 21:08:16 -07003312 // Must disable DTLS to make negotiation succeed.
Niels Möllerf06f9232018-08-07 12:32:18 +02003313 rtc_config_1.enable_dtls_srtp = false;
3314 PeerConnectionInterface::RTCConfiguration rtc_config_2;
3315 rtc_config_2.enable_dtls_srtp = false;
3316 rtc_config_2.enable_dtls_srtp = false;
3317 ASSERT_TRUE(
3318 CreatePeerConnectionWrappersWithConfig(rtc_config_1, rtc_config_2));
deadbeef1dcb1642017-03-29 21:08:16 -07003319 ConnectFakeSignaling();
3320 caller()->CreateDataChannel();
Harald Alvestrandf3736ed2019-04-08 13:09:30 +02003321 ASSERT_TRUE(caller()->data_channel() != nullptr);
Steve Anton15324772018-01-16 10:26:49 -08003322 caller()->AddAudioVideoTracks();
3323 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003324 caller()->CreateAndSetAndSignalOffer();
3325 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3326 // The caller should still have a data channel, but it should be closed, and
3327 // one should ever have been created for the callee.
3328 EXPECT_TRUE(caller()->data_channel() != nullptr);
3329 EXPECT_FALSE(caller()->data_observer()->IsOpen());
3330 EXPECT_EQ(nullptr, callee()->data_channel());
3331}
3332
3333// This test sets up a call between two parties with audio, and video. When
3334// audio and video is setup and flowing, an RTP data channel is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003335TEST_P(PeerConnectionIntegrationTest, AddRtpDataChannelInSubsequentOffer) {
Niels Möllerf06f9232018-08-07 12:32:18 +02003336 PeerConnectionInterface::RTCConfiguration rtc_config;
3337 rtc_config.enable_rtp_data_channel = true;
3338 rtc_config.enable_dtls_srtp = false;
3339 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003340 ConnectFakeSignaling();
3341 // Do initial offer/answer with audio/video.
Steve Anton15324772018-01-16 10:26:49 -08003342 caller()->AddAudioVideoTracks();
3343 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003344 caller()->CreateAndSetAndSignalOffer();
3345 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3346 // Create data channel and do new offer and answer.
3347 caller()->CreateDataChannel();
3348 caller()->CreateAndSetAndSignalOffer();
3349 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3350 ASSERT_NE(nullptr, caller()->data_channel());
3351 ASSERT_NE(nullptr, callee()->data_channel());
3352 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3353 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3354 // Ensure data can be sent in both directions.
3355 std::string data = "hello world";
3356 SendRtpDataWithRetries(caller()->data_channel(), data, 5);
3357 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3358 kDefaultTimeout);
3359 SendRtpDataWithRetries(callee()->data_channel(), data, 5);
3360 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3361 kDefaultTimeout);
3362}
3363
3364#ifdef HAVE_SCTP
3365
3366// This test sets up a call between two parties with audio, video and an SCTP
3367// data channel.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003368TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithSctpDataChannel) {
deadbeef1dcb1642017-03-29 21:08:16 -07003369 ASSERT_TRUE(CreatePeerConnectionWrappers());
3370 ConnectFakeSignaling();
3371 // Expect that data channel created on caller side will show up for callee as
3372 // well.
3373 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003374 caller()->AddAudioVideoTracks();
3375 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003376 caller()->CreateAndSetAndSignalOffer();
3377 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3378 // Ensure the existence of the SCTP data channel didn't impede audio/video.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003379 MediaExpectations media_expectations;
3380 media_expectations.ExpectBidirectionalAudioAndVideo();
3381 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003382 // Caller data channel should already exist (it created one). Callee data
3383 // channel may not exist yet, since negotiation happens in-band, not in SDP.
3384 ASSERT_NE(nullptr, caller()->data_channel());
3385 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3386 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3387 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3388
3389 // Ensure data can be sent in both directions.
3390 std::string data = "hello world";
3391 caller()->data_channel()->Send(DataBuffer(data));
3392 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3393 kDefaultTimeout);
3394 callee()->data_channel()->Send(DataBuffer(data));
3395 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3396 kDefaultTimeout);
3397}
3398
3399// Ensure that when the callee closes an SCTP data channel, the closing
3400// procedure results in the data channel being closed for the caller as well.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003401TEST_P(PeerConnectionIntegrationTest, CalleeClosesSctpDataChannel) {
deadbeef1dcb1642017-03-29 21:08:16 -07003402 // Same procedure as above test.
3403 ASSERT_TRUE(CreatePeerConnectionWrappers());
3404 ConnectFakeSignaling();
3405 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003406 caller()->AddAudioVideoTracks();
3407 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003408 caller()->CreateAndSetAndSignalOffer();
3409 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3410 ASSERT_NE(nullptr, caller()->data_channel());
3411 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3412 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3413 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3414
3415 // Close the data channel on the callee side, and wait for it to reach the
3416 // "closed" state on both sides.
3417 callee()->data_channel()->Close();
3418 EXPECT_TRUE_WAIT(!caller()->data_observer()->IsOpen(), kDefaultTimeout);
3419 EXPECT_TRUE_WAIT(!callee()->data_observer()->IsOpen(), kDefaultTimeout);
3420}
3421
Seth Hampson2f0d7022018-02-20 11:54:42 -08003422TEST_P(PeerConnectionIntegrationTest, SctpDataChannelConfigSentToOtherSide) {
Steve Antonda6c0952017-10-23 11:41:54 -07003423 ASSERT_TRUE(CreatePeerConnectionWrappers());
3424 ConnectFakeSignaling();
3425 webrtc::DataChannelInit init;
3426 init.id = 53;
3427 init.maxRetransmits = 52;
3428 caller()->CreateDataChannel("data-channel", &init);
Steve Anton15324772018-01-16 10:26:49 -08003429 caller()->AddAudioVideoTracks();
3430 callee()->AddAudioVideoTracks();
Steve Antonda6c0952017-10-23 11:41:54 -07003431 caller()->CreateAndSetAndSignalOffer();
3432 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Steve Anton074dece2017-10-24 13:04:12 -07003433 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3434 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
Harald Alvestrand5c4d2ee2019-04-01 12:58:15 +02003435 // Since "negotiated" is false, the "id" parameter should be ignored.
3436 EXPECT_NE(init.id, callee()->data_channel()->id());
Steve Antonda6c0952017-10-23 11:41:54 -07003437 EXPECT_EQ("data-channel", callee()->data_channel()->label());
3438 EXPECT_EQ(init.maxRetransmits, callee()->data_channel()->maxRetransmits());
3439 EXPECT_FALSE(callee()->data_channel()->negotiated());
3440}
3441
deadbeef1dcb1642017-03-29 21:08:16 -07003442// Test usrsctp's ability to process unordered data stream, where data actually
3443// arrives out of order using simulated delays. Previously there have been some
3444// bugs in this area.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003445TEST_P(PeerConnectionIntegrationTest, StressTestUnorderedSctpDataChannel) {
deadbeef1dcb1642017-03-29 21:08:16 -07003446 // Introduce random network delays.
3447 // Otherwise it's not a true "unordered" test.
3448 virtual_socket_server()->set_delay_mean(20);
3449 virtual_socket_server()->set_delay_stddev(5);
3450 virtual_socket_server()->UpdateDelayDistribution();
3451 // Normal procedure, but with unordered data channel config.
3452 ASSERT_TRUE(CreatePeerConnectionWrappers());
3453 ConnectFakeSignaling();
3454 webrtc::DataChannelInit init;
3455 init.ordered = false;
3456 caller()->CreateDataChannel(&init);
3457 caller()->CreateAndSetAndSignalOffer();
3458 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3459 ASSERT_NE(nullptr, caller()->data_channel());
3460 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3461 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3462 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3463
3464 static constexpr int kNumMessages = 100;
3465 // Deliberately chosen to be larger than the MTU so messages get fragmented.
3466 static constexpr size_t kMaxMessageSize = 4096;
3467 // Create and send random messages.
3468 std::vector<std::string> sent_messages;
3469 for (int i = 0; i < kNumMessages; ++i) {
3470 size_t length =
3471 (rand() % kMaxMessageSize) + 1; // NOLINT (rand_r instead of rand)
3472 std::string message;
3473 ASSERT_TRUE(rtc::CreateRandomString(length, &message));
3474 caller()->data_channel()->Send(DataBuffer(message));
3475 callee()->data_channel()->Send(DataBuffer(message));
3476 sent_messages.push_back(message);
3477 }
3478
3479 // Wait for all messages to be received.
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02003480 EXPECT_EQ_WAIT(rtc::checked_cast<size_t>(kNumMessages),
deadbeef1dcb1642017-03-29 21:08:16 -07003481 caller()->data_observer()->received_message_count(),
3482 kDefaultTimeout);
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02003483 EXPECT_EQ_WAIT(rtc::checked_cast<size_t>(kNumMessages),
deadbeef1dcb1642017-03-29 21:08:16 -07003484 callee()->data_observer()->received_message_count(),
3485 kDefaultTimeout);
3486
3487 // Sort and compare to make sure none of the messages were corrupted.
3488 std::vector<std::string> caller_received_messages =
3489 caller()->data_observer()->messages();
3490 std::vector<std::string> callee_received_messages =
3491 callee()->data_observer()->messages();
Steve Anton64b626b2019-01-28 17:25:26 -08003492 absl::c_sort(sent_messages);
3493 absl::c_sort(caller_received_messages);
3494 absl::c_sort(callee_received_messages);
deadbeef1dcb1642017-03-29 21:08:16 -07003495 EXPECT_EQ(sent_messages, caller_received_messages);
3496 EXPECT_EQ(sent_messages, callee_received_messages);
3497}
3498
3499// This test sets up a call between two parties with audio, and video. When
3500// audio and video are setup and flowing, an SCTP data channel is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003501TEST_P(PeerConnectionIntegrationTest, AddSctpDataChannelInSubsequentOffer) {
deadbeef1dcb1642017-03-29 21:08:16 -07003502 ASSERT_TRUE(CreatePeerConnectionWrappers());
3503 ConnectFakeSignaling();
3504 // Do initial offer/answer with audio/video.
Steve Anton15324772018-01-16 10:26:49 -08003505 caller()->AddAudioVideoTracks();
3506 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003507 caller()->CreateAndSetAndSignalOffer();
3508 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3509 // Create data channel and do new offer and answer.
3510 caller()->CreateDataChannel();
3511 caller()->CreateAndSetAndSignalOffer();
3512 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3513 // Caller data channel should already exist (it created one). Callee data
3514 // channel may not exist yet, since negotiation happens in-band, not in SDP.
3515 ASSERT_NE(nullptr, caller()->data_channel());
3516 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3517 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3518 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3519 // Ensure data can be sent in both directions.
3520 std::string data = "hello world";
3521 caller()->data_channel()->Send(DataBuffer(data));
3522 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3523 kDefaultTimeout);
3524 callee()->data_channel()->Send(DataBuffer(data));
3525 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3526 kDefaultTimeout);
3527}
3528
deadbeef7914b8c2017-04-21 03:23:33 -07003529// Set up a connection initially just using SCTP data channels, later upgrading
3530// to audio/video, ensuring frames are received end-to-end. Effectively the
3531// inverse of the test above.
3532// This was broken in M57; see https://crbug.com/711243
Seth Hampson2f0d7022018-02-20 11:54:42 -08003533TEST_P(PeerConnectionIntegrationTest, SctpDataChannelToAudioVideoUpgrade) {
deadbeef7914b8c2017-04-21 03:23:33 -07003534 ASSERT_TRUE(CreatePeerConnectionWrappers());
3535 ConnectFakeSignaling();
3536 // Do initial offer/answer with just data channel.
3537 caller()->CreateDataChannel();
3538 caller()->CreateAndSetAndSignalOffer();
3539 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3540 // Wait until data can be sent over the data channel.
3541 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3542 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3543 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3544
3545 // Do subsequent offer/answer with two-way audio and video. Audio and video
3546 // should end up bundled on the DTLS/ICE transport already used for data.
Steve Anton15324772018-01-16 10:26:49 -08003547 caller()->AddAudioVideoTracks();
3548 callee()->AddAudioVideoTracks();
deadbeef7914b8c2017-04-21 03:23:33 -07003549 caller()->CreateAndSetAndSignalOffer();
3550 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003551 MediaExpectations media_expectations;
3552 media_expectations.ExpectBidirectionalAudioAndVideo();
3553 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef7914b8c2017-04-21 03:23:33 -07003554}
3555
deadbeef8b7e9ad2017-05-25 09:38:55 -07003556static void MakeSpecCompliantSctpOffer(cricket::SessionDescription* desc) {
Harald Alvestrand5fc28b12019-05-13 13:36:16 +02003557 cricket::SctpDataContentDescription* dcd_offer =
3558 GetFirstSctpDataContentDescription(desc);
Steve Antonb1c1de12017-12-21 15:14:30 -08003559 ASSERT_TRUE(dcd_offer);
deadbeef8b7e9ad2017-05-25 09:38:55 -07003560 dcd_offer->set_use_sctpmap(false);
3561 dcd_offer->set_protocol("UDP/DTLS/SCTP");
3562}
3563
3564// Test that the data channel works when a spec-compliant SCTP m= section is
3565// offered (using "a=sctp-port" instead of "a=sctpmap", and using
3566// "UDP/DTLS/SCTP" as the protocol).
Seth Hampson2f0d7022018-02-20 11:54:42 -08003567TEST_P(PeerConnectionIntegrationTest,
deadbeef8b7e9ad2017-05-25 09:38:55 -07003568 DataChannelWorksWhenSpecCompliantSctpOfferReceived) {
3569 ASSERT_TRUE(CreatePeerConnectionWrappers());
3570 ConnectFakeSignaling();
3571 caller()->CreateDataChannel();
3572 caller()->SetGeneratedSdpMunger(MakeSpecCompliantSctpOffer);
3573 caller()->CreateAndSetAndSignalOffer();
3574 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3575 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3576 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3577 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3578
3579 // Ensure data can be sent in both directions.
3580 std::string data = "hello world";
3581 caller()->data_channel()->Send(DataBuffer(data));
3582 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3583 kDefaultTimeout);
3584 callee()->data_channel()->Send(DataBuffer(data));
3585 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3586 kDefaultTimeout);
3587}
3588
Bjorn A Mellemb689af42019-08-21 10:44:59 -07003589// Tests that the datagram transport to SCTP fallback works correctly when
3590// datagram transport negotiation fails.
3591TEST_P(PeerConnectionIntegrationTest,
3592 DatagramTransportDataChannelFallbackToSctp) {
3593 PeerConnectionInterface::RTCConfiguration rtc_config;
3594 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
3595 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
3596 rtc_config.use_datagram_transport_for_data_channels = true;
3597
3598 // Configure one endpoint to use datagram transport for data channels while
3599 // the other does not.
3600 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3601 rtc_config, RTCConfiguration(),
3602 loopback_media_transports()->first_factory(), nullptr));
3603 ConnectFakeSignaling();
3604
3605 // The caller offers a data channel using either datagram transport or SCTP.
3606 caller()->CreateDataChannel();
3607 caller()->AddAudioVideoTracks();
3608 callee()->AddAudioVideoTracks();
3609 caller()->CreateAndSetAndSignalOffer();
3610 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3611
3612 // Negotiation should fallback to SCTP, allowing the data channel to be
3613 // established.
3614 ASSERT_NE(nullptr, caller()->data_channel());
3615 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3616 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3617 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3618
3619 // Ensure data can be sent in both directions.
3620 std::string data = "hello world";
3621 caller()->data_channel()->Send(DataBuffer(data));
3622 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3623 kDefaultTimeout);
3624 callee()->data_channel()->Send(DataBuffer(data));
3625 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3626 kDefaultTimeout);
3627
3628 // Ensure that failure of the datagram negotiation doesn't impede media flow.
3629 MediaExpectations media_expectations;
3630 media_expectations.ExpectBidirectionalAudioAndVideo();
3631 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3632}
3633
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07003634// Tests that the data channel transport works correctly when datagram transport
3635// negotiation succeeds and does not fall back to SCTP.
3636TEST_P(PeerConnectionIntegrationTest,
3637 DatagramTransportDataChannelDoesNotFallbackToSctp) {
3638 PeerConnectionInterface::RTCConfiguration rtc_config;
3639 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
3640 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
3641 rtc_config.use_datagram_transport_for_data_channels = true;
3642
3643 // Configure one endpoint to use datagram transport for data channels while
3644 // the other does not.
3645 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3646 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
3647 loopback_media_transports()->second_factory()));
3648 ConnectFakeSignaling();
3649
3650 // The caller offers a data channel using either datagram transport or SCTP.
3651 caller()->CreateDataChannel();
3652 caller()->AddAudioVideoTracks();
3653 callee()->AddAudioVideoTracks();
3654 caller()->CreateAndSetAndSignalOffer();
3655 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3656
3657 // Ensure that the data channel transport is ready.
3658 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3659 loopback_media_transports()->FlushAsyncInvokes();
3660
3661 // Negotiation should succeed, allowing the data channel to be established.
3662 ASSERT_NE(nullptr, caller()->data_channel());
3663 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3664 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3665 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3666
3667 // Ensure data can be sent in both directions.
3668 std::string data = "hello world";
3669 caller()->data_channel()->Send(DataBuffer(data));
3670 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3671 kDefaultTimeout);
3672 callee()->data_channel()->Send(DataBuffer(data));
3673 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3674 kDefaultTimeout);
3675
3676 // Ensure that failure of the datagram negotiation doesn't impede media flow.
3677 MediaExpectations media_expectations;
3678 media_expectations.ExpectBidirectionalAudioAndVideo();
3679 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3680}
3681
Bjorn A Mellem8e1343a2019-09-30 15:12:47 -07003682TEST_P(PeerConnectionIntegrationTest,
3683 DatagramTransportDataChannelWithMediaOnCaller) {
3684 // Configure the caller to attempt use of datagram transport for media and
3685 // data channels.
3686 PeerConnectionInterface::RTCConfiguration offerer_config;
3687 offerer_config.rtcp_mux_policy =
3688 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3689 offerer_config.bundle_policy =
3690 PeerConnectionInterface::kBundlePolicyMaxBundle;
3691 offerer_config.use_datagram_transport_for_data_channels = true;
3692 offerer_config.use_datagram_transport = true;
3693
3694 // Configure the callee to only use datagram transport for data channels.
3695 PeerConnectionInterface::RTCConfiguration answerer_config;
3696 answerer_config.rtcp_mux_policy =
3697 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3698 answerer_config.bundle_policy =
3699 PeerConnectionInterface::kBundlePolicyMaxBundle;
3700 answerer_config.use_datagram_transport_for_data_channels = true;
3701
3702 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3703 offerer_config, answerer_config,
3704 loopback_media_transports()->first_factory(),
3705 loopback_media_transports()->second_factory()));
3706 ConnectFakeSignaling();
3707
3708 // Offer both media and data.
3709 caller()->AddAudioVideoTracks();
3710 callee()->AddAudioVideoTracks();
3711 caller()->CreateDataChannel();
3712 caller()->CreateAndSetAndSignalOffer();
3713 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3714
3715 // Ensure that the data channel transport is ready.
3716 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3717 loopback_media_transports()->FlushAsyncInvokes();
3718
3719 ASSERT_NE(nullptr, caller()->data_channel());
3720 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3721 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3722 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3723
3724 // Both endpoints should agree to use datagram transport for data channels.
3725 EXPECT_EQ(nullptr, caller()->pc()->GetSctpTransport());
3726 EXPECT_EQ(nullptr, callee()->pc()->GetSctpTransport());
3727
3728 // Ensure data can be sent in both directions.
3729 std::string data = "hello world";
3730 caller()->data_channel()->Send(DataBuffer(data));
3731 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3732 kDefaultTimeout);
3733 callee()->data_channel()->Send(DataBuffer(data));
3734 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3735 kDefaultTimeout);
3736
3737 // Media flow should not be impacted.
3738 MediaExpectations media_expectations;
3739 media_expectations.ExpectBidirectionalAudioAndVideo();
3740 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3741}
3742
3743TEST_P(PeerConnectionIntegrationTest,
3744 DatagramTransportMediaWithDataChannelOnCaller) {
3745 // Configure the caller to attempt use of datagram transport for media and
3746 // data channels.
3747 PeerConnectionInterface::RTCConfiguration offerer_config;
3748 offerer_config.rtcp_mux_policy =
3749 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3750 offerer_config.bundle_policy =
3751 PeerConnectionInterface::kBundlePolicyMaxBundle;
3752 offerer_config.use_datagram_transport_for_data_channels = true;
3753 offerer_config.use_datagram_transport = true;
3754
3755 // Configure the callee to only use datagram transport for media.
3756 PeerConnectionInterface::RTCConfiguration answerer_config;
3757 answerer_config.rtcp_mux_policy =
3758 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3759 answerer_config.bundle_policy =
3760 PeerConnectionInterface::kBundlePolicyMaxBundle;
3761 answerer_config.use_datagram_transport = true;
3762
3763 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3764 offerer_config, answerer_config,
3765 loopback_media_transports()->first_factory(),
3766 loopback_media_transports()->second_factory()));
3767 ConnectFakeSignaling();
3768
3769 // Offer both media and data.
3770 caller()->AddAudioVideoTracks();
3771 callee()->AddAudioVideoTracks();
3772 caller()->CreateDataChannel();
3773 caller()->CreateAndSetAndSignalOffer();
3774 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3775
3776 // Ensure that the data channel transport is ready.
3777 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3778 loopback_media_transports()->FlushAsyncInvokes();
3779
3780 ASSERT_NE(nullptr, caller()->data_channel());
3781 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3782 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3783 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3784
3785 // Both endpoints should agree to use SCTP for data channels.
3786 EXPECT_NE(nullptr, caller()->pc()->GetSctpTransport());
3787 EXPECT_NE(nullptr, callee()->pc()->GetSctpTransport());
3788
3789 // Ensure data can be sent in both directions.
3790 std::string data = "hello world";
3791 caller()->data_channel()->Send(DataBuffer(data));
3792 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3793 kDefaultTimeout);
3794 callee()->data_channel()->Send(DataBuffer(data));
3795 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3796 kDefaultTimeout);
3797
3798 // Media flow should not be impacted.
3799 MediaExpectations media_expectations;
3800 media_expectations.ExpectBidirectionalAudioAndVideo();
3801 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3802}
3803
3804TEST_P(PeerConnectionIntegrationTest,
3805 DatagramTransportDataChannelWithMediaOnCallee) {
3806 // Configure the caller to attempt use of datagram transport for data
3807 // channels.
3808 PeerConnectionInterface::RTCConfiguration offerer_config;
3809 offerer_config.rtcp_mux_policy =
3810 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3811 offerer_config.bundle_policy =
3812 PeerConnectionInterface::kBundlePolicyMaxBundle;
3813 offerer_config.use_datagram_transport_for_data_channels = true;
3814
3815 // Configure the callee to use datagram transport for data channels and media.
3816 PeerConnectionInterface::RTCConfiguration answerer_config;
3817 answerer_config.rtcp_mux_policy =
3818 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3819 answerer_config.bundle_policy =
3820 PeerConnectionInterface::kBundlePolicyMaxBundle;
3821 answerer_config.use_datagram_transport_for_data_channels = true;
3822 answerer_config.use_datagram_transport = true;
3823
3824 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3825 offerer_config, answerer_config,
3826 loopback_media_transports()->first_factory(),
3827 loopback_media_transports()->second_factory()));
3828 ConnectFakeSignaling();
3829
3830 // Offer both media and data.
3831 caller()->AddAudioVideoTracks();
3832 callee()->AddAudioVideoTracks();
3833 caller()->CreateDataChannel();
3834 caller()->CreateAndSetAndSignalOffer();
3835 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3836
3837 // Ensure that the data channel transport is ready.
3838 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3839 loopback_media_transports()->FlushAsyncInvokes();
3840
3841 ASSERT_NE(nullptr, caller()->data_channel());
3842 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3843 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3844 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3845
3846 // Both endpoints should agree to use datagram transport for data channels.
3847 EXPECT_EQ(nullptr, caller()->pc()->GetSctpTransport());
3848 EXPECT_EQ(nullptr, callee()->pc()->GetSctpTransport());
3849
3850 // Ensure data can be sent in both directions.
3851 std::string data = "hello world";
3852 caller()->data_channel()->Send(DataBuffer(data));
3853 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3854 kDefaultTimeout);
3855 callee()->data_channel()->Send(DataBuffer(data));
3856 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3857 kDefaultTimeout);
3858
3859 // Media flow should not be impacted.
3860 MediaExpectations media_expectations;
3861 media_expectations.ExpectBidirectionalAudioAndVideo();
3862 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3863}
3864
3865TEST_P(PeerConnectionIntegrationTest,
3866 DatagramTransportMediaWithDataChannelOnCallee) {
3867 // Configure the caller to attempt use of datagram transport for media.
3868 PeerConnectionInterface::RTCConfiguration offerer_config;
3869 offerer_config.rtcp_mux_policy =
3870 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3871 offerer_config.bundle_policy =
3872 PeerConnectionInterface::kBundlePolicyMaxBundle;
3873 offerer_config.use_datagram_transport = true;
3874
3875 // Configure the callee to only use datagram transport for media and data
3876 // channels.
3877 PeerConnectionInterface::RTCConfiguration answerer_config;
3878 answerer_config.rtcp_mux_policy =
3879 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3880 answerer_config.bundle_policy =
3881 PeerConnectionInterface::kBundlePolicyMaxBundle;
3882 answerer_config.use_datagram_transport = true;
3883 answerer_config.use_datagram_transport_for_data_channels = true;
3884
3885 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3886 offerer_config, answerer_config,
3887 loopback_media_transports()->first_factory(),
3888 loopback_media_transports()->second_factory()));
3889 ConnectFakeSignaling();
3890
3891 // Offer both media and data.
3892 caller()->AddAudioVideoTracks();
3893 callee()->AddAudioVideoTracks();
3894 caller()->CreateDataChannel();
3895 caller()->CreateAndSetAndSignalOffer();
3896 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3897
3898 // Ensure that the data channel transport is ready.
3899 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3900 loopback_media_transports()->FlushAsyncInvokes();
3901
3902 ASSERT_NE(nullptr, caller()->data_channel());
3903 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3904 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3905 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3906
3907 // Both endpoints should agree to use SCTP for data channels.
3908 EXPECT_NE(nullptr, caller()->pc()->GetSctpTransport());
3909 EXPECT_NE(nullptr, callee()->pc()->GetSctpTransport());
3910
3911 // Ensure data can be sent in both directions.
3912 std::string data = "hello world";
3913 caller()->data_channel()->Send(DataBuffer(data));
3914 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3915 kDefaultTimeout);
3916 callee()->data_channel()->Send(DataBuffer(data));
3917 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3918 kDefaultTimeout);
3919
3920 // Media flow should not be impacted.
3921 MediaExpectations media_expectations;
3922 media_expectations.ExpectBidirectionalAudioAndVideo();
3923 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3924}
3925
3926TEST_P(PeerConnectionIntegrationTest, DatagramTransportDataChannelAndMedia) {
3927 // Configure the caller to use datagram transport for data channels and media.
3928 PeerConnectionInterface::RTCConfiguration offerer_config;
3929 offerer_config.rtcp_mux_policy =
3930 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3931 offerer_config.bundle_policy =
3932 PeerConnectionInterface::kBundlePolicyMaxBundle;
3933 offerer_config.use_datagram_transport_for_data_channels = true;
3934 offerer_config.use_datagram_transport = true;
3935
3936 // Configure the callee to use datagram transport for data channels and media.
3937 PeerConnectionInterface::RTCConfiguration answerer_config;
3938 answerer_config.rtcp_mux_policy =
3939 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3940 answerer_config.bundle_policy =
3941 PeerConnectionInterface::kBundlePolicyMaxBundle;
3942 answerer_config.use_datagram_transport_for_data_channels = true;
3943 answerer_config.use_datagram_transport = true;
3944
3945 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3946 offerer_config, answerer_config,
3947 loopback_media_transports()->first_factory(),
3948 loopback_media_transports()->second_factory()));
3949 ConnectFakeSignaling();
3950
3951 // Offer both media and data.
3952 caller()->AddAudioVideoTracks();
3953 callee()->AddAudioVideoTracks();
3954 caller()->CreateDataChannel();
3955 caller()->CreateAndSetAndSignalOffer();
3956 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3957
3958 // Ensure that the data channel transport is ready.
3959 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3960 loopback_media_transports()->FlushAsyncInvokes();
3961
3962 ASSERT_NE(nullptr, caller()->data_channel());
3963 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3964 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3965 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3966
3967 // Both endpoints should agree to use datagram transport for data channels.
3968 EXPECT_EQ(nullptr, caller()->pc()->GetSctpTransport());
3969 EXPECT_EQ(nullptr, callee()->pc()->GetSctpTransport());
3970
3971 // Ensure data can be sent in both directions.
3972 std::string data = "hello world";
3973 caller()->data_channel()->Send(DataBuffer(data));
3974 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3975 kDefaultTimeout);
3976 callee()->data_channel()->Send(DataBuffer(data));
3977 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3978 kDefaultTimeout);
3979
3980 // Media flow should not be impacted.
3981 MediaExpectations media_expectations;
3982 media_expectations.ExpectBidirectionalAudioAndVideo();
3983 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3984}
3985
Bjorn A Mellem7da4e562019-09-26 11:02:11 -07003986// Tests that data channels use SCTP instead of datagram transport if datagram
3987// transport is configured in receive-only mode on the caller.
3988TEST_P(PeerConnectionIntegrationTest,
3989 DatagramTransportDataChannelReceiveOnlyOnCallerUsesSctp) {
3990 PeerConnectionInterface::RTCConfiguration rtc_config;
3991 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
3992 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
3993 rtc_config.use_datagram_transport_for_data_channels = true;
3994 rtc_config.use_datagram_transport_for_data_channels_receive_only = true;
3995
3996 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3997 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
3998 loopback_media_transports()->second_factory()));
3999 ConnectFakeSignaling();
4000
4001 // The caller should offer a data channel using SCTP.
4002 caller()->CreateDataChannel();
4003 caller()->AddAudioVideoTracks();
4004 callee()->AddAudioVideoTracks();
4005 caller()->CreateAndSetAndSignalOffer();
4006 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4007
4008 ASSERT_NE(nullptr, caller()->data_channel());
4009 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4010 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4011 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4012
4013 // SCTP transports should be present, since they are in use.
4014 EXPECT_NE(caller()->pc()->GetSctpTransport(), nullptr);
4015 EXPECT_NE(callee()->pc()->GetSctpTransport(), nullptr);
4016
4017 // Ensure data can be sent in both directions.
4018 std::string data = "hello world";
4019 caller()->data_channel()->Send(DataBuffer(data));
4020 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4021 kDefaultTimeout);
4022 callee()->data_channel()->Send(DataBuffer(data));
4023 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4024 kDefaultTimeout);
4025}
4026
deadbeef1dcb1642017-03-29 21:08:16 -07004027#endif // HAVE_SCTP
4028
Bjorn A Mellem7da4e562019-09-26 11:02:11 -07004029// Tests that a callee configured for receive-only use of datagram transport
4030// data channels accepts them on incoming calls.
4031TEST_P(PeerConnectionIntegrationTest,
4032 DatagramTransportDataChannelReceiveOnlyOnCallee) {
4033 PeerConnectionInterface::RTCConfiguration offerer_config;
4034 offerer_config.rtcp_mux_policy =
4035 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4036 offerer_config.bundle_policy =
4037 PeerConnectionInterface::kBundlePolicyMaxBundle;
4038 offerer_config.use_datagram_transport_for_data_channels = true;
4039
4040 PeerConnectionInterface::RTCConfiguration answerer_config;
4041 answerer_config.rtcp_mux_policy =
4042 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4043 answerer_config.bundle_policy =
4044 PeerConnectionInterface::kBundlePolicyMaxBundle;
4045 answerer_config.use_datagram_transport_for_data_channels = true;
4046 answerer_config.use_datagram_transport_for_data_channels_receive_only = true;
4047
4048 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4049 offerer_config, answerer_config,
4050 loopback_media_transports()->first_factory(),
4051 loopback_media_transports()->second_factory()));
4052 ConnectFakeSignaling();
4053
4054 caller()->CreateDataChannel();
4055 caller()->CreateAndSetAndSignalOffer();
4056 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4057
4058 // Ensure that the data channel transport is ready.
4059 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4060 loopback_media_transports()->FlushAsyncInvokes();
4061
4062 ASSERT_NE(nullptr, caller()->data_channel());
4063 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4064 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4065 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4066
4067 // SCTP transports should not be present, since datagram transport is used.
4068 EXPECT_EQ(caller()->pc()->GetSctpTransport(), nullptr);
4069 EXPECT_EQ(callee()->pc()->GetSctpTransport(), nullptr);
4070
4071 // Ensure data can be sent in both directions.
4072 std::string data = "hello world";
4073 caller()->data_channel()->Send(DataBuffer(data));
4074 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4075 kDefaultTimeout);
4076 callee()->data_channel()->Send(DataBuffer(data));
4077 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4078 kDefaultTimeout);
4079}
4080
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004081// This test sets up a call between two parties with a datagram transport data
4082// channel.
4083TEST_P(PeerConnectionIntegrationTest, DatagramTransportDataChannelEndToEnd) {
4084 PeerConnectionInterface::RTCConfiguration rtc_config;
4085 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4086 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4087 rtc_config.use_datagram_transport_for_data_channels = true;
4088 rtc_config.enable_dtls_srtp = false;
4089 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4090 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4091 loopback_media_transports()->second_factory()));
4092 ConnectFakeSignaling();
4093
4094 // Expect that data channel created on caller side will show up for callee as
4095 // well.
4096 caller()->CreateDataChannel();
4097 caller()->CreateAndSetAndSignalOffer();
4098 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4099
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07004100 // Ensure that the data channel transport is ready.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004101 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4102 loopback_media_transports()->FlushAsyncInvokes();
4103
4104 // Caller data channel should already exist (it created one). Callee data
4105 // channel may not exist yet, since negotiation happens in-band, not in SDP.
4106 ASSERT_NE(nullptr, caller()->data_channel());
4107 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4108 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4109 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4110
4111 // Ensure data can be sent in both directions.
4112 std::string data = "hello world";
4113 caller()->data_channel()->Send(DataBuffer(data));
4114 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4115 kDefaultTimeout);
4116 callee()->data_channel()->Send(DataBuffer(data));
4117 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4118 kDefaultTimeout);
4119}
4120
Bjorn A Mellembc3eebc2019-09-23 14:53:54 -07004121// Tests that 'zero-rtt' data channel transports (which are ready-to-send as
4122// soon as they're created) work correctly.
4123TEST_P(PeerConnectionIntegrationTest, DatagramTransportDataChannelZeroRtt) {
4124 PeerConnectionInterface::RTCConfiguration rtc_config;
4125 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4126 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4127 rtc_config.use_datagram_transport_for_data_channels = true;
4128 rtc_config.enable_dtls_srtp = false; // SDES is required for media transport.
4129 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4130 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4131 loopback_media_transports()->second_factory()));
4132 ConnectFakeSignaling();
4133
4134 // Ensure that the callee's media transport is ready-to-send immediately.
4135 // Note that only the callee can become writable in zero RTTs. The caller
4136 // must wait for the callee's answer.
4137 loopback_media_transports()->SetSecondStateAfterConnect(
4138 webrtc::MediaTransportState::kWritable);
4139 loopback_media_transports()->FlushAsyncInvokes();
4140
4141 // Expect that data channel created on caller side will show up for callee as
4142 // well.
4143 caller()->CreateDataChannel();
4144 caller()->CreateAndSetAndSignalOffer();
4145 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4146
4147 loopback_media_transports()->SetFirstState(
4148 webrtc::MediaTransportState::kWritable);
4149 loopback_media_transports()->FlushAsyncInvokes();
4150
4151 // Caller data channel should already exist (it created one). Callee data
4152 // channel may not exist yet, since negotiation happens in-band, not in SDP.
4153 ASSERT_NE(nullptr, caller()->data_channel());
4154 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4155 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4156 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4157
4158 // Ensure data can be sent in both directions.
4159 std::string data = "hello world";
4160 caller()->data_channel()->Send(DataBuffer(data));
4161 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4162 kDefaultTimeout);
4163 callee()->data_channel()->Send(DataBuffer(data));
4164 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4165 kDefaultTimeout);
4166}
4167
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004168// Ensures that when the callee closes a datagram transport data channel, the
4169// closing procedure results in the data channel being closed for the caller
4170// as well.
4171TEST_P(PeerConnectionIntegrationTest,
4172 DatagramTransportDataChannelCalleeCloses) {
4173 PeerConnectionInterface::RTCConfiguration rtc_config;
4174 rtc_config.use_datagram_transport_for_data_channels = true;
4175 rtc_config.enable_dtls_srtp = false;
4176 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4177 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4178 loopback_media_transports()->second_factory()));
4179 ConnectFakeSignaling();
4180
4181 // Create a data channel on the caller and signal it to the callee.
4182 caller()->CreateDataChannel();
4183 caller()->CreateAndSetAndSignalOffer();
4184 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4185
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07004186 // Ensure that the data channel transport is ready.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004187 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4188 loopback_media_transports()->FlushAsyncInvokes();
4189
4190 // Data channels exist and open on both ends of the connection.
4191 ASSERT_NE(nullptr, caller()->data_channel());
4192 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4193 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4194 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4195
4196 // Close the data channel on the callee side, and wait for it to reach the
4197 // "closed" state on both sides.
4198 callee()->data_channel()->Close();
4199 EXPECT_TRUE_WAIT(!caller()->data_observer()->IsOpen(), kDefaultTimeout);
4200 EXPECT_TRUE_WAIT(!callee()->data_observer()->IsOpen(), kDefaultTimeout);
4201}
4202
4203// Tests that datagram transport data channels can do in-band negotiation.
4204TEST_P(PeerConnectionIntegrationTest,
4205 DatagramTransportDataChannelConfigSentToOtherSide) {
4206 PeerConnectionInterface::RTCConfiguration rtc_config;
4207 rtc_config.use_datagram_transport_for_data_channels = true;
4208 rtc_config.enable_dtls_srtp = false;
4209 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4210 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4211 loopback_media_transports()->second_factory()));
4212 ConnectFakeSignaling();
4213
4214 // Create a data channel with a non-default configuration and signal it to the
4215 // callee.
4216 webrtc::DataChannelInit init;
4217 init.id = 53;
4218 init.maxRetransmits = 52;
4219 caller()->CreateDataChannel("data-channel", &init);
4220 caller()->CreateAndSetAndSignalOffer();
4221 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4222
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07004223 // Ensure that the data channel transport is ready.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004224 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4225 loopback_media_transports()->FlushAsyncInvokes();
4226
4227 // Ensure that the data channel exists on the callee with the correct
4228 // configuration.
4229 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4230 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4231 // Since "negotiate" is false, the "id" parameter is ignored.
4232 EXPECT_NE(init.id, callee()->data_channel()->id());
4233 EXPECT_EQ("data-channel", callee()->data_channel()->label());
4234 EXPECT_EQ(init.maxRetransmits, callee()->data_channel()->maxRetransmits());
4235 EXPECT_FALSE(callee()->data_channel()->negotiated());
4236}
4237
4238TEST_P(PeerConnectionIntegrationTest,
4239 DatagramTransportDataChannelRejectedWithNoFallback) {
4240 PeerConnectionInterface::RTCConfiguration offerer_config;
4241 offerer_config.rtcp_mux_policy =
4242 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4243 offerer_config.bundle_policy =
4244 PeerConnectionInterface::kBundlePolicyMaxBundle;
4245 offerer_config.use_datagram_transport_for_data_channels = true;
4246 // Disabling DTLS precludes a fallback to SCTP.
4247 offerer_config.enable_dtls_srtp = false;
4248
4249 PeerConnectionInterface::RTCConfiguration answerer_config;
4250 answerer_config.rtcp_mux_policy =
4251 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4252 answerer_config.bundle_policy =
4253 PeerConnectionInterface::kBundlePolicyMaxBundle;
4254 // Both endpoints must disable DTLS or SetRemoteDescription will fail.
4255 answerer_config.enable_dtls_srtp = false;
4256
4257 // Configure one endpoint to use datagram transport for data channels while
4258 // the other does not.
4259 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4260 offerer_config, answerer_config,
4261 loopback_media_transports()->first_factory(), nullptr));
4262 ConnectFakeSignaling();
4263
4264 // The caller offers a data channel using either datagram transport or SCTP.
4265 caller()->CreateDataChannel();
4266 caller()->AddAudioVideoTracks();
4267 callee()->AddAudioVideoTracks();
4268 caller()->CreateAndSetAndSignalOffer();
4269 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4270
4271 // Caller data channel should already exist (it created one). Callee data
4272 // channel should not exist, since negotiation happens in-band, not in SDP.
4273 EXPECT_NE(nullptr, caller()->data_channel());
4274 EXPECT_EQ(nullptr, callee()->data_channel());
4275
4276 // The caller's data channel should close when the datagram transport is
4277 // rejected.
4278 EXPECT_FALSE(caller()->data_observer()->IsOpen());
4279
4280 // Media flow should not be impacted by the failed data channel.
4281 MediaExpectations media_expectations;
4282 media_expectations.ExpectBidirectionalAudioAndVideo();
4283 ASSERT_TRUE(ExpectNewFrames(media_expectations));
4284}
4285
deadbeef1dcb1642017-03-29 21:08:16 -07004286// Test that the ICE connection and gathering states eventually reach
4287// "complete".
Seth Hampson2f0d7022018-02-20 11:54:42 -08004288TEST_P(PeerConnectionIntegrationTest, IceStatesReachCompletion) {
deadbeef1dcb1642017-03-29 21:08:16 -07004289 ASSERT_TRUE(CreatePeerConnectionWrappers());
4290 ConnectFakeSignaling();
4291 // Do normal offer/answer.
Steve Anton15324772018-01-16 10:26:49 -08004292 caller()->AddAudioVideoTracks();
4293 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004294 caller()->CreateAndSetAndSignalOffer();
4295 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4296 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceGatheringComplete,
4297 caller()->ice_gathering_state(), kMaxWaitForFramesMs);
4298 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceGatheringComplete,
4299 callee()->ice_gathering_state(), kMaxWaitForFramesMs);
4300 // After the best candidate pair is selected and all candidates are signaled,
4301 // the ICE connection state should reach "complete".
4302 // TODO(deadbeef): Currently, the ICE "controlled" agent (the
4303 // answerer/"callee" by default) only reaches "connected". When this is
4304 // fixed, this test should be updated.
4305 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4306 caller()->ice_connection_state(), kDefaultTimeout);
Alex Loiko9289eda2018-11-23 16:18:59 +00004307 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4308 callee()->ice_connection_state(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07004309}
4310
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004311constexpr int kOnlyLocalPorts = cricket::PORTALLOCATOR_DISABLE_STUN |
4312 cricket::PORTALLOCATOR_DISABLE_RELAY |
4313 cricket::PORTALLOCATOR_DISABLE_TCP;
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004314
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004315// Use a mock resolver to resolve the hostname back to the original IP on both
4316// sides and check that the ICE connection connects.
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004317TEST_P(PeerConnectionIntegrationTest,
4318 IceStatesReachCompletionWithRemoteHostname) {
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004319 auto caller_resolver_factory =
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004320 std::make_unique<NiceMock<webrtc::MockAsyncResolverFactory>>();
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004321 auto callee_resolver_factory =
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004322 std::make_unique<NiceMock<webrtc::MockAsyncResolverFactory>>();
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004323 NiceMock<rtc::MockAsyncResolver> callee_async_resolver;
4324 NiceMock<rtc::MockAsyncResolver> caller_async_resolver;
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004325
4326 // This also verifies that the injected AsyncResolverFactory is used by
4327 // P2PTransportChannel.
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004328 EXPECT_CALL(*caller_resolver_factory, Create())
4329 .WillOnce(Return(&caller_async_resolver));
4330 webrtc::PeerConnectionDependencies caller_deps(nullptr);
4331 caller_deps.async_resolver_factory = std::move(caller_resolver_factory);
4332
4333 EXPECT_CALL(*callee_resolver_factory, Create())
4334 .WillOnce(Return(&callee_async_resolver));
4335 webrtc::PeerConnectionDependencies callee_deps(nullptr);
4336 callee_deps.async_resolver_factory = std::move(callee_resolver_factory);
4337
4338 PeerConnectionInterface::RTCConfiguration config;
4339 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4340 config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4341
4342 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndDeps(
4343 config, std::move(caller_deps), config, std::move(callee_deps)));
4344
4345 caller()->SetRemoteAsyncResolver(&callee_async_resolver);
4346 callee()->SetRemoteAsyncResolver(&caller_async_resolver);
4347
4348 // Enable hostname candidates with mDNS names.
Qingsi Wangecd30542019-05-22 14:34:56 -07004349 caller()->SetMdnsResponder(
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004350 std::make_unique<webrtc::FakeMdnsResponder>(network_thread()));
Qingsi Wangecd30542019-05-22 14:34:56 -07004351 callee()->SetMdnsResponder(
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004352 std::make_unique<webrtc::FakeMdnsResponder>(network_thread()));
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004353
4354 SetPortAllocatorFlags(kOnlyLocalPorts, kOnlyLocalPorts);
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004355
4356 ConnectFakeSignaling();
4357 caller()->AddAudioVideoTracks();
4358 callee()->AddAudioVideoTracks();
4359 caller()->CreateAndSetAndSignalOffer();
4360 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4361 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4362 caller()->ice_connection_state(), kDefaultTimeout);
4363 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4364 callee()->ice_connection_state(), kDefaultTimeout);
Jeroen de Borst833979f2018-12-13 08:25:54 -08004365
Ying Wangef3998f2019-12-09 13:06:53 +01004366 EXPECT_METRIC_EQ(1, webrtc::metrics::NumEvents(
4367 "WebRTC.PeerConnection.CandidatePairType_UDP",
4368 webrtc::kIceCandidatePairHostNameHostName));
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004369}
4370
Steve Antonede9ca52017-10-16 13:04:27 -07004371// Test that firewalling the ICE connection causes the clients to identify the
4372// disconnected state and then removing the firewall causes them to reconnect.
4373class PeerConnectionIntegrationIceStatesTest
Seth Hampson2f0d7022018-02-20 11:54:42 -08004374 : public PeerConnectionIntegrationBaseTest,
4375 public ::testing::WithParamInterface<
4376 std::tuple<SdpSemantics, std::tuple<std::string, uint32_t>>> {
Steve Antonede9ca52017-10-16 13:04:27 -07004377 protected:
Seth Hampson2f0d7022018-02-20 11:54:42 -08004378 PeerConnectionIntegrationIceStatesTest()
4379 : PeerConnectionIntegrationBaseTest(std::get<0>(GetParam())) {
4380 port_allocator_flags_ = std::get<1>(std::get<1>(GetParam()));
Steve Antonede9ca52017-10-16 13:04:27 -07004381 }
4382
4383 void StartStunServer(const SocketAddress& server_address) {
4384 stun_server_.reset(
4385 cricket::TestStunServer::Create(network_thread(), server_address));
4386 }
4387
4388 bool TestIPv6() {
4389 return (port_allocator_flags_ & cricket::PORTALLOCATOR_ENABLE_IPV6);
4390 }
4391
4392 void SetPortAllocatorFlags() {
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004393 PeerConnectionIntegrationBaseTest::SetPortAllocatorFlags(
4394 port_allocator_flags_, port_allocator_flags_);
Steve Antonede9ca52017-10-16 13:04:27 -07004395 }
4396
4397 std::vector<SocketAddress> CallerAddresses() {
4398 std::vector<SocketAddress> addresses;
4399 addresses.push_back(SocketAddress("1.1.1.1", 0));
4400 if (TestIPv6()) {
4401 addresses.push_back(SocketAddress("1111:0:a:b:c:d:e:f", 0));
4402 }
4403 return addresses;
4404 }
4405
4406 std::vector<SocketAddress> CalleeAddresses() {
4407 std::vector<SocketAddress> addresses;
4408 addresses.push_back(SocketAddress("2.2.2.2", 0));
4409 if (TestIPv6()) {
4410 addresses.push_back(SocketAddress("2222:0:a:b:c:d:e:f", 0));
4411 }
4412 return addresses;
4413 }
4414
4415 void SetUpNetworkInterfaces() {
4416 // Remove the default interfaces added by the test infrastructure.
Qingsi Wangecd30542019-05-22 14:34:56 -07004417 caller()->network_manager()->RemoveInterface(kDefaultLocalAddress);
4418 callee()->network_manager()->RemoveInterface(kDefaultLocalAddress);
Steve Antonede9ca52017-10-16 13:04:27 -07004419
4420 // Add network addresses for test.
4421 for (const auto& caller_address : CallerAddresses()) {
Qingsi Wangecd30542019-05-22 14:34:56 -07004422 caller()->network_manager()->AddInterface(caller_address);
Steve Antonede9ca52017-10-16 13:04:27 -07004423 }
4424 for (const auto& callee_address : CalleeAddresses()) {
Qingsi Wangecd30542019-05-22 14:34:56 -07004425 callee()->network_manager()->AddInterface(callee_address);
Steve Antonede9ca52017-10-16 13:04:27 -07004426 }
4427 }
4428
4429 private:
4430 uint32_t port_allocator_flags_;
4431 std::unique_ptr<cricket::TestStunServer> stun_server_;
4432};
4433
4434// Tests that the PeerConnection goes through all the ICE gathering/connection
4435// states over the duration of the call. This includes Disconnected and Failed
4436// states, induced by putting a firewall between the peers and waiting for them
4437// to time out.
Steve Anton83119dd2017-11-10 16:19:52 -08004438TEST_P(PeerConnectionIntegrationIceStatesTest, VerifyIceStates) {
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004439 rtc::ScopedFakeClock fake_clock;
4440 // Some things use a time of "0" as a special value, so we need to start out
4441 // the fake clock at a nonzero time.
4442 fake_clock.AdvanceTime(TimeDelta::seconds(1));
Steve Antonede9ca52017-10-16 13:04:27 -07004443
4444 const SocketAddress kStunServerAddress =
4445 SocketAddress("99.99.99.1", cricket::STUN_SERVER_PORT);
4446 StartStunServer(kStunServerAddress);
4447
4448 PeerConnectionInterface::RTCConfiguration config;
4449 PeerConnectionInterface::IceServer ice_stun_server;
4450 ice_stun_server.urls.push_back(
4451 "stun:" + kStunServerAddress.HostAsURIString() + ":" +
4452 kStunServerAddress.PortAsString());
4453 config.servers.push_back(ice_stun_server);
4454
4455 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
4456 ConnectFakeSignaling();
4457 SetPortAllocatorFlags();
4458 SetUpNetworkInterfaces();
Steve Anton15324772018-01-16 10:26:49 -08004459 caller()->AddAudioVideoTracks();
4460 callee()->AddAudioVideoTracks();
Steve Antonede9ca52017-10-16 13:04:27 -07004461
4462 // Initial state before anything happens.
4463 ASSERT_EQ(PeerConnectionInterface::kIceGatheringNew,
4464 caller()->ice_gathering_state());
4465 ASSERT_EQ(PeerConnectionInterface::kIceConnectionNew,
4466 caller()->ice_connection_state());
Jonas Olsson7a6739e2019-01-15 16:31:55 +01004467 ASSERT_EQ(PeerConnectionInterface::kIceConnectionNew,
4468 caller()->standardized_ice_connection_state());
Steve Antonede9ca52017-10-16 13:04:27 -07004469
4470 // Start the call by creating the offer, setting it as the local description,
4471 // then sending it to the peer who will respond with an answer. This happens
4472 // asynchronously so that we can watch the states as it runs in the
4473 // background.
4474 caller()->CreateAndSetAndSignalOffer();
4475
Jonas Olsson7a6739e2019-01-15 16:31:55 +01004476 ASSERT_EQ(PeerConnectionInterface::kIceConnectionCompleted,
4477 caller()->ice_connection_state());
Jonas Olssonacd8ae72019-02-25 15:26:24 +01004478 ASSERT_EQ(PeerConnectionInterface::kIceConnectionCompleted,
Jonas Olsson7a6739e2019-01-15 16:31:55 +01004479 caller()->standardized_ice_connection_state());
Steve Antonede9ca52017-10-16 13:04:27 -07004480
4481 // Verify that the observer was notified of the intermediate transitions.
4482 EXPECT_THAT(caller()->ice_connection_state_history(),
4483 ElementsAre(PeerConnectionInterface::kIceConnectionChecking,
4484 PeerConnectionInterface::kIceConnectionConnected,
4485 PeerConnectionInterface::kIceConnectionCompleted));
Jonas Olssonacd8ae72019-02-25 15:26:24 +01004486 EXPECT_THAT(caller()->standardized_ice_connection_state_history(),
4487 ElementsAre(PeerConnectionInterface::kIceConnectionChecking,
4488 PeerConnectionInterface::kIceConnectionConnected,
4489 PeerConnectionInterface::kIceConnectionCompleted));
Jonas Olsson635474e2018-10-18 15:58:17 +02004490 EXPECT_THAT(
4491 caller()->peer_connection_state_history(),
4492 ElementsAre(PeerConnectionInterface::PeerConnectionState::kConnecting,
Jonas Olsson635474e2018-10-18 15:58:17 +02004493 PeerConnectionInterface::PeerConnectionState::kConnected));
Steve Antonede9ca52017-10-16 13:04:27 -07004494 EXPECT_THAT(caller()->ice_gathering_state_history(),
4495 ElementsAre(PeerConnectionInterface::kIceGatheringGathering,
4496 PeerConnectionInterface::kIceGatheringComplete));
4497
4498 // Block connections to/from the caller and wait for ICE to become
4499 // disconnected.
4500 for (const auto& caller_address : CallerAddresses()) {
4501 firewall()->AddRule(false, rtc::FP_ANY, rtc::FD_ANY, caller_address);
4502 }
Mirko Bonadei675513b2017-11-09 11:09:25 +01004503 RTC_LOG(LS_INFO) << "Firewall rules applied";
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004504 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionDisconnected,
4505 caller()->ice_connection_state(), kDefaultTimeout,
4506 fake_clock);
4507 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionDisconnected,
4508 caller()->standardized_ice_connection_state(),
4509 kDefaultTimeout, fake_clock);
Steve Antonede9ca52017-10-16 13:04:27 -07004510
4511 // Let ICE re-establish by removing the firewall rules.
4512 firewall()->ClearRules();
Mirko Bonadei675513b2017-11-09 11:09:25 +01004513 RTC_LOG(LS_INFO) << "Firewall rules cleared";
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004514 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
4515 caller()->ice_connection_state(), kDefaultTimeout,
4516 fake_clock);
Jonas Olssonacd8ae72019-02-25 15:26:24 +01004517 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004518 caller()->standardized_ice_connection_state(),
4519 kDefaultTimeout, fake_clock);
Steve Antonede9ca52017-10-16 13:04:27 -07004520
4521 // According to RFC7675, if there is no response within 30 seconds then the
4522 // peer should consider the other side to have rejected the connection. This
Steve Anton83119dd2017-11-10 16:19:52 -08004523 // is signaled by the state transitioning to "failed".
Steve Antonede9ca52017-10-16 13:04:27 -07004524 constexpr int kConsentTimeout = 30000;
4525 for (const auto& caller_address : CallerAddresses()) {
4526 firewall()->AddRule(false, rtc::FP_ANY, rtc::FD_ANY, caller_address);
4527 }
Mirko Bonadei675513b2017-11-09 11:09:25 +01004528 RTC_LOG(LS_INFO) << "Firewall rules applied again";
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004529 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionFailed,
4530 caller()->ice_connection_state(), kConsentTimeout,
4531 fake_clock);
4532 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionFailed,
4533 caller()->standardized_ice_connection_state(),
4534 kConsentTimeout, fake_clock);
4535
4536 // We need to manually close the peerconnections before the fake clock goes
4537 // out of scope, or we trigger a DCHECK in rtp_sender.cc when we briefly
4538 // return to using non-faked time.
4539 delete SetCallerPcWrapperAndReturnCurrent(nullptr);
4540 delete SetCalleePcWrapperAndReturnCurrent(nullptr);
4541}
4542
4543// Tests that if the connection doesn't get set up properly we eventually reach
4544// the "failed" iceConnectionState.
4545TEST_P(PeerConnectionIntegrationIceStatesTest, IceStateSetupFailure) {
4546 rtc::ScopedFakeClock fake_clock;
4547 // Some things use a time of "0" as a special value, so we need to start out
4548 // the fake clock at a nonzero time.
4549 fake_clock.AdvanceTime(TimeDelta::seconds(1));
4550
4551 // Block connections to/from the caller and wait for ICE to become
4552 // disconnected.
4553 for (const auto& caller_address : CallerAddresses()) {
4554 firewall()->AddRule(false, rtc::FP_ANY, rtc::FD_ANY, caller_address);
4555 }
4556
4557 ASSERT_TRUE(CreatePeerConnectionWrappers());
4558 ConnectFakeSignaling();
4559 SetPortAllocatorFlags();
4560 SetUpNetworkInterfaces();
4561 caller()->AddAudioVideoTracks();
4562 caller()->CreateAndSetAndSignalOffer();
4563
4564 // According to RFC7675, if there is no response within 30 seconds then the
4565 // peer should consider the other side to have rejected the connection. This
4566 // is signaled by the state transitioning to "failed".
4567 constexpr int kConsentTimeout = 30000;
4568 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionFailed,
4569 caller()->standardized_ice_connection_state(),
4570 kConsentTimeout, fake_clock);
4571
4572 // We need to manually close the peerconnections before the fake clock goes
4573 // out of scope, or we trigger a DCHECK in rtp_sender.cc when we briefly
4574 // return to using non-faked time.
4575 delete SetCallerPcWrapperAndReturnCurrent(nullptr);
4576 delete SetCalleePcWrapperAndReturnCurrent(nullptr);
Steve Antonede9ca52017-10-16 13:04:27 -07004577}
4578
4579// Tests that the best connection is set to the appropriate IPv4/IPv6 connection
4580// and that the statistics in the metric observers are updated correctly.
4581TEST_P(PeerConnectionIntegrationIceStatesTest, VerifyBestConnection) {
4582 ASSERT_TRUE(CreatePeerConnectionWrappers());
4583 ConnectFakeSignaling();
4584 SetPortAllocatorFlags();
4585 SetUpNetworkInterfaces();
Steve Anton15324772018-01-16 10:26:49 -08004586 caller()->AddAudioVideoTracks();
4587 callee()->AddAudioVideoTracks();
Steve Antonede9ca52017-10-16 13:04:27 -07004588 caller()->CreateAndSetAndSignalOffer();
4589
4590 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4591
Qingsi Wang7fc821d2018-07-12 12:54:53 -07004592 // TODO(bugs.webrtc.org/9456): Fix it.
4593 const int num_best_ipv4 = webrtc::metrics::NumEvents(
4594 "WebRTC.PeerConnection.IPMetrics", webrtc::kBestConnections_IPv4);
4595 const int num_best_ipv6 = webrtc::metrics::NumEvents(
4596 "WebRTC.PeerConnection.IPMetrics", webrtc::kBestConnections_IPv6);
Steve Antonede9ca52017-10-16 13:04:27 -07004597 if (TestIPv6()) {
4598 // When IPv6 is enabled, we should prefer an IPv6 connection over an IPv4
4599 // connection.
Ying Wangef3998f2019-12-09 13:06:53 +01004600 EXPECT_METRIC_EQ(0, num_best_ipv4);
4601 EXPECT_METRIC_EQ(1, num_best_ipv6);
Steve Antonede9ca52017-10-16 13:04:27 -07004602 } else {
Ying Wangef3998f2019-12-09 13:06:53 +01004603 EXPECT_METRIC_EQ(1, num_best_ipv4);
4604 EXPECT_METRIC_EQ(0, num_best_ipv6);
Steve Antonede9ca52017-10-16 13:04:27 -07004605 }
4606
Ying Wangef3998f2019-12-09 13:06:53 +01004607 EXPECT_METRIC_EQ(0, webrtc::metrics::NumEvents(
4608 "WebRTC.PeerConnection.CandidatePairType_UDP",
4609 webrtc::kIceCandidatePairHostHost));
4610 EXPECT_METRIC_EQ(1, webrtc::metrics::NumEvents(
4611 "WebRTC.PeerConnection.CandidatePairType_UDP",
4612 webrtc::kIceCandidatePairHostPublicHostPublic));
Steve Antonede9ca52017-10-16 13:04:27 -07004613}
4614
4615constexpr uint32_t kFlagsIPv4NoStun = cricket::PORTALLOCATOR_DISABLE_TCP |
4616 cricket::PORTALLOCATOR_DISABLE_STUN |
4617 cricket::PORTALLOCATOR_DISABLE_RELAY;
4618constexpr uint32_t kFlagsIPv6NoStun =
4619 cricket::PORTALLOCATOR_DISABLE_TCP | cricket::PORTALLOCATOR_DISABLE_STUN |
4620 cricket::PORTALLOCATOR_ENABLE_IPV6 | cricket::PORTALLOCATOR_DISABLE_RELAY;
4621constexpr uint32_t kFlagsIPv4Stun =
4622 cricket::PORTALLOCATOR_DISABLE_TCP | cricket::PORTALLOCATOR_DISABLE_RELAY;
4623
Mirko Bonadeic84f6612019-01-31 12:20:57 +01004624INSTANTIATE_TEST_SUITE_P(
Seth Hampson2f0d7022018-02-20 11:54:42 -08004625 PeerConnectionIntegrationTest,
4626 PeerConnectionIntegrationIceStatesTest,
4627 Combine(Values(SdpSemantics::kPlanB, SdpSemantics::kUnifiedPlan),
4628 Values(std::make_pair("IPv4 no STUN", kFlagsIPv4NoStun),
4629 std::make_pair("IPv6 no STUN", kFlagsIPv6NoStun),
4630 std::make_pair("IPv4 with STUN", kFlagsIPv4Stun))));
Steve Antonede9ca52017-10-16 13:04:27 -07004631
deadbeef1dcb1642017-03-29 21:08:16 -07004632// This test sets up a call between two parties with audio and video.
4633// During the call, the caller restarts ICE and the test verifies that
4634// new ICE candidates are generated and audio and video still can flow, and the
4635// ICE state reaches completed again.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004636TEST_P(PeerConnectionIntegrationTest, MediaContinuesFlowingAfterIceRestart) {
deadbeef1dcb1642017-03-29 21:08:16 -07004637 ASSERT_TRUE(CreatePeerConnectionWrappers());
4638 ConnectFakeSignaling();
4639 // Do normal offer/answer and wait for ICE to complete.
Steve Anton15324772018-01-16 10:26:49 -08004640 caller()->AddAudioVideoTracks();
4641 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004642 caller()->CreateAndSetAndSignalOffer();
4643 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4644 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4645 caller()->ice_connection_state(), kMaxWaitForFramesMs);
Alex Loiko9289eda2018-11-23 16:18:59 +00004646 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4647 callee()->ice_connection_state(), kMaxWaitForFramesMs);
deadbeef1dcb1642017-03-29 21:08:16 -07004648
4649 // To verify that the ICE restart actually occurs, get
4650 // ufrag/password/candidates before and after restart.
4651 // Create an SDP string of the first audio candidate for both clients.
4652 const webrtc::IceCandidateCollection* audio_candidates_caller =
4653 caller()->pc()->local_description()->candidates(0);
4654 const webrtc::IceCandidateCollection* audio_candidates_callee =
4655 callee()->pc()->local_description()->candidates(0);
4656 ASSERT_GT(audio_candidates_caller->count(), 0u);
4657 ASSERT_GT(audio_candidates_callee->count(), 0u);
4658 std::string caller_candidate_pre_restart;
4659 ASSERT_TRUE(
4660 audio_candidates_caller->at(0)->ToString(&caller_candidate_pre_restart));
4661 std::string callee_candidate_pre_restart;
4662 ASSERT_TRUE(
4663 audio_candidates_callee->at(0)->ToString(&callee_candidate_pre_restart));
4664 const cricket::SessionDescription* desc =
4665 caller()->pc()->local_description()->description();
4666 std::string caller_ufrag_pre_restart =
4667 desc->transport_infos()[0].description.ice_ufrag;
4668 desc = callee()->pc()->local_description()->description();
4669 std::string callee_ufrag_pre_restart =
4670 desc->transport_infos()[0].description.ice_ufrag;
4671
Alex Drake00c7ecf2019-08-06 10:54:47 -07004672 EXPECT_EQ(caller()->ice_candidate_pair_change_history().size(), 1u);
deadbeef1dcb1642017-03-29 21:08:16 -07004673 // Have the caller initiate an ICE restart.
4674 caller()->SetOfferAnswerOptions(IceRestartOfferAnswerOptions());
4675 caller()->CreateAndSetAndSignalOffer();
4676 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4677 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4678 caller()->ice_connection_state(), kMaxWaitForFramesMs);
Alex Loiko9289eda2018-11-23 16:18:59 +00004679 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
deadbeef1dcb1642017-03-29 21:08:16 -07004680 callee()->ice_connection_state(), kMaxWaitForFramesMs);
4681
4682 // Grab the ufrags/candidates again.
4683 audio_candidates_caller = caller()->pc()->local_description()->candidates(0);
4684 audio_candidates_callee = callee()->pc()->local_description()->candidates(0);
4685 ASSERT_GT(audio_candidates_caller->count(), 0u);
4686 ASSERT_GT(audio_candidates_callee->count(), 0u);
4687 std::string caller_candidate_post_restart;
4688 ASSERT_TRUE(
4689 audio_candidates_caller->at(0)->ToString(&caller_candidate_post_restart));
4690 std::string callee_candidate_post_restart;
4691 ASSERT_TRUE(
4692 audio_candidates_callee->at(0)->ToString(&callee_candidate_post_restart));
4693 desc = caller()->pc()->local_description()->description();
4694 std::string caller_ufrag_post_restart =
4695 desc->transport_infos()[0].description.ice_ufrag;
4696 desc = callee()->pc()->local_description()->description();
4697 std::string callee_ufrag_post_restart =
4698 desc->transport_infos()[0].description.ice_ufrag;
4699 // Sanity check that an ICE restart was actually negotiated in SDP.
4700 ASSERT_NE(caller_candidate_pre_restart, caller_candidate_post_restart);
4701 ASSERT_NE(callee_candidate_pre_restart, callee_candidate_post_restart);
4702 ASSERT_NE(caller_ufrag_pre_restart, caller_ufrag_post_restart);
4703 ASSERT_NE(callee_ufrag_pre_restart, callee_ufrag_post_restart);
Alex Drake00c7ecf2019-08-06 10:54:47 -07004704 EXPECT_GT(caller()->ice_candidate_pair_change_history().size(), 1u);
deadbeef1dcb1642017-03-29 21:08:16 -07004705
4706 // Ensure that additional frames are received after the ICE restart.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004707 MediaExpectations media_expectations;
4708 media_expectations.ExpectBidirectionalAudioAndVideo();
4709 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004710}
4711
4712// Verify that audio/video can be received end-to-end when ICE renomination is
4713// enabled.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004714TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithIceRenomination) {
deadbeef1dcb1642017-03-29 21:08:16 -07004715 PeerConnectionInterface::RTCConfiguration config;
4716 config.enable_ice_renomination = true;
4717 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
4718 ConnectFakeSignaling();
4719 // Do normal offer/answer and wait for some frames to be received in each
4720 // direction.
Steve Anton15324772018-01-16 10:26:49 -08004721 caller()->AddAudioVideoTracks();
4722 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004723 caller()->CreateAndSetAndSignalOffer();
4724 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4725 // Sanity check that ICE renomination was actually negotiated.
4726 const cricket::SessionDescription* desc =
4727 caller()->pc()->local_description()->description();
4728 for (const cricket::TransportInfo& info : desc->transport_infos()) {
Steve Anton64b626b2019-01-28 17:25:26 -08004729 ASSERT_THAT(info.description.transport_options, Contains("renomination"));
deadbeef1dcb1642017-03-29 21:08:16 -07004730 }
4731 desc = callee()->pc()->local_description()->description();
4732 for (const cricket::TransportInfo& info : desc->transport_infos()) {
Steve Anton64b626b2019-01-28 17:25:26 -08004733 ASSERT_THAT(info.description.transport_options, Contains("renomination"));
deadbeef1dcb1642017-03-29 21:08:16 -07004734 }
Seth Hampson2f0d7022018-02-20 11:54:42 -08004735 MediaExpectations media_expectations;
4736 media_expectations.ExpectBidirectionalAudioAndVideo();
4737 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004738}
4739
Steve Anton6f25b092017-10-23 09:39:20 -07004740// With a max bundle policy and RTCP muxing, adding a new media description to
4741// the connection should not affect ICE at all because the new media will use
4742// the existing connection.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004743TEST_P(PeerConnectionIntegrationTest,
Steve Anton83119dd2017-11-10 16:19:52 -08004744 AddMediaToConnectedBundleDoesNotRestartIce) {
Steve Anton6f25b092017-10-23 09:39:20 -07004745 PeerConnectionInterface::RTCConfiguration config;
4746 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4747 config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4748 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(
4749 config, PeerConnectionInterface::RTCConfiguration()));
4750 ConnectFakeSignaling();
4751
Steve Anton15324772018-01-16 10:26:49 -08004752 caller()->AddAudioTrack();
Steve Anton6f25b092017-10-23 09:39:20 -07004753 caller()->CreateAndSetAndSignalOffer();
4754 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Steve Antonff52f1b2017-10-26 12:24:50 -07004755 ASSERT_EQ_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
4756 caller()->ice_connection_state(), kDefaultTimeout);
Steve Anton6f25b092017-10-23 09:39:20 -07004757
4758 caller()->clear_ice_connection_state_history();
4759
Steve Anton15324772018-01-16 10:26:49 -08004760 caller()->AddVideoTrack();
Steve Anton6f25b092017-10-23 09:39:20 -07004761 caller()->CreateAndSetAndSignalOffer();
4762 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4763
4764 EXPECT_EQ(0u, caller()->ice_connection_state_history().size());
4765}
4766
deadbeef1dcb1642017-03-29 21:08:16 -07004767// This test sets up a call between two parties with audio and video. It then
4768// renegotiates setting the video m-line to "port 0", then later renegotiates
4769// again, enabling video.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004770TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07004771 VideoFlowsAfterMediaSectionIsRejectedAndRecycled) {
4772 ASSERT_TRUE(CreatePeerConnectionWrappers());
4773 ConnectFakeSignaling();
4774
4775 // Do initial negotiation, only sending media from the caller. Will result in
4776 // video and audio recvonly "m=" sections.
Steve Anton15324772018-01-16 10:26:49 -08004777 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004778 caller()->CreateAndSetAndSignalOffer();
4779 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4780
4781 // Negotiate again, disabling the video "m=" section (the callee will set the
4782 // port to 0 due to offer_to_receive_video = 0).
Seth Hampson2f0d7022018-02-20 11:54:42 -08004783 if (sdp_semantics_ == SdpSemantics::kPlanB) {
4784 PeerConnectionInterface::RTCOfferAnswerOptions options;
4785 options.offer_to_receive_video = 0;
4786 callee()->SetOfferAnswerOptions(options);
4787 } else {
4788 callee()->SetRemoteOfferHandler([this] {
4789 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
4790 });
4791 }
deadbeef1dcb1642017-03-29 21:08:16 -07004792 caller()->CreateAndSetAndSignalOffer();
4793 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4794 // Sanity check that video "m=" section was actually rejected.
4795 const ContentInfo* answer_video_content = cricket::GetFirstVideoContent(
4796 callee()->pc()->local_description()->description());
4797 ASSERT_NE(nullptr, answer_video_content);
4798 ASSERT_TRUE(answer_video_content->rejected);
4799
4800 // Enable video and do negotiation again, making sure video is received
4801 // end-to-end, also adding media stream to callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004802 if (sdp_semantics_ == SdpSemantics::kPlanB) {
4803 PeerConnectionInterface::RTCOfferAnswerOptions options;
4804 options.offer_to_receive_video = 1;
4805 callee()->SetOfferAnswerOptions(options);
4806 } else {
4807 // The caller's transceiver is stopped, so we need to add another track.
4808 auto caller_transceiver =
4809 caller()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO);
4810 EXPECT_TRUE(caller_transceiver->stopped());
4811 caller()->AddVideoTrack();
4812 }
4813 callee()->AddVideoTrack();
4814 callee()->SetRemoteOfferHandler(nullptr);
deadbeef1dcb1642017-03-29 21:08:16 -07004815 caller()->CreateAndSetAndSignalOffer();
4816 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08004817
deadbeef1dcb1642017-03-29 21:08:16 -07004818 // Verify the caller receives frames from the newly added stream, and the
4819 // callee receives additional frames from the re-enabled video m= section.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004820 MediaExpectations media_expectations;
4821 media_expectations.CalleeExpectsSomeAudio();
4822 media_expectations.ExpectBidirectionalVideo();
4823 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004824}
4825
deadbeef1dcb1642017-03-29 21:08:16 -07004826// This tests that if we negotiate after calling CreateSender but before we
4827// have a track, then set a track later, frames from the newly-set track are
4828// received end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004829TEST_F(PeerConnectionIntegrationTestPlanB,
deadbeef1dcb1642017-03-29 21:08:16 -07004830 MediaFlowsAfterEarlyWarmupWithCreateSender) {
4831 ASSERT_TRUE(CreatePeerConnectionWrappers());
4832 ConnectFakeSignaling();
4833 auto caller_audio_sender =
4834 caller()->pc()->CreateSender("audio", "caller_stream");
4835 auto caller_video_sender =
4836 caller()->pc()->CreateSender("video", "caller_stream");
4837 auto callee_audio_sender =
4838 callee()->pc()->CreateSender("audio", "callee_stream");
4839 auto callee_video_sender =
4840 callee()->pc()->CreateSender("video", "callee_stream");
4841 caller()->CreateAndSetAndSignalOffer();
4842 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
4843 // Wait for ICE to complete, without any tracks being set.
4844 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4845 caller()->ice_connection_state(), kMaxWaitForFramesMs);
4846 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4847 callee()->ice_connection_state(), kMaxWaitForFramesMs);
4848 // Now set the tracks, and expect frames to immediately start flowing.
4849 EXPECT_TRUE(caller_audio_sender->SetTrack(caller()->CreateLocalAudioTrack()));
4850 EXPECT_TRUE(caller_video_sender->SetTrack(caller()->CreateLocalVideoTrack()));
4851 EXPECT_TRUE(callee_audio_sender->SetTrack(callee()->CreateLocalAudioTrack()));
4852 EXPECT_TRUE(callee_video_sender->SetTrack(callee()->CreateLocalVideoTrack()));
Seth Hampson2f0d7022018-02-20 11:54:42 -08004853 MediaExpectations media_expectations;
4854 media_expectations.ExpectBidirectionalAudioAndVideo();
4855 ASSERT_TRUE(ExpectNewFrames(media_expectations));
4856}
4857
4858// This tests that if we negotiate after calling AddTransceiver but before we
4859// have a track, then set a track later, frames from the newly-set tracks are
4860// received end-to-end.
4861TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
4862 MediaFlowsAfterEarlyWarmupWithAddTransceiver) {
4863 ASSERT_TRUE(CreatePeerConnectionWrappers());
4864 ConnectFakeSignaling();
4865 auto audio_result = caller()->pc()->AddTransceiver(cricket::MEDIA_TYPE_AUDIO);
4866 ASSERT_EQ(RTCErrorType::NONE, audio_result.error().type());
4867 auto caller_audio_sender = audio_result.MoveValue()->sender();
4868 auto video_result = caller()->pc()->AddTransceiver(cricket::MEDIA_TYPE_VIDEO);
4869 ASSERT_EQ(RTCErrorType::NONE, video_result.error().type());
4870 auto caller_video_sender = video_result.MoveValue()->sender();
4871 callee()->SetRemoteOfferHandler([this] {
4872 ASSERT_EQ(2u, callee()->pc()->GetTransceivers().size());
4873 callee()->pc()->GetTransceivers()[0]->SetDirection(
4874 RtpTransceiverDirection::kSendRecv);
4875 callee()->pc()->GetTransceivers()[1]->SetDirection(
4876 RtpTransceiverDirection::kSendRecv);
4877 });
4878 caller()->CreateAndSetAndSignalOffer();
4879 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
4880 // Wait for ICE to complete, without any tracks being set.
4881 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4882 caller()->ice_connection_state(), kMaxWaitForFramesMs);
4883 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4884 callee()->ice_connection_state(), kMaxWaitForFramesMs);
4885 // Now set the tracks, and expect frames to immediately start flowing.
4886 auto callee_audio_sender = callee()->pc()->GetSenders()[0];
4887 auto callee_video_sender = callee()->pc()->GetSenders()[1];
4888 ASSERT_TRUE(caller_audio_sender->SetTrack(caller()->CreateLocalAudioTrack()));
4889 ASSERT_TRUE(caller_video_sender->SetTrack(caller()->CreateLocalVideoTrack()));
4890 ASSERT_TRUE(callee_audio_sender->SetTrack(callee()->CreateLocalAudioTrack()));
4891 ASSERT_TRUE(callee_video_sender->SetTrack(callee()->CreateLocalVideoTrack()));
4892 MediaExpectations media_expectations;
4893 media_expectations.ExpectBidirectionalAudioAndVideo();
4894 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004895}
4896
4897// This test verifies that a remote video track can be added via AddStream,
4898// and sent end-to-end. For this particular test, it's simply echoed back
4899// from the caller to the callee, rather than being forwarded to a third
4900// PeerConnection.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004901TEST_F(PeerConnectionIntegrationTestPlanB, CanSendRemoteVideoTrack) {
deadbeef1dcb1642017-03-29 21:08:16 -07004902 ASSERT_TRUE(CreatePeerConnectionWrappers());
4903 ConnectFakeSignaling();
4904 // Just send a video track from the caller.
Steve Anton15324772018-01-16 10:26:49 -08004905 caller()->AddVideoTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07004906 caller()->CreateAndSetAndSignalOffer();
4907 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02004908 ASSERT_EQ(1U, callee()->remote_streams()->count());
deadbeef1dcb1642017-03-29 21:08:16 -07004909
4910 // Echo the stream back, and do a new offer/anwer (initiated by callee this
4911 // time).
4912 callee()->pc()->AddStream(callee()->remote_streams()->at(0));
4913 callee()->CreateAndSetAndSignalOffer();
4914 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
4915
Seth Hampson2f0d7022018-02-20 11:54:42 -08004916 MediaExpectations media_expectations;
4917 media_expectations.ExpectBidirectionalVideo();
4918 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004919}
4920
4921// Test that we achieve the expected end-to-end connection time, using a
4922// fake clock and simulated latency on the media and signaling paths.
4923// We use a TURN<->TURN connection because this is usually the quickest to
4924// set up initially, especially when we're confident the connection will work
4925// and can start sending media before we get a STUN response.
4926//
4927// With various optimizations enabled, here are the network delays we expect to
4928// be on the critical path:
4929// 1. 2 signaling trips: Signaling offer and offerer's TURN candidate, then
4930// signaling answer (with DTLS fingerprint).
4931// 2. 9 media hops: Rest of the DTLS handshake. 3 hops in each direction when
4932// using TURN<->TURN pair, and DTLS exchange is 4 packets,
4933// the first of which should have arrived before the answer.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004934TEST_P(PeerConnectionIntegrationTest, EndToEndConnectionTimeWithTurnTurnPair) {
deadbeef1dcb1642017-03-29 21:08:16 -07004935 rtc::ScopedFakeClock fake_clock;
4936 // Some things use a time of "0" as a special value, so we need to start out
4937 // the fake clock at a nonzero time.
4938 // TODO(deadbeef): Fix this.
Sebastian Jansson5f83cf02018-05-08 14:52:22 +02004939 fake_clock.AdvanceTime(webrtc::TimeDelta::seconds(1));
deadbeef1dcb1642017-03-29 21:08:16 -07004940
4941 static constexpr int media_hop_delay_ms = 50;
4942 static constexpr int signaling_trip_delay_ms = 500;
4943 // For explanation of these values, see comment above.
4944 static constexpr int required_media_hops = 9;
4945 static constexpr int required_signaling_trips = 2;
4946 // For internal delays (such as posting an event asychronously).
4947 static constexpr int allowed_internal_delay_ms = 20;
4948 static constexpr int total_connection_time_ms =
4949 media_hop_delay_ms * required_media_hops +
4950 signaling_trip_delay_ms * required_signaling_trips +
4951 allowed_internal_delay_ms;
4952
4953 static const rtc::SocketAddress turn_server_1_internal_address{"88.88.88.0",
4954 3478};
4955 static const rtc::SocketAddress turn_server_1_external_address{"88.88.88.1",
4956 0};
4957 static const rtc::SocketAddress turn_server_2_internal_address{"99.99.99.0",
4958 3478};
4959 static const rtc::SocketAddress turn_server_2_external_address{"99.99.99.1",
4960 0};
Seth Hampsonaed71642018-06-11 07:41:32 -07004961 cricket::TestTurnServer* turn_server_1 = CreateTurnServer(
4962 turn_server_1_internal_address, turn_server_1_external_address);
Jonas Orelandbdcee282017-10-10 14:01:40 +02004963
Seth Hampsonaed71642018-06-11 07:41:32 -07004964 cricket::TestTurnServer* turn_server_2 = CreateTurnServer(
4965 turn_server_2_internal_address, turn_server_2_external_address);
deadbeef1dcb1642017-03-29 21:08:16 -07004966 // Bypass permission check on received packets so media can be sent before
4967 // the candidate is signaled.
Seth Hampsonaed71642018-06-11 07:41:32 -07004968 network_thread()->Invoke<void>(RTC_FROM_HERE, [turn_server_1] {
4969 turn_server_1->set_enable_permission_checks(false);
4970 });
4971 network_thread()->Invoke<void>(RTC_FROM_HERE, [turn_server_2] {
4972 turn_server_2->set_enable_permission_checks(false);
4973 });
deadbeef1dcb1642017-03-29 21:08:16 -07004974
4975 PeerConnectionInterface::RTCConfiguration client_1_config;
4976 webrtc::PeerConnectionInterface::IceServer ice_server_1;
4977 ice_server_1.urls.push_back("turn:88.88.88.0:3478");
4978 ice_server_1.username = "test";
4979 ice_server_1.password = "test";
4980 client_1_config.servers.push_back(ice_server_1);
4981 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
4982 client_1_config.presume_writable_when_fully_relayed = true;
4983
4984 PeerConnectionInterface::RTCConfiguration client_2_config;
4985 webrtc::PeerConnectionInterface::IceServer ice_server_2;
4986 ice_server_2.urls.push_back("turn:99.99.99.0:3478");
4987 ice_server_2.username = "test";
4988 ice_server_2.password = "test";
4989 client_2_config.servers.push_back(ice_server_2);
4990 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
4991 client_2_config.presume_writable_when_fully_relayed = true;
4992
4993 ASSERT_TRUE(
4994 CreatePeerConnectionWrappersWithConfig(client_1_config, client_2_config));
4995 // Set up the simulated delays.
4996 SetSignalingDelayMs(signaling_trip_delay_ms);
4997 ConnectFakeSignaling();
4998 virtual_socket_server()->set_delay_mean(media_hop_delay_ms);
4999 virtual_socket_server()->UpdateDelayDistribution();
5000
5001 // Set "offer to receive audio/video" without adding any tracks, so we just
5002 // set up ICE/DTLS with no media.
5003 PeerConnectionInterface::RTCOfferAnswerOptions options;
5004 options.offer_to_receive_audio = 1;
5005 options.offer_to_receive_video = 1;
5006 caller()->SetOfferAnswerOptions(options);
5007 caller()->CreateAndSetAndSignalOffer();
deadbeef71452802017-05-07 17:21:01 -07005008 EXPECT_TRUE_SIMULATED_WAIT(DtlsConnected(), total_connection_time_ms,
5009 fake_clock);
Seth Hampson1d4a76d2018-06-19 14:31:41 -07005010 // Closing the PeerConnections destroys the ports before the ScopedFakeClock.
5011 // If this is not done a DCHECK can be hit in ports.cc, because a large
5012 // negative number is calculated for the rtt due to the global clock changing.
Steve Antond91969e2019-05-30 12:27:03 -07005013 ClosePeerConnections();
deadbeef1dcb1642017-03-29 21:08:16 -07005014}
5015
Jonas Orelandbdcee282017-10-10 14:01:40 +02005016// Verify that a TurnCustomizer passed in through RTCConfiguration
5017// is actually used by the underlying TURN candidate pair.
5018// Note that turnport_unittest.cc contains more detailed, lower-level tests.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005019TEST_P(PeerConnectionIntegrationTest, TurnCustomizerUsedForTurnConnections) {
Jonas Orelandbdcee282017-10-10 14:01:40 +02005020 static const rtc::SocketAddress turn_server_1_internal_address{"88.88.88.0",
5021 3478};
5022 static const rtc::SocketAddress turn_server_1_external_address{"88.88.88.1",
5023 0};
5024 static const rtc::SocketAddress turn_server_2_internal_address{"99.99.99.0",
5025 3478};
5026 static const rtc::SocketAddress turn_server_2_external_address{"99.99.99.1",
5027 0};
Seth Hampsonaed71642018-06-11 07:41:32 -07005028 CreateTurnServer(turn_server_1_internal_address,
5029 turn_server_1_external_address);
5030 CreateTurnServer(turn_server_2_internal_address,
5031 turn_server_2_external_address);
Jonas Orelandbdcee282017-10-10 14:01:40 +02005032
5033 PeerConnectionInterface::RTCConfiguration client_1_config;
5034 webrtc::PeerConnectionInterface::IceServer ice_server_1;
5035 ice_server_1.urls.push_back("turn:88.88.88.0:3478");
5036 ice_server_1.username = "test";
5037 ice_server_1.password = "test";
5038 client_1_config.servers.push_back(ice_server_1);
5039 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
Seth Hampsonaed71642018-06-11 07:41:32 -07005040 auto* customizer1 = CreateTurnCustomizer();
5041 client_1_config.turn_customizer = customizer1;
Jonas Orelandbdcee282017-10-10 14:01:40 +02005042
5043 PeerConnectionInterface::RTCConfiguration client_2_config;
5044 webrtc::PeerConnectionInterface::IceServer ice_server_2;
5045 ice_server_2.urls.push_back("turn:99.99.99.0:3478");
5046 ice_server_2.username = "test";
5047 ice_server_2.password = "test";
5048 client_2_config.servers.push_back(ice_server_2);
5049 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
Seth Hampsonaed71642018-06-11 07:41:32 -07005050 auto* customizer2 = CreateTurnCustomizer();
5051 client_2_config.turn_customizer = customizer2;
Jonas Orelandbdcee282017-10-10 14:01:40 +02005052
5053 ASSERT_TRUE(
5054 CreatePeerConnectionWrappersWithConfig(client_1_config, client_2_config));
5055 ConnectFakeSignaling();
5056
5057 // Set "offer to receive audio/video" without adding any tracks, so we just
5058 // set up ICE/DTLS with no media.
5059 PeerConnectionInterface::RTCOfferAnswerOptions options;
5060 options.offer_to_receive_audio = 1;
5061 options.offer_to_receive_video = 1;
5062 caller()->SetOfferAnswerOptions(options);
5063 caller()->CreateAndSetAndSignalOffer();
5064 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
5065
Seth Hampsonaed71642018-06-11 07:41:32 -07005066 ExpectTurnCustomizerCountersIncremented(customizer1);
5067 ExpectTurnCustomizerCountersIncremented(customizer2);
Jonas Orelandbdcee282017-10-10 14:01:40 +02005068}
5069
Benjamin Wright2d5f3cb2018-05-22 14:46:06 -07005070// Verifies that you can use TCP instead of UDP to connect to a TURN server and
5071// send media between the caller and the callee.
5072TEST_P(PeerConnectionIntegrationTest, TCPUsedForTurnConnections) {
5073 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5074 3478};
5075 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5076
5077 // Enable TCP for the fake turn server.
Seth Hampsonaed71642018-06-11 07:41:32 -07005078 CreateTurnServer(turn_server_internal_address, turn_server_external_address,
5079 cricket::PROTO_TCP);
Benjamin Wright2d5f3cb2018-05-22 14:46:06 -07005080
5081 webrtc::PeerConnectionInterface::IceServer ice_server;
5082 ice_server.urls.push_back("turn:88.88.88.0:3478?transport=tcp");
5083 ice_server.username = "test";
5084 ice_server.password = "test";
5085
5086 PeerConnectionInterface::RTCConfiguration client_1_config;
5087 client_1_config.servers.push_back(ice_server);
5088 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
5089
5090 PeerConnectionInterface::RTCConfiguration client_2_config;
5091 client_2_config.servers.push_back(ice_server);
5092 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
5093
5094 ASSERT_TRUE(
5095 CreatePeerConnectionWrappersWithConfig(client_1_config, client_2_config));
5096
5097 // Do normal offer/answer and wait for ICE to complete.
5098 ConnectFakeSignaling();
5099 caller()->AddAudioVideoTracks();
5100 callee()->AddAudioVideoTracks();
5101 caller()->CreateAndSetAndSignalOffer();
5102 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5103 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
5104 callee()->ice_connection_state(), kMaxWaitForFramesMs);
5105
5106 MediaExpectations media_expectations;
5107 media_expectations.ExpectBidirectionalAudioAndVideo();
5108 EXPECT_TRUE(ExpectNewFrames(media_expectations));
5109}
5110
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005111// Verify that a SSLCertificateVerifier passed in through
5112// PeerConnectionDependencies is actually used by the underlying SSL
5113// implementation to determine whether a certificate presented by the TURN
5114// server is accepted by the client. Note that openssladapter_unittest.cc
5115// contains more detailed, lower-level tests.
5116TEST_P(PeerConnectionIntegrationTest,
5117 SSLCertificateVerifierUsedForTurnConnections) {
5118 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5119 3478};
5120 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5121
5122 // Enable TCP-TLS for the fake turn server. We need to pass in 88.88.88.0 so
5123 // that host name verification passes on the fake certificate.
Seth Hampsonaed71642018-06-11 07:41:32 -07005124 CreateTurnServer(turn_server_internal_address, turn_server_external_address,
5125 cricket::PROTO_TLS, "88.88.88.0");
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005126
5127 webrtc::PeerConnectionInterface::IceServer ice_server;
5128 ice_server.urls.push_back("turns:88.88.88.0:3478?transport=tcp");
5129 ice_server.username = "test";
5130 ice_server.password = "test";
5131
5132 PeerConnectionInterface::RTCConfiguration client_1_config;
5133 client_1_config.servers.push_back(ice_server);
5134 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
5135
5136 PeerConnectionInterface::RTCConfiguration client_2_config;
5137 client_2_config.servers.push_back(ice_server);
5138 // Setting the type to kRelay forces the connection to go through a TURN
5139 // server.
5140 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
5141
5142 // Get a copy to the pointer so we can verify calls later.
5143 rtc::TestCertificateVerifier* client_1_cert_verifier =
5144 new rtc::TestCertificateVerifier();
5145 client_1_cert_verifier->verify_certificate_ = true;
5146 rtc::TestCertificateVerifier* client_2_cert_verifier =
5147 new rtc::TestCertificateVerifier();
5148 client_2_cert_verifier->verify_certificate_ = true;
5149
5150 // Create the dependencies with the test certificate verifier.
5151 webrtc::PeerConnectionDependencies client_1_deps(nullptr);
5152 client_1_deps.tls_cert_verifier =
5153 std::unique_ptr<rtc::TestCertificateVerifier>(client_1_cert_verifier);
5154 webrtc::PeerConnectionDependencies client_2_deps(nullptr);
5155 client_2_deps.tls_cert_verifier =
5156 std::unique_ptr<rtc::TestCertificateVerifier>(client_2_cert_verifier);
5157
5158 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndDeps(
5159 client_1_config, std::move(client_1_deps), client_2_config,
5160 std::move(client_2_deps)));
5161 ConnectFakeSignaling();
5162
5163 // Set "offer to receive audio/video" without adding any tracks, so we just
5164 // set up ICE/DTLS with no media.
5165 PeerConnectionInterface::RTCOfferAnswerOptions options;
5166 options.offer_to_receive_audio = 1;
5167 options.offer_to_receive_video = 1;
5168 caller()->SetOfferAnswerOptions(options);
5169 caller()->CreateAndSetAndSignalOffer();
5170 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
5171
5172 EXPECT_GT(client_1_cert_verifier->call_count_, 0u);
5173 EXPECT_GT(client_2_cert_verifier->call_count_, 0u);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005174}
5175
5176TEST_P(PeerConnectionIntegrationTest,
5177 SSLCertificateVerifierFailureUsedForTurnConnectionsFailsConnection) {
5178 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5179 3478};
5180 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5181
5182 // Enable TCP-TLS for the fake turn server. We need to pass in 88.88.88.0 so
5183 // that host name verification passes on the fake certificate.
Seth Hampsonaed71642018-06-11 07:41:32 -07005184 CreateTurnServer(turn_server_internal_address, turn_server_external_address,
5185 cricket::PROTO_TLS, "88.88.88.0");
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005186
5187 webrtc::PeerConnectionInterface::IceServer ice_server;
5188 ice_server.urls.push_back("turns:88.88.88.0:3478?transport=tcp");
5189 ice_server.username = "test";
5190 ice_server.password = "test";
5191
5192 PeerConnectionInterface::RTCConfiguration client_1_config;
5193 client_1_config.servers.push_back(ice_server);
5194 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
5195
5196 PeerConnectionInterface::RTCConfiguration client_2_config;
5197 client_2_config.servers.push_back(ice_server);
5198 // Setting the type to kRelay forces the connection to go through a TURN
5199 // server.
5200 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
5201
5202 // Get a copy to the pointer so we can verify calls later.
5203 rtc::TestCertificateVerifier* client_1_cert_verifier =
5204 new rtc::TestCertificateVerifier();
5205 client_1_cert_verifier->verify_certificate_ = false;
5206 rtc::TestCertificateVerifier* client_2_cert_verifier =
5207 new rtc::TestCertificateVerifier();
5208 client_2_cert_verifier->verify_certificate_ = false;
5209
5210 // Create the dependencies with the test certificate verifier.
5211 webrtc::PeerConnectionDependencies client_1_deps(nullptr);
5212 client_1_deps.tls_cert_verifier =
5213 std::unique_ptr<rtc::TestCertificateVerifier>(client_1_cert_verifier);
5214 webrtc::PeerConnectionDependencies client_2_deps(nullptr);
5215 client_2_deps.tls_cert_verifier =
5216 std::unique_ptr<rtc::TestCertificateVerifier>(client_2_cert_verifier);
5217
5218 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndDeps(
5219 client_1_config, std::move(client_1_deps), client_2_config,
5220 std::move(client_2_deps)));
5221 ConnectFakeSignaling();
5222
5223 // Set "offer to receive audio/video" without adding any tracks, so we just
5224 // set up ICE/DTLS with no media.
5225 PeerConnectionInterface::RTCOfferAnswerOptions options;
5226 options.offer_to_receive_audio = 1;
5227 options.offer_to_receive_video = 1;
5228 caller()->SetOfferAnswerOptions(options);
5229 caller()->CreateAndSetAndSignalOffer();
5230 bool wait_res = true;
5231 // TODO(bugs.webrtc.org/9219): When IceConnectionState is implemented
5232 // properly, should be able to just wait for a state of "failed" instead of
5233 // waiting a fixed 10 seconds.
5234 WAIT_(DtlsConnected(), kDefaultTimeout, wait_res);
5235 ASSERT_FALSE(wait_res);
5236
5237 EXPECT_GT(client_1_cert_verifier->call_count_, 0u);
5238 EXPECT_GT(client_2_cert_verifier->call_count_, 0u);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005239}
5240
Qingsi Wang25ec8882019-11-15 12:33:05 -08005241// Test that the injected ICE transport factory is used to create ICE transports
5242// for WebRTC connections.
5243TEST_P(PeerConnectionIntegrationTest, IceTransportFactoryUsedForConnections) {
5244 PeerConnectionInterface::RTCConfiguration default_config;
5245 PeerConnectionDependencies dependencies(nullptr);
5246 auto ice_transport_factory = std::make_unique<MockIceTransportFactory>();
5247 EXPECT_CALL(*ice_transport_factory, RecordIceTransportCreated()).Times(1);
5248 dependencies.ice_transport_factory = std::move(ice_transport_factory);
5249 auto wrapper =
5250 CreatePeerConnectionWrapper("Caller", nullptr, &default_config,
5251 std::move(dependencies), nullptr, nullptr);
5252 ASSERT_TRUE(wrapper);
5253 wrapper->CreateDataChannel();
5254 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
5255 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5256 wrapper->pc()->SetLocalDescription(observer,
5257 wrapper->CreateOfferAndWait().release());
5258}
5259
deadbeefc964d0b2017-04-03 10:03:35 -07005260// Test that audio and video flow end-to-end when codec names don't use the
5261// expected casing, given that they're supposed to be case insensitive. To test
5262// this, all but one codec is removed from each media description, and its
5263// casing is changed.
5264//
5265// In the past, this has regressed and caused crashes/black video, due to the
5266// fact that code at some layers was doing case-insensitive comparisons and
5267// code at other layers was not.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005268TEST_P(PeerConnectionIntegrationTest, CodecNamesAreCaseInsensitive) {
deadbeefc964d0b2017-04-03 10:03:35 -07005269 ASSERT_TRUE(CreatePeerConnectionWrappers());
5270 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08005271 caller()->AddAudioVideoTracks();
5272 callee()->AddAudioVideoTracks();
deadbeefc964d0b2017-04-03 10:03:35 -07005273
5274 // Remove all but one audio/video codec (opus and VP8), and change the
5275 // casing of the caller's generated offer.
5276 caller()->SetGeneratedSdpMunger([](cricket::SessionDescription* description) {
5277 cricket::AudioContentDescription* audio =
5278 GetFirstAudioContentDescription(description);
5279 ASSERT_NE(nullptr, audio);
5280 auto audio_codecs = audio->codecs();
5281 audio_codecs.erase(std::remove_if(audio_codecs.begin(), audio_codecs.end(),
5282 [](const cricket::AudioCodec& codec) {
5283 return codec.name != "opus";
5284 }),
5285 audio_codecs.end());
5286 ASSERT_EQ(1u, audio_codecs.size());
5287 audio_codecs[0].name = "OpUs";
5288 audio->set_codecs(audio_codecs);
5289
5290 cricket::VideoContentDescription* video =
5291 GetFirstVideoContentDescription(description);
5292 ASSERT_NE(nullptr, video);
5293 auto video_codecs = video->codecs();
5294 video_codecs.erase(std::remove_if(video_codecs.begin(), video_codecs.end(),
5295 [](const cricket::VideoCodec& codec) {
5296 return codec.name != "VP8";
5297 }),
5298 video_codecs.end());
5299 ASSERT_EQ(1u, video_codecs.size());
5300 video_codecs[0].name = "vP8";
5301 video->set_codecs(video_codecs);
5302 });
5303
5304 caller()->CreateAndSetAndSignalOffer();
5305 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5306
5307 // Verify frames are still received end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005308 MediaExpectations media_expectations;
5309 media_expectations.ExpectBidirectionalAudioAndVideo();
5310 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeefc964d0b2017-04-03 10:03:35 -07005311}
5312
Jonas Oreland49ac5952018-09-26 16:04:32 +02005313TEST_P(PeerConnectionIntegrationTest, GetSourcesAudio) {
hbos8d609f62017-04-10 07:39:05 -07005314 ASSERT_TRUE(CreatePeerConnectionWrappers());
5315 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08005316 caller()->AddAudioTrack();
hbos8d609f62017-04-10 07:39:05 -07005317 caller()->CreateAndSetAndSignalOffer();
5318 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
deadbeefd8ad7882017-04-18 16:01:17 -07005319 // Wait for one audio frame to be received by the callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005320 MediaExpectations media_expectations;
5321 media_expectations.CalleeExpectsSomeAudio(1);
5322 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Jonas Oreland49ac5952018-09-26 16:04:32 +02005323 ASSERT_EQ(callee()->pc()->GetReceivers().size(), 1u);
hbos8d609f62017-04-10 07:39:05 -07005324 auto receiver = callee()->pc()->GetReceivers()[0];
5325 ASSERT_EQ(receiver->media_type(), cricket::MEDIA_TYPE_AUDIO);
Jonas Oreland49ac5952018-09-26 16:04:32 +02005326 auto sources = receiver->GetSources();
hbos8d609f62017-04-10 07:39:05 -07005327 ASSERT_GT(receiver->GetParameters().encodings.size(), 0u);
5328 EXPECT_EQ(receiver->GetParameters().encodings[0].ssrc,
Jonas Oreland49ac5952018-09-26 16:04:32 +02005329 sources[0].source_id());
5330 EXPECT_EQ(webrtc::RtpSourceType::SSRC, sources[0].source_type());
5331}
5332
5333TEST_P(PeerConnectionIntegrationTest, GetSourcesVideo) {
5334 ASSERT_TRUE(CreatePeerConnectionWrappers());
5335 ConnectFakeSignaling();
5336 caller()->AddVideoTrack();
5337 caller()->CreateAndSetAndSignalOffer();
5338 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5339 // Wait for one video frame to be received by the callee.
5340 MediaExpectations media_expectations;
5341 media_expectations.CalleeExpectsSomeVideo(1);
5342 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5343 ASSERT_EQ(callee()->pc()->GetReceivers().size(), 1u);
5344 auto receiver = callee()->pc()->GetReceivers()[0];
5345 ASSERT_EQ(receiver->media_type(), cricket::MEDIA_TYPE_VIDEO);
5346 auto sources = receiver->GetSources();
5347 ASSERT_GT(receiver->GetParameters().encodings.size(), 0u);
Yves Gereyf781bb52019-07-23 19:15:39 +02005348 ASSERT_GT(sources.size(), 0u);
Jonas Oreland49ac5952018-09-26 16:04:32 +02005349 EXPECT_EQ(receiver->GetParameters().encodings[0].ssrc,
5350 sources[0].source_id());
5351 EXPECT_EQ(webrtc::RtpSourceType::SSRC, sources[0].source_type());
hbos8d609f62017-04-10 07:39:05 -07005352}
5353
deadbeef2f425aa2017-04-14 10:41:32 -07005354// Test that if a track is removed and added again with a different stream ID,
5355// the new stream ID is successfully communicated in SDP and media continues to
5356// flow end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005357// TODO(webrtc.bugs.org/8734): This test does not work for Unified Plan because
5358// it will not reuse a transceiver that has already been sending. After creating
5359// a new transceiver it tries to create an offer with two senders of the same
5360// track ids and it fails.
5361TEST_F(PeerConnectionIntegrationTestPlanB, RemoveAndAddTrackWithNewStreamId) {
deadbeef2f425aa2017-04-14 10:41:32 -07005362 ASSERT_TRUE(CreatePeerConnectionWrappers());
5363 ConnectFakeSignaling();
5364
deadbeef2f425aa2017-04-14 10:41:32 -07005365 // Add track using stream 1, do offer/answer.
5366 rtc::scoped_refptr<webrtc::AudioTrackInterface> track =
5367 caller()->CreateLocalAudioTrack();
5368 rtc::scoped_refptr<webrtc::RtpSenderInterface> sender =
Steve Antond78323f2018-07-11 11:13:44 -07005369 caller()->AddTrack(track, {"stream_1"});
deadbeef2f425aa2017-04-14 10:41:32 -07005370 caller()->CreateAndSetAndSignalOffer();
5371 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005372 {
5373 MediaExpectations media_expectations;
5374 media_expectations.CalleeExpectsSomeAudio(1);
5375 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5376 }
deadbeef2f425aa2017-04-14 10:41:32 -07005377 // Remove the sender, and create a new one with the new stream.
5378 caller()->pc()->RemoveTrack(sender);
Steve Antond78323f2018-07-11 11:13:44 -07005379 sender = caller()->AddTrack(track, {"stream_2"});
deadbeef2f425aa2017-04-14 10:41:32 -07005380 caller()->CreateAndSetAndSignalOffer();
5381 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5382 // Wait for additional audio frames to be received by the callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005383 {
5384 MediaExpectations media_expectations;
5385 media_expectations.CalleeExpectsSomeAudio();
5386 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5387 }
deadbeef2f425aa2017-04-14 10:41:32 -07005388}
5389
Seth Hampson2f0d7022018-02-20 11:54:42 -08005390TEST_P(PeerConnectionIntegrationTest, RtcEventLogOutputWriteCalled) {
Elad Alon99c3fe52017-10-13 16:29:40 +02005391 ASSERT_TRUE(CreatePeerConnectionWrappers());
5392 ConnectFakeSignaling();
5393
Mirko Bonadei317a1f02019-09-17 17:06:18 +02005394 auto output = std::make_unique<testing::NiceMock<MockRtcEventLogOutput>>();
Mirko Bonadei6a489f22019-04-09 15:11:12 +02005395 ON_CALL(*output, IsActive()).WillByDefault(::testing::Return(true));
5396 ON_CALL(*output, Write(::testing::_)).WillByDefault(::testing::Return(true));
Elad Alon99c3fe52017-10-13 16:29:40 +02005397 EXPECT_CALL(*output, Write(::testing::_)).Times(::testing::AtLeast(1));
Bjorn Tereliusde939432017-11-20 17:38:14 +01005398 EXPECT_TRUE(caller()->pc()->StartRtcEventLog(
5399 std::move(output), webrtc::RtcEventLog::kImmediateOutput));
Elad Alon99c3fe52017-10-13 16:29:40 +02005400
Steve Anton15324772018-01-16 10:26:49 -08005401 caller()->AddAudioVideoTracks();
Elad Alon99c3fe52017-10-13 16:29:40 +02005402 caller()->CreateAndSetAndSignalOffer();
5403 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5404}
5405
Steve Antonede9ca52017-10-16 13:04:27 -07005406// Test that if candidates are only signaled by applying full session
5407// descriptions (instead of using AddIceCandidate), the peers can connect to
5408// each other and exchange media.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005409TEST_P(PeerConnectionIntegrationTest, MediaFlowsWhenCandidatesSetOnlyInSdp) {
Steve Antonede9ca52017-10-16 13:04:27 -07005410 ASSERT_TRUE(CreatePeerConnectionWrappers());
5411 // Each side will signal the session descriptions but not candidates.
5412 ConnectFakeSignalingForSdpOnly();
5413
5414 // Add audio video track and exchange the initial offer/answer with media
5415 // information only. This will start ICE gathering on each side.
Steve Anton15324772018-01-16 10:26:49 -08005416 caller()->AddAudioVideoTracks();
5417 callee()->AddAudioVideoTracks();
Steve Antonede9ca52017-10-16 13:04:27 -07005418 caller()->CreateAndSetAndSignalOffer();
5419
5420 // Wait for all candidates to be gathered on both the caller and callee.
5421 ASSERT_EQ_WAIT(PeerConnectionInterface::kIceGatheringComplete,
5422 caller()->ice_gathering_state(), kDefaultTimeout);
5423 ASSERT_EQ_WAIT(PeerConnectionInterface::kIceGatheringComplete,
5424 callee()->ice_gathering_state(), kDefaultTimeout);
5425
5426 // The candidates will now be included in the session description, so
5427 // signaling them will start the ICE connection.
5428 caller()->CreateAndSetAndSignalOffer();
5429 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5430
5431 // Ensure that media flows in both directions.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005432 MediaExpectations media_expectations;
5433 media_expectations.ExpectBidirectionalAudioAndVideo();
5434 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Antonede9ca52017-10-16 13:04:27 -07005435}
5436
henrika5f6bf242017-11-01 11:06:56 +01005437// Test that SetAudioPlayout can be used to disable audio playout from the
5438// start, then later enable it. This may be useful, for example, if the caller
5439// needs to play a local ringtone until some event occurs, after which it
5440// switches to playing the received audio.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005441TEST_P(PeerConnectionIntegrationTest, DisableAndEnableAudioPlayout) {
henrika5f6bf242017-11-01 11:06:56 +01005442 ASSERT_TRUE(CreatePeerConnectionWrappers());
5443 ConnectFakeSignaling();
5444
5445 // Set up audio-only call where audio playout is disabled on caller's side.
5446 caller()->pc()->SetAudioPlayout(false);
Steve Anton15324772018-01-16 10:26:49 -08005447 caller()->AddAudioTrack();
5448 callee()->AddAudioTrack();
henrika5f6bf242017-11-01 11:06:56 +01005449 caller()->CreateAndSetAndSignalOffer();
5450 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5451
5452 // Pump messages for a second.
5453 WAIT(false, 1000);
5454 // Since audio playout is disabled, the caller shouldn't have received
5455 // anything (at the playout level, at least).
5456 EXPECT_EQ(0, caller()->audio_frames_received());
5457 // As a sanity check, make sure the callee (for which playout isn't disabled)
5458 // did still see frames on its audio level.
5459 ASSERT_GT(callee()->audio_frames_received(), 0);
5460
5461 // Enable playout again, and ensure audio starts flowing.
5462 caller()->pc()->SetAudioPlayout(true);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005463 MediaExpectations media_expectations;
5464 media_expectations.ExpectBidirectionalAudio();
5465 ASSERT_TRUE(ExpectNewFrames(media_expectations));
henrika5f6bf242017-11-01 11:06:56 +01005466}
5467
5468double GetAudioEnergyStat(PeerConnectionWrapper* pc) {
5469 auto report = pc->NewGetStats();
5470 auto track_stats_list =
5471 report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
5472 const webrtc::RTCMediaStreamTrackStats* remote_track_stats = nullptr;
5473 for (const auto* track_stats : track_stats_list) {
5474 if (track_stats->remote_source.is_defined() &&
5475 *track_stats->remote_source) {
5476 remote_track_stats = track_stats;
5477 break;
5478 }
5479 }
5480
5481 if (!remote_track_stats->total_audio_energy.is_defined()) {
5482 return 0.0;
5483 }
5484 return *remote_track_stats->total_audio_energy;
5485}
5486
5487// Test that if audio playout is disabled via the SetAudioPlayout() method, then
5488// incoming audio is still processed and statistics are generated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005489TEST_P(PeerConnectionIntegrationTest,
henrika5f6bf242017-11-01 11:06:56 +01005490 DisableAudioPlayoutStillGeneratesAudioStats) {
5491 ASSERT_TRUE(CreatePeerConnectionWrappers());
5492 ConnectFakeSignaling();
5493
5494 // Set up audio-only call where playout is disabled but audio-processing is
5495 // still active.
Steve Anton15324772018-01-16 10:26:49 -08005496 caller()->AddAudioTrack();
5497 callee()->AddAudioTrack();
henrika5f6bf242017-11-01 11:06:56 +01005498 caller()->pc()->SetAudioPlayout(false);
5499
5500 caller()->CreateAndSetAndSignalOffer();
5501 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5502
5503 // Wait for the callee to receive audio stats.
5504 EXPECT_TRUE_WAIT(GetAudioEnergyStat(caller()) > 0, kMaxWaitForFramesMs);
5505}
5506
henrika4f167df2017-11-01 14:45:55 +01005507// Test that SetAudioRecording can be used to disable audio recording from the
5508// start, then later enable it. This may be useful, for example, if the caller
5509// wants to ensure that no audio resources are active before a certain state
5510// is reached.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005511TEST_P(PeerConnectionIntegrationTest, DisableAndEnableAudioRecording) {
henrika4f167df2017-11-01 14:45:55 +01005512 ASSERT_TRUE(CreatePeerConnectionWrappers());
5513 ConnectFakeSignaling();
5514
5515 // Set up audio-only call where audio recording is disabled on caller's side.
5516 caller()->pc()->SetAudioRecording(false);
Steve Anton15324772018-01-16 10:26:49 -08005517 caller()->AddAudioTrack();
5518 callee()->AddAudioTrack();
henrika4f167df2017-11-01 14:45:55 +01005519 caller()->CreateAndSetAndSignalOffer();
5520 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5521
5522 // Pump messages for a second.
5523 WAIT(false, 1000);
5524 // Since caller has disabled audio recording, the callee shouldn't have
5525 // received anything.
5526 EXPECT_EQ(0, callee()->audio_frames_received());
5527 // As a sanity check, make sure the caller did still see frames on its
5528 // audio level since audio recording is enabled on the calle side.
5529 ASSERT_GT(caller()->audio_frames_received(), 0);
5530
5531 // Enable audio recording again, and ensure audio starts flowing.
5532 caller()->pc()->SetAudioRecording(true);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005533 MediaExpectations media_expectations;
5534 media_expectations.ExpectBidirectionalAudio();
5535 ASSERT_TRUE(ExpectNewFrames(media_expectations));
henrika4f167df2017-11-01 14:45:55 +01005536}
5537
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005538// Test that after closing PeerConnections, they stop sending any packets (ICE,
5539// DTLS, RTP...).
Seth Hampson2f0d7022018-02-20 11:54:42 -08005540TEST_P(PeerConnectionIntegrationTest, ClosingConnectionStopsPacketFlow) {
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005541 // Set up audio/video/data, wait for some frames to be received.
5542 ASSERT_TRUE(CreatePeerConnectionWrappers());
5543 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08005544 caller()->AddAudioVideoTracks();
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005545#ifdef HAVE_SCTP
5546 caller()->CreateDataChannel();
5547#endif
5548 caller()->CreateAndSetAndSignalOffer();
5549 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005550 MediaExpectations media_expectations;
5551 media_expectations.CalleeExpectsSomeAudioAndVideo();
5552 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005553 // Close PeerConnections.
Steve Antond91969e2019-05-30 12:27:03 -07005554 ClosePeerConnections();
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005555 // Pump messages for a second, and ensure no new packets end up sent.
5556 uint32_t sent_packets_a = virtual_socket_server()->sent_packets();
5557 WAIT(false, 1000);
5558 uint32_t sent_packets_b = virtual_socket_server()->sent_packets();
5559 EXPECT_EQ(sent_packets_a, sent_packets_b);
5560}
5561
Steve Anton7eca0932018-03-30 15:18:41 -07005562// Test that transport stats are generated by the RTCStatsCollector for a
5563// connection that only involves data channels. This is a regression test for
5564// crbug.com/826972.
5565#ifdef HAVE_SCTP
5566TEST_P(PeerConnectionIntegrationTest,
5567 TransportStatsReportedForDataChannelOnlyConnection) {
5568 ASSERT_TRUE(CreatePeerConnectionWrappers());
5569 ConnectFakeSignaling();
5570 caller()->CreateDataChannel();
5571
5572 caller()->CreateAndSetAndSignalOffer();
5573 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5574 ASSERT_TRUE_WAIT(callee()->data_channel(), kDefaultTimeout);
5575
5576 auto caller_report = caller()->NewGetStats();
5577 EXPECT_EQ(1u, caller_report->GetStatsOfType<RTCTransportStats>().size());
5578 auto callee_report = callee()->NewGetStats();
5579 EXPECT_EQ(1u, callee_report->GetStatsOfType<RTCTransportStats>().size());
5580}
5581#endif // HAVE_SCTP
5582
Qingsi Wang7685e862018-06-11 20:15:46 -07005583TEST_P(PeerConnectionIntegrationTest,
5584 IceEventsGeneratedAndLoggedInRtcEventLog) {
5585 ASSERT_TRUE(CreatePeerConnectionWrappersWithFakeRtcEventLog());
5586 ConnectFakeSignaling();
5587 PeerConnectionInterface::RTCOfferAnswerOptions options;
5588 options.offer_to_receive_audio = 1;
5589 caller()->SetOfferAnswerOptions(options);
5590 caller()->CreateAndSetAndSignalOffer();
5591 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
5592 ASSERT_NE(nullptr, caller()->event_log_factory());
5593 ASSERT_NE(nullptr, callee()->event_log_factory());
5594 webrtc::FakeRtcEventLog* caller_event_log =
5595 static_cast<webrtc::FakeRtcEventLog*>(
5596 caller()->event_log_factory()->last_log_created());
5597 webrtc::FakeRtcEventLog* callee_event_log =
5598 static_cast<webrtc::FakeRtcEventLog*>(
5599 callee()->event_log_factory()->last_log_created());
5600 ASSERT_NE(nullptr, caller_event_log);
5601 ASSERT_NE(nullptr, callee_event_log);
5602 int caller_ice_config_count = caller_event_log->GetEventCount(
5603 webrtc::RtcEvent::Type::IceCandidatePairConfig);
5604 int caller_ice_event_count = caller_event_log->GetEventCount(
5605 webrtc::RtcEvent::Type::IceCandidatePairEvent);
5606 int callee_ice_config_count = callee_event_log->GetEventCount(
5607 webrtc::RtcEvent::Type::IceCandidatePairConfig);
5608 int callee_ice_event_count = callee_event_log->GetEventCount(
5609 webrtc::RtcEvent::Type::IceCandidatePairEvent);
5610 EXPECT_LT(0, caller_ice_config_count);
5611 EXPECT_LT(0, caller_ice_event_count);
5612 EXPECT_LT(0, callee_ice_config_count);
5613 EXPECT_LT(0, callee_ice_event_count);
5614}
5615
Qingsi Wangc129c352019-04-18 10:41:58 -07005616TEST_P(PeerConnectionIntegrationTest, RegatherAfterChangingIceTransportType) {
Qingsi Wangc129c352019-04-18 10:41:58 -07005617 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5618 3478};
5619 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5620
5621 CreateTurnServer(turn_server_internal_address, turn_server_external_address);
5622
5623 webrtc::PeerConnectionInterface::IceServer ice_server;
5624 ice_server.urls.push_back("turn:88.88.88.0:3478");
5625 ice_server.username = "test";
5626 ice_server.password = "test";
5627
5628 PeerConnectionInterface::RTCConfiguration caller_config;
5629 caller_config.servers.push_back(ice_server);
5630 caller_config.type = webrtc::PeerConnectionInterface::kRelay;
5631 caller_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
Qingsi Wang1fe119f2019-05-31 16:55:33 -07005632 caller_config.surface_ice_candidates_on_ice_transport_type_changed = true;
Qingsi Wangc129c352019-04-18 10:41:58 -07005633
5634 PeerConnectionInterface::RTCConfiguration callee_config;
5635 callee_config.servers.push_back(ice_server);
5636 callee_config.type = webrtc::PeerConnectionInterface::kRelay;
5637 callee_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
Qingsi Wang1fe119f2019-05-31 16:55:33 -07005638 callee_config.surface_ice_candidates_on_ice_transport_type_changed = true;
Qingsi Wangc129c352019-04-18 10:41:58 -07005639
5640 ASSERT_TRUE(
5641 CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
5642
5643 // Do normal offer/answer and wait for ICE to complete.
5644 ConnectFakeSignaling();
5645 caller()->AddAudioVideoTracks();
5646 callee()->AddAudioVideoTracks();
5647 caller()->CreateAndSetAndSignalOffer();
5648 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5649 // Since we are doing continual gathering, the ICE transport does not reach
5650 // kIceGatheringComplete (see
5651 // P2PTransportChannel::OnCandidatesAllocationDone), and consequently not
5652 // kIceConnectionComplete.
5653 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
5654 caller()->ice_connection_state(), kDefaultTimeout);
5655 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
5656 callee()->ice_connection_state(), kDefaultTimeout);
5657 // Note that we cannot use the metric
5658 // |WebRTC.PeerConnection.CandidatePairType_UDP| in this test since this
5659 // metric is only populated when we reach kIceConnectionComplete in the
5660 // current implementation.
5661 EXPECT_EQ(cricket::RELAY_PORT_TYPE,
5662 caller()->last_candidate_gathered().type());
5663 EXPECT_EQ(cricket::RELAY_PORT_TYPE,
5664 callee()->last_candidate_gathered().type());
5665
5666 // Loosen the caller's candidate filter.
5667 caller_config = caller()->pc()->GetConfiguration();
5668 caller_config.type = webrtc::PeerConnectionInterface::kAll;
5669 caller()->pc()->SetConfiguration(caller_config);
5670 // We should have gathered a new host candidate.
5671 EXPECT_EQ_WAIT(cricket::LOCAL_PORT_TYPE,
5672 caller()->last_candidate_gathered().type(), kDefaultTimeout);
5673
5674 // Loosen the callee's candidate filter.
5675 callee_config = callee()->pc()->GetConfiguration();
5676 callee_config.type = webrtc::PeerConnectionInterface::kAll;
5677 callee()->pc()->SetConfiguration(callee_config);
5678 EXPECT_EQ_WAIT(cricket::LOCAL_PORT_TYPE,
5679 callee()->last_candidate_gathered().type(), kDefaultTimeout);
5680}
5681
Eldar Relloda13ea22019-06-01 12:23:43 +03005682TEST_P(PeerConnectionIntegrationTest, OnIceCandidateError) {
Eldar Relloda13ea22019-06-01 12:23:43 +03005683 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5684 3478};
5685 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5686
5687 CreateTurnServer(turn_server_internal_address, turn_server_external_address);
5688
5689 webrtc::PeerConnectionInterface::IceServer ice_server;
5690 ice_server.urls.push_back("turn:88.88.88.0:3478");
5691 ice_server.username = "test";
5692 ice_server.password = "123";
5693
5694 PeerConnectionInterface::RTCConfiguration caller_config;
5695 caller_config.servers.push_back(ice_server);
5696 caller_config.type = webrtc::PeerConnectionInterface::kRelay;
5697 caller_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
5698
5699 PeerConnectionInterface::RTCConfiguration callee_config;
5700 callee_config.servers.push_back(ice_server);
5701 callee_config.type = webrtc::PeerConnectionInterface::kRelay;
5702 callee_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
5703
5704 ASSERT_TRUE(
5705 CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
5706
5707 // Do normal offer/answer and wait for ICE to complete.
5708 ConnectFakeSignaling();
5709 caller()->AddAudioVideoTracks();
5710 callee()->AddAudioVideoTracks();
5711 caller()->CreateAndSetAndSignalOffer();
5712 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5713 EXPECT_EQ_WAIT(401, caller()->error_event().error_code, kDefaultTimeout);
5714 EXPECT_EQ("Unauthorized", caller()->error_event().error_text);
5715 EXPECT_EQ("turn:88.88.88.0:3478?transport=udp", caller()->error_event().url);
Eldar Rello0095d372019-12-02 22:22:07 +02005716 EXPECT_NE(caller()->error_event().address, "");
Eldar Relloda13ea22019-06-01 12:23:43 +03005717}
5718
Eldar Rello5ab79e62019-10-09 18:29:44 +03005719TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5720 AudioKeepsFlowingAfterImplicitRollback) {
5721 PeerConnectionInterface::RTCConfiguration config;
5722 config.sdp_semantics = SdpSemantics::kUnifiedPlan;
5723 config.enable_implicit_rollback = true;
5724 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
5725 ConnectFakeSignaling();
5726 caller()->AddAudioTrack();
5727 callee()->AddAudioTrack();
5728 caller()->CreateAndSetAndSignalOffer();
5729 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5730 MediaExpectations media_expectations;
5731 media_expectations.ExpectBidirectionalAudio();
5732 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5733 SetSignalIceCandidates(false); // Workaround candidate outrace sdp.
5734 caller()->AddVideoTrack();
5735 callee()->AddVideoTrack();
5736 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
5737 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5738 callee()->pc()->SetLocalDescription(observer,
5739 callee()->CreateOfferAndWait().release());
5740 EXPECT_TRUE_WAIT(observer->called(), kDefaultTimeout);
5741 caller()->CreateAndSetAndSignalOffer(); // Implicit rollback.
5742 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5743 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5744}
5745
5746TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5747 ImplicitRollbackVisitsStableState) {
5748 RTCConfiguration config;
5749 config.sdp_semantics = SdpSemantics::kUnifiedPlan;
5750 config.enable_implicit_rollback = true;
5751
5752 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
5753
5754 rtc::scoped_refptr<MockSetSessionDescriptionObserver> sld_observer(
5755 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5756 callee()->pc()->SetLocalDescription(sld_observer,
5757 callee()->CreateOfferAndWait().release());
5758 EXPECT_TRUE_WAIT(sld_observer->called(), kDefaultTimeout);
5759 EXPECT_EQ(sld_observer->error(), "");
5760
5761 rtc::scoped_refptr<MockSetSessionDescriptionObserver> srd_observer(
5762 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5763 callee()->pc()->SetRemoteDescription(
5764 srd_observer, caller()->CreateOfferAndWait().release());
5765 EXPECT_TRUE_WAIT(srd_observer->called(), kDefaultTimeout);
5766 EXPECT_EQ(srd_observer->error(), "");
5767
5768 EXPECT_THAT(callee()->peer_connection_signaling_state_history(),
5769 ElementsAre(PeerConnectionInterface::kHaveLocalOffer,
5770 PeerConnectionInterface::kStable,
5771 PeerConnectionInterface::kHaveRemoteOffer));
5772}
5773
Mirko Bonadeic84f6612019-01-31 12:20:57 +01005774INSTANTIATE_TEST_SUITE_P(PeerConnectionIntegrationTest,
5775 PeerConnectionIntegrationTest,
5776 Values(SdpSemantics::kPlanB,
5777 SdpSemantics::kUnifiedPlan));
Steve Antond3679212018-01-17 17:41:02 -08005778
Steve Anton74255ff2018-01-24 18:32:57 -08005779// Tests that verify interoperability between Plan B and Unified Plan
5780// PeerConnections.
5781class PeerConnectionIntegrationInteropTest
Seth Hampson2f0d7022018-02-20 11:54:42 -08005782 : public PeerConnectionIntegrationBaseTest,
Steve Anton74255ff2018-01-24 18:32:57 -08005783 public ::testing::WithParamInterface<
5784 std::tuple<SdpSemantics, SdpSemantics>> {
5785 protected:
Seth Hampson2f0d7022018-02-20 11:54:42 -08005786 // Setting the SdpSemantics for the base test to kDefault does not matter
5787 // because we specify not to use the test semantics when creating
5788 // PeerConnectionWrappers.
Steve Anton74255ff2018-01-24 18:32:57 -08005789 PeerConnectionIntegrationInteropTest()
Steve Anton3acffc32018-04-12 17:21:03 -07005790 : PeerConnectionIntegrationBaseTest(SdpSemantics::kPlanB),
Seth Hampson2f0d7022018-02-20 11:54:42 -08005791 caller_semantics_(std::get<0>(GetParam())),
Steve Anton74255ff2018-01-24 18:32:57 -08005792 callee_semantics_(std::get<1>(GetParam())) {}
5793
5794 bool CreatePeerConnectionWrappersWithSemantics() {
Steve Anton3acffc32018-04-12 17:21:03 -07005795 return CreatePeerConnectionWrappersWithSdpSemantics(caller_semantics_,
5796 callee_semantics_);
Steve Anton74255ff2018-01-24 18:32:57 -08005797 }
5798
5799 const SdpSemantics caller_semantics_;
5800 const SdpSemantics callee_semantics_;
5801};
5802
5803TEST_P(PeerConnectionIntegrationInteropTest, NoMediaLocalToNoMediaRemote) {
5804 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5805 ConnectFakeSignaling();
5806
5807 caller()->CreateAndSetAndSignalOffer();
5808 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5809}
5810
5811TEST_P(PeerConnectionIntegrationInteropTest, OneAudioLocalToNoMediaRemote) {
5812 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5813 ConnectFakeSignaling();
5814 auto audio_sender = caller()->AddAudioTrack();
5815
5816 caller()->CreateAndSetAndSignalOffer();
5817 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5818
5819 // Verify that one audio receiver has been created on the remote and that it
5820 // has the same track ID as the sending track.
5821 auto receivers = callee()->pc()->GetReceivers();
5822 ASSERT_EQ(1u, receivers.size());
5823 EXPECT_EQ(cricket::MEDIA_TYPE_AUDIO, receivers[0]->media_type());
5824 EXPECT_EQ(receivers[0]->track()->id(), audio_sender->track()->id());
5825
Seth Hampson2f0d7022018-02-20 11:54:42 -08005826 MediaExpectations media_expectations;
5827 media_expectations.CalleeExpectsSomeAudio();
5828 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005829}
5830
5831TEST_P(PeerConnectionIntegrationInteropTest, OneAudioOneVideoToNoMediaRemote) {
5832 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5833 ConnectFakeSignaling();
5834 auto video_sender = caller()->AddVideoTrack();
5835 auto audio_sender = caller()->AddAudioTrack();
5836
5837 caller()->CreateAndSetAndSignalOffer();
5838 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5839
5840 // Verify that one audio and one video receiver have been created on the
5841 // remote and that they have the same track IDs as the sending tracks.
5842 auto audio_receivers =
5843 callee()->GetReceiversOfType(cricket::MEDIA_TYPE_AUDIO);
5844 ASSERT_EQ(1u, audio_receivers.size());
5845 EXPECT_EQ(audio_receivers[0]->track()->id(), audio_sender->track()->id());
5846 auto video_receivers =
5847 callee()->GetReceiversOfType(cricket::MEDIA_TYPE_VIDEO);
5848 ASSERT_EQ(1u, video_receivers.size());
5849 EXPECT_EQ(video_receivers[0]->track()->id(), video_sender->track()->id());
5850
Seth Hampson2f0d7022018-02-20 11:54:42 -08005851 MediaExpectations media_expectations;
5852 media_expectations.CalleeExpectsSomeAudioAndVideo();
5853 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005854}
5855
5856TEST_P(PeerConnectionIntegrationInteropTest,
5857 OneAudioOneVideoLocalToOneAudioOneVideoRemote) {
5858 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5859 ConnectFakeSignaling();
5860 caller()->AddAudioVideoTracks();
5861 callee()->AddAudioVideoTracks();
5862
5863 caller()->CreateAndSetAndSignalOffer();
5864 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5865
Seth Hampson2f0d7022018-02-20 11:54:42 -08005866 MediaExpectations media_expectations;
5867 media_expectations.ExpectBidirectionalAudioAndVideo();
5868 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005869}
5870
5871TEST_P(PeerConnectionIntegrationInteropTest,
5872 ReverseRolesOneAudioLocalToOneVideoRemote) {
5873 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5874 ConnectFakeSignaling();
5875 caller()->AddAudioTrack();
5876 callee()->AddVideoTrack();
5877
5878 caller()->CreateAndSetAndSignalOffer();
5879 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5880
5881 // Verify that only the audio track has been negotiated.
5882 EXPECT_EQ(0u, caller()->GetReceiversOfType(cricket::MEDIA_TYPE_VIDEO).size());
5883 // Might also check that the callee's NegotiationNeeded flag is set.
5884
5885 // Reverse roles.
5886 callee()->CreateAndSetAndSignalOffer();
5887 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5888
Seth Hampson2f0d7022018-02-20 11:54:42 -08005889 MediaExpectations media_expectations;
5890 media_expectations.CallerExpectsSomeVideo();
5891 media_expectations.CalleeExpectsSomeAudio();
5892 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005893}
5894
Mirko Bonadeic84f6612019-01-31 12:20:57 +01005895INSTANTIATE_TEST_SUITE_P(
Steve Antonba42e992018-04-09 14:10:01 -07005896 PeerConnectionIntegrationTest,
5897 PeerConnectionIntegrationInteropTest,
5898 Values(std::make_tuple(SdpSemantics::kPlanB, SdpSemantics::kUnifiedPlan),
5899 std::make_tuple(SdpSemantics::kUnifiedPlan, SdpSemantics::kPlanB)));
5900
5901// Test that if the Unified Plan side offers two video tracks then the Plan B
5902// side will only see the first one and ignore the second.
5903TEST_F(PeerConnectionIntegrationTestPlanB, TwoVideoUnifiedPlanToNoMediaPlanB) {
Steve Anton3acffc32018-04-12 17:21:03 -07005904 ASSERT_TRUE(CreatePeerConnectionWrappersWithSdpSemantics(
5905 SdpSemantics::kUnifiedPlan, SdpSemantics::kPlanB));
Steve Anton74255ff2018-01-24 18:32:57 -08005906 ConnectFakeSignaling();
5907 auto first_sender = caller()->AddVideoTrack();
5908 caller()->AddVideoTrack();
5909
5910 caller()->CreateAndSetAndSignalOffer();
5911 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5912
5913 // Verify that there is only one receiver and it corresponds to the first
5914 // added track.
5915 auto receivers = callee()->pc()->GetReceivers();
5916 ASSERT_EQ(1u, receivers.size());
5917 EXPECT_TRUE(receivers[0]->track()->enabled());
5918 EXPECT_EQ(first_sender->track()->id(), receivers[0]->track()->id());
5919
Seth Hampson2f0d7022018-02-20 11:54:42 -08005920 MediaExpectations media_expectations;
5921 media_expectations.CalleeExpectsSomeVideo();
5922 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005923}
5924
Steve Anton2bed3972019-01-04 17:04:30 -08005925// Test that if the initial offer tagged BUNDLE section is rejected due to its
5926// associated RtpTransceiver being stopped and another transceiver is added,
5927// then renegotiation causes the callee to receive the new video track without
5928// error.
5929// This is a regression test for bugs.webrtc.org/9954
5930TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5931 ReOfferWithStoppedBundleTaggedTransceiver) {
5932 RTCConfiguration config;
5933 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
5934 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
5935 ConnectFakeSignaling();
5936 auto audio_transceiver_or_error =
5937 caller()->pc()->AddTransceiver(caller()->CreateLocalAudioTrack());
5938 ASSERT_TRUE(audio_transceiver_or_error.ok());
5939 auto audio_transceiver = audio_transceiver_or_error.MoveValue();
5940
5941 caller()->CreateAndSetAndSignalOffer();
5942 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5943 {
5944 MediaExpectations media_expectations;
5945 media_expectations.CalleeExpectsSomeAudio();
5946 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5947 }
5948
5949 audio_transceiver->Stop();
5950 caller()->pc()->AddTransceiver(caller()->CreateLocalVideoTrack());
5951
5952 caller()->CreateAndSetAndSignalOffer();
5953 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5954 {
5955 MediaExpectations media_expectations;
5956 media_expectations.CalleeExpectsSomeVideo();
5957 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5958 }
5959}
5960
Harald Alvestrandd61f2a72019-05-08 20:20:59 +02005961#ifdef HAVE_SCTP
5962
5963TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5964 EndToEndCallWithBundledSctpDataChannel) {
5965 ASSERT_TRUE(CreatePeerConnectionWrappers());
5966 ConnectFakeSignaling();
5967 caller()->CreateDataChannel();
5968 caller()->AddAudioVideoTracks();
5969 callee()->AddAudioVideoTracks();
5970 caller()->SetGeneratedSdpMunger(MakeSpecCompliantSctpOffer);
5971 caller()->CreateAndSetAndSignalOffer();
5972 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5973 // Ensure that media and data are multiplexed on the same DTLS transport.
5974 // This only works on Unified Plan, because transports are not exposed in plan
5975 // B.
5976 auto sctp_info = caller()->pc()->GetSctpTransport()->Information();
5977 EXPECT_EQ(sctp_info.dtls_transport(),
5978 caller()->pc()->GetSenders()[0]->dtls_transport());
5979}
5980
5981#endif // HAVE_SCTP
5982
deadbeef1dcb1642017-03-29 21:08:16 -07005983} // namespace
Mirko Bonadeiab64e8a2018-12-12 12:10:18 +01005984} // namespace webrtc
deadbeef1dcb1642017-03-29 21:08:16 -07005985
5986#endif // if !defined(THREAD_SANITIZER)