blob: d68b058a4bc0446b82a2c7fc4641678ead7f2a72 [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.
Alex Loiko9289eda2018-11-23 16:18:59 +00001661 EXPECT_EQ(1, webrtc::metrics::NumEvents(
Qingsi Wang7fc821d2018-07-12 12:54:53 -07001662 "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));
Qingsi Wang7fc821d2018-07-12 12:54:53 -07001847 EXPECT_LE(2, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1848 webrtc::kEnumCounterKeyProtocolDtls));
1849 EXPECT_EQ(0, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1850 webrtc::kEnumCounterKeyProtocolSdes));
deadbeef1dcb1642017-03-29 21:08:16 -07001851}
1852
1853// Uses SDES instead of DTLS for key agreement.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001854TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithSdes) {
deadbeef1dcb1642017-03-29 21:08:16 -07001855 PeerConnectionInterface::RTCConfiguration sdes_config;
1856 sdes_config.enable_dtls_srtp.emplace(false);
1857 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(sdes_config, sdes_config));
1858 ConnectFakeSignaling();
1859
1860 // Do normal offer/answer and wait for some frames to be received in each
1861 // direction.
Steve Anton15324772018-01-16 10:26:49 -08001862 caller()->AddAudioVideoTracks();
1863 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07001864 caller()->CreateAndSetAndSignalOffer();
1865 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08001866 MediaExpectations media_expectations;
1867 media_expectations.ExpectBidirectionalAudioAndVideo();
1868 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Qingsi Wang7fc821d2018-07-12 12:54:53 -07001869 EXPECT_LE(2, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1870 webrtc::kEnumCounterKeyProtocolSdes));
1871 EXPECT_EQ(0, webrtc::metrics::NumEvents("WebRTC.PeerConnection.KeyProtocol",
1872 webrtc::kEnumCounterKeyProtocolDtls));
deadbeef1dcb1642017-03-29 21:08:16 -07001873}
1874
Steve Anton9a44b2d2019-07-12 12:58:30 -07001875// Basic end-to-end test specifying the |enable_encrypted_rtp_header_extensions|
1876// option to offer encrypted versions of all header extensions alongside the
1877// unencrypted versions.
1878TEST_P(PeerConnectionIntegrationTest,
1879 EndToEndCallWithEncryptedRtpHeaderExtensions) {
1880 CryptoOptions crypto_options;
1881 crypto_options.srtp.enable_encrypted_rtp_header_extensions = true;
1882 PeerConnectionInterface::RTCConfiguration config;
1883 config.crypto_options = crypto_options;
1884 // Note: This allows offering >14 RTP header extensions.
1885 config.offer_extmap_allow_mixed = true;
1886 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
1887 ConnectFakeSignaling();
1888
1889 // Do normal offer/answer and wait for some frames to be received in each
1890 // direction.
1891 caller()->AddAudioVideoTracks();
1892 callee()->AddAudioVideoTracks();
1893 caller()->CreateAndSetAndSignalOffer();
1894 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
1895 MediaExpectations media_expectations;
1896 media_expectations.ExpectBidirectionalAudioAndVideo();
1897 ASSERT_TRUE(ExpectNewFrames(media_expectations));
1898}
1899
Steve Anton8c0f7a72017-10-03 10:03:10 -07001900// Tests that the GetRemoteAudioSSLCertificate method returns the remote DTLS
1901// certificate once the DTLS handshake has finished.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001902TEST_P(PeerConnectionIntegrationTest,
Steve Anton8c0f7a72017-10-03 10:03:10 -07001903 GetRemoteAudioSSLCertificateReturnsExchangedCertificate) {
1904 auto GetRemoteAudioSSLCertificate = [](PeerConnectionWrapper* wrapper) {
1905 auto pci = reinterpret_cast<PeerConnectionProxy*>(wrapper->pc());
1906 auto pc = reinterpret_cast<PeerConnection*>(pci->internal());
1907 return pc->GetRemoteAudioSSLCertificate();
1908 };
Zhi Huang70b820f2018-01-27 14:16:15 -08001909 auto GetRemoteAudioSSLCertChain = [](PeerConnectionWrapper* wrapper) {
1910 auto pci = reinterpret_cast<PeerConnectionProxy*>(wrapper->pc());
1911 auto pc = reinterpret_cast<PeerConnection*>(pci->internal());
1912 return pc->GetRemoteAudioSSLCertChain();
1913 };
Steve Anton8c0f7a72017-10-03 10:03:10 -07001914
1915 auto caller_cert = rtc::RTCCertificate::FromPEM(kRsaPems[0]);
1916 auto callee_cert = rtc::RTCCertificate::FromPEM(kRsaPems[1]);
1917
1918 // Configure each side with a known certificate so they can be compared later.
1919 PeerConnectionInterface::RTCConfiguration caller_config;
1920 caller_config.enable_dtls_srtp.emplace(true);
1921 caller_config.certificates.push_back(caller_cert);
1922 PeerConnectionInterface::RTCConfiguration callee_config;
1923 callee_config.enable_dtls_srtp.emplace(true);
1924 callee_config.certificates.push_back(callee_cert);
1925 ASSERT_TRUE(
1926 CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
1927 ConnectFakeSignaling();
1928
1929 // When first initialized, there should not be a remote SSL certificate (and
1930 // calling this method should not crash).
1931 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertificate(caller()));
1932 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertificate(callee()));
Zhi Huang70b820f2018-01-27 14:16:15 -08001933 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertChain(caller()));
1934 EXPECT_EQ(nullptr, GetRemoteAudioSSLCertChain(callee()));
Steve Anton8c0f7a72017-10-03 10:03:10 -07001935
Steve Anton15324772018-01-16 10:26:49 -08001936 caller()->AddAudioTrack();
1937 callee()->AddAudioTrack();
Steve Anton8c0f7a72017-10-03 10:03:10 -07001938 caller()->CreateAndSetAndSignalOffer();
1939 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
1940 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
1941
1942 // Once DTLS has been connected, each side should return the other's SSL
1943 // certificate when calling GetRemoteAudioSSLCertificate.
1944
1945 auto caller_remote_cert = GetRemoteAudioSSLCertificate(caller());
1946 ASSERT_TRUE(caller_remote_cert);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001947 EXPECT_EQ(callee_cert->GetSSLCertificate().ToPEMString(),
Steve Anton8c0f7a72017-10-03 10:03:10 -07001948 caller_remote_cert->ToPEMString());
1949
1950 auto callee_remote_cert = GetRemoteAudioSSLCertificate(callee());
1951 ASSERT_TRUE(callee_remote_cert);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001952 EXPECT_EQ(caller_cert->GetSSLCertificate().ToPEMString(),
Steve Anton8c0f7a72017-10-03 10:03:10 -07001953 callee_remote_cert->ToPEMString());
Zhi Huang70b820f2018-01-27 14:16:15 -08001954
1955 auto caller_remote_cert_chain = GetRemoteAudioSSLCertChain(caller());
1956 ASSERT_TRUE(caller_remote_cert_chain);
1957 ASSERT_EQ(1U, caller_remote_cert_chain->GetSize());
1958 auto remote_cert = &caller_remote_cert_chain->Get(0);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001959 EXPECT_EQ(callee_cert->GetSSLCertificate().ToPEMString(),
Zhi Huang70b820f2018-01-27 14:16:15 -08001960 remote_cert->ToPEMString());
1961
1962 auto callee_remote_cert_chain = GetRemoteAudioSSLCertChain(callee());
1963 ASSERT_TRUE(callee_remote_cert_chain);
1964 ASSERT_EQ(1U, callee_remote_cert_chain->GetSize());
1965 remote_cert = &callee_remote_cert_chain->Get(0);
Benjamin Wright6c6c9df2018-10-25 01:16:26 -07001966 EXPECT_EQ(caller_cert->GetSSLCertificate().ToPEMString(),
Zhi Huang70b820f2018-01-27 14:16:15 -08001967 remote_cert->ToPEMString());
Steve Anton8c0f7a72017-10-03 10:03:10 -07001968}
1969
deadbeef1dcb1642017-03-29 21:08:16 -07001970// This test sets up a call between two parties with a source resolution of
1971// 1280x720 and verifies that a 16:9 aspect ratio is received.
Seth Hampson2f0d7022018-02-20 11:54:42 -08001972TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07001973 Send1280By720ResolutionAndReceive16To9AspectRatio) {
1974 ASSERT_TRUE(CreatePeerConnectionWrappers());
1975 ConnectFakeSignaling();
1976
Niels Möller5c7efe72018-05-11 10:34:46 +02001977 // Add video tracks with 16:9 aspect ratio, size 1280 x 720.
1978 webrtc::FakePeriodicVideoSource::Config config;
1979 config.width = 1280;
1980 config.height = 720;
Johannes Kron965e7942018-09-13 15:36:20 +02001981 config.timestamp_offset_ms = rtc::TimeMillis();
Niels Möller5c7efe72018-05-11 10:34:46 +02001982 caller()->AddTrack(caller()->CreateLocalVideoTrackWithConfig(config));
1983 callee()->AddTrack(callee()->CreateLocalVideoTrackWithConfig(config));
deadbeef1dcb1642017-03-29 21:08:16 -07001984
1985 // Do normal offer/answer and wait for at least one frame to be received in
1986 // each direction.
1987 caller()->CreateAndSetAndSignalOffer();
1988 ASSERT_TRUE_WAIT(caller()->min_video_frames_received_per_track() > 0 &&
1989 callee()->min_video_frames_received_per_track() > 0,
1990 kMaxWaitForFramesMs);
1991
1992 // Check rendered aspect ratio.
1993 EXPECT_EQ(16.0 / 9, caller()->local_rendered_aspect_ratio());
1994 EXPECT_EQ(16.0 / 9, caller()->rendered_aspect_ratio());
1995 EXPECT_EQ(16.0 / 9, callee()->local_rendered_aspect_ratio());
1996 EXPECT_EQ(16.0 / 9, callee()->rendered_aspect_ratio());
1997}
1998
1999// This test sets up an one-way call, with media only from caller to
2000// callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002001TEST_P(PeerConnectionIntegrationTest, OneWayMediaCall) {
deadbeef1dcb1642017-03-29 21:08:16 -07002002 ASSERT_TRUE(CreatePeerConnectionWrappers());
2003 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002004 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002005 caller()->CreateAndSetAndSignalOffer();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002006 MediaExpectations media_expectations;
2007 media_expectations.CalleeExpectsSomeAudioAndVideo();
2008 media_expectations.CallerExpectsNoAudio();
2009 media_expectations.CallerExpectsNoVideo();
2010 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002011}
2012
2013// This test sets up a audio call initially, with the callee rejecting video
2014// initially. Then later the callee decides to upgrade to audio/video, and
2015// initiates a new offer/answer exchange.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002016TEST_P(PeerConnectionIntegrationTest, AudioToVideoUpgrade) {
deadbeef1dcb1642017-03-29 21:08:16 -07002017 ASSERT_TRUE(CreatePeerConnectionWrappers());
2018 ConnectFakeSignaling();
2019 // Initially, offer an audio/video stream from the caller, but refuse to
2020 // send/receive video on the callee side.
Steve Anton15324772018-01-16 10:26:49 -08002021 caller()->AddAudioVideoTracks();
2022 callee()->AddAudioTrack();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002023 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2024 PeerConnectionInterface::RTCOfferAnswerOptions options;
2025 options.offer_to_receive_video = 0;
2026 callee()->SetOfferAnswerOptions(options);
2027 } else {
2028 callee()->SetRemoteOfferHandler([this] {
2029 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
2030 });
2031 }
deadbeef1dcb1642017-03-29 21:08:16 -07002032 // Do offer/answer and make sure audio is still received end-to-end.
2033 caller()->CreateAndSetAndSignalOffer();
2034 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002035 {
2036 MediaExpectations media_expectations;
2037 media_expectations.ExpectBidirectionalAudio();
2038 media_expectations.ExpectNoVideo();
2039 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2040 }
deadbeef1dcb1642017-03-29 21:08:16 -07002041 // Sanity check that the callee's description has a rejected video section.
2042 ASSERT_NE(nullptr, callee()->pc()->local_description());
2043 const ContentInfo* callee_video_content =
2044 GetFirstVideoContent(callee()->pc()->local_description()->description());
2045 ASSERT_NE(nullptr, callee_video_content);
2046 EXPECT_TRUE(callee_video_content->rejected);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002047
deadbeef1dcb1642017-03-29 21:08:16 -07002048 // Now negotiate with video and ensure negotiation succeeds, with video
2049 // frames and additional audio frames being received.
Steve Anton15324772018-01-16 10:26:49 -08002050 callee()->AddVideoTrack();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002051 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2052 PeerConnectionInterface::RTCOfferAnswerOptions options;
2053 options.offer_to_receive_video = 1;
2054 callee()->SetOfferAnswerOptions(options);
2055 } else {
2056 callee()->SetRemoteOfferHandler(nullptr);
2057 caller()->SetRemoteOfferHandler([this] {
2058 // The caller creates a new transceiver to receive video on when receiving
2059 // the offer, but by default it is send only.
2060 auto transceivers = caller()->pc()->GetTransceivers();
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02002061 ASSERT_EQ(3U, transceivers.size());
Seth Hampson2f0d7022018-02-20 11:54:42 -08002062 ASSERT_EQ(cricket::MEDIA_TYPE_VIDEO,
2063 transceivers[2]->receiver()->media_type());
2064 transceivers[2]->sender()->SetTrack(caller()->CreateLocalVideoTrack());
2065 transceivers[2]->SetDirection(RtpTransceiverDirection::kSendRecv);
2066 });
2067 }
deadbeef1dcb1642017-03-29 21:08:16 -07002068 callee()->CreateAndSetAndSignalOffer();
2069 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002070 {
2071 // Expect additional audio frames to be received after the upgrade.
2072 MediaExpectations media_expectations;
2073 media_expectations.ExpectBidirectionalAudioAndVideo();
2074 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2075 }
deadbeef1dcb1642017-03-29 21:08:16 -07002076}
2077
deadbeef4389b4d2017-09-07 09:07:36 -07002078// Simpler than the above test; just add an audio track to an established
2079// video-only connection.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002080TEST_P(PeerConnectionIntegrationTest, AddAudioToVideoOnlyCall) {
deadbeef4389b4d2017-09-07 09:07:36 -07002081 ASSERT_TRUE(CreatePeerConnectionWrappers());
2082 ConnectFakeSignaling();
2083 // Do initial offer/answer with just a video track.
Steve Anton15324772018-01-16 10:26:49 -08002084 caller()->AddVideoTrack();
2085 callee()->AddVideoTrack();
deadbeef4389b4d2017-09-07 09:07:36 -07002086 caller()->CreateAndSetAndSignalOffer();
2087 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2088 // Now add an audio track and do another offer/answer.
Steve Anton15324772018-01-16 10:26:49 -08002089 caller()->AddAudioTrack();
2090 callee()->AddAudioTrack();
deadbeef4389b4d2017-09-07 09:07:36 -07002091 caller()->CreateAndSetAndSignalOffer();
2092 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2093 // Ensure both audio and video frames are received end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002094 MediaExpectations media_expectations;
2095 media_expectations.ExpectBidirectionalAudioAndVideo();
2096 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef4389b4d2017-09-07 09:07:36 -07002097}
2098
deadbeef1dcb1642017-03-29 21:08:16 -07002099// This test sets up a call that's transferred to a new caller with a different
2100// DTLS fingerprint.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002101TEST_P(PeerConnectionIntegrationTest, CallTransferredForCallee) {
deadbeef1dcb1642017-03-29 21:08:16 -07002102 ASSERT_TRUE(CreatePeerConnectionWrappers());
2103 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002104 caller()->AddAudioVideoTracks();
2105 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002106 caller()->CreateAndSetAndSignalOffer();
2107 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2108
2109 // Keep the original peer around which will still send packets to the
2110 // receiving client. These SRTP packets will be dropped.
2111 std::unique_ptr<PeerConnectionWrapper> original_peer(
2112 SetCallerPcWrapperAndReturnCurrent(
Seth Hampson2f0d7022018-02-20 11:54:42 -08002113 CreatePeerConnectionWrapperWithAlternateKey().release()));
deadbeef1dcb1642017-03-29 21:08:16 -07002114 // TODO(deadbeef): Why do we call Close here? That goes against the comment
2115 // directly above.
2116 original_peer->pc()->Close();
2117
2118 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002119 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002120 caller()->CreateAndSetAndSignalOffer();
2121 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2122 // Wait for some additional frames to be transmitted end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002123 MediaExpectations media_expectations;
2124 media_expectations.ExpectBidirectionalAudioAndVideo();
2125 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002126}
2127
2128// This test sets up a call that's transferred to a new callee with a different
2129// DTLS fingerprint.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002130TEST_P(PeerConnectionIntegrationTest, CallTransferredForCaller) {
deadbeef1dcb1642017-03-29 21:08:16 -07002131 ASSERT_TRUE(CreatePeerConnectionWrappers());
2132 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002133 caller()->AddAudioVideoTracks();
2134 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002135 caller()->CreateAndSetAndSignalOffer();
2136 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2137
2138 // Keep the original peer around which will still send packets to the
2139 // receiving client. These SRTP packets will be dropped.
2140 std::unique_ptr<PeerConnectionWrapper> original_peer(
2141 SetCalleePcWrapperAndReturnCurrent(
Seth Hampson2f0d7022018-02-20 11:54:42 -08002142 CreatePeerConnectionWrapperWithAlternateKey().release()));
deadbeef1dcb1642017-03-29 21:08:16 -07002143 // TODO(deadbeef): Why do we call Close here? That goes against the comment
2144 // directly above.
2145 original_peer->pc()->Close();
2146
2147 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002148 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002149 caller()->SetOfferAnswerOptions(IceRestartOfferAnswerOptions());
2150 caller()->CreateAndSetAndSignalOffer();
2151 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2152 // Wait for some additional frames to be transmitted end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002153 MediaExpectations media_expectations;
2154 media_expectations.ExpectBidirectionalAudioAndVideo();
2155 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002156}
2157
2158// This test sets up a non-bundled call and negotiates bundling at the same
2159// time as starting an ICE restart. When bundling is in effect in the restart,
2160// the DTLS-SRTP context should be successfully reset.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002161TEST_P(PeerConnectionIntegrationTest, BundlingEnabledWhileIceRestartOccurs) {
deadbeef1dcb1642017-03-29 21:08:16 -07002162 ASSERT_TRUE(CreatePeerConnectionWrappers());
2163 ConnectFakeSignaling();
2164
Steve Anton15324772018-01-16 10:26:49 -08002165 caller()->AddAudioVideoTracks();
2166 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002167 // Remove the bundle group from the SDP received by the callee.
2168 callee()->SetReceivedSdpMunger([](cricket::SessionDescription* desc) {
2169 desc->RemoveGroupByName("BUNDLE");
2170 });
2171 caller()->CreateAndSetAndSignalOffer();
2172 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002173 {
2174 MediaExpectations media_expectations;
2175 media_expectations.ExpectBidirectionalAudioAndVideo();
2176 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2177 }
deadbeef1dcb1642017-03-29 21:08:16 -07002178 // Now stop removing the BUNDLE group, and trigger an ICE restart.
2179 callee()->SetReceivedSdpMunger(nullptr);
2180 caller()->SetOfferAnswerOptions(IceRestartOfferAnswerOptions());
2181 caller()->CreateAndSetAndSignalOffer();
2182 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2183
2184 // Expect additional frames to be received after the ICE restart.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002185 {
2186 MediaExpectations media_expectations;
2187 media_expectations.ExpectBidirectionalAudioAndVideo();
2188 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2189 }
deadbeef1dcb1642017-03-29 21:08:16 -07002190}
2191
2192// Test CVO (Coordination of Video Orientation). If a video source is rotated
2193// and both peers support the CVO RTP header extension, the actual video frames
2194// don't need to be encoded in different resolutions, since the rotation is
2195// communicated through the RTP header extension.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002196TEST_P(PeerConnectionIntegrationTest, RotatedVideoWithCVOExtension) {
deadbeef1dcb1642017-03-29 21:08:16 -07002197 ASSERT_TRUE(CreatePeerConnectionWrappers());
2198 ConnectFakeSignaling();
2199 // Add rotated video tracks.
Steve Anton15324772018-01-16 10:26:49 -08002200 caller()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002201 caller()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_90));
Steve Anton15324772018-01-16 10:26:49 -08002202 callee()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002203 callee()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_270));
2204
2205 // Wait for video frames to be received by both sides.
2206 caller()->CreateAndSetAndSignalOffer();
2207 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2208 ASSERT_TRUE_WAIT(caller()->min_video_frames_received_per_track() > 0 &&
2209 callee()->min_video_frames_received_per_track() > 0,
2210 kMaxWaitForFramesMs);
2211
2212 // Ensure that the aspect ratio is unmodified.
2213 // TODO(deadbeef): Where does 4:3 come from? Should be explicit in the test,
2214 // not just assumed.
2215 EXPECT_EQ(4.0 / 3, caller()->local_rendered_aspect_ratio());
2216 EXPECT_EQ(4.0 / 3, caller()->rendered_aspect_ratio());
2217 EXPECT_EQ(4.0 / 3, callee()->local_rendered_aspect_ratio());
2218 EXPECT_EQ(4.0 / 3, callee()->rendered_aspect_ratio());
2219 // Ensure that the CVO bits were surfaced to the renderer.
2220 EXPECT_EQ(webrtc::kVideoRotation_270, caller()->rendered_rotation());
2221 EXPECT_EQ(webrtc::kVideoRotation_90, callee()->rendered_rotation());
2222}
2223
2224// Test that when the CVO extension isn't supported, video is rotated the
2225// old-fashioned way, by encoding rotated frames.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002226TEST_P(PeerConnectionIntegrationTest, RotatedVideoWithoutCVOExtension) {
deadbeef1dcb1642017-03-29 21:08:16 -07002227 ASSERT_TRUE(CreatePeerConnectionWrappers());
2228 ConnectFakeSignaling();
2229 // Add rotated video tracks.
Steve Anton15324772018-01-16 10:26:49 -08002230 caller()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002231 caller()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_90));
Steve Anton15324772018-01-16 10:26:49 -08002232 callee()->AddTrack(
deadbeef1dcb1642017-03-29 21:08:16 -07002233 callee()->CreateLocalVideoTrackWithRotation(webrtc::kVideoRotation_270));
2234
2235 // Remove the CVO extension from the offered SDP.
2236 callee()->SetReceivedSdpMunger([](cricket::SessionDescription* desc) {
2237 cricket::VideoContentDescription* video =
2238 GetFirstVideoContentDescription(desc);
2239 video->ClearRtpHeaderExtensions();
2240 });
2241 // Wait for video frames to be received by both sides.
2242 caller()->CreateAndSetAndSignalOffer();
2243 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2244 ASSERT_TRUE_WAIT(caller()->min_video_frames_received_per_track() > 0 &&
2245 callee()->min_video_frames_received_per_track() > 0,
2246 kMaxWaitForFramesMs);
2247
2248 // Expect that the aspect ratio is inversed to account for the 90/270 degree
2249 // rotation.
2250 // TODO(deadbeef): Where does 4:3 come from? Should be explicit in the test,
2251 // not just assumed.
2252 EXPECT_EQ(3.0 / 4, caller()->local_rendered_aspect_ratio());
2253 EXPECT_EQ(3.0 / 4, caller()->rendered_aspect_ratio());
2254 EXPECT_EQ(3.0 / 4, callee()->local_rendered_aspect_ratio());
2255 EXPECT_EQ(3.0 / 4, callee()->rendered_aspect_ratio());
2256 // Expect that each endpoint is unaware of the rotation of the other endpoint.
2257 EXPECT_EQ(webrtc::kVideoRotation_0, caller()->rendered_rotation());
2258 EXPECT_EQ(webrtc::kVideoRotation_0, callee()->rendered_rotation());
2259}
2260
deadbeef1dcb1642017-03-29 21:08:16 -07002261// Test that if the answerer rejects the audio m= section, no audio is sent or
2262// received, but video still can be.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002263TEST_P(PeerConnectionIntegrationTest, AnswererRejectsAudioSection) {
deadbeef1dcb1642017-03-29 21:08:16 -07002264 ASSERT_TRUE(CreatePeerConnectionWrappers());
2265 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002266 caller()->AddAudioVideoTracks();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002267 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2268 // Only add video track for callee, and set offer_to_receive_audio to 0, so
2269 // it will reject the audio m= section completely.
2270 PeerConnectionInterface::RTCOfferAnswerOptions options;
2271 options.offer_to_receive_audio = 0;
2272 callee()->SetOfferAnswerOptions(options);
2273 } else {
2274 // Stopping the audio RtpTransceiver will cause the media section to be
2275 // rejected in the answer.
2276 callee()->SetRemoteOfferHandler([this] {
2277 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_AUDIO)->Stop();
2278 });
2279 }
Steve Anton15324772018-01-16 10:26:49 -08002280 callee()->AddTrack(callee()->CreateLocalVideoTrack());
deadbeef1dcb1642017-03-29 21:08:16 -07002281 // Do offer/answer and wait for successful end-to-end video frames.
2282 caller()->CreateAndSetAndSignalOffer();
2283 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002284 MediaExpectations media_expectations;
2285 media_expectations.ExpectBidirectionalVideo();
2286 media_expectations.ExpectNoAudio();
2287 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2288
deadbeef1dcb1642017-03-29 21:08:16 -07002289 // Sanity check that the callee's description has a rejected audio section.
2290 ASSERT_NE(nullptr, callee()->pc()->local_description());
2291 const ContentInfo* callee_audio_content =
2292 GetFirstAudioContent(callee()->pc()->local_description()->description());
2293 ASSERT_NE(nullptr, callee_audio_content);
2294 EXPECT_TRUE(callee_audio_content->rejected);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002295 if (sdp_semantics_ == SdpSemantics::kUnifiedPlan) {
2296 // The caller's transceiver should have stopped after receiving the answer.
2297 EXPECT_TRUE(caller()
2298 ->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_AUDIO)
2299 ->stopped());
2300 }
deadbeef1dcb1642017-03-29 21:08:16 -07002301}
2302
2303// Test that if the answerer rejects the video m= section, no video is sent or
2304// received, but audio still can be.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002305TEST_P(PeerConnectionIntegrationTest, AnswererRejectsVideoSection) {
deadbeef1dcb1642017-03-29 21:08:16 -07002306 ASSERT_TRUE(CreatePeerConnectionWrappers());
2307 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002308 caller()->AddAudioVideoTracks();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002309 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2310 // Only add audio track for callee, and set offer_to_receive_video to 0, so
2311 // it will reject the video m= section completely.
2312 PeerConnectionInterface::RTCOfferAnswerOptions options;
2313 options.offer_to_receive_video = 0;
2314 callee()->SetOfferAnswerOptions(options);
2315 } else {
2316 // Stopping the video RtpTransceiver will cause the media section to be
2317 // rejected in the answer.
2318 callee()->SetRemoteOfferHandler([this] {
2319 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
2320 });
2321 }
Steve Anton15324772018-01-16 10:26:49 -08002322 callee()->AddTrack(callee()->CreateLocalAudioTrack());
deadbeef1dcb1642017-03-29 21:08:16 -07002323 // Do offer/answer and wait for successful end-to-end audio frames.
2324 caller()->CreateAndSetAndSignalOffer();
2325 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002326 MediaExpectations media_expectations;
2327 media_expectations.ExpectBidirectionalAudio();
2328 media_expectations.ExpectNoVideo();
2329 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2330
deadbeef1dcb1642017-03-29 21:08:16 -07002331 // Sanity check that the callee's description has a rejected video section.
2332 ASSERT_NE(nullptr, callee()->pc()->local_description());
2333 const ContentInfo* callee_video_content =
2334 GetFirstVideoContent(callee()->pc()->local_description()->description());
2335 ASSERT_NE(nullptr, callee_video_content);
2336 EXPECT_TRUE(callee_video_content->rejected);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002337 if (sdp_semantics_ == SdpSemantics::kUnifiedPlan) {
2338 // The caller's transceiver should have stopped after receiving the answer.
2339 EXPECT_TRUE(caller()
2340 ->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)
2341 ->stopped());
2342 }
deadbeef1dcb1642017-03-29 21:08:16 -07002343}
2344
2345// Test that if the answerer rejects both audio and video m= sections, nothing
2346// bad happens.
2347// TODO(deadbeef): Test that a data channel still works. Currently this doesn't
2348// test anything but the fact that negotiation succeeds, which doesn't mean
2349// much.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002350TEST_P(PeerConnectionIntegrationTest, AnswererRejectsAudioAndVideoSections) {
deadbeef1dcb1642017-03-29 21:08:16 -07002351 ASSERT_TRUE(CreatePeerConnectionWrappers());
2352 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002353 caller()->AddAudioVideoTracks();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002354 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2355 // Don't give the callee any tracks, and set offer_to_receive_X to 0, so it
2356 // will reject both audio and video m= sections.
2357 PeerConnectionInterface::RTCOfferAnswerOptions options;
2358 options.offer_to_receive_audio = 0;
2359 options.offer_to_receive_video = 0;
2360 callee()->SetOfferAnswerOptions(options);
2361 } else {
2362 callee()->SetRemoteOfferHandler([this] {
2363 // Stopping all transceivers will cause all media sections to be rejected.
Mirko Bonadei739baf02019-01-27 17:29:42 +01002364 for (const auto& transceiver : callee()->pc()->GetTransceivers()) {
Seth Hampson2f0d7022018-02-20 11:54:42 -08002365 transceiver->Stop();
2366 }
2367 });
2368 }
deadbeef1dcb1642017-03-29 21:08:16 -07002369 // Do offer/answer and wait for stable signaling state.
2370 caller()->CreateAndSetAndSignalOffer();
2371 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002372
deadbeef1dcb1642017-03-29 21:08:16 -07002373 // Sanity check that the callee's description has rejected m= sections.
2374 ASSERT_NE(nullptr, callee()->pc()->local_description());
2375 const ContentInfo* callee_audio_content =
2376 GetFirstAudioContent(callee()->pc()->local_description()->description());
2377 ASSERT_NE(nullptr, callee_audio_content);
2378 EXPECT_TRUE(callee_audio_content->rejected);
2379 const ContentInfo* callee_video_content =
2380 GetFirstVideoContent(callee()->pc()->local_description()->description());
2381 ASSERT_NE(nullptr, callee_video_content);
2382 EXPECT_TRUE(callee_video_content->rejected);
2383}
2384
2385// This test sets up an audio and video call between two parties. After the
2386// call runs for a while, the caller sends an updated offer with video being
2387// rejected. Once the re-negotiation is done, the video flow should stop and
2388// the audio flow should continue.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002389TEST_P(PeerConnectionIntegrationTest, VideoRejectedInSubsequentOffer) {
deadbeef1dcb1642017-03-29 21:08:16 -07002390 ASSERT_TRUE(CreatePeerConnectionWrappers());
2391 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002392 caller()->AddAudioVideoTracks();
2393 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002394 caller()->CreateAndSetAndSignalOffer();
2395 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002396 {
2397 MediaExpectations media_expectations;
2398 media_expectations.ExpectBidirectionalAudioAndVideo();
2399 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2400 }
deadbeef1dcb1642017-03-29 21:08:16 -07002401 // Renegotiate, rejecting the video m= section.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002402 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2403 caller()->SetGeneratedSdpMunger(
2404 [](cricket::SessionDescription* description) {
2405 for (cricket::ContentInfo& content : description->contents()) {
2406 if (cricket::IsVideoContent(&content)) {
2407 content.rejected = true;
2408 }
2409 }
2410 });
2411 } else {
2412 caller()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
2413 }
deadbeef1dcb1642017-03-29 21:08:16 -07002414 caller()->CreateAndSetAndSignalOffer();
2415 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
2416
2417 // Sanity check that the caller's description has a rejected video section.
2418 ASSERT_NE(nullptr, caller()->pc()->local_description());
2419 const ContentInfo* caller_video_content =
2420 GetFirstVideoContent(caller()->pc()->local_description()->description());
2421 ASSERT_NE(nullptr, caller_video_content);
2422 EXPECT_TRUE(caller_video_content->rejected);
deadbeef1dcb1642017-03-29 21:08:16 -07002423 // Wait for some additional audio frames to be received.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002424 {
2425 MediaExpectations media_expectations;
2426 media_expectations.ExpectBidirectionalAudio();
2427 media_expectations.ExpectNoVideo();
2428 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2429 }
deadbeef1dcb1642017-03-29 21:08:16 -07002430}
2431
Taylor Brandstetter60c8dc82018-04-11 15:20:27 -07002432// Do one offer/answer with audio, another that disables it (rejecting the m=
2433// section), and another that re-enables it. Regression test for:
2434// bugs.webrtc.org/6023
2435TEST_F(PeerConnectionIntegrationTestPlanB, EnableAudioAfterRejecting) {
2436 ASSERT_TRUE(CreatePeerConnectionWrappers());
2437 ConnectFakeSignaling();
2438
2439 // Add audio track, do normal offer/answer.
2440 rtc::scoped_refptr<webrtc::AudioTrackInterface> track =
2441 caller()->CreateLocalAudioTrack();
2442 rtc::scoped_refptr<webrtc::RtpSenderInterface> sender =
2443 caller()->pc()->AddTrack(track, {"stream"}).MoveValue();
2444 caller()->CreateAndSetAndSignalOffer();
2445 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2446
2447 // Remove audio track, and set offer_to_receive_audio to false to cause the
2448 // m= section to be completely disabled, not just "recvonly".
2449 caller()->pc()->RemoveTrack(sender);
2450 PeerConnectionInterface::RTCOfferAnswerOptions options;
2451 options.offer_to_receive_audio = 0;
2452 caller()->SetOfferAnswerOptions(options);
2453 caller()->CreateAndSetAndSignalOffer();
2454 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2455
2456 // Add the audio track again, expecting negotiation to succeed and frames to
2457 // flow.
2458 sender = caller()->pc()->AddTrack(track, {"stream"}).MoveValue();
2459 options.offer_to_receive_audio = 1;
2460 caller()->SetOfferAnswerOptions(options);
2461 caller()->CreateAndSetAndSignalOffer();
2462 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2463
2464 MediaExpectations media_expectations;
2465 media_expectations.CalleeExpectsSomeAudio();
2466 EXPECT_TRUE(ExpectNewFrames(media_expectations));
2467}
2468
deadbeef1dcb1642017-03-29 21:08:16 -07002469// Basic end-to-end test, but without SSRC/MSID signaling. This functionality
2470// is needed to support legacy endpoints.
2471// TODO(deadbeef): When we support the MID extension and demuxing on MID, also
2472// add a test for an end-to-end test without MID signaling either (basically,
2473// the minimum acceptable SDP).
Seth Hampson2f0d7022018-02-20 11:54:42 -08002474TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithoutSsrcOrMsidSignaling) {
deadbeef1dcb1642017-03-29 21:08:16 -07002475 ASSERT_TRUE(CreatePeerConnectionWrappers());
2476 ConnectFakeSignaling();
2477 // Add audio and video, testing that packets can be demuxed on payload type.
Steve Anton15324772018-01-16 10:26:49 -08002478 caller()->AddAudioVideoTracks();
2479 callee()->AddAudioVideoTracks();
deadbeefd8ad7882017-04-18 16:01:17 -07002480 // Remove SSRCs and MSIDs from the received offer SDP.
2481 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
deadbeef1dcb1642017-03-29 21:08:16 -07002482 caller()->CreateAndSetAndSignalOffer();
2483 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002484 MediaExpectations media_expectations;
2485 media_expectations.ExpectBidirectionalAudioAndVideo();
2486 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002487}
2488
Seth Hampson5897a6e2018-04-03 11:16:33 -07002489// Basic end-to-end test, without SSRC signaling. This means that the track
2490// was created properly and frames are delivered when the MSIDs are communicated
2491// with a=msid lines and no a=ssrc lines.
2492TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
2493 EndToEndCallWithoutSsrcSignaling) {
2494 const char kStreamId[] = "streamId";
2495 ASSERT_TRUE(CreatePeerConnectionWrappers());
2496 ConnectFakeSignaling();
2497 // Add just audio tracks.
2498 caller()->AddTrack(caller()->CreateLocalAudioTrack(), {kStreamId});
2499 callee()->AddAudioTrack();
2500
2501 // Remove SSRCs from the received offer SDP.
2502 callee()->SetReceivedSdpMunger(RemoveSsrcsAndKeepMsids);
2503 caller()->CreateAndSetAndSignalOffer();
2504 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2505 MediaExpectations media_expectations;
2506 media_expectations.ExpectBidirectionalAudio();
2507 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2508}
2509
Steve Antondf527fd2018-04-27 15:52:03 -07002510// Tests that video flows between multiple video tracks when SSRCs are not
2511// signaled. This exercises the MID RTP header extension which is needed to
2512// demux the incoming video tracks.
2513TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
2514 EndToEndCallWithTwoVideoTracksAndNoSignaledSsrc) {
2515 ASSERT_TRUE(CreatePeerConnectionWrappers());
2516 ConnectFakeSignaling();
2517 caller()->AddVideoTrack();
2518 caller()->AddVideoTrack();
2519 callee()->AddVideoTrack();
2520 callee()->AddVideoTrack();
2521
2522 caller()->SetReceivedSdpMunger(&RemoveSsrcsAndKeepMsids);
2523 callee()->SetReceivedSdpMunger(&RemoveSsrcsAndKeepMsids);
2524 caller()->CreateAndSetAndSignalOffer();
2525 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2526 ASSERT_EQ(2u, caller()->pc()->GetReceivers().size());
2527 ASSERT_EQ(2u, callee()->pc()->GetReceivers().size());
2528
2529 // Expect video to be received in both directions on both tracks.
2530 MediaExpectations media_expectations;
2531 media_expectations.ExpectBidirectionalVideo();
2532 EXPECT_TRUE(ExpectNewFrames(media_expectations));
2533}
2534
Henrik Boström5b147782018-12-04 11:25:05 +01002535TEST_F(PeerConnectionIntegrationTestUnifiedPlan, NoStreamsMsidLinePresent) {
2536 ASSERT_TRUE(CreatePeerConnectionWrappers());
2537 ConnectFakeSignaling();
2538 caller()->AddAudioTrack();
2539 caller()->AddVideoTrack();
2540 caller()->CreateAndSetAndSignalOffer();
2541 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2542 auto callee_receivers = callee()->pc()->GetReceivers();
2543 ASSERT_EQ(2u, callee_receivers.size());
2544 EXPECT_TRUE(callee_receivers[0]->stream_ids().empty());
2545 EXPECT_TRUE(callee_receivers[1]->stream_ids().empty());
2546}
2547
2548TEST_F(PeerConnectionIntegrationTestUnifiedPlan, NoStreamsMsidLineMissing) {
2549 ASSERT_TRUE(CreatePeerConnectionWrappers());
2550 ConnectFakeSignaling();
2551 caller()->AddAudioTrack();
2552 caller()->AddVideoTrack();
2553 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2554 caller()->CreateAndSetAndSignalOffer();
2555 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2556 auto callee_receivers = callee()->pc()->GetReceivers();
2557 ASSERT_EQ(2u, callee_receivers.size());
2558 ASSERT_EQ(1u, callee_receivers[0]->stream_ids().size());
2559 ASSERT_EQ(1u, callee_receivers[1]->stream_ids().size());
2560 EXPECT_EQ(callee_receivers[0]->stream_ids()[0],
2561 callee_receivers[1]->stream_ids()[0]);
2562 EXPECT_EQ(callee_receivers[0]->streams()[0],
2563 callee_receivers[1]->streams()[0]);
2564}
2565
deadbeef1dcb1642017-03-29 21:08:16 -07002566// Test that if two video tracks are sent (from caller to callee, in this test),
2567// they're transmitted correctly end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002568TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithTwoVideoTracks) {
deadbeef1dcb1642017-03-29 21:08:16 -07002569 ASSERT_TRUE(CreatePeerConnectionWrappers());
2570 ConnectFakeSignaling();
2571 // Add one audio/video stream, and one video-only stream.
Steve Anton15324772018-01-16 10:26:49 -08002572 caller()->AddAudioVideoTracks();
2573 caller()->AddVideoTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07002574 caller()->CreateAndSetAndSignalOffer();
2575 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Steve Anton15324772018-01-16 10:26:49 -08002576 ASSERT_EQ(3u, callee()->pc()->GetReceivers().size());
Seth Hampson2f0d7022018-02-20 11:54:42 -08002577
2578 MediaExpectations media_expectations;
2579 media_expectations.CalleeExpectsSomeAudioAndVideo();
2580 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002581}
2582
2583static void MakeSpecCompliantMaxBundleOffer(cricket::SessionDescription* desc) {
2584 bool first = true;
2585 for (cricket::ContentInfo& content : desc->contents()) {
2586 if (first) {
2587 first = false;
2588 continue;
2589 }
2590 content.bundle_only = true;
2591 }
2592 first = true;
2593 for (cricket::TransportInfo& transport : desc->transport_infos()) {
2594 if (first) {
2595 first = false;
2596 continue;
2597 }
2598 transport.description.ice_ufrag.clear();
2599 transport.description.ice_pwd.clear();
2600 transport.description.connection_role = cricket::CONNECTIONROLE_NONE;
2601 transport.description.identity_fingerprint.reset(nullptr);
2602 }
2603}
2604
2605// Test that if applying a true "max bundle" offer, which uses ports of 0,
2606// "a=bundle-only", omitting "a=fingerprint", "a=setup", "a=ice-ufrag" and
2607// "a=ice-pwd" for all but the audio "m=" section, negotiation still completes
2608// successfully and media flows.
2609// TODO(deadbeef): Update this test to also omit "a=rtcp-mux", once that works.
2610// TODO(deadbeef): Won't need this test once we start generating actual
2611// standards-compliant SDP.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002612TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07002613 EndToEndCallWithSpecCompliantMaxBundleOffer) {
2614 ASSERT_TRUE(CreatePeerConnectionWrappers());
2615 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002616 caller()->AddAudioVideoTracks();
2617 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002618 // Do the equivalent of setting the port to 0, adding a=bundle-only, and
2619 // removing a=ice-ufrag, a=ice-pwd, a=fingerprint and a=setup from all
2620 // but the first m= section.
2621 callee()->SetReceivedSdpMunger(MakeSpecCompliantMaxBundleOffer);
2622 caller()->CreateAndSetAndSignalOffer();
2623 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002624 MediaExpectations media_expectations;
2625 media_expectations.ExpectBidirectionalAudioAndVideo();
2626 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002627}
2628
2629// Test that we can receive the audio output level from a remote audio track.
2630// TODO(deadbeef): Use a fake audio source and verify that the output level is
2631// exactly what the source on the other side was configured with.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002632TEST_P(PeerConnectionIntegrationTest, GetAudioOutputLevelStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002633 ASSERT_TRUE(CreatePeerConnectionWrappers());
2634 ConnectFakeSignaling();
2635 // Just add an audio track.
Steve Anton15324772018-01-16 10:26:49 -08002636 caller()->AddAudioTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07002637 caller()->CreateAndSetAndSignalOffer();
2638 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2639
2640 // Get the audio output level stats. Note that the level is not available
2641 // until an RTCP packet has been received.
deadbeefd8ad7882017-04-18 16:01:17 -07002642 EXPECT_TRUE_WAIT(callee()->OldGetStats()->AudioOutputLevel() > 0,
deadbeef1dcb1642017-03-29 21:08:16 -07002643 kMaxWaitForFramesMs);
2644}
2645
2646// Test that an audio input level is reported.
2647// TODO(deadbeef): Use a fake audio source and verify that the input level is
2648// exactly what the source was configured with.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002649TEST_P(PeerConnectionIntegrationTest, GetAudioInputLevelStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002650 ASSERT_TRUE(CreatePeerConnectionWrappers());
2651 ConnectFakeSignaling();
2652 // Just add an audio track.
Steve Anton15324772018-01-16 10:26:49 -08002653 caller()->AddAudioTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07002654 caller()->CreateAndSetAndSignalOffer();
2655 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2656
2657 // Get the audio input level stats. The level should be available very
2658 // soon after the test starts.
deadbeefd8ad7882017-04-18 16:01:17 -07002659 EXPECT_TRUE_WAIT(caller()->OldGetStats()->AudioInputLevel() > 0,
deadbeef1dcb1642017-03-29 21:08:16 -07002660 kMaxWaitForStatsMs);
2661}
2662
2663// Test that we can get incoming byte counts from both audio and video tracks.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002664TEST_P(PeerConnectionIntegrationTest, GetBytesReceivedStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002665 ASSERT_TRUE(CreatePeerConnectionWrappers());
2666 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002667 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07002668 // Do offer/answer, wait for the callee to receive some frames.
2669 caller()->CreateAndSetAndSignalOffer();
2670 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002671
2672 MediaExpectations media_expectations;
2673 media_expectations.CalleeExpectsSomeAudioAndVideo();
2674 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002675
2676 // Get a handle to the remote tracks created, so they can be used as GetStats
2677 // filters.
Mirko Bonadei739baf02019-01-27 17:29:42 +01002678 for (const auto& receiver : callee()->pc()->GetReceivers()) {
Steve Anton15324772018-01-16 10:26:49 -08002679 // We received frames, so we definitely should have nonzero "received bytes"
2680 // stats at this point.
2681 EXPECT_GT(callee()->OldGetStatsForTrack(receiver->track())->BytesReceived(),
2682 0);
2683 }
deadbeef1dcb1642017-03-29 21:08:16 -07002684}
2685
2686// Test that we can get outgoing byte counts from both audio and video tracks.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002687TEST_P(PeerConnectionIntegrationTest, GetBytesSentStatsWithOldStatsApi) {
deadbeef1dcb1642017-03-29 21:08:16 -07002688 ASSERT_TRUE(CreatePeerConnectionWrappers());
2689 ConnectFakeSignaling();
2690 auto audio_track = caller()->CreateLocalAudioTrack();
2691 auto video_track = caller()->CreateLocalVideoTrack();
Steve Anton15324772018-01-16 10:26:49 -08002692 caller()->AddTrack(audio_track);
2693 caller()->AddTrack(video_track);
deadbeef1dcb1642017-03-29 21:08:16 -07002694 // Do offer/answer, wait for the callee to receive some frames.
2695 caller()->CreateAndSetAndSignalOffer();
2696 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002697 MediaExpectations media_expectations;
2698 media_expectations.CalleeExpectsSomeAudioAndVideo();
2699 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07002700
2701 // The callee received frames, so we definitely should have nonzero "sent
2702 // bytes" stats at this point.
deadbeefd8ad7882017-04-18 16:01:17 -07002703 EXPECT_GT(caller()->OldGetStatsForTrack(audio_track)->BytesSent(), 0);
2704 EXPECT_GT(caller()->OldGetStatsForTrack(video_track)->BytesSent(), 0);
2705}
2706
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002707// Test that we can get capture start ntp time.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002708TEST_P(PeerConnectionIntegrationTest, GetCaptureStartNtpTimeWithOldStatsApi) {
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002709 ASSERT_TRUE(CreatePeerConnectionWrappers());
2710 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002711 caller()->AddAudioTrack();
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002712
Steve Anton15324772018-01-16 10:26:49 -08002713 callee()->AddAudioTrack();
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002714
2715 // Do offer/answer, wait for the callee to receive some frames.
2716 caller()->CreateAndSetAndSignalOffer();
2717 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2718
2719 // Get the remote audio track created on the receiver, so they can be used as
2720 // GetStats filters.
Steve Antonfc853712018-03-01 13:48:58 -08002721 auto receivers = callee()->pc()->GetReceivers();
2722 ASSERT_EQ(1u, receivers.size());
2723 auto remote_audio_track = receivers[0]->track();
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002724
2725 // Get the audio output level stats. Note that the level is not available
2726 // until an RTCP packet has been received.
Zhi Huange830e682018-03-30 10:48:35 -07002727 EXPECT_TRUE_WAIT(
2728 callee()->OldGetStatsForTrack(remote_audio_track)->CaptureStartNtpTime() >
2729 0,
2730 2 * kMaxWaitForFramesMs);
Fredrik Solenberg73276ad2017-09-14 14:46:47 +02002731}
2732
Steve Antona41959e2018-11-28 11:15:33 -08002733// Test that the track ID is associated with all local and remote SSRC stats
2734// using the old GetStats() and more than 1 audio and more than 1 video track.
2735// This is a regression test for crbug.com/906988
2736TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
2737 OldGetStatsAssociatesTrackIdForManyMediaSections) {
2738 ASSERT_TRUE(CreatePeerConnectionWrappers());
2739 ConnectFakeSignaling();
2740 auto audio_sender_1 = caller()->AddAudioTrack();
2741 auto video_sender_1 = caller()->AddVideoTrack();
2742 auto audio_sender_2 = caller()->AddAudioTrack();
2743 auto video_sender_2 = caller()->AddVideoTrack();
2744 caller()->CreateAndSetAndSignalOffer();
2745 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2746
2747 MediaExpectations media_expectations;
2748 media_expectations.CalleeExpectsSomeAudioAndVideo();
2749 ASSERT_TRUE_WAIT(ExpectNewFrames(media_expectations), kDefaultTimeout);
2750
2751 std::vector<std::string> track_ids = {
2752 audio_sender_1->track()->id(), video_sender_1->track()->id(),
2753 audio_sender_2->track()->id(), video_sender_2->track()->id()};
2754
2755 auto caller_stats = caller()->OldGetStats();
2756 EXPECT_THAT(caller_stats->TrackIds(), UnorderedElementsAreArray(track_ids));
2757 auto callee_stats = callee()->OldGetStats();
2758 EXPECT_THAT(callee_stats->TrackIds(), UnorderedElementsAreArray(track_ids));
2759}
2760
Steve Antonffa6ce42018-11-30 09:26:08 -08002761// Test that the new GetStats() returns stats for all outgoing/incoming streams
2762// with the correct track IDs if there are more than one audio and more than one
2763// video senders/receivers.
2764TEST_P(PeerConnectionIntegrationTest, NewGetStatsManyAudioAndManyVideoStreams) {
2765 ASSERT_TRUE(CreatePeerConnectionWrappers());
2766 ConnectFakeSignaling();
2767 auto audio_sender_1 = caller()->AddAudioTrack();
2768 auto video_sender_1 = caller()->AddVideoTrack();
2769 auto audio_sender_2 = caller()->AddAudioTrack();
2770 auto video_sender_2 = caller()->AddVideoTrack();
2771 caller()->CreateAndSetAndSignalOffer();
2772 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2773
2774 MediaExpectations media_expectations;
2775 media_expectations.CalleeExpectsSomeAudioAndVideo();
2776 ASSERT_TRUE_WAIT(ExpectNewFrames(media_expectations), kDefaultTimeout);
2777
2778 std::vector<std::string> track_ids = {
2779 audio_sender_1->track()->id(), video_sender_1->track()->id(),
2780 audio_sender_2->track()->id(), video_sender_2->track()->id()};
2781
2782 rtc::scoped_refptr<const webrtc::RTCStatsReport> caller_report =
2783 caller()->NewGetStats();
2784 ASSERT_TRUE(caller_report);
2785 auto outbound_stream_stats =
2786 caller_report->GetStatsOfType<webrtc::RTCOutboundRTPStreamStats>();
2787 ASSERT_EQ(4u, outbound_stream_stats.size());
2788 std::vector<std::string> outbound_track_ids;
2789 for (const auto& stat : outbound_stream_stats) {
2790 ASSERT_TRUE(stat->bytes_sent.is_defined());
2791 EXPECT_LT(0u, *stat->bytes_sent);
Rasmus Brandt2efae772019-06-27 14:29:34 +02002792 if (*stat->kind == "video") {
2793 ASSERT_TRUE(stat->key_frames_encoded.is_defined());
2794 EXPECT_GT(*stat->key_frames_encoded, 0u);
2795 ASSERT_TRUE(stat->frames_encoded.is_defined());
2796 EXPECT_GE(*stat->frames_encoded, *stat->key_frames_encoded);
2797 }
Steve Antonffa6ce42018-11-30 09:26:08 -08002798 ASSERT_TRUE(stat->track_id.is_defined());
2799 const auto* track_stat =
2800 caller_report->GetAs<webrtc::RTCMediaStreamTrackStats>(*stat->track_id);
2801 ASSERT_TRUE(track_stat);
2802 outbound_track_ids.push_back(*track_stat->track_identifier);
2803 }
2804 EXPECT_THAT(outbound_track_ids, UnorderedElementsAreArray(track_ids));
2805
2806 rtc::scoped_refptr<const webrtc::RTCStatsReport> callee_report =
2807 callee()->NewGetStats();
2808 ASSERT_TRUE(callee_report);
2809 auto inbound_stream_stats =
2810 callee_report->GetStatsOfType<webrtc::RTCInboundRTPStreamStats>();
2811 ASSERT_EQ(4u, inbound_stream_stats.size());
2812 std::vector<std::string> inbound_track_ids;
2813 for (const auto& stat : inbound_stream_stats) {
2814 ASSERT_TRUE(stat->bytes_received.is_defined());
2815 EXPECT_LT(0u, *stat->bytes_received);
Rasmus Brandt2efae772019-06-27 14:29:34 +02002816 if (*stat->kind == "video") {
2817 ASSERT_TRUE(stat->key_frames_decoded.is_defined());
2818 EXPECT_GT(*stat->key_frames_decoded, 0u);
2819 ASSERT_TRUE(stat->frames_decoded.is_defined());
2820 EXPECT_GE(*stat->frames_decoded, *stat->key_frames_decoded);
2821 }
Steve Antonffa6ce42018-11-30 09:26:08 -08002822 ASSERT_TRUE(stat->track_id.is_defined());
2823 const auto* track_stat =
2824 callee_report->GetAs<webrtc::RTCMediaStreamTrackStats>(*stat->track_id);
2825 ASSERT_TRUE(track_stat);
2826 inbound_track_ids.push_back(*track_stat->track_identifier);
2827 }
2828 EXPECT_THAT(inbound_track_ids, UnorderedElementsAreArray(track_ids));
2829}
2830
2831// Test that we can get stats (using the new stats implementation) for
deadbeefd8ad7882017-04-18 16:01:17 -07002832// unsignaled streams. Meaning when SSRCs/MSIDs aren't signaled explicitly in
2833// SDP.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002834TEST_P(PeerConnectionIntegrationTest,
deadbeefd8ad7882017-04-18 16:01:17 -07002835 GetStatsForUnsignaledStreamWithNewStatsApi) {
2836 ASSERT_TRUE(CreatePeerConnectionWrappers());
2837 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002838 caller()->AddAudioTrack();
deadbeefd8ad7882017-04-18 16:01:17 -07002839 // Remove SSRCs and MSIDs from the received offer SDP.
2840 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2841 caller()->CreateAndSetAndSignalOffer();
2842 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002843 MediaExpectations media_expectations;
2844 media_expectations.CalleeExpectsSomeAudio(1);
2845 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeefd8ad7882017-04-18 16:01:17 -07002846
2847 // We received a frame, so we should have nonzero "bytes received" stats for
2848 // the unsignaled stream, if stats are working for it.
2849 rtc::scoped_refptr<const webrtc::RTCStatsReport> report =
2850 callee()->NewGetStats();
2851 ASSERT_NE(nullptr, report);
2852 auto inbound_stream_stats =
2853 report->GetStatsOfType<webrtc::RTCInboundRTPStreamStats>();
2854 ASSERT_EQ(1U, inbound_stream_stats.size());
2855 ASSERT_TRUE(inbound_stream_stats[0]->bytes_received.is_defined());
2856 ASSERT_GT(*inbound_stream_stats[0]->bytes_received, 0U);
zhihuangf8164932017-05-19 13:09:47 -07002857 ASSERT_TRUE(inbound_stream_stats[0]->track_id.is_defined());
2858}
2859
Taylor Brandstettera4653442018-06-19 09:44:26 -07002860// Same as above but for the legacy stats implementation.
2861TEST_P(PeerConnectionIntegrationTest,
2862 GetStatsForUnsignaledStreamWithOldStatsApi) {
2863 ASSERT_TRUE(CreatePeerConnectionWrappers());
2864 ConnectFakeSignaling();
2865 caller()->AddAudioTrack();
2866 // Remove SSRCs and MSIDs from the received offer SDP.
2867 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2868 caller()->CreateAndSetAndSignalOffer();
2869 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2870
2871 // Note that, since the old stats implementation associates SSRCs with tracks
2872 // using SDP, when SSRCs aren't signaled in SDP these stats won't have an
2873 // associated track ID. So we can't use the track "selector" argument.
2874 //
2875 // Also, we use "EXPECT_TRUE_WAIT" because the stats collector may decide to
2876 // return cached stats if not enough time has passed since the last update.
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02002877 EXPECT_TRUE_WAIT(callee()->OldGetStats()->BytesReceived() > 0,
Taylor Brandstettera4653442018-06-19 09:44:26 -07002878 kDefaultTimeout);
2879}
2880
zhihuangf8164932017-05-19 13:09:47 -07002881// Test that we can successfully get the media related stats (audio level
2882// etc.) for the unsignaled stream.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002883TEST_P(PeerConnectionIntegrationTest,
zhihuangf8164932017-05-19 13:09:47 -07002884 GetMediaStatsForUnsignaledStreamWithNewStatsApi) {
2885 ASSERT_TRUE(CreatePeerConnectionWrappers());
2886 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002887 caller()->AddAudioVideoTracks();
zhihuangf8164932017-05-19 13:09:47 -07002888 // Remove SSRCs and MSIDs from the received offer SDP.
2889 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2890 caller()->CreateAndSetAndSignalOffer();
2891 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08002892 MediaExpectations media_expectations;
2893 media_expectations.CalleeExpectsSomeAudio(1);
2894 media_expectations.CalleeExpectsSomeVideo(1);
2895 ASSERT_TRUE(ExpectNewFrames(media_expectations));
zhihuangf8164932017-05-19 13:09:47 -07002896
2897 rtc::scoped_refptr<const webrtc::RTCStatsReport> report =
2898 callee()->NewGetStats();
2899 ASSERT_NE(nullptr, report);
2900
2901 auto media_stats = report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
2902 auto audio_index = FindFirstMediaStatsIndexByKind("audio", media_stats);
2903 ASSERT_GE(audio_index, 0);
2904 EXPECT_TRUE(media_stats[audio_index]->audio_level.is_defined());
deadbeef1dcb1642017-03-29 21:08:16 -07002905}
2906
deadbeef4e2deab2017-09-20 13:56:21 -07002907// Helper for test below.
2908void ModifySsrcs(cricket::SessionDescription* desc) {
2909 for (ContentInfo& content : desc->contents()) {
Steve Antondf527fd2018-04-27 15:52:03 -07002910 for (StreamParams& stream :
Steve Antonb1c1de12017-12-21 15:14:30 -08002911 content.media_description()->mutable_streams()) {
deadbeef4e2deab2017-09-20 13:56:21 -07002912 for (uint32_t& ssrc : stream.ssrcs) {
2913 ssrc = rtc::CreateRandomId();
2914 }
2915 }
2916 }
2917}
2918
2919// Test that the "RTCMediaSteamTrackStats" object is updated correctly when
2920// SSRCs are unsignaled, and the SSRC of the received (audio) stream changes.
2921// This should result in two "RTCInboundRTPStreamStats", but only one
2922// "RTCMediaStreamTrackStats", whose counters go up continuously rather than
2923// being reset to 0 once the SSRC change occurs.
2924//
2925// Regression test for this bug:
2926// https://bugs.chromium.org/p/webrtc/issues/detail?id=8158
2927//
2928// The bug causes the track stats to only represent one of the two streams:
2929// whichever one has the higher SSRC. So with this bug, there was a 50% chance
2930// that the track stat counters would reset to 0 when the new stream is
2931// received, and a 50% chance that they'll stop updating (while
2932// "concealed_samples" continues increasing, due to silence being generated for
2933// the inactive stream).
Seth Hampson2f0d7022018-02-20 11:54:42 -08002934TEST_P(PeerConnectionIntegrationTest,
Steve Anton83119dd2017-11-10 16:19:52 -08002935 TrackStatsUpdatedCorrectlyWhenUnsignaledSsrcChanges) {
deadbeef4e2deab2017-09-20 13:56:21 -07002936 ASSERT_TRUE(CreatePeerConnectionWrappers());
2937 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08002938 caller()->AddAudioTrack();
deadbeef4e2deab2017-09-20 13:56:21 -07002939 // Remove SSRCs and MSIDs from the received offer SDP, simulating an endpoint
2940 // that doesn't signal SSRCs (from the callee's perspective).
2941 callee()->SetReceivedSdpMunger(RemoveSsrcsAndMsids);
2942 caller()->CreateAndSetAndSignalOffer();
2943 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2944 // Wait for 50 audio frames (500ms of audio) to be received by the callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002945 {
2946 MediaExpectations media_expectations;
2947 media_expectations.CalleeExpectsSomeAudio(50);
2948 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2949 }
deadbeef4e2deab2017-09-20 13:56:21 -07002950 // Some audio frames were received, so we should have nonzero "samples
2951 // received" for the track.
2952 rtc::scoped_refptr<const webrtc::RTCStatsReport> report =
2953 callee()->NewGetStats();
2954 ASSERT_NE(nullptr, report);
2955 auto track_stats = report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
2956 ASSERT_EQ(1U, track_stats.size());
2957 ASSERT_TRUE(track_stats[0]->total_samples_received.is_defined());
2958 ASSERT_GT(*track_stats[0]->total_samples_received, 0U);
2959 // uint64_t prev_samples_received = *track_stats[0]->total_samples_received;
2960
2961 // Create a new offer and munge it to cause the caller to use a new SSRC.
2962 caller()->SetGeneratedSdpMunger(ModifySsrcs);
2963 caller()->CreateAndSetAndSignalOffer();
2964 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
2965 // Wait for 25 more audio frames (250ms of audio) to be received, from the new
2966 // SSRC.
Seth Hampson2f0d7022018-02-20 11:54:42 -08002967 {
2968 MediaExpectations media_expectations;
2969 media_expectations.CalleeExpectsSomeAudio(25);
2970 ASSERT_TRUE(ExpectNewFrames(media_expectations));
2971 }
deadbeef4e2deab2017-09-20 13:56:21 -07002972
2973 report = callee()->NewGetStats();
2974 ASSERT_NE(nullptr, report);
2975 track_stats = report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
2976 ASSERT_EQ(1U, track_stats.size());
2977 ASSERT_TRUE(track_stats[0]->total_samples_received.is_defined());
2978 // The "total samples received" stat should only be greater than it was
2979 // before.
2980 // TODO(deadbeef): Uncomment this assertion once the bug is completely fixed.
2981 // Right now, the new SSRC will cause the counters to reset to 0.
2982 // EXPECT_GT(*track_stats[0]->total_samples_received, prev_samples_received);
2983
2984 // Additionally, the percentage of concealed samples (samples generated to
Steve Anton83119dd2017-11-10 16:19:52 -08002985 // conceal packet loss) should be less than 50%. If it's greater, that's a
deadbeef4e2deab2017-09-20 13:56:21 -07002986 // good sign that we're seeing stats from the old stream that's no longer
2987 // receiving packets, and is generating concealed samples of silence.
Steve Anton83119dd2017-11-10 16:19:52 -08002988 constexpr double kAcceptableConcealedSamplesPercentage = 0.50;
deadbeef4e2deab2017-09-20 13:56:21 -07002989 ASSERT_TRUE(track_stats[0]->concealed_samples.is_defined());
2990 EXPECT_LT(*track_stats[0]->concealed_samples,
2991 *track_stats[0]->total_samples_received *
2992 kAcceptableConcealedSamplesPercentage);
2993
2994 // Also ensure that we have two "RTCInboundRTPStreamStats" as expected, as a
2995 // sanity check that the SSRC really changed.
2996 // TODO(deadbeef): This isn't working right now, because we're not returning
2997 // *any* stats for the inactive stream. Uncomment when the bug is completely
2998 // fixed.
2999 // auto inbound_stream_stats =
3000 // report->GetStatsOfType<webrtc::RTCInboundRTPStreamStats>();
3001 // ASSERT_EQ(2U, inbound_stream_stats.size());
3002}
3003
deadbeef1dcb1642017-03-29 21:08:16 -07003004// Test that DTLS 1.0 is used if both sides only support DTLS 1.0.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003005TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithDtls10) {
deadbeef1dcb1642017-03-29 21:08:16 -07003006 PeerConnectionFactory::Options dtls_10_options;
3007 dtls_10_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3008 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(dtls_10_options,
3009 dtls_10_options));
3010 ConnectFakeSignaling();
3011 // Do normal offer/answer and wait for some frames to be received in each
3012 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003013 caller()->AddAudioVideoTracks();
3014 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003015 caller()->CreateAndSetAndSignalOffer();
3016 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003017 MediaExpectations media_expectations;
3018 media_expectations.ExpectBidirectionalAudioAndVideo();
3019 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003020}
3021
3022// Test getting cipher stats and UMA metrics when DTLS 1.0 is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003023TEST_P(PeerConnectionIntegrationTest, Dtls10CipherStatsAndUmaMetrics) {
deadbeef1dcb1642017-03-29 21:08:16 -07003024 PeerConnectionFactory::Options dtls_10_options;
3025 dtls_10_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3026 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(dtls_10_options,
3027 dtls_10_options));
3028 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08003029 caller()->AddAudioVideoTracks();
3030 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003031 caller()->CreateAndSetAndSignalOffer();
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003032 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07003033 EXPECT_TRUE_WAIT(rtc::SSLStreamAdapter::IsAcceptableCipher(
deadbeefd8ad7882017-04-18 16:01:17 -07003034 caller()->OldGetStats()->DtlsCipher(), rtc::KT_DEFAULT),
deadbeef1dcb1642017-03-29 21:08:16 -07003035 kDefaultTimeout);
3036 EXPECT_EQ_WAIT(rtc::SrtpCryptoSuiteToName(kDefaultSrtpCryptoSuite),
deadbeefd8ad7882017-04-18 16:01:17 -07003037 caller()->OldGetStats()->SrtpCipher(), kDefaultTimeout);
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003038 // TODO(bugs.webrtc.org/9456): Fix it.
Alex Loiko9289eda2018-11-23 16:18:59 +00003039 EXPECT_EQ(1, webrtc::metrics::NumEvents(
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003040 "WebRTC.PeerConnection.SrtpCryptoSuite.Audio",
3041 kDefaultSrtpCryptoSuite));
deadbeef1dcb1642017-03-29 21:08:16 -07003042}
3043
3044// Test getting cipher stats and UMA metrics when DTLS 1.2 is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003045TEST_P(PeerConnectionIntegrationTest, Dtls12CipherStatsAndUmaMetrics) {
deadbeef1dcb1642017-03-29 21:08:16 -07003046 PeerConnectionFactory::Options dtls_12_options;
3047 dtls_12_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
3048 ASSERT_TRUE(CreatePeerConnectionWrappersWithOptions(dtls_12_options,
3049 dtls_12_options));
3050 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08003051 caller()->AddAudioVideoTracks();
3052 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003053 caller()->CreateAndSetAndSignalOffer();
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003054 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07003055 EXPECT_TRUE_WAIT(rtc::SSLStreamAdapter::IsAcceptableCipher(
deadbeefd8ad7882017-04-18 16:01:17 -07003056 caller()->OldGetStats()->DtlsCipher(), rtc::KT_DEFAULT),
deadbeef1dcb1642017-03-29 21:08:16 -07003057 kDefaultTimeout);
3058 EXPECT_EQ_WAIT(rtc::SrtpCryptoSuiteToName(kDefaultSrtpCryptoSuite),
deadbeefd8ad7882017-04-18 16:01:17 -07003059 caller()->OldGetStats()->SrtpCipher(), kDefaultTimeout);
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003060 // TODO(bugs.webrtc.org/9456): Fix it.
Alex Loiko9289eda2018-11-23 16:18:59 +00003061 EXPECT_EQ(1, webrtc::metrics::NumEvents(
Qingsi Wang7fc821d2018-07-12 12:54:53 -07003062 "WebRTC.PeerConnection.SrtpCryptoSuite.Audio",
3063 kDefaultSrtpCryptoSuite));
deadbeef1dcb1642017-03-29 21:08:16 -07003064}
3065
3066// Test that DTLS 1.0 can be used if the caller supports DTLS 1.2 and the
3067// callee only supports 1.0.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003068TEST_P(PeerConnectionIntegrationTest, CallerDtls12ToCalleeDtls10) {
deadbeef1dcb1642017-03-29 21:08:16 -07003069 PeerConnectionFactory::Options caller_options;
3070 caller_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
3071 PeerConnectionFactory::Options callee_options;
3072 callee_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3073 ASSERT_TRUE(
3074 CreatePeerConnectionWrappersWithOptions(caller_options, callee_options));
3075 ConnectFakeSignaling();
3076 // Do normal offer/answer and wait for some frames to be received in each
3077 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003078 caller()->AddAudioVideoTracks();
3079 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003080 caller()->CreateAndSetAndSignalOffer();
3081 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003082 MediaExpectations media_expectations;
3083 media_expectations.ExpectBidirectionalAudioAndVideo();
3084 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003085}
3086
3087// Test that DTLS 1.0 can be used if the caller only supports DTLS 1.0 and the
3088// callee supports 1.2.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003089TEST_P(PeerConnectionIntegrationTest, CallerDtls10ToCalleeDtls12) {
deadbeef1dcb1642017-03-29 21:08:16 -07003090 PeerConnectionFactory::Options caller_options;
3091 caller_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
3092 PeerConnectionFactory::Options callee_options;
3093 callee_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
3094 ASSERT_TRUE(
3095 CreatePeerConnectionWrappersWithOptions(caller_options, callee_options));
3096 ConnectFakeSignaling();
3097 // Do normal offer/answer and wait for some frames to be received in each
3098 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003099 caller()->AddAudioVideoTracks();
3100 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003101 caller()->CreateAndSetAndSignalOffer();
3102 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003103 MediaExpectations media_expectations;
3104 media_expectations.ExpectBidirectionalAudioAndVideo();
3105 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003106}
3107
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003108// The three tests below verify that "enable_aes128_sha1_32_crypto_cipher"
3109// works as expected; the cipher should only be used if enabled by both sides.
3110TEST_P(PeerConnectionIntegrationTest,
3111 Aes128Sha1_32_CipherNotUsedWhenOnlyCallerSupported) {
3112 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003113 caller_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003114 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003115 callee_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher =
3116 false;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003117 int expected_cipher_suite = rtc::SRTP_AES128_CM_SHA1_80;
3118 TestNegotiatedCipherSuite(caller_options, callee_options,
3119 expected_cipher_suite);
3120}
3121
3122TEST_P(PeerConnectionIntegrationTest,
3123 Aes128Sha1_32_CipherNotUsedWhenOnlyCalleeSupported) {
3124 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003125 caller_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher =
3126 false;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003127 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003128 callee_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003129 int expected_cipher_suite = rtc::SRTP_AES128_CM_SHA1_80;
3130 TestNegotiatedCipherSuite(caller_options, callee_options,
3131 expected_cipher_suite);
3132}
3133
3134TEST_P(PeerConnectionIntegrationTest, Aes128Sha1_32_CipherUsedWhenSupported) {
3135 PeerConnectionFactory::Options caller_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003136 caller_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003137 PeerConnectionFactory::Options callee_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003138 callee_options.crypto_options.srtp.enable_aes128_sha1_32_crypto_cipher = true;
Taylor Brandstetter5e55fe82018-03-23 11:50:16 -07003139 int expected_cipher_suite = rtc::SRTP_AES128_CM_SHA1_32;
3140 TestNegotiatedCipherSuite(caller_options, callee_options,
3141 expected_cipher_suite);
3142}
3143
deadbeef1dcb1642017-03-29 21:08:16 -07003144// Test that a non-GCM cipher is used if both sides only support non-GCM.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003145TEST_P(PeerConnectionIntegrationTest, NonGcmCipherUsedWhenGcmNotSupported) {
deadbeef1dcb1642017-03-29 21:08:16 -07003146 bool local_gcm_enabled = false;
3147 bool remote_gcm_enabled = false;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003148 bool aes_ctr_enabled = true;
deadbeef1dcb1642017-03-29 21:08:16 -07003149 int expected_cipher_suite = kDefaultSrtpCryptoSuite;
3150 TestGcmNegotiationUsesCipherSuite(local_gcm_enabled, remote_gcm_enabled,
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003151 aes_ctr_enabled, expected_cipher_suite);
deadbeef1dcb1642017-03-29 21:08:16 -07003152}
3153
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003154// Test that a GCM cipher is used if both ends support it and non-GCM is
3155// disabled.
3156TEST_P(PeerConnectionIntegrationTest, GcmCipherUsedWhenOnlyGcmSupported) {
deadbeef1dcb1642017-03-29 21:08:16 -07003157 bool local_gcm_enabled = true;
3158 bool remote_gcm_enabled = true;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003159 bool aes_ctr_enabled = false;
deadbeef1dcb1642017-03-29 21:08:16 -07003160 int expected_cipher_suite = kDefaultSrtpCryptoSuiteGcm;
3161 TestGcmNegotiationUsesCipherSuite(local_gcm_enabled, remote_gcm_enabled,
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003162 aes_ctr_enabled, expected_cipher_suite);
deadbeef1dcb1642017-03-29 21:08:16 -07003163}
3164
deadbeef7914b8c2017-04-21 03:23:33 -07003165// Verify that media can be transmitted end-to-end when GCM crypto suites are
3166// enabled. Note that the above tests, such as GcmCipherUsedWhenGcmSupported,
3167// only verify that a GCM cipher is negotiated, and not necessarily that SRTP
3168// works with it.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003169TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithGcmCipher) {
deadbeef7914b8c2017-04-21 03:23:33 -07003170 PeerConnectionFactory::Options gcm_options;
Benjamin Wrighta54daf12018-10-11 15:33:17 -07003171 gcm_options.crypto_options.srtp.enable_gcm_crypto_suites = true;
Philipp Hancke2ebbff82019-10-26 06:12:55 +02003172 gcm_options.crypto_options.srtp.enable_aes128_sha1_80_crypto_cipher = false;
deadbeef7914b8c2017-04-21 03:23:33 -07003173 ASSERT_TRUE(
3174 CreatePeerConnectionWrappersWithOptions(gcm_options, gcm_options));
3175 ConnectFakeSignaling();
3176 // Do normal offer/answer and wait for some frames to be received in each
3177 // direction.
Steve Anton15324772018-01-16 10:26:49 -08003178 caller()->AddAudioVideoTracks();
3179 callee()->AddAudioVideoTracks();
deadbeef7914b8c2017-04-21 03:23:33 -07003180 caller()->CreateAndSetAndSignalOffer();
3181 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003182 MediaExpectations media_expectations;
3183 media_expectations.ExpectBidirectionalAudioAndVideo();
3184 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef7914b8c2017-04-21 03:23:33 -07003185}
3186
deadbeef1dcb1642017-03-29 21:08:16 -07003187// This test sets up a call between two parties with audio, video and an RTP
3188// data channel.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003189TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithRtpDataChannel) {
Niels Möllerf06f9232018-08-07 12:32:18 +02003190 PeerConnectionInterface::RTCConfiguration rtc_config;
3191 rtc_config.enable_rtp_data_channel = true;
3192 rtc_config.enable_dtls_srtp = false;
3193 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003194 ConnectFakeSignaling();
3195 // Expect that data channel created on caller side will show up for callee as
3196 // well.
3197 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003198 caller()->AddAudioVideoTracks();
3199 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003200 caller()->CreateAndSetAndSignalOffer();
3201 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3202 // Ensure the existence of the RTP data channel didn't impede audio/video.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003203 MediaExpectations media_expectations;
3204 media_expectations.ExpectBidirectionalAudioAndVideo();
3205 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003206 ASSERT_NE(nullptr, caller()->data_channel());
3207 ASSERT_NE(nullptr, callee()->data_channel());
3208 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3209 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3210
3211 // Ensure data can be sent in both directions.
3212 std::string data = "hello world";
3213 SendRtpDataWithRetries(caller()->data_channel(), data, 5);
3214 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3215 kDefaultTimeout);
3216 SendRtpDataWithRetries(callee()->data_channel(), data, 5);
3217 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3218 kDefaultTimeout);
3219}
3220
3221// Ensure that an RTP data channel is signaled as closed for the caller when
3222// the callee rejects it in a subsequent offer.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003223TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07003224 RtpDataChannelSignaledClosedInCalleeOffer) {
3225 // Same procedure as above test.
Niels Möllerf06f9232018-08-07 12:32:18 +02003226 PeerConnectionInterface::RTCConfiguration rtc_config;
3227 rtc_config.enable_rtp_data_channel = true;
3228 rtc_config.enable_dtls_srtp = false;
3229 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003230 ConnectFakeSignaling();
3231 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003232 caller()->AddAudioVideoTracks();
3233 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003234 caller()->CreateAndSetAndSignalOffer();
3235 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3236 ASSERT_NE(nullptr, caller()->data_channel());
3237 ASSERT_NE(nullptr, callee()->data_channel());
3238 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3239 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3240
3241 // Close the data channel on the callee, and do an updated offer/answer.
3242 callee()->data_channel()->Close();
3243 callee()->CreateAndSetAndSignalOffer();
3244 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3245 EXPECT_FALSE(caller()->data_observer()->IsOpen());
3246 EXPECT_FALSE(callee()->data_observer()->IsOpen());
3247}
3248
3249// Tests that data is buffered in an RTP data channel until an observer is
3250// registered for it.
3251//
3252// NOTE: RTP data channels can receive data before the underlying
3253// transport has detected that a channel is writable and thus data can be
3254// received before the data channel state changes to open. That is hard to test
3255// but the same buffering is expected to be used in that case.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003256TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07003257 DataBufferedUntilRtpDataChannelObserverRegistered) {
3258 // Use fake clock and simulated network delay so that we predictably can wait
3259 // until an SCTP message has been delivered without "sleep()"ing.
3260 rtc::ScopedFakeClock fake_clock;
3261 // Some things use a time of "0" as a special value, so we need to start out
3262 // the fake clock at a nonzero time.
3263 // TODO(deadbeef): Fix this.
Sebastian Jansson5f83cf02018-05-08 14:52:22 +02003264 fake_clock.AdvanceTime(webrtc::TimeDelta::seconds(1));
deadbeef1dcb1642017-03-29 21:08:16 -07003265 virtual_socket_server()->set_delay_mean(5); // 5 ms per hop.
3266 virtual_socket_server()->UpdateDelayDistribution();
3267
Niels Möllerf06f9232018-08-07 12:32:18 +02003268 PeerConnectionInterface::RTCConfiguration rtc_config;
3269 rtc_config.enable_rtp_data_channel = true;
3270 rtc_config.enable_dtls_srtp = false;
3271 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003272 ConnectFakeSignaling();
3273 caller()->CreateDataChannel();
3274 caller()->CreateAndSetAndSignalOffer();
3275 ASSERT_TRUE(caller()->data_channel() != nullptr);
3276 ASSERT_TRUE_SIMULATED_WAIT(callee()->data_channel() != nullptr,
3277 kDefaultTimeout, fake_clock);
3278 ASSERT_TRUE_SIMULATED_WAIT(caller()->data_observer()->IsOpen(),
3279 kDefaultTimeout, fake_clock);
3280 ASSERT_EQ_SIMULATED_WAIT(DataChannelInterface::kOpen,
3281 callee()->data_channel()->state(), kDefaultTimeout,
3282 fake_clock);
3283
3284 // Unregister the observer which is normally automatically registered.
3285 callee()->data_channel()->UnregisterObserver();
3286 // Send data and advance fake clock until it should have been received.
3287 std::string data = "hello world";
3288 caller()->data_channel()->Send(DataBuffer(data));
3289 SIMULATED_WAIT(false, 50, fake_clock);
3290
3291 // Attach data channel and expect data to be received immediately. Note that
3292 // EXPECT_EQ_WAIT is used, such that the simulated clock is not advanced any
3293 // further, but data can be received even if the callback is asynchronous.
3294 MockDataChannelObserver new_observer(callee()->data_channel());
3295 EXPECT_EQ_SIMULATED_WAIT(data, new_observer.last_message(), kDefaultTimeout,
3296 fake_clock);
Seth Hampson1d4a76d2018-06-19 14:31:41 -07003297 // Closing the PeerConnections destroys the ports before the ScopedFakeClock.
3298 // If this is not done a DCHECK can be hit in ports.cc, because a large
3299 // negative number is calculated for the rtt due to the global clock changing.
Steve Antond91969e2019-05-30 12:27:03 -07003300 ClosePeerConnections();
deadbeef1dcb1642017-03-29 21:08:16 -07003301}
3302
3303// This test sets up a call between two parties with audio, video and but only
3304// the caller client supports RTP data channels.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003305TEST_P(PeerConnectionIntegrationTest, RtpDataChannelsRejectedByCallee) {
Niels Möllerf06f9232018-08-07 12:32:18 +02003306 PeerConnectionInterface::RTCConfiguration rtc_config_1;
3307 rtc_config_1.enable_rtp_data_channel = true;
deadbeef1dcb1642017-03-29 21:08:16 -07003308 // Must disable DTLS to make negotiation succeed.
Niels Möllerf06f9232018-08-07 12:32:18 +02003309 rtc_config_1.enable_dtls_srtp = false;
3310 PeerConnectionInterface::RTCConfiguration rtc_config_2;
3311 rtc_config_2.enable_dtls_srtp = false;
3312 rtc_config_2.enable_dtls_srtp = false;
3313 ASSERT_TRUE(
3314 CreatePeerConnectionWrappersWithConfig(rtc_config_1, rtc_config_2));
deadbeef1dcb1642017-03-29 21:08:16 -07003315 ConnectFakeSignaling();
3316 caller()->CreateDataChannel();
Harald Alvestrandf3736ed2019-04-08 13:09:30 +02003317 ASSERT_TRUE(caller()->data_channel() != nullptr);
Steve Anton15324772018-01-16 10:26:49 -08003318 caller()->AddAudioVideoTracks();
3319 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003320 caller()->CreateAndSetAndSignalOffer();
3321 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3322 // The caller should still have a data channel, but it should be closed, and
3323 // one should ever have been created for the callee.
3324 EXPECT_TRUE(caller()->data_channel() != nullptr);
3325 EXPECT_FALSE(caller()->data_observer()->IsOpen());
3326 EXPECT_EQ(nullptr, callee()->data_channel());
3327}
3328
3329// This test sets up a call between two parties with audio, and video. When
3330// audio and video is setup and flowing, an RTP data channel is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003331TEST_P(PeerConnectionIntegrationTest, AddRtpDataChannelInSubsequentOffer) {
Niels Möllerf06f9232018-08-07 12:32:18 +02003332 PeerConnectionInterface::RTCConfiguration rtc_config;
3333 rtc_config.enable_rtp_data_channel = true;
3334 rtc_config.enable_dtls_srtp = false;
3335 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(rtc_config, rtc_config));
deadbeef1dcb1642017-03-29 21:08:16 -07003336 ConnectFakeSignaling();
3337 // Do initial offer/answer with audio/video.
Steve Anton15324772018-01-16 10:26:49 -08003338 caller()->AddAudioVideoTracks();
3339 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003340 caller()->CreateAndSetAndSignalOffer();
3341 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3342 // Create data channel and do new offer and answer.
3343 caller()->CreateDataChannel();
3344 caller()->CreateAndSetAndSignalOffer();
3345 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3346 ASSERT_NE(nullptr, caller()->data_channel());
3347 ASSERT_NE(nullptr, callee()->data_channel());
3348 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3349 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3350 // Ensure data can be sent in both directions.
3351 std::string data = "hello world";
3352 SendRtpDataWithRetries(caller()->data_channel(), data, 5);
3353 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3354 kDefaultTimeout);
3355 SendRtpDataWithRetries(callee()->data_channel(), data, 5);
3356 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3357 kDefaultTimeout);
3358}
3359
3360#ifdef HAVE_SCTP
3361
3362// This test sets up a call between two parties with audio, video and an SCTP
3363// data channel.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003364TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithSctpDataChannel) {
deadbeef1dcb1642017-03-29 21:08:16 -07003365 ASSERT_TRUE(CreatePeerConnectionWrappers());
3366 ConnectFakeSignaling();
3367 // Expect that data channel created on caller side will show up for callee as
3368 // well.
3369 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003370 caller()->AddAudioVideoTracks();
3371 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003372 caller()->CreateAndSetAndSignalOffer();
3373 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3374 // Ensure the existence of the SCTP data channel didn't impede audio/video.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003375 MediaExpectations media_expectations;
3376 media_expectations.ExpectBidirectionalAudioAndVideo();
3377 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07003378 // Caller data channel should already exist (it created one). Callee data
3379 // channel may not exist yet, since negotiation happens in-band, not in SDP.
3380 ASSERT_NE(nullptr, caller()->data_channel());
3381 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3382 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3383 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3384
3385 // Ensure data can be sent in both directions.
3386 std::string data = "hello world";
3387 caller()->data_channel()->Send(DataBuffer(data));
3388 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3389 kDefaultTimeout);
3390 callee()->data_channel()->Send(DataBuffer(data));
3391 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3392 kDefaultTimeout);
3393}
3394
3395// Ensure that when the callee closes an SCTP data channel, the closing
3396// procedure results in the data channel being closed for the caller as well.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003397TEST_P(PeerConnectionIntegrationTest, CalleeClosesSctpDataChannel) {
deadbeef1dcb1642017-03-29 21:08:16 -07003398 // Same procedure as above test.
3399 ASSERT_TRUE(CreatePeerConnectionWrappers());
3400 ConnectFakeSignaling();
3401 caller()->CreateDataChannel();
Steve Anton15324772018-01-16 10:26:49 -08003402 caller()->AddAudioVideoTracks();
3403 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003404 caller()->CreateAndSetAndSignalOffer();
3405 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3406 ASSERT_NE(nullptr, caller()->data_channel());
3407 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3408 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3409 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3410
3411 // Close the data channel on the callee side, and wait for it to reach the
3412 // "closed" state on both sides.
3413 callee()->data_channel()->Close();
3414 EXPECT_TRUE_WAIT(!caller()->data_observer()->IsOpen(), kDefaultTimeout);
3415 EXPECT_TRUE_WAIT(!callee()->data_observer()->IsOpen(), kDefaultTimeout);
3416}
3417
Seth Hampson2f0d7022018-02-20 11:54:42 -08003418TEST_P(PeerConnectionIntegrationTest, SctpDataChannelConfigSentToOtherSide) {
Steve Antonda6c0952017-10-23 11:41:54 -07003419 ASSERT_TRUE(CreatePeerConnectionWrappers());
3420 ConnectFakeSignaling();
3421 webrtc::DataChannelInit init;
3422 init.id = 53;
3423 init.maxRetransmits = 52;
3424 caller()->CreateDataChannel("data-channel", &init);
Steve Anton15324772018-01-16 10:26:49 -08003425 caller()->AddAudioVideoTracks();
3426 callee()->AddAudioVideoTracks();
Steve Antonda6c0952017-10-23 11:41:54 -07003427 caller()->CreateAndSetAndSignalOffer();
3428 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Steve Anton074dece2017-10-24 13:04:12 -07003429 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3430 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
Harald Alvestrand5c4d2ee2019-04-01 12:58:15 +02003431 // Since "negotiated" is false, the "id" parameter should be ignored.
3432 EXPECT_NE(init.id, callee()->data_channel()->id());
Steve Antonda6c0952017-10-23 11:41:54 -07003433 EXPECT_EQ("data-channel", callee()->data_channel()->label());
3434 EXPECT_EQ(init.maxRetransmits, callee()->data_channel()->maxRetransmits());
3435 EXPECT_FALSE(callee()->data_channel()->negotiated());
3436}
3437
deadbeef1dcb1642017-03-29 21:08:16 -07003438// Test usrsctp's ability to process unordered data stream, where data actually
3439// arrives out of order using simulated delays. Previously there have been some
3440// bugs in this area.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003441TEST_P(PeerConnectionIntegrationTest, StressTestUnorderedSctpDataChannel) {
deadbeef1dcb1642017-03-29 21:08:16 -07003442 // Introduce random network delays.
3443 // Otherwise it's not a true "unordered" test.
3444 virtual_socket_server()->set_delay_mean(20);
3445 virtual_socket_server()->set_delay_stddev(5);
3446 virtual_socket_server()->UpdateDelayDistribution();
3447 // Normal procedure, but with unordered data channel config.
3448 ASSERT_TRUE(CreatePeerConnectionWrappers());
3449 ConnectFakeSignaling();
3450 webrtc::DataChannelInit init;
3451 init.ordered = false;
3452 caller()->CreateDataChannel(&init);
3453 caller()->CreateAndSetAndSignalOffer();
3454 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3455 ASSERT_NE(nullptr, caller()->data_channel());
3456 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3457 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3458 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3459
3460 static constexpr int kNumMessages = 100;
3461 // Deliberately chosen to be larger than the MTU so messages get fragmented.
3462 static constexpr size_t kMaxMessageSize = 4096;
3463 // Create and send random messages.
3464 std::vector<std::string> sent_messages;
3465 for (int i = 0; i < kNumMessages; ++i) {
3466 size_t length =
3467 (rand() % kMaxMessageSize) + 1; // NOLINT (rand_r instead of rand)
3468 std::string message;
3469 ASSERT_TRUE(rtc::CreateRandomString(length, &message));
3470 caller()->data_channel()->Send(DataBuffer(message));
3471 callee()->data_channel()->Send(DataBuffer(message));
3472 sent_messages.push_back(message);
3473 }
3474
3475 // Wait for all messages to be received.
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02003476 EXPECT_EQ_WAIT(rtc::checked_cast<size_t>(kNumMessages),
deadbeef1dcb1642017-03-29 21:08:16 -07003477 caller()->data_observer()->received_message_count(),
3478 kDefaultTimeout);
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02003479 EXPECT_EQ_WAIT(rtc::checked_cast<size_t>(kNumMessages),
deadbeef1dcb1642017-03-29 21:08:16 -07003480 callee()->data_observer()->received_message_count(),
3481 kDefaultTimeout);
3482
3483 // Sort and compare to make sure none of the messages were corrupted.
3484 std::vector<std::string> caller_received_messages =
3485 caller()->data_observer()->messages();
3486 std::vector<std::string> callee_received_messages =
3487 callee()->data_observer()->messages();
Steve Anton64b626b2019-01-28 17:25:26 -08003488 absl::c_sort(sent_messages);
3489 absl::c_sort(caller_received_messages);
3490 absl::c_sort(callee_received_messages);
deadbeef1dcb1642017-03-29 21:08:16 -07003491 EXPECT_EQ(sent_messages, caller_received_messages);
3492 EXPECT_EQ(sent_messages, callee_received_messages);
3493}
3494
3495// This test sets up a call between two parties with audio, and video. When
3496// audio and video are setup and flowing, an SCTP data channel is negotiated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08003497TEST_P(PeerConnectionIntegrationTest, AddSctpDataChannelInSubsequentOffer) {
deadbeef1dcb1642017-03-29 21:08:16 -07003498 ASSERT_TRUE(CreatePeerConnectionWrappers());
3499 ConnectFakeSignaling();
3500 // Do initial offer/answer with audio/video.
Steve Anton15324772018-01-16 10:26:49 -08003501 caller()->AddAudioVideoTracks();
3502 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07003503 caller()->CreateAndSetAndSignalOffer();
3504 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3505 // Create data channel and do new offer and answer.
3506 caller()->CreateDataChannel();
3507 caller()->CreateAndSetAndSignalOffer();
3508 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3509 // Caller data channel should already exist (it created one). Callee data
3510 // channel may not exist yet, since negotiation happens in-band, not in SDP.
3511 ASSERT_NE(nullptr, caller()->data_channel());
3512 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3513 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3514 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3515 // Ensure data can be sent in both directions.
3516 std::string data = "hello world";
3517 caller()->data_channel()->Send(DataBuffer(data));
3518 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3519 kDefaultTimeout);
3520 callee()->data_channel()->Send(DataBuffer(data));
3521 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3522 kDefaultTimeout);
3523}
3524
deadbeef7914b8c2017-04-21 03:23:33 -07003525// Set up a connection initially just using SCTP data channels, later upgrading
3526// to audio/video, ensuring frames are received end-to-end. Effectively the
3527// inverse of the test above.
3528// This was broken in M57; see https://crbug.com/711243
Seth Hampson2f0d7022018-02-20 11:54:42 -08003529TEST_P(PeerConnectionIntegrationTest, SctpDataChannelToAudioVideoUpgrade) {
deadbeef7914b8c2017-04-21 03:23:33 -07003530 ASSERT_TRUE(CreatePeerConnectionWrappers());
3531 ConnectFakeSignaling();
3532 // Do initial offer/answer with just data channel.
3533 caller()->CreateDataChannel();
3534 caller()->CreateAndSetAndSignalOffer();
3535 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3536 // Wait until data can be sent over the data channel.
3537 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3538 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3539 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3540
3541 // Do subsequent offer/answer with two-way audio and video. Audio and video
3542 // should end up bundled on the DTLS/ICE transport already used for data.
Steve Anton15324772018-01-16 10:26:49 -08003543 caller()->AddAudioVideoTracks();
3544 callee()->AddAudioVideoTracks();
deadbeef7914b8c2017-04-21 03:23:33 -07003545 caller()->CreateAndSetAndSignalOffer();
3546 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08003547 MediaExpectations media_expectations;
3548 media_expectations.ExpectBidirectionalAudioAndVideo();
3549 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef7914b8c2017-04-21 03:23:33 -07003550}
3551
deadbeef8b7e9ad2017-05-25 09:38:55 -07003552static void MakeSpecCompliantSctpOffer(cricket::SessionDescription* desc) {
Harald Alvestrand5fc28b12019-05-13 13:36:16 +02003553 cricket::SctpDataContentDescription* dcd_offer =
3554 GetFirstSctpDataContentDescription(desc);
Steve Antonb1c1de12017-12-21 15:14:30 -08003555 ASSERT_TRUE(dcd_offer);
deadbeef8b7e9ad2017-05-25 09:38:55 -07003556 dcd_offer->set_use_sctpmap(false);
3557 dcd_offer->set_protocol("UDP/DTLS/SCTP");
3558}
3559
3560// Test that the data channel works when a spec-compliant SCTP m= section is
3561// offered (using "a=sctp-port" instead of "a=sctpmap", and using
3562// "UDP/DTLS/SCTP" as the protocol).
Seth Hampson2f0d7022018-02-20 11:54:42 -08003563TEST_P(PeerConnectionIntegrationTest,
deadbeef8b7e9ad2017-05-25 09:38:55 -07003564 DataChannelWorksWhenSpecCompliantSctpOfferReceived) {
3565 ASSERT_TRUE(CreatePeerConnectionWrappers());
3566 ConnectFakeSignaling();
3567 caller()->CreateDataChannel();
3568 caller()->SetGeneratedSdpMunger(MakeSpecCompliantSctpOffer);
3569 caller()->CreateAndSetAndSignalOffer();
3570 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3571 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3572 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3573 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3574
3575 // Ensure data can be sent in both directions.
3576 std::string data = "hello world";
3577 caller()->data_channel()->Send(DataBuffer(data));
3578 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3579 kDefaultTimeout);
3580 callee()->data_channel()->Send(DataBuffer(data));
3581 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3582 kDefaultTimeout);
3583}
3584
Bjorn A Mellemb689af42019-08-21 10:44:59 -07003585// Tests that the datagram transport to SCTP fallback works correctly when
3586// datagram transport negotiation fails.
3587TEST_P(PeerConnectionIntegrationTest,
3588 DatagramTransportDataChannelFallbackToSctp) {
3589 PeerConnectionInterface::RTCConfiguration rtc_config;
3590 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
3591 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
3592 rtc_config.use_datagram_transport_for_data_channels = true;
3593
3594 // Configure one endpoint to use datagram transport for data channels while
3595 // the other does not.
3596 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3597 rtc_config, RTCConfiguration(),
3598 loopback_media_transports()->first_factory(), nullptr));
3599 ConnectFakeSignaling();
3600
3601 // The caller offers a data channel using either datagram transport or SCTP.
3602 caller()->CreateDataChannel();
3603 caller()->AddAudioVideoTracks();
3604 callee()->AddAudioVideoTracks();
3605 caller()->CreateAndSetAndSignalOffer();
3606 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3607
3608 // Negotiation should fallback to SCTP, allowing the data channel to be
3609 // established.
3610 ASSERT_NE(nullptr, caller()->data_channel());
3611 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3612 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3613 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3614
3615 // Ensure data can be sent in both directions.
3616 std::string data = "hello world";
3617 caller()->data_channel()->Send(DataBuffer(data));
3618 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3619 kDefaultTimeout);
3620 callee()->data_channel()->Send(DataBuffer(data));
3621 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3622 kDefaultTimeout);
3623
3624 // Ensure that failure of the datagram negotiation doesn't impede media flow.
3625 MediaExpectations media_expectations;
3626 media_expectations.ExpectBidirectionalAudioAndVideo();
3627 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3628}
3629
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07003630// Tests that the data channel transport works correctly when datagram transport
3631// negotiation succeeds and does not fall back to SCTP.
3632TEST_P(PeerConnectionIntegrationTest,
3633 DatagramTransportDataChannelDoesNotFallbackToSctp) {
3634 PeerConnectionInterface::RTCConfiguration rtc_config;
3635 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
3636 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
3637 rtc_config.use_datagram_transport_for_data_channels = true;
3638
3639 // Configure one endpoint to use datagram transport for data channels while
3640 // the other does not.
3641 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3642 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
3643 loopback_media_transports()->second_factory()));
3644 ConnectFakeSignaling();
3645
3646 // The caller offers a data channel using either datagram transport or SCTP.
3647 caller()->CreateDataChannel();
3648 caller()->AddAudioVideoTracks();
3649 callee()->AddAudioVideoTracks();
3650 caller()->CreateAndSetAndSignalOffer();
3651 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3652
3653 // Ensure that the data channel transport is ready.
3654 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3655 loopback_media_transports()->FlushAsyncInvokes();
3656
3657 // Negotiation should succeed, allowing the data channel to be established.
3658 ASSERT_NE(nullptr, caller()->data_channel());
3659 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3660 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3661 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3662
3663 // Ensure data can be sent in both directions.
3664 std::string data = "hello world";
3665 caller()->data_channel()->Send(DataBuffer(data));
3666 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3667 kDefaultTimeout);
3668 callee()->data_channel()->Send(DataBuffer(data));
3669 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3670 kDefaultTimeout);
3671
3672 // Ensure that failure of the datagram negotiation doesn't impede media flow.
3673 MediaExpectations media_expectations;
3674 media_expectations.ExpectBidirectionalAudioAndVideo();
3675 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3676}
3677
Bjorn A Mellem8e1343a2019-09-30 15:12:47 -07003678TEST_P(PeerConnectionIntegrationTest,
3679 DatagramTransportDataChannelWithMediaOnCaller) {
3680 // Configure the caller to attempt use of datagram transport for media and
3681 // data channels.
3682 PeerConnectionInterface::RTCConfiguration offerer_config;
3683 offerer_config.rtcp_mux_policy =
3684 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3685 offerer_config.bundle_policy =
3686 PeerConnectionInterface::kBundlePolicyMaxBundle;
3687 offerer_config.use_datagram_transport_for_data_channels = true;
3688 offerer_config.use_datagram_transport = true;
3689
3690 // Configure the callee to only use datagram transport for data channels.
3691 PeerConnectionInterface::RTCConfiguration answerer_config;
3692 answerer_config.rtcp_mux_policy =
3693 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3694 answerer_config.bundle_policy =
3695 PeerConnectionInterface::kBundlePolicyMaxBundle;
3696 answerer_config.use_datagram_transport_for_data_channels = true;
3697
3698 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3699 offerer_config, answerer_config,
3700 loopback_media_transports()->first_factory(),
3701 loopback_media_transports()->second_factory()));
3702 ConnectFakeSignaling();
3703
3704 // Offer both media and data.
3705 caller()->AddAudioVideoTracks();
3706 callee()->AddAudioVideoTracks();
3707 caller()->CreateDataChannel();
3708 caller()->CreateAndSetAndSignalOffer();
3709 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3710
3711 // Ensure that the data channel transport is ready.
3712 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3713 loopback_media_transports()->FlushAsyncInvokes();
3714
3715 ASSERT_NE(nullptr, caller()->data_channel());
3716 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3717 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3718 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3719
3720 // Both endpoints should agree to use datagram transport for data channels.
3721 EXPECT_EQ(nullptr, caller()->pc()->GetSctpTransport());
3722 EXPECT_EQ(nullptr, callee()->pc()->GetSctpTransport());
3723
3724 // Ensure data can be sent in both directions.
3725 std::string data = "hello world";
3726 caller()->data_channel()->Send(DataBuffer(data));
3727 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3728 kDefaultTimeout);
3729 callee()->data_channel()->Send(DataBuffer(data));
3730 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3731 kDefaultTimeout);
3732
3733 // Media flow should not be impacted.
3734 MediaExpectations media_expectations;
3735 media_expectations.ExpectBidirectionalAudioAndVideo();
3736 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3737}
3738
3739TEST_P(PeerConnectionIntegrationTest,
3740 DatagramTransportMediaWithDataChannelOnCaller) {
3741 // Configure the caller to attempt use of datagram transport for media and
3742 // data channels.
3743 PeerConnectionInterface::RTCConfiguration offerer_config;
3744 offerer_config.rtcp_mux_policy =
3745 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3746 offerer_config.bundle_policy =
3747 PeerConnectionInterface::kBundlePolicyMaxBundle;
3748 offerer_config.use_datagram_transport_for_data_channels = true;
3749 offerer_config.use_datagram_transport = true;
3750
3751 // Configure the callee to only use datagram transport for media.
3752 PeerConnectionInterface::RTCConfiguration answerer_config;
3753 answerer_config.rtcp_mux_policy =
3754 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3755 answerer_config.bundle_policy =
3756 PeerConnectionInterface::kBundlePolicyMaxBundle;
3757 answerer_config.use_datagram_transport = true;
3758
3759 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3760 offerer_config, answerer_config,
3761 loopback_media_transports()->first_factory(),
3762 loopback_media_transports()->second_factory()));
3763 ConnectFakeSignaling();
3764
3765 // Offer both media and data.
3766 caller()->AddAudioVideoTracks();
3767 callee()->AddAudioVideoTracks();
3768 caller()->CreateDataChannel();
3769 caller()->CreateAndSetAndSignalOffer();
3770 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3771
3772 // Ensure that the data channel transport is ready.
3773 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3774 loopback_media_transports()->FlushAsyncInvokes();
3775
3776 ASSERT_NE(nullptr, caller()->data_channel());
3777 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3778 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3779 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3780
3781 // Both endpoints should agree to use SCTP for data channels.
3782 EXPECT_NE(nullptr, caller()->pc()->GetSctpTransport());
3783 EXPECT_NE(nullptr, callee()->pc()->GetSctpTransport());
3784
3785 // Ensure data can be sent in both directions.
3786 std::string data = "hello world";
3787 caller()->data_channel()->Send(DataBuffer(data));
3788 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3789 kDefaultTimeout);
3790 callee()->data_channel()->Send(DataBuffer(data));
3791 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3792 kDefaultTimeout);
3793
3794 // Media flow should not be impacted.
3795 MediaExpectations media_expectations;
3796 media_expectations.ExpectBidirectionalAudioAndVideo();
3797 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3798}
3799
3800TEST_P(PeerConnectionIntegrationTest,
3801 DatagramTransportDataChannelWithMediaOnCallee) {
3802 // Configure the caller to attempt use of datagram transport for data
3803 // channels.
3804 PeerConnectionInterface::RTCConfiguration offerer_config;
3805 offerer_config.rtcp_mux_policy =
3806 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3807 offerer_config.bundle_policy =
3808 PeerConnectionInterface::kBundlePolicyMaxBundle;
3809 offerer_config.use_datagram_transport_for_data_channels = true;
3810
3811 // Configure the callee to use datagram transport for data channels and media.
3812 PeerConnectionInterface::RTCConfiguration answerer_config;
3813 answerer_config.rtcp_mux_policy =
3814 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3815 answerer_config.bundle_policy =
3816 PeerConnectionInterface::kBundlePolicyMaxBundle;
3817 answerer_config.use_datagram_transport_for_data_channels = true;
3818 answerer_config.use_datagram_transport = true;
3819
3820 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3821 offerer_config, answerer_config,
3822 loopback_media_transports()->first_factory(),
3823 loopback_media_transports()->second_factory()));
3824 ConnectFakeSignaling();
3825
3826 // Offer both media and data.
3827 caller()->AddAudioVideoTracks();
3828 callee()->AddAudioVideoTracks();
3829 caller()->CreateDataChannel();
3830 caller()->CreateAndSetAndSignalOffer();
3831 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3832
3833 // Ensure that the data channel transport is ready.
3834 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3835 loopback_media_transports()->FlushAsyncInvokes();
3836
3837 ASSERT_NE(nullptr, caller()->data_channel());
3838 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3839 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3840 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3841
3842 // Both endpoints should agree to use datagram transport for data channels.
3843 EXPECT_EQ(nullptr, caller()->pc()->GetSctpTransport());
3844 EXPECT_EQ(nullptr, callee()->pc()->GetSctpTransport());
3845
3846 // Ensure data can be sent in both directions.
3847 std::string data = "hello world";
3848 caller()->data_channel()->Send(DataBuffer(data));
3849 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3850 kDefaultTimeout);
3851 callee()->data_channel()->Send(DataBuffer(data));
3852 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3853 kDefaultTimeout);
3854
3855 // Media flow should not be impacted.
3856 MediaExpectations media_expectations;
3857 media_expectations.ExpectBidirectionalAudioAndVideo();
3858 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3859}
3860
3861TEST_P(PeerConnectionIntegrationTest,
3862 DatagramTransportMediaWithDataChannelOnCallee) {
3863 // Configure the caller to attempt use of datagram transport for media.
3864 PeerConnectionInterface::RTCConfiguration offerer_config;
3865 offerer_config.rtcp_mux_policy =
3866 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3867 offerer_config.bundle_policy =
3868 PeerConnectionInterface::kBundlePolicyMaxBundle;
3869 offerer_config.use_datagram_transport = true;
3870
3871 // Configure the callee to only use datagram transport for media and data
3872 // channels.
3873 PeerConnectionInterface::RTCConfiguration answerer_config;
3874 answerer_config.rtcp_mux_policy =
3875 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3876 answerer_config.bundle_policy =
3877 PeerConnectionInterface::kBundlePolicyMaxBundle;
3878 answerer_config.use_datagram_transport = true;
3879 answerer_config.use_datagram_transport_for_data_channels = true;
3880
3881 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3882 offerer_config, answerer_config,
3883 loopback_media_transports()->first_factory(),
3884 loopback_media_transports()->second_factory()));
3885 ConnectFakeSignaling();
3886
3887 // Offer both media and data.
3888 caller()->AddAudioVideoTracks();
3889 callee()->AddAudioVideoTracks();
3890 caller()->CreateDataChannel();
3891 caller()->CreateAndSetAndSignalOffer();
3892 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3893
3894 // Ensure that the data channel transport is ready.
3895 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3896 loopback_media_transports()->FlushAsyncInvokes();
3897
3898 ASSERT_NE(nullptr, caller()->data_channel());
3899 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3900 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3901 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3902
3903 // Both endpoints should agree to use SCTP for data channels.
3904 EXPECT_NE(nullptr, caller()->pc()->GetSctpTransport());
3905 EXPECT_NE(nullptr, callee()->pc()->GetSctpTransport());
3906
3907 // Ensure data can be sent in both directions.
3908 std::string data = "hello world";
3909 caller()->data_channel()->Send(DataBuffer(data));
3910 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3911 kDefaultTimeout);
3912 callee()->data_channel()->Send(DataBuffer(data));
3913 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3914 kDefaultTimeout);
3915
3916 // Media flow should not be impacted.
3917 MediaExpectations media_expectations;
3918 media_expectations.ExpectBidirectionalAudioAndVideo();
3919 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3920}
3921
3922TEST_P(PeerConnectionIntegrationTest, DatagramTransportDataChannelAndMedia) {
3923 // Configure the caller to use datagram transport for data channels and media.
3924 PeerConnectionInterface::RTCConfiguration offerer_config;
3925 offerer_config.rtcp_mux_policy =
3926 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3927 offerer_config.bundle_policy =
3928 PeerConnectionInterface::kBundlePolicyMaxBundle;
3929 offerer_config.use_datagram_transport_for_data_channels = true;
3930 offerer_config.use_datagram_transport = true;
3931
3932 // Configure the callee to use datagram transport for data channels and media.
3933 PeerConnectionInterface::RTCConfiguration answerer_config;
3934 answerer_config.rtcp_mux_policy =
3935 PeerConnectionInterface::kRtcpMuxPolicyRequire;
3936 answerer_config.bundle_policy =
3937 PeerConnectionInterface::kBundlePolicyMaxBundle;
3938 answerer_config.use_datagram_transport_for_data_channels = true;
3939 answerer_config.use_datagram_transport = true;
3940
3941 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3942 offerer_config, answerer_config,
3943 loopback_media_transports()->first_factory(),
3944 loopback_media_transports()->second_factory()));
3945 ConnectFakeSignaling();
3946
3947 // Offer both media and data.
3948 caller()->AddAudioVideoTracks();
3949 callee()->AddAudioVideoTracks();
3950 caller()->CreateDataChannel();
3951 caller()->CreateAndSetAndSignalOffer();
3952 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
3953
3954 // Ensure that the data channel transport is ready.
3955 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
3956 loopback_media_transports()->FlushAsyncInvokes();
3957
3958 ASSERT_NE(nullptr, caller()->data_channel());
3959 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
3960 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
3961 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
3962
3963 // Both endpoints should agree to use datagram transport for data channels.
3964 EXPECT_EQ(nullptr, caller()->pc()->GetSctpTransport());
3965 EXPECT_EQ(nullptr, callee()->pc()->GetSctpTransport());
3966
3967 // Ensure data can be sent in both directions.
3968 std::string data = "hello world";
3969 caller()->data_channel()->Send(DataBuffer(data));
3970 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
3971 kDefaultTimeout);
3972 callee()->data_channel()->Send(DataBuffer(data));
3973 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
3974 kDefaultTimeout);
3975
3976 // Media flow should not be impacted.
3977 MediaExpectations media_expectations;
3978 media_expectations.ExpectBidirectionalAudioAndVideo();
3979 ASSERT_TRUE(ExpectNewFrames(media_expectations));
3980}
3981
Bjorn A Mellem7da4e562019-09-26 11:02:11 -07003982// Tests that data channels use SCTP instead of datagram transport if datagram
3983// transport is configured in receive-only mode on the caller.
3984TEST_P(PeerConnectionIntegrationTest,
3985 DatagramTransportDataChannelReceiveOnlyOnCallerUsesSctp) {
3986 PeerConnectionInterface::RTCConfiguration rtc_config;
3987 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
3988 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
3989 rtc_config.use_datagram_transport_for_data_channels = true;
3990 rtc_config.use_datagram_transport_for_data_channels_receive_only = true;
3991
3992 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
3993 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
3994 loopback_media_transports()->second_factory()));
3995 ConnectFakeSignaling();
3996
3997 // The caller should offer a data channel using SCTP.
3998 caller()->CreateDataChannel();
3999 caller()->AddAudioVideoTracks();
4000 callee()->AddAudioVideoTracks();
4001 caller()->CreateAndSetAndSignalOffer();
4002 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4003
4004 ASSERT_NE(nullptr, caller()->data_channel());
4005 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4006 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4007 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4008
4009 // SCTP transports should be present, since they are in use.
4010 EXPECT_NE(caller()->pc()->GetSctpTransport(), nullptr);
4011 EXPECT_NE(callee()->pc()->GetSctpTransport(), nullptr);
4012
4013 // Ensure data can be sent in both directions.
4014 std::string data = "hello world";
4015 caller()->data_channel()->Send(DataBuffer(data));
4016 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4017 kDefaultTimeout);
4018 callee()->data_channel()->Send(DataBuffer(data));
4019 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4020 kDefaultTimeout);
4021}
4022
deadbeef1dcb1642017-03-29 21:08:16 -07004023#endif // HAVE_SCTP
4024
Bjorn A Mellem7da4e562019-09-26 11:02:11 -07004025// Tests that a callee configured for receive-only use of datagram transport
4026// data channels accepts them on incoming calls.
4027TEST_P(PeerConnectionIntegrationTest,
4028 DatagramTransportDataChannelReceiveOnlyOnCallee) {
4029 PeerConnectionInterface::RTCConfiguration offerer_config;
4030 offerer_config.rtcp_mux_policy =
4031 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4032 offerer_config.bundle_policy =
4033 PeerConnectionInterface::kBundlePolicyMaxBundle;
4034 offerer_config.use_datagram_transport_for_data_channels = true;
4035
4036 PeerConnectionInterface::RTCConfiguration answerer_config;
4037 answerer_config.rtcp_mux_policy =
4038 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4039 answerer_config.bundle_policy =
4040 PeerConnectionInterface::kBundlePolicyMaxBundle;
4041 answerer_config.use_datagram_transport_for_data_channels = true;
4042 answerer_config.use_datagram_transport_for_data_channels_receive_only = true;
4043
4044 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4045 offerer_config, answerer_config,
4046 loopback_media_transports()->first_factory(),
4047 loopback_media_transports()->second_factory()));
4048 ConnectFakeSignaling();
4049
4050 caller()->CreateDataChannel();
4051 caller()->CreateAndSetAndSignalOffer();
4052 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4053
4054 // Ensure that the data channel transport is ready.
4055 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4056 loopback_media_transports()->FlushAsyncInvokes();
4057
4058 ASSERT_NE(nullptr, caller()->data_channel());
4059 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4060 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4061 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4062
4063 // SCTP transports should not be present, since datagram transport is used.
4064 EXPECT_EQ(caller()->pc()->GetSctpTransport(), nullptr);
4065 EXPECT_EQ(callee()->pc()->GetSctpTransport(), nullptr);
4066
4067 // Ensure data can be sent in both directions.
4068 std::string data = "hello world";
4069 caller()->data_channel()->Send(DataBuffer(data));
4070 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4071 kDefaultTimeout);
4072 callee()->data_channel()->Send(DataBuffer(data));
4073 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4074 kDefaultTimeout);
4075}
4076
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004077// This test sets up a call between two parties with a datagram transport data
4078// channel.
4079TEST_P(PeerConnectionIntegrationTest, DatagramTransportDataChannelEndToEnd) {
4080 PeerConnectionInterface::RTCConfiguration rtc_config;
4081 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4082 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4083 rtc_config.use_datagram_transport_for_data_channels = true;
4084 rtc_config.enable_dtls_srtp = false;
4085 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4086 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4087 loopback_media_transports()->second_factory()));
4088 ConnectFakeSignaling();
4089
4090 // Expect that data channel created on caller side will show up for callee as
4091 // well.
4092 caller()->CreateDataChannel();
4093 caller()->CreateAndSetAndSignalOffer();
4094 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4095
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07004096 // Ensure that the data channel transport is ready.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004097 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4098 loopback_media_transports()->FlushAsyncInvokes();
4099
4100 // Caller data channel should already exist (it created one). Callee data
4101 // channel may not exist yet, since negotiation happens in-band, not in SDP.
4102 ASSERT_NE(nullptr, caller()->data_channel());
4103 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4104 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4105 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4106
4107 // Ensure data can be sent in both directions.
4108 std::string data = "hello world";
4109 caller()->data_channel()->Send(DataBuffer(data));
4110 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4111 kDefaultTimeout);
4112 callee()->data_channel()->Send(DataBuffer(data));
4113 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4114 kDefaultTimeout);
4115}
4116
Bjorn A Mellembc3eebc2019-09-23 14:53:54 -07004117// Tests that 'zero-rtt' data channel transports (which are ready-to-send as
4118// soon as they're created) work correctly.
4119TEST_P(PeerConnectionIntegrationTest, DatagramTransportDataChannelZeroRtt) {
4120 PeerConnectionInterface::RTCConfiguration rtc_config;
4121 rtc_config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4122 rtc_config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4123 rtc_config.use_datagram_transport_for_data_channels = true;
4124 rtc_config.enable_dtls_srtp = false; // SDES is required for media transport.
4125 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4126 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4127 loopback_media_transports()->second_factory()));
4128 ConnectFakeSignaling();
4129
4130 // Ensure that the callee's media transport is ready-to-send immediately.
4131 // Note that only the callee can become writable in zero RTTs. The caller
4132 // must wait for the callee's answer.
4133 loopback_media_transports()->SetSecondStateAfterConnect(
4134 webrtc::MediaTransportState::kWritable);
4135 loopback_media_transports()->FlushAsyncInvokes();
4136
4137 // Expect that data channel created on caller side will show up for callee as
4138 // well.
4139 caller()->CreateDataChannel();
4140 caller()->CreateAndSetAndSignalOffer();
4141 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4142
4143 loopback_media_transports()->SetFirstState(
4144 webrtc::MediaTransportState::kWritable);
4145 loopback_media_transports()->FlushAsyncInvokes();
4146
4147 // Caller data channel should already exist (it created one). Callee data
4148 // channel may not exist yet, since negotiation happens in-band, not in SDP.
4149 ASSERT_NE(nullptr, caller()->data_channel());
4150 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4151 EXPECT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4152 EXPECT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4153
4154 // Ensure data can be sent in both directions.
4155 std::string data = "hello world";
4156 caller()->data_channel()->Send(DataBuffer(data));
4157 EXPECT_EQ_WAIT(data, callee()->data_observer()->last_message(),
4158 kDefaultTimeout);
4159 callee()->data_channel()->Send(DataBuffer(data));
4160 EXPECT_EQ_WAIT(data, caller()->data_observer()->last_message(),
4161 kDefaultTimeout);
4162}
4163
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004164// Ensures that when the callee closes a datagram transport data channel, the
4165// closing procedure results in the data channel being closed for the caller
4166// as well.
4167TEST_P(PeerConnectionIntegrationTest,
4168 DatagramTransportDataChannelCalleeCloses) {
4169 PeerConnectionInterface::RTCConfiguration rtc_config;
4170 rtc_config.use_datagram_transport_for_data_channels = true;
4171 rtc_config.enable_dtls_srtp = false;
4172 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4173 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4174 loopback_media_transports()->second_factory()));
4175 ConnectFakeSignaling();
4176
4177 // Create a data channel on the caller and signal it to the callee.
4178 caller()->CreateDataChannel();
4179 caller()->CreateAndSetAndSignalOffer();
4180 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4181
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07004182 // Ensure that the data channel transport is ready.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004183 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4184 loopback_media_transports()->FlushAsyncInvokes();
4185
4186 // Data channels exist and open on both ends of the connection.
4187 ASSERT_NE(nullptr, caller()->data_channel());
4188 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4189 ASSERT_TRUE_WAIT(caller()->data_observer()->IsOpen(), kDefaultTimeout);
4190 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4191
4192 // Close the data channel on the callee side, and wait for it to reach the
4193 // "closed" state on both sides.
4194 callee()->data_channel()->Close();
4195 EXPECT_TRUE_WAIT(!caller()->data_observer()->IsOpen(), kDefaultTimeout);
4196 EXPECT_TRUE_WAIT(!callee()->data_observer()->IsOpen(), kDefaultTimeout);
4197}
4198
4199// Tests that datagram transport data channels can do in-band negotiation.
4200TEST_P(PeerConnectionIntegrationTest,
4201 DatagramTransportDataChannelConfigSentToOtherSide) {
4202 PeerConnectionInterface::RTCConfiguration rtc_config;
4203 rtc_config.use_datagram_transport_for_data_channels = true;
4204 rtc_config.enable_dtls_srtp = false;
4205 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4206 rtc_config, rtc_config, loopback_media_transports()->first_factory(),
4207 loopback_media_transports()->second_factory()));
4208 ConnectFakeSignaling();
4209
4210 // Create a data channel with a non-default configuration and signal it to the
4211 // callee.
4212 webrtc::DataChannelInit init;
4213 init.id = 53;
4214 init.maxRetransmits = 52;
4215 caller()->CreateDataChannel("data-channel", &init);
4216 caller()->CreateAndSetAndSignalOffer();
4217 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4218
Bjorn A Mellemfc604aa2019-09-24 14:59:21 -07004219 // Ensure that the data channel transport is ready.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07004220 loopback_media_transports()->SetState(webrtc::MediaTransportState::kWritable);
4221 loopback_media_transports()->FlushAsyncInvokes();
4222
4223 // Ensure that the data channel exists on the callee with the correct
4224 // configuration.
4225 ASSERT_TRUE_WAIT(callee()->data_channel() != nullptr, kDefaultTimeout);
4226 ASSERT_TRUE_WAIT(callee()->data_observer()->IsOpen(), kDefaultTimeout);
4227 // Since "negotiate" is false, the "id" parameter is ignored.
4228 EXPECT_NE(init.id, callee()->data_channel()->id());
4229 EXPECT_EQ("data-channel", callee()->data_channel()->label());
4230 EXPECT_EQ(init.maxRetransmits, callee()->data_channel()->maxRetransmits());
4231 EXPECT_FALSE(callee()->data_channel()->negotiated());
4232}
4233
4234TEST_P(PeerConnectionIntegrationTest,
4235 DatagramTransportDataChannelRejectedWithNoFallback) {
4236 PeerConnectionInterface::RTCConfiguration offerer_config;
4237 offerer_config.rtcp_mux_policy =
4238 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4239 offerer_config.bundle_policy =
4240 PeerConnectionInterface::kBundlePolicyMaxBundle;
4241 offerer_config.use_datagram_transport_for_data_channels = true;
4242 // Disabling DTLS precludes a fallback to SCTP.
4243 offerer_config.enable_dtls_srtp = false;
4244
4245 PeerConnectionInterface::RTCConfiguration answerer_config;
4246 answerer_config.rtcp_mux_policy =
4247 PeerConnectionInterface::kRtcpMuxPolicyRequire;
4248 answerer_config.bundle_policy =
4249 PeerConnectionInterface::kBundlePolicyMaxBundle;
4250 // Both endpoints must disable DTLS or SetRemoteDescription will fail.
4251 answerer_config.enable_dtls_srtp = false;
4252
4253 // Configure one endpoint to use datagram transport for data channels while
4254 // the other does not.
4255 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndMediaTransportFactory(
4256 offerer_config, answerer_config,
4257 loopback_media_transports()->first_factory(), nullptr));
4258 ConnectFakeSignaling();
4259
4260 // The caller offers a data channel using either datagram transport or SCTP.
4261 caller()->CreateDataChannel();
4262 caller()->AddAudioVideoTracks();
4263 callee()->AddAudioVideoTracks();
4264 caller()->CreateAndSetAndSignalOffer();
4265 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4266
4267 // Caller data channel should already exist (it created one). Callee data
4268 // channel should not exist, since negotiation happens in-band, not in SDP.
4269 EXPECT_NE(nullptr, caller()->data_channel());
4270 EXPECT_EQ(nullptr, callee()->data_channel());
4271
4272 // The caller's data channel should close when the datagram transport is
4273 // rejected.
4274 EXPECT_FALSE(caller()->data_observer()->IsOpen());
4275
4276 // Media flow should not be impacted by the failed data channel.
4277 MediaExpectations media_expectations;
4278 media_expectations.ExpectBidirectionalAudioAndVideo();
4279 ASSERT_TRUE(ExpectNewFrames(media_expectations));
4280}
4281
deadbeef1dcb1642017-03-29 21:08:16 -07004282// Test that the ICE connection and gathering states eventually reach
4283// "complete".
Seth Hampson2f0d7022018-02-20 11:54:42 -08004284TEST_P(PeerConnectionIntegrationTest, IceStatesReachCompletion) {
deadbeef1dcb1642017-03-29 21:08:16 -07004285 ASSERT_TRUE(CreatePeerConnectionWrappers());
4286 ConnectFakeSignaling();
4287 // Do normal offer/answer.
Steve Anton15324772018-01-16 10:26:49 -08004288 caller()->AddAudioVideoTracks();
4289 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004290 caller()->CreateAndSetAndSignalOffer();
4291 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4292 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceGatheringComplete,
4293 caller()->ice_gathering_state(), kMaxWaitForFramesMs);
4294 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceGatheringComplete,
4295 callee()->ice_gathering_state(), kMaxWaitForFramesMs);
4296 // After the best candidate pair is selected and all candidates are signaled,
4297 // the ICE connection state should reach "complete".
4298 // TODO(deadbeef): Currently, the ICE "controlled" agent (the
4299 // answerer/"callee" by default) only reaches "connected". When this is
4300 // fixed, this test should be updated.
4301 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4302 caller()->ice_connection_state(), kDefaultTimeout);
Alex Loiko9289eda2018-11-23 16:18:59 +00004303 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4304 callee()->ice_connection_state(), kDefaultTimeout);
deadbeef1dcb1642017-03-29 21:08:16 -07004305}
4306
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004307constexpr int kOnlyLocalPorts = cricket::PORTALLOCATOR_DISABLE_STUN |
4308 cricket::PORTALLOCATOR_DISABLE_RELAY |
4309 cricket::PORTALLOCATOR_DISABLE_TCP;
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004310
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004311// Use a mock resolver to resolve the hostname back to the original IP on both
4312// sides and check that the ICE connection connects.
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004313TEST_P(PeerConnectionIntegrationTest,
4314 IceStatesReachCompletionWithRemoteHostname) {
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004315 auto caller_resolver_factory =
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004316 std::make_unique<NiceMock<webrtc::MockAsyncResolverFactory>>();
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004317 auto callee_resolver_factory =
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004318 std::make_unique<NiceMock<webrtc::MockAsyncResolverFactory>>();
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004319 NiceMock<rtc::MockAsyncResolver> callee_async_resolver;
4320 NiceMock<rtc::MockAsyncResolver> caller_async_resolver;
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004321
4322 // This also verifies that the injected AsyncResolverFactory is used by
4323 // P2PTransportChannel.
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004324 EXPECT_CALL(*caller_resolver_factory, Create())
4325 .WillOnce(Return(&caller_async_resolver));
4326 webrtc::PeerConnectionDependencies caller_deps(nullptr);
4327 caller_deps.async_resolver_factory = std::move(caller_resolver_factory);
4328
4329 EXPECT_CALL(*callee_resolver_factory, Create())
4330 .WillOnce(Return(&callee_async_resolver));
4331 webrtc::PeerConnectionDependencies callee_deps(nullptr);
4332 callee_deps.async_resolver_factory = std::move(callee_resolver_factory);
4333
4334 PeerConnectionInterface::RTCConfiguration config;
4335 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4336 config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4337
4338 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndDeps(
4339 config, std::move(caller_deps), config, std::move(callee_deps)));
4340
4341 caller()->SetRemoteAsyncResolver(&callee_async_resolver);
4342 callee()->SetRemoteAsyncResolver(&caller_async_resolver);
4343
4344 // Enable hostname candidates with mDNS names.
Qingsi Wangecd30542019-05-22 14:34:56 -07004345 caller()->SetMdnsResponder(
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004346 std::make_unique<webrtc::FakeMdnsResponder>(network_thread()));
Qingsi Wangecd30542019-05-22 14:34:56 -07004347 callee()->SetMdnsResponder(
Mirko Bonadei317a1f02019-09-17 17:06:18 +02004348 std::make_unique<webrtc::FakeMdnsResponder>(network_thread()));
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004349
4350 SetPortAllocatorFlags(kOnlyLocalPorts, kOnlyLocalPorts);
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004351
4352 ConnectFakeSignaling();
4353 caller()->AddAudioVideoTracks();
4354 callee()->AddAudioVideoTracks();
4355 caller()->CreateAndSetAndSignalOffer();
4356 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4357 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4358 caller()->ice_connection_state(), kDefaultTimeout);
4359 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4360 callee()->ice_connection_state(), kDefaultTimeout);
Jeroen de Borst833979f2018-12-13 08:25:54 -08004361
4362 EXPECT_EQ(1, webrtc::metrics::NumEvents(
4363 "WebRTC.PeerConnection.CandidatePairType_UDP",
4364 webrtc::kIceCandidatePairHostNameHostName));
Zach Stein6fcdc2f2018-08-23 16:25:55 -07004365}
4366
Steve Antonede9ca52017-10-16 13:04:27 -07004367// Test that firewalling the ICE connection causes the clients to identify the
4368// disconnected state and then removing the firewall causes them to reconnect.
4369class PeerConnectionIntegrationIceStatesTest
Seth Hampson2f0d7022018-02-20 11:54:42 -08004370 : public PeerConnectionIntegrationBaseTest,
4371 public ::testing::WithParamInterface<
4372 std::tuple<SdpSemantics, std::tuple<std::string, uint32_t>>> {
Steve Antonede9ca52017-10-16 13:04:27 -07004373 protected:
Seth Hampson2f0d7022018-02-20 11:54:42 -08004374 PeerConnectionIntegrationIceStatesTest()
4375 : PeerConnectionIntegrationBaseTest(std::get<0>(GetParam())) {
4376 port_allocator_flags_ = std::get<1>(std::get<1>(GetParam()));
Steve Antonede9ca52017-10-16 13:04:27 -07004377 }
4378
4379 void StartStunServer(const SocketAddress& server_address) {
4380 stun_server_.reset(
4381 cricket::TestStunServer::Create(network_thread(), server_address));
4382 }
4383
4384 bool TestIPv6() {
4385 return (port_allocator_flags_ & cricket::PORTALLOCATOR_ENABLE_IPV6);
4386 }
4387
4388 void SetPortAllocatorFlags() {
Qingsi Wang1dac6d82018-12-12 15:28:47 -08004389 PeerConnectionIntegrationBaseTest::SetPortAllocatorFlags(
4390 port_allocator_flags_, port_allocator_flags_);
Steve Antonede9ca52017-10-16 13:04:27 -07004391 }
4392
4393 std::vector<SocketAddress> CallerAddresses() {
4394 std::vector<SocketAddress> addresses;
4395 addresses.push_back(SocketAddress("1.1.1.1", 0));
4396 if (TestIPv6()) {
4397 addresses.push_back(SocketAddress("1111:0:a:b:c:d:e:f", 0));
4398 }
4399 return addresses;
4400 }
4401
4402 std::vector<SocketAddress> CalleeAddresses() {
4403 std::vector<SocketAddress> addresses;
4404 addresses.push_back(SocketAddress("2.2.2.2", 0));
4405 if (TestIPv6()) {
4406 addresses.push_back(SocketAddress("2222:0:a:b:c:d:e:f", 0));
4407 }
4408 return addresses;
4409 }
4410
4411 void SetUpNetworkInterfaces() {
4412 // Remove the default interfaces added by the test infrastructure.
Qingsi Wangecd30542019-05-22 14:34:56 -07004413 caller()->network_manager()->RemoveInterface(kDefaultLocalAddress);
4414 callee()->network_manager()->RemoveInterface(kDefaultLocalAddress);
Steve Antonede9ca52017-10-16 13:04:27 -07004415
4416 // Add network addresses for test.
4417 for (const auto& caller_address : CallerAddresses()) {
Qingsi Wangecd30542019-05-22 14:34:56 -07004418 caller()->network_manager()->AddInterface(caller_address);
Steve Antonede9ca52017-10-16 13:04:27 -07004419 }
4420 for (const auto& callee_address : CalleeAddresses()) {
Qingsi Wangecd30542019-05-22 14:34:56 -07004421 callee()->network_manager()->AddInterface(callee_address);
Steve Antonede9ca52017-10-16 13:04:27 -07004422 }
4423 }
4424
4425 private:
4426 uint32_t port_allocator_flags_;
4427 std::unique_ptr<cricket::TestStunServer> stun_server_;
4428};
4429
4430// Tests that the PeerConnection goes through all the ICE gathering/connection
4431// states over the duration of the call. This includes Disconnected and Failed
4432// states, induced by putting a firewall between the peers and waiting for them
4433// to time out.
Steve Anton83119dd2017-11-10 16:19:52 -08004434TEST_P(PeerConnectionIntegrationIceStatesTest, VerifyIceStates) {
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004435 rtc::ScopedFakeClock fake_clock;
4436 // Some things use a time of "0" as a special value, so we need to start out
4437 // the fake clock at a nonzero time.
4438 fake_clock.AdvanceTime(TimeDelta::seconds(1));
Steve Antonede9ca52017-10-16 13:04:27 -07004439
4440 const SocketAddress kStunServerAddress =
4441 SocketAddress("99.99.99.1", cricket::STUN_SERVER_PORT);
4442 StartStunServer(kStunServerAddress);
4443
4444 PeerConnectionInterface::RTCConfiguration config;
4445 PeerConnectionInterface::IceServer ice_stun_server;
4446 ice_stun_server.urls.push_back(
4447 "stun:" + kStunServerAddress.HostAsURIString() + ":" +
4448 kStunServerAddress.PortAsString());
4449 config.servers.push_back(ice_stun_server);
4450
4451 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
4452 ConnectFakeSignaling();
4453 SetPortAllocatorFlags();
4454 SetUpNetworkInterfaces();
Steve Anton15324772018-01-16 10:26:49 -08004455 caller()->AddAudioVideoTracks();
4456 callee()->AddAudioVideoTracks();
Steve Antonede9ca52017-10-16 13:04:27 -07004457
4458 // Initial state before anything happens.
4459 ASSERT_EQ(PeerConnectionInterface::kIceGatheringNew,
4460 caller()->ice_gathering_state());
4461 ASSERT_EQ(PeerConnectionInterface::kIceConnectionNew,
4462 caller()->ice_connection_state());
Jonas Olsson7a6739e2019-01-15 16:31:55 +01004463 ASSERT_EQ(PeerConnectionInterface::kIceConnectionNew,
4464 caller()->standardized_ice_connection_state());
Steve Antonede9ca52017-10-16 13:04:27 -07004465
4466 // Start the call by creating the offer, setting it as the local description,
4467 // then sending it to the peer who will respond with an answer. This happens
4468 // asynchronously so that we can watch the states as it runs in the
4469 // background.
4470 caller()->CreateAndSetAndSignalOffer();
4471
Jonas Olsson7a6739e2019-01-15 16:31:55 +01004472 ASSERT_EQ(PeerConnectionInterface::kIceConnectionCompleted,
4473 caller()->ice_connection_state());
Jonas Olssonacd8ae72019-02-25 15:26:24 +01004474 ASSERT_EQ(PeerConnectionInterface::kIceConnectionCompleted,
Jonas Olsson7a6739e2019-01-15 16:31:55 +01004475 caller()->standardized_ice_connection_state());
Steve Antonede9ca52017-10-16 13:04:27 -07004476
4477 // Verify that the observer was notified of the intermediate transitions.
4478 EXPECT_THAT(caller()->ice_connection_state_history(),
4479 ElementsAre(PeerConnectionInterface::kIceConnectionChecking,
4480 PeerConnectionInterface::kIceConnectionConnected,
4481 PeerConnectionInterface::kIceConnectionCompleted));
Jonas Olssonacd8ae72019-02-25 15:26:24 +01004482 EXPECT_THAT(caller()->standardized_ice_connection_state_history(),
4483 ElementsAre(PeerConnectionInterface::kIceConnectionChecking,
4484 PeerConnectionInterface::kIceConnectionConnected,
4485 PeerConnectionInterface::kIceConnectionCompleted));
Jonas Olsson635474e2018-10-18 15:58:17 +02004486 EXPECT_THAT(
4487 caller()->peer_connection_state_history(),
4488 ElementsAre(PeerConnectionInterface::PeerConnectionState::kConnecting,
Jonas Olsson635474e2018-10-18 15:58:17 +02004489 PeerConnectionInterface::PeerConnectionState::kConnected));
Steve Antonede9ca52017-10-16 13:04:27 -07004490 EXPECT_THAT(caller()->ice_gathering_state_history(),
4491 ElementsAre(PeerConnectionInterface::kIceGatheringGathering,
4492 PeerConnectionInterface::kIceGatheringComplete));
4493
4494 // Block connections to/from the caller and wait for ICE to become
4495 // disconnected.
4496 for (const auto& caller_address : CallerAddresses()) {
4497 firewall()->AddRule(false, rtc::FP_ANY, rtc::FD_ANY, caller_address);
4498 }
Mirko Bonadei675513b2017-11-09 11:09:25 +01004499 RTC_LOG(LS_INFO) << "Firewall rules applied";
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004500 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionDisconnected,
4501 caller()->ice_connection_state(), kDefaultTimeout,
4502 fake_clock);
4503 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionDisconnected,
4504 caller()->standardized_ice_connection_state(),
4505 kDefaultTimeout, fake_clock);
Steve Antonede9ca52017-10-16 13:04:27 -07004506
4507 // Let ICE re-establish by removing the firewall rules.
4508 firewall()->ClearRules();
Mirko Bonadei675513b2017-11-09 11:09:25 +01004509 RTC_LOG(LS_INFO) << "Firewall rules cleared";
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004510 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
4511 caller()->ice_connection_state(), kDefaultTimeout,
4512 fake_clock);
Jonas Olssonacd8ae72019-02-25 15:26:24 +01004513 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004514 caller()->standardized_ice_connection_state(),
4515 kDefaultTimeout, fake_clock);
Steve Antonede9ca52017-10-16 13:04:27 -07004516
4517 // According to RFC7675, if there is no response within 30 seconds then the
4518 // peer should consider the other side to have rejected the connection. This
Steve Anton83119dd2017-11-10 16:19:52 -08004519 // is signaled by the state transitioning to "failed".
Steve Antonede9ca52017-10-16 13:04:27 -07004520 constexpr int kConsentTimeout = 30000;
4521 for (const auto& caller_address : CallerAddresses()) {
4522 firewall()->AddRule(false, rtc::FP_ANY, rtc::FD_ANY, caller_address);
4523 }
Mirko Bonadei675513b2017-11-09 11:09:25 +01004524 RTC_LOG(LS_INFO) << "Firewall rules applied again";
Jonas Olssonb75d9e92019-02-22 10:33:29 +01004525 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionFailed,
4526 caller()->ice_connection_state(), kConsentTimeout,
4527 fake_clock);
4528 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionFailed,
4529 caller()->standardized_ice_connection_state(),
4530 kConsentTimeout, fake_clock);
4531
4532 // We need to manually close the peerconnections before the fake clock goes
4533 // out of scope, or we trigger a DCHECK in rtp_sender.cc when we briefly
4534 // return to using non-faked time.
4535 delete SetCallerPcWrapperAndReturnCurrent(nullptr);
4536 delete SetCalleePcWrapperAndReturnCurrent(nullptr);
4537}
4538
4539// Tests that if the connection doesn't get set up properly we eventually reach
4540// the "failed" iceConnectionState.
4541TEST_P(PeerConnectionIntegrationIceStatesTest, IceStateSetupFailure) {
4542 rtc::ScopedFakeClock fake_clock;
4543 // Some things use a time of "0" as a special value, so we need to start out
4544 // the fake clock at a nonzero time.
4545 fake_clock.AdvanceTime(TimeDelta::seconds(1));
4546
4547 // Block connections to/from the caller and wait for ICE to become
4548 // disconnected.
4549 for (const auto& caller_address : CallerAddresses()) {
4550 firewall()->AddRule(false, rtc::FP_ANY, rtc::FD_ANY, caller_address);
4551 }
4552
4553 ASSERT_TRUE(CreatePeerConnectionWrappers());
4554 ConnectFakeSignaling();
4555 SetPortAllocatorFlags();
4556 SetUpNetworkInterfaces();
4557 caller()->AddAudioVideoTracks();
4558 caller()->CreateAndSetAndSignalOffer();
4559
4560 // According to RFC7675, if there is no response within 30 seconds then the
4561 // peer should consider the other side to have rejected the connection. This
4562 // is signaled by the state transitioning to "failed".
4563 constexpr int kConsentTimeout = 30000;
4564 ASSERT_EQ_SIMULATED_WAIT(PeerConnectionInterface::kIceConnectionFailed,
4565 caller()->standardized_ice_connection_state(),
4566 kConsentTimeout, fake_clock);
4567
4568 // We need to manually close the peerconnections before the fake clock goes
4569 // out of scope, or we trigger a DCHECK in rtp_sender.cc when we briefly
4570 // return to using non-faked time.
4571 delete SetCallerPcWrapperAndReturnCurrent(nullptr);
4572 delete SetCalleePcWrapperAndReturnCurrent(nullptr);
Steve Antonede9ca52017-10-16 13:04:27 -07004573}
4574
4575// Tests that the best connection is set to the appropriate IPv4/IPv6 connection
4576// and that the statistics in the metric observers are updated correctly.
4577TEST_P(PeerConnectionIntegrationIceStatesTest, VerifyBestConnection) {
4578 ASSERT_TRUE(CreatePeerConnectionWrappers());
4579 ConnectFakeSignaling();
4580 SetPortAllocatorFlags();
4581 SetUpNetworkInterfaces();
Steve Anton15324772018-01-16 10:26:49 -08004582 caller()->AddAudioVideoTracks();
4583 callee()->AddAudioVideoTracks();
Steve Antonede9ca52017-10-16 13:04:27 -07004584 caller()->CreateAndSetAndSignalOffer();
4585
4586 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4587
Qingsi Wang7fc821d2018-07-12 12:54:53 -07004588 // TODO(bugs.webrtc.org/9456): Fix it.
4589 const int num_best_ipv4 = webrtc::metrics::NumEvents(
4590 "WebRTC.PeerConnection.IPMetrics", webrtc::kBestConnections_IPv4);
4591 const int num_best_ipv6 = webrtc::metrics::NumEvents(
4592 "WebRTC.PeerConnection.IPMetrics", webrtc::kBestConnections_IPv6);
Steve Antonede9ca52017-10-16 13:04:27 -07004593 if (TestIPv6()) {
4594 // When IPv6 is enabled, we should prefer an IPv6 connection over an IPv4
4595 // connection.
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02004596 EXPECT_EQ(0, num_best_ipv4);
4597 EXPECT_EQ(1, num_best_ipv6);
Steve Antonede9ca52017-10-16 13:04:27 -07004598 } else {
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02004599 EXPECT_EQ(1, num_best_ipv4);
4600 EXPECT_EQ(0, num_best_ipv6);
Steve Antonede9ca52017-10-16 13:04:27 -07004601 }
4602
Qingsi Wang7fc821d2018-07-12 12:54:53 -07004603 EXPECT_EQ(0, webrtc::metrics::NumEvents(
4604 "WebRTC.PeerConnection.CandidatePairType_UDP",
4605 webrtc::kIceCandidatePairHostHost));
4606 EXPECT_EQ(1, webrtc::metrics::NumEvents(
4607 "WebRTC.PeerConnection.CandidatePairType_UDP",
4608 webrtc::kIceCandidatePairHostPublicHostPublic));
Steve Antonede9ca52017-10-16 13:04:27 -07004609}
4610
4611constexpr uint32_t kFlagsIPv4NoStun = cricket::PORTALLOCATOR_DISABLE_TCP |
4612 cricket::PORTALLOCATOR_DISABLE_STUN |
4613 cricket::PORTALLOCATOR_DISABLE_RELAY;
4614constexpr uint32_t kFlagsIPv6NoStun =
4615 cricket::PORTALLOCATOR_DISABLE_TCP | cricket::PORTALLOCATOR_DISABLE_STUN |
4616 cricket::PORTALLOCATOR_ENABLE_IPV6 | cricket::PORTALLOCATOR_DISABLE_RELAY;
4617constexpr uint32_t kFlagsIPv4Stun =
4618 cricket::PORTALLOCATOR_DISABLE_TCP | cricket::PORTALLOCATOR_DISABLE_RELAY;
4619
Mirko Bonadeic84f6612019-01-31 12:20:57 +01004620INSTANTIATE_TEST_SUITE_P(
Seth Hampson2f0d7022018-02-20 11:54:42 -08004621 PeerConnectionIntegrationTest,
4622 PeerConnectionIntegrationIceStatesTest,
4623 Combine(Values(SdpSemantics::kPlanB, SdpSemantics::kUnifiedPlan),
4624 Values(std::make_pair("IPv4 no STUN", kFlagsIPv4NoStun),
4625 std::make_pair("IPv6 no STUN", kFlagsIPv6NoStun),
4626 std::make_pair("IPv4 with STUN", kFlagsIPv4Stun))));
Steve Antonede9ca52017-10-16 13:04:27 -07004627
deadbeef1dcb1642017-03-29 21:08:16 -07004628// This test sets up a call between two parties with audio and video.
4629// During the call, the caller restarts ICE and the test verifies that
4630// new ICE candidates are generated and audio and video still can flow, and the
4631// ICE state reaches completed again.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004632TEST_P(PeerConnectionIntegrationTest, MediaContinuesFlowingAfterIceRestart) {
deadbeef1dcb1642017-03-29 21:08:16 -07004633 ASSERT_TRUE(CreatePeerConnectionWrappers());
4634 ConnectFakeSignaling();
4635 // Do normal offer/answer and wait for ICE to complete.
Steve Anton15324772018-01-16 10:26:49 -08004636 caller()->AddAudioVideoTracks();
4637 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004638 caller()->CreateAndSetAndSignalOffer();
4639 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4640 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4641 caller()->ice_connection_state(), kMaxWaitForFramesMs);
Alex Loiko9289eda2018-11-23 16:18:59 +00004642 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4643 callee()->ice_connection_state(), kMaxWaitForFramesMs);
deadbeef1dcb1642017-03-29 21:08:16 -07004644
4645 // To verify that the ICE restart actually occurs, get
4646 // ufrag/password/candidates before and after restart.
4647 // Create an SDP string of the first audio candidate for both clients.
4648 const webrtc::IceCandidateCollection* audio_candidates_caller =
4649 caller()->pc()->local_description()->candidates(0);
4650 const webrtc::IceCandidateCollection* audio_candidates_callee =
4651 callee()->pc()->local_description()->candidates(0);
4652 ASSERT_GT(audio_candidates_caller->count(), 0u);
4653 ASSERT_GT(audio_candidates_callee->count(), 0u);
4654 std::string caller_candidate_pre_restart;
4655 ASSERT_TRUE(
4656 audio_candidates_caller->at(0)->ToString(&caller_candidate_pre_restart));
4657 std::string callee_candidate_pre_restart;
4658 ASSERT_TRUE(
4659 audio_candidates_callee->at(0)->ToString(&callee_candidate_pre_restart));
4660 const cricket::SessionDescription* desc =
4661 caller()->pc()->local_description()->description();
4662 std::string caller_ufrag_pre_restart =
4663 desc->transport_infos()[0].description.ice_ufrag;
4664 desc = callee()->pc()->local_description()->description();
4665 std::string callee_ufrag_pre_restart =
4666 desc->transport_infos()[0].description.ice_ufrag;
4667
Alex Drake00c7ecf2019-08-06 10:54:47 -07004668 EXPECT_EQ(caller()->ice_candidate_pair_change_history().size(), 1u);
deadbeef1dcb1642017-03-29 21:08:16 -07004669 // Have the caller initiate an ICE restart.
4670 caller()->SetOfferAnswerOptions(IceRestartOfferAnswerOptions());
4671 caller()->CreateAndSetAndSignalOffer();
4672 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4673 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4674 caller()->ice_connection_state(), kMaxWaitForFramesMs);
Alex Loiko9289eda2018-11-23 16:18:59 +00004675 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
deadbeef1dcb1642017-03-29 21:08:16 -07004676 callee()->ice_connection_state(), kMaxWaitForFramesMs);
4677
4678 // Grab the ufrags/candidates again.
4679 audio_candidates_caller = caller()->pc()->local_description()->candidates(0);
4680 audio_candidates_callee = callee()->pc()->local_description()->candidates(0);
4681 ASSERT_GT(audio_candidates_caller->count(), 0u);
4682 ASSERT_GT(audio_candidates_callee->count(), 0u);
4683 std::string caller_candidate_post_restart;
4684 ASSERT_TRUE(
4685 audio_candidates_caller->at(0)->ToString(&caller_candidate_post_restart));
4686 std::string callee_candidate_post_restart;
4687 ASSERT_TRUE(
4688 audio_candidates_callee->at(0)->ToString(&callee_candidate_post_restart));
4689 desc = caller()->pc()->local_description()->description();
4690 std::string caller_ufrag_post_restart =
4691 desc->transport_infos()[0].description.ice_ufrag;
4692 desc = callee()->pc()->local_description()->description();
4693 std::string callee_ufrag_post_restart =
4694 desc->transport_infos()[0].description.ice_ufrag;
4695 // Sanity check that an ICE restart was actually negotiated in SDP.
4696 ASSERT_NE(caller_candidate_pre_restart, caller_candidate_post_restart);
4697 ASSERT_NE(callee_candidate_pre_restart, callee_candidate_post_restart);
4698 ASSERT_NE(caller_ufrag_pre_restart, caller_ufrag_post_restart);
4699 ASSERT_NE(callee_ufrag_pre_restart, callee_ufrag_post_restart);
Alex Drake00c7ecf2019-08-06 10:54:47 -07004700 EXPECT_GT(caller()->ice_candidate_pair_change_history().size(), 1u);
deadbeef1dcb1642017-03-29 21:08:16 -07004701
4702 // Ensure that additional frames are received after the ICE restart.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004703 MediaExpectations media_expectations;
4704 media_expectations.ExpectBidirectionalAudioAndVideo();
4705 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004706}
4707
4708// Verify that audio/video can be received end-to-end when ICE renomination is
4709// enabled.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004710TEST_P(PeerConnectionIntegrationTest, EndToEndCallWithIceRenomination) {
deadbeef1dcb1642017-03-29 21:08:16 -07004711 PeerConnectionInterface::RTCConfiguration config;
4712 config.enable_ice_renomination = true;
4713 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
4714 ConnectFakeSignaling();
4715 // Do normal offer/answer and wait for some frames to be received in each
4716 // direction.
Steve Anton15324772018-01-16 10:26:49 -08004717 caller()->AddAudioVideoTracks();
4718 callee()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004719 caller()->CreateAndSetAndSignalOffer();
4720 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4721 // Sanity check that ICE renomination was actually negotiated.
4722 const cricket::SessionDescription* desc =
4723 caller()->pc()->local_description()->description();
4724 for (const cricket::TransportInfo& info : desc->transport_infos()) {
Steve Anton64b626b2019-01-28 17:25:26 -08004725 ASSERT_THAT(info.description.transport_options, Contains("renomination"));
deadbeef1dcb1642017-03-29 21:08:16 -07004726 }
4727 desc = callee()->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 }
Seth Hampson2f0d7022018-02-20 11:54:42 -08004731 MediaExpectations media_expectations;
4732 media_expectations.ExpectBidirectionalAudioAndVideo();
4733 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004734}
4735
Steve Anton6f25b092017-10-23 09:39:20 -07004736// With a max bundle policy and RTCP muxing, adding a new media description to
4737// the connection should not affect ICE at all because the new media will use
4738// the existing connection.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004739TEST_P(PeerConnectionIntegrationTest,
Steve Anton83119dd2017-11-10 16:19:52 -08004740 AddMediaToConnectedBundleDoesNotRestartIce) {
Steve Anton6f25b092017-10-23 09:39:20 -07004741 PeerConnectionInterface::RTCConfiguration config;
4742 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
4743 config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyRequire;
4744 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(
4745 config, PeerConnectionInterface::RTCConfiguration()));
4746 ConnectFakeSignaling();
4747
Steve Anton15324772018-01-16 10:26:49 -08004748 caller()->AddAudioTrack();
Steve Anton6f25b092017-10-23 09:39:20 -07004749 caller()->CreateAndSetAndSignalOffer();
4750 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Steve Antonff52f1b2017-10-26 12:24:50 -07004751 ASSERT_EQ_WAIT(PeerConnectionInterface::kIceConnectionCompleted,
4752 caller()->ice_connection_state(), kDefaultTimeout);
Steve Anton6f25b092017-10-23 09:39:20 -07004753
4754 caller()->clear_ice_connection_state_history();
4755
Steve Anton15324772018-01-16 10:26:49 -08004756 caller()->AddVideoTrack();
Steve Anton6f25b092017-10-23 09:39:20 -07004757 caller()->CreateAndSetAndSignalOffer();
4758 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4759
4760 EXPECT_EQ(0u, caller()->ice_connection_state_history().size());
4761}
4762
deadbeef1dcb1642017-03-29 21:08:16 -07004763// This test sets up a call between two parties with audio and video. It then
4764// renegotiates setting the video m-line to "port 0", then later renegotiates
4765// again, enabling video.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004766TEST_P(PeerConnectionIntegrationTest,
deadbeef1dcb1642017-03-29 21:08:16 -07004767 VideoFlowsAfterMediaSectionIsRejectedAndRecycled) {
4768 ASSERT_TRUE(CreatePeerConnectionWrappers());
4769 ConnectFakeSignaling();
4770
4771 // Do initial negotiation, only sending media from the caller. Will result in
4772 // video and audio recvonly "m=" sections.
Steve Anton15324772018-01-16 10:26:49 -08004773 caller()->AddAudioVideoTracks();
deadbeef1dcb1642017-03-29 21:08:16 -07004774 caller()->CreateAndSetAndSignalOffer();
4775 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4776
4777 // Negotiate again, disabling the video "m=" section (the callee will set the
4778 // port to 0 due to offer_to_receive_video = 0).
Seth Hampson2f0d7022018-02-20 11:54:42 -08004779 if (sdp_semantics_ == SdpSemantics::kPlanB) {
4780 PeerConnectionInterface::RTCOfferAnswerOptions options;
4781 options.offer_to_receive_video = 0;
4782 callee()->SetOfferAnswerOptions(options);
4783 } else {
4784 callee()->SetRemoteOfferHandler([this] {
4785 callee()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO)->Stop();
4786 });
4787 }
deadbeef1dcb1642017-03-29 21:08:16 -07004788 caller()->CreateAndSetAndSignalOffer();
4789 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
4790 // Sanity check that video "m=" section was actually rejected.
4791 const ContentInfo* answer_video_content = cricket::GetFirstVideoContent(
4792 callee()->pc()->local_description()->description());
4793 ASSERT_NE(nullptr, answer_video_content);
4794 ASSERT_TRUE(answer_video_content->rejected);
4795
4796 // Enable video and do negotiation again, making sure video is received
4797 // end-to-end, also adding media stream to callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004798 if (sdp_semantics_ == SdpSemantics::kPlanB) {
4799 PeerConnectionInterface::RTCOfferAnswerOptions options;
4800 options.offer_to_receive_video = 1;
4801 callee()->SetOfferAnswerOptions(options);
4802 } else {
4803 // The caller's transceiver is stopped, so we need to add another track.
4804 auto caller_transceiver =
4805 caller()->GetFirstTransceiverOfType(cricket::MEDIA_TYPE_VIDEO);
4806 EXPECT_TRUE(caller_transceiver->stopped());
4807 caller()->AddVideoTrack();
4808 }
4809 callee()->AddVideoTrack();
4810 callee()->SetRemoteOfferHandler(nullptr);
deadbeef1dcb1642017-03-29 21:08:16 -07004811 caller()->CreateAndSetAndSignalOffer();
4812 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08004813
deadbeef1dcb1642017-03-29 21:08:16 -07004814 // Verify the caller receives frames from the newly added stream, and the
4815 // callee receives additional frames from the re-enabled video m= section.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004816 MediaExpectations media_expectations;
4817 media_expectations.CalleeExpectsSomeAudio();
4818 media_expectations.ExpectBidirectionalVideo();
4819 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004820}
4821
deadbeef1dcb1642017-03-29 21:08:16 -07004822// This tests that if we negotiate after calling CreateSender but before we
4823// have a track, then set a track later, frames from the newly-set track are
4824// received end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004825TEST_F(PeerConnectionIntegrationTestPlanB,
deadbeef1dcb1642017-03-29 21:08:16 -07004826 MediaFlowsAfterEarlyWarmupWithCreateSender) {
4827 ASSERT_TRUE(CreatePeerConnectionWrappers());
4828 ConnectFakeSignaling();
4829 auto caller_audio_sender =
4830 caller()->pc()->CreateSender("audio", "caller_stream");
4831 auto caller_video_sender =
4832 caller()->pc()->CreateSender("video", "caller_stream");
4833 auto callee_audio_sender =
4834 callee()->pc()->CreateSender("audio", "callee_stream");
4835 auto callee_video_sender =
4836 callee()->pc()->CreateSender("video", "callee_stream");
4837 caller()->CreateAndSetAndSignalOffer();
4838 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
4839 // Wait for ICE to complete, without any tracks being set.
4840 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4841 caller()->ice_connection_state(), kMaxWaitForFramesMs);
4842 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4843 callee()->ice_connection_state(), kMaxWaitForFramesMs);
4844 // Now set the tracks, and expect frames to immediately start flowing.
4845 EXPECT_TRUE(caller_audio_sender->SetTrack(caller()->CreateLocalAudioTrack()));
4846 EXPECT_TRUE(caller_video_sender->SetTrack(caller()->CreateLocalVideoTrack()));
4847 EXPECT_TRUE(callee_audio_sender->SetTrack(callee()->CreateLocalAudioTrack()));
4848 EXPECT_TRUE(callee_video_sender->SetTrack(callee()->CreateLocalVideoTrack()));
Seth Hampson2f0d7022018-02-20 11:54:42 -08004849 MediaExpectations media_expectations;
4850 media_expectations.ExpectBidirectionalAudioAndVideo();
4851 ASSERT_TRUE(ExpectNewFrames(media_expectations));
4852}
4853
4854// This tests that if we negotiate after calling AddTransceiver but before we
4855// have a track, then set a track later, frames from the newly-set tracks are
4856// received end-to-end.
4857TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
4858 MediaFlowsAfterEarlyWarmupWithAddTransceiver) {
4859 ASSERT_TRUE(CreatePeerConnectionWrappers());
4860 ConnectFakeSignaling();
4861 auto audio_result = caller()->pc()->AddTransceiver(cricket::MEDIA_TYPE_AUDIO);
4862 ASSERT_EQ(RTCErrorType::NONE, audio_result.error().type());
4863 auto caller_audio_sender = audio_result.MoveValue()->sender();
4864 auto video_result = caller()->pc()->AddTransceiver(cricket::MEDIA_TYPE_VIDEO);
4865 ASSERT_EQ(RTCErrorType::NONE, video_result.error().type());
4866 auto caller_video_sender = video_result.MoveValue()->sender();
4867 callee()->SetRemoteOfferHandler([this] {
4868 ASSERT_EQ(2u, callee()->pc()->GetTransceivers().size());
4869 callee()->pc()->GetTransceivers()[0]->SetDirection(
4870 RtpTransceiverDirection::kSendRecv);
4871 callee()->pc()->GetTransceivers()[1]->SetDirection(
4872 RtpTransceiverDirection::kSendRecv);
4873 });
4874 caller()->CreateAndSetAndSignalOffer();
4875 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
4876 // Wait for ICE to complete, without any tracks being set.
4877 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionCompleted,
4878 caller()->ice_connection_state(), kMaxWaitForFramesMs);
4879 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
4880 callee()->ice_connection_state(), kMaxWaitForFramesMs);
4881 // Now set the tracks, and expect frames to immediately start flowing.
4882 auto callee_audio_sender = callee()->pc()->GetSenders()[0];
4883 auto callee_video_sender = callee()->pc()->GetSenders()[1];
4884 ASSERT_TRUE(caller_audio_sender->SetTrack(caller()->CreateLocalAudioTrack()));
4885 ASSERT_TRUE(caller_video_sender->SetTrack(caller()->CreateLocalVideoTrack()));
4886 ASSERT_TRUE(callee_audio_sender->SetTrack(callee()->CreateLocalAudioTrack()));
4887 ASSERT_TRUE(callee_video_sender->SetTrack(callee()->CreateLocalVideoTrack()));
4888 MediaExpectations media_expectations;
4889 media_expectations.ExpectBidirectionalAudioAndVideo();
4890 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004891}
4892
4893// This test verifies that a remote video track can be added via AddStream,
4894// and sent end-to-end. For this particular test, it's simply echoed back
4895// from the caller to the callee, rather than being forwarded to a third
4896// PeerConnection.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004897TEST_F(PeerConnectionIntegrationTestPlanB, CanSendRemoteVideoTrack) {
deadbeef1dcb1642017-03-29 21:08:16 -07004898 ASSERT_TRUE(CreatePeerConnectionWrappers());
4899 ConnectFakeSignaling();
4900 // Just send a video track from the caller.
Steve Anton15324772018-01-16 10:26:49 -08004901 caller()->AddVideoTrack();
deadbeef1dcb1642017-03-29 21:08:16 -07004902 caller()->CreateAndSetAndSignalOffer();
4903 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02004904 ASSERT_EQ(1U, callee()->remote_streams()->count());
deadbeef1dcb1642017-03-29 21:08:16 -07004905
4906 // Echo the stream back, and do a new offer/anwer (initiated by callee this
4907 // time).
4908 callee()->pc()->AddStream(callee()->remote_streams()->at(0));
4909 callee()->CreateAndSetAndSignalOffer();
4910 ASSERT_TRUE_WAIT(SignalingStateStable(), kMaxWaitForActivationMs);
4911
Seth Hampson2f0d7022018-02-20 11:54:42 -08004912 MediaExpectations media_expectations;
4913 media_expectations.ExpectBidirectionalVideo();
4914 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeef1dcb1642017-03-29 21:08:16 -07004915}
4916
4917// Test that we achieve the expected end-to-end connection time, using a
4918// fake clock and simulated latency on the media and signaling paths.
4919// We use a TURN<->TURN connection because this is usually the quickest to
4920// set up initially, especially when we're confident the connection will work
4921// and can start sending media before we get a STUN response.
4922//
4923// With various optimizations enabled, here are the network delays we expect to
4924// be on the critical path:
4925// 1. 2 signaling trips: Signaling offer and offerer's TURN candidate, then
4926// signaling answer (with DTLS fingerprint).
4927// 2. 9 media hops: Rest of the DTLS handshake. 3 hops in each direction when
4928// using TURN<->TURN pair, and DTLS exchange is 4 packets,
4929// the first of which should have arrived before the answer.
Seth Hampson2f0d7022018-02-20 11:54:42 -08004930TEST_P(PeerConnectionIntegrationTest, EndToEndConnectionTimeWithTurnTurnPair) {
deadbeef1dcb1642017-03-29 21:08:16 -07004931 rtc::ScopedFakeClock fake_clock;
4932 // Some things use a time of "0" as a special value, so we need to start out
4933 // the fake clock at a nonzero time.
4934 // TODO(deadbeef): Fix this.
Sebastian Jansson5f83cf02018-05-08 14:52:22 +02004935 fake_clock.AdvanceTime(webrtc::TimeDelta::seconds(1));
deadbeef1dcb1642017-03-29 21:08:16 -07004936
4937 static constexpr int media_hop_delay_ms = 50;
4938 static constexpr int signaling_trip_delay_ms = 500;
4939 // For explanation of these values, see comment above.
4940 static constexpr int required_media_hops = 9;
4941 static constexpr int required_signaling_trips = 2;
4942 // For internal delays (such as posting an event asychronously).
4943 static constexpr int allowed_internal_delay_ms = 20;
4944 static constexpr int total_connection_time_ms =
4945 media_hop_delay_ms * required_media_hops +
4946 signaling_trip_delay_ms * required_signaling_trips +
4947 allowed_internal_delay_ms;
4948
4949 static const rtc::SocketAddress turn_server_1_internal_address{"88.88.88.0",
4950 3478};
4951 static const rtc::SocketAddress turn_server_1_external_address{"88.88.88.1",
4952 0};
4953 static const rtc::SocketAddress turn_server_2_internal_address{"99.99.99.0",
4954 3478};
4955 static const rtc::SocketAddress turn_server_2_external_address{"99.99.99.1",
4956 0};
Seth Hampsonaed71642018-06-11 07:41:32 -07004957 cricket::TestTurnServer* turn_server_1 = CreateTurnServer(
4958 turn_server_1_internal_address, turn_server_1_external_address);
Jonas Orelandbdcee282017-10-10 14:01:40 +02004959
Seth Hampsonaed71642018-06-11 07:41:32 -07004960 cricket::TestTurnServer* turn_server_2 = CreateTurnServer(
4961 turn_server_2_internal_address, turn_server_2_external_address);
deadbeef1dcb1642017-03-29 21:08:16 -07004962 // Bypass permission check on received packets so media can be sent before
4963 // the candidate is signaled.
Seth Hampsonaed71642018-06-11 07:41:32 -07004964 network_thread()->Invoke<void>(RTC_FROM_HERE, [turn_server_1] {
4965 turn_server_1->set_enable_permission_checks(false);
4966 });
4967 network_thread()->Invoke<void>(RTC_FROM_HERE, [turn_server_2] {
4968 turn_server_2->set_enable_permission_checks(false);
4969 });
deadbeef1dcb1642017-03-29 21:08:16 -07004970
4971 PeerConnectionInterface::RTCConfiguration client_1_config;
4972 webrtc::PeerConnectionInterface::IceServer ice_server_1;
4973 ice_server_1.urls.push_back("turn:88.88.88.0:3478");
4974 ice_server_1.username = "test";
4975 ice_server_1.password = "test";
4976 client_1_config.servers.push_back(ice_server_1);
4977 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
4978 client_1_config.presume_writable_when_fully_relayed = true;
4979
4980 PeerConnectionInterface::RTCConfiguration client_2_config;
4981 webrtc::PeerConnectionInterface::IceServer ice_server_2;
4982 ice_server_2.urls.push_back("turn:99.99.99.0:3478");
4983 ice_server_2.username = "test";
4984 ice_server_2.password = "test";
4985 client_2_config.servers.push_back(ice_server_2);
4986 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
4987 client_2_config.presume_writable_when_fully_relayed = true;
4988
4989 ASSERT_TRUE(
4990 CreatePeerConnectionWrappersWithConfig(client_1_config, client_2_config));
4991 // Set up the simulated delays.
4992 SetSignalingDelayMs(signaling_trip_delay_ms);
4993 ConnectFakeSignaling();
4994 virtual_socket_server()->set_delay_mean(media_hop_delay_ms);
4995 virtual_socket_server()->UpdateDelayDistribution();
4996
4997 // Set "offer to receive audio/video" without adding any tracks, so we just
4998 // set up ICE/DTLS with no media.
4999 PeerConnectionInterface::RTCOfferAnswerOptions options;
5000 options.offer_to_receive_audio = 1;
5001 options.offer_to_receive_video = 1;
5002 caller()->SetOfferAnswerOptions(options);
5003 caller()->CreateAndSetAndSignalOffer();
deadbeef71452802017-05-07 17:21:01 -07005004 EXPECT_TRUE_SIMULATED_WAIT(DtlsConnected(), total_connection_time_ms,
5005 fake_clock);
Seth Hampson1d4a76d2018-06-19 14:31:41 -07005006 // Closing the PeerConnections destroys the ports before the ScopedFakeClock.
5007 // If this is not done a DCHECK can be hit in ports.cc, because a large
5008 // negative number is calculated for the rtt due to the global clock changing.
Steve Antond91969e2019-05-30 12:27:03 -07005009 ClosePeerConnections();
deadbeef1dcb1642017-03-29 21:08:16 -07005010}
5011
Jonas Orelandbdcee282017-10-10 14:01:40 +02005012// Verify that a TurnCustomizer passed in through RTCConfiguration
5013// is actually used by the underlying TURN candidate pair.
5014// Note that turnport_unittest.cc contains more detailed, lower-level tests.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005015TEST_P(PeerConnectionIntegrationTest, TurnCustomizerUsedForTurnConnections) {
Jonas Orelandbdcee282017-10-10 14:01:40 +02005016 static const rtc::SocketAddress turn_server_1_internal_address{"88.88.88.0",
5017 3478};
5018 static const rtc::SocketAddress turn_server_1_external_address{"88.88.88.1",
5019 0};
5020 static const rtc::SocketAddress turn_server_2_internal_address{"99.99.99.0",
5021 3478};
5022 static const rtc::SocketAddress turn_server_2_external_address{"99.99.99.1",
5023 0};
Seth Hampsonaed71642018-06-11 07:41:32 -07005024 CreateTurnServer(turn_server_1_internal_address,
5025 turn_server_1_external_address);
5026 CreateTurnServer(turn_server_2_internal_address,
5027 turn_server_2_external_address);
Jonas Orelandbdcee282017-10-10 14:01:40 +02005028
5029 PeerConnectionInterface::RTCConfiguration client_1_config;
5030 webrtc::PeerConnectionInterface::IceServer ice_server_1;
5031 ice_server_1.urls.push_back("turn:88.88.88.0:3478");
5032 ice_server_1.username = "test";
5033 ice_server_1.password = "test";
5034 client_1_config.servers.push_back(ice_server_1);
5035 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
Seth Hampsonaed71642018-06-11 07:41:32 -07005036 auto* customizer1 = CreateTurnCustomizer();
5037 client_1_config.turn_customizer = customizer1;
Jonas Orelandbdcee282017-10-10 14:01:40 +02005038
5039 PeerConnectionInterface::RTCConfiguration client_2_config;
5040 webrtc::PeerConnectionInterface::IceServer ice_server_2;
5041 ice_server_2.urls.push_back("turn:99.99.99.0:3478");
5042 ice_server_2.username = "test";
5043 ice_server_2.password = "test";
5044 client_2_config.servers.push_back(ice_server_2);
5045 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
Seth Hampsonaed71642018-06-11 07:41:32 -07005046 auto* customizer2 = CreateTurnCustomizer();
5047 client_2_config.turn_customizer = customizer2;
Jonas Orelandbdcee282017-10-10 14:01:40 +02005048
5049 ASSERT_TRUE(
5050 CreatePeerConnectionWrappersWithConfig(client_1_config, client_2_config));
5051 ConnectFakeSignaling();
5052
5053 // Set "offer to receive audio/video" without adding any tracks, so we just
5054 // set up ICE/DTLS with no media.
5055 PeerConnectionInterface::RTCOfferAnswerOptions options;
5056 options.offer_to_receive_audio = 1;
5057 options.offer_to_receive_video = 1;
5058 caller()->SetOfferAnswerOptions(options);
5059 caller()->CreateAndSetAndSignalOffer();
5060 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
5061
Seth Hampsonaed71642018-06-11 07:41:32 -07005062 ExpectTurnCustomizerCountersIncremented(customizer1);
5063 ExpectTurnCustomizerCountersIncremented(customizer2);
Jonas Orelandbdcee282017-10-10 14:01:40 +02005064}
5065
Benjamin Wright2d5f3cb2018-05-22 14:46:06 -07005066// Verifies that you can use TCP instead of UDP to connect to a TURN server and
5067// send media between the caller and the callee.
5068TEST_P(PeerConnectionIntegrationTest, TCPUsedForTurnConnections) {
5069 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5070 3478};
5071 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5072
5073 // Enable TCP for the fake turn server.
Seth Hampsonaed71642018-06-11 07:41:32 -07005074 CreateTurnServer(turn_server_internal_address, turn_server_external_address,
5075 cricket::PROTO_TCP);
Benjamin Wright2d5f3cb2018-05-22 14:46:06 -07005076
5077 webrtc::PeerConnectionInterface::IceServer ice_server;
5078 ice_server.urls.push_back("turn:88.88.88.0:3478?transport=tcp");
5079 ice_server.username = "test";
5080 ice_server.password = "test";
5081
5082 PeerConnectionInterface::RTCConfiguration client_1_config;
5083 client_1_config.servers.push_back(ice_server);
5084 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
5085
5086 PeerConnectionInterface::RTCConfiguration client_2_config;
5087 client_2_config.servers.push_back(ice_server);
5088 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
5089
5090 ASSERT_TRUE(
5091 CreatePeerConnectionWrappersWithConfig(client_1_config, client_2_config));
5092
5093 // Do normal offer/answer and wait for ICE to complete.
5094 ConnectFakeSignaling();
5095 caller()->AddAudioVideoTracks();
5096 callee()->AddAudioVideoTracks();
5097 caller()->CreateAndSetAndSignalOffer();
5098 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5099 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
5100 callee()->ice_connection_state(), kMaxWaitForFramesMs);
5101
5102 MediaExpectations media_expectations;
5103 media_expectations.ExpectBidirectionalAudioAndVideo();
5104 EXPECT_TRUE(ExpectNewFrames(media_expectations));
5105}
5106
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005107// Verify that a SSLCertificateVerifier passed in through
5108// PeerConnectionDependencies is actually used by the underlying SSL
5109// implementation to determine whether a certificate presented by the TURN
5110// server is accepted by the client. Note that openssladapter_unittest.cc
5111// contains more detailed, lower-level tests.
5112TEST_P(PeerConnectionIntegrationTest,
5113 SSLCertificateVerifierUsedForTurnConnections) {
5114 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5115 3478};
5116 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5117
5118 // Enable TCP-TLS for the fake turn server. We need to pass in 88.88.88.0 so
5119 // that host name verification passes on the fake certificate.
Seth Hampsonaed71642018-06-11 07:41:32 -07005120 CreateTurnServer(turn_server_internal_address, turn_server_external_address,
5121 cricket::PROTO_TLS, "88.88.88.0");
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005122
5123 webrtc::PeerConnectionInterface::IceServer ice_server;
5124 ice_server.urls.push_back("turns:88.88.88.0:3478?transport=tcp");
5125 ice_server.username = "test";
5126 ice_server.password = "test";
5127
5128 PeerConnectionInterface::RTCConfiguration client_1_config;
5129 client_1_config.servers.push_back(ice_server);
5130 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
5131
5132 PeerConnectionInterface::RTCConfiguration client_2_config;
5133 client_2_config.servers.push_back(ice_server);
5134 // Setting the type to kRelay forces the connection to go through a TURN
5135 // server.
5136 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
5137
5138 // Get a copy to the pointer so we can verify calls later.
5139 rtc::TestCertificateVerifier* client_1_cert_verifier =
5140 new rtc::TestCertificateVerifier();
5141 client_1_cert_verifier->verify_certificate_ = true;
5142 rtc::TestCertificateVerifier* client_2_cert_verifier =
5143 new rtc::TestCertificateVerifier();
5144 client_2_cert_verifier->verify_certificate_ = true;
5145
5146 // Create the dependencies with the test certificate verifier.
5147 webrtc::PeerConnectionDependencies client_1_deps(nullptr);
5148 client_1_deps.tls_cert_verifier =
5149 std::unique_ptr<rtc::TestCertificateVerifier>(client_1_cert_verifier);
5150 webrtc::PeerConnectionDependencies client_2_deps(nullptr);
5151 client_2_deps.tls_cert_verifier =
5152 std::unique_ptr<rtc::TestCertificateVerifier>(client_2_cert_verifier);
5153
5154 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndDeps(
5155 client_1_config, std::move(client_1_deps), client_2_config,
5156 std::move(client_2_deps)));
5157 ConnectFakeSignaling();
5158
5159 // Set "offer to receive audio/video" without adding any tracks, so we just
5160 // set up ICE/DTLS with no media.
5161 PeerConnectionInterface::RTCOfferAnswerOptions options;
5162 options.offer_to_receive_audio = 1;
5163 options.offer_to_receive_video = 1;
5164 caller()->SetOfferAnswerOptions(options);
5165 caller()->CreateAndSetAndSignalOffer();
5166 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
5167
5168 EXPECT_GT(client_1_cert_verifier->call_count_, 0u);
5169 EXPECT_GT(client_2_cert_verifier->call_count_, 0u);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005170}
5171
5172TEST_P(PeerConnectionIntegrationTest,
5173 SSLCertificateVerifierFailureUsedForTurnConnectionsFailsConnection) {
5174 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5175 3478};
5176 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5177
5178 // Enable TCP-TLS for the fake turn server. We need to pass in 88.88.88.0 so
5179 // that host name verification passes on the fake certificate.
Seth Hampsonaed71642018-06-11 07:41:32 -07005180 CreateTurnServer(turn_server_internal_address, turn_server_external_address,
5181 cricket::PROTO_TLS, "88.88.88.0");
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005182
5183 webrtc::PeerConnectionInterface::IceServer ice_server;
5184 ice_server.urls.push_back("turns:88.88.88.0:3478?transport=tcp");
5185 ice_server.username = "test";
5186 ice_server.password = "test";
5187
5188 PeerConnectionInterface::RTCConfiguration client_1_config;
5189 client_1_config.servers.push_back(ice_server);
5190 client_1_config.type = webrtc::PeerConnectionInterface::kRelay;
5191
5192 PeerConnectionInterface::RTCConfiguration client_2_config;
5193 client_2_config.servers.push_back(ice_server);
5194 // Setting the type to kRelay forces the connection to go through a TURN
5195 // server.
5196 client_2_config.type = webrtc::PeerConnectionInterface::kRelay;
5197
5198 // Get a copy to the pointer so we can verify calls later.
5199 rtc::TestCertificateVerifier* client_1_cert_verifier =
5200 new rtc::TestCertificateVerifier();
5201 client_1_cert_verifier->verify_certificate_ = false;
5202 rtc::TestCertificateVerifier* client_2_cert_verifier =
5203 new rtc::TestCertificateVerifier();
5204 client_2_cert_verifier->verify_certificate_ = false;
5205
5206 // Create the dependencies with the test certificate verifier.
5207 webrtc::PeerConnectionDependencies client_1_deps(nullptr);
5208 client_1_deps.tls_cert_verifier =
5209 std::unique_ptr<rtc::TestCertificateVerifier>(client_1_cert_verifier);
5210 webrtc::PeerConnectionDependencies client_2_deps(nullptr);
5211 client_2_deps.tls_cert_verifier =
5212 std::unique_ptr<rtc::TestCertificateVerifier>(client_2_cert_verifier);
5213
5214 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfigAndDeps(
5215 client_1_config, std::move(client_1_deps), client_2_config,
5216 std::move(client_2_deps)));
5217 ConnectFakeSignaling();
5218
5219 // Set "offer to receive audio/video" without adding any tracks, so we just
5220 // set up ICE/DTLS with no media.
5221 PeerConnectionInterface::RTCOfferAnswerOptions options;
5222 options.offer_to_receive_audio = 1;
5223 options.offer_to_receive_video = 1;
5224 caller()->SetOfferAnswerOptions(options);
5225 caller()->CreateAndSetAndSignalOffer();
5226 bool wait_res = true;
5227 // TODO(bugs.webrtc.org/9219): When IceConnectionState is implemented
5228 // properly, should be able to just wait for a state of "failed" instead of
5229 // waiting a fixed 10 seconds.
5230 WAIT_(DtlsConnected(), kDefaultTimeout, wait_res);
5231 ASSERT_FALSE(wait_res);
5232
5233 EXPECT_GT(client_1_cert_verifier->call_count_, 0u);
5234 EXPECT_GT(client_2_cert_verifier->call_count_, 0u);
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07005235}
5236
Qingsi Wang25ec8882019-11-15 12:33:05 -08005237// Test that the injected ICE transport factory is used to create ICE transports
5238// for WebRTC connections.
5239TEST_P(PeerConnectionIntegrationTest, IceTransportFactoryUsedForConnections) {
5240 PeerConnectionInterface::RTCConfiguration default_config;
5241 PeerConnectionDependencies dependencies(nullptr);
5242 auto ice_transport_factory = std::make_unique<MockIceTransportFactory>();
5243 EXPECT_CALL(*ice_transport_factory, RecordIceTransportCreated()).Times(1);
5244 dependencies.ice_transport_factory = std::move(ice_transport_factory);
5245 auto wrapper =
5246 CreatePeerConnectionWrapper("Caller", nullptr, &default_config,
5247 std::move(dependencies), nullptr, nullptr);
5248 ASSERT_TRUE(wrapper);
5249 wrapper->CreateDataChannel();
5250 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
5251 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5252 wrapper->pc()->SetLocalDescription(observer,
5253 wrapper->CreateOfferAndWait().release());
5254}
5255
deadbeefc964d0b2017-04-03 10:03:35 -07005256// Test that audio and video flow end-to-end when codec names don't use the
5257// expected casing, given that they're supposed to be case insensitive. To test
5258// this, all but one codec is removed from each media description, and its
5259// casing is changed.
5260//
5261// In the past, this has regressed and caused crashes/black video, due to the
5262// fact that code at some layers was doing case-insensitive comparisons and
5263// code at other layers was not.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005264TEST_P(PeerConnectionIntegrationTest, CodecNamesAreCaseInsensitive) {
deadbeefc964d0b2017-04-03 10:03:35 -07005265 ASSERT_TRUE(CreatePeerConnectionWrappers());
5266 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08005267 caller()->AddAudioVideoTracks();
5268 callee()->AddAudioVideoTracks();
deadbeefc964d0b2017-04-03 10:03:35 -07005269
5270 // Remove all but one audio/video codec (opus and VP8), and change the
5271 // casing of the caller's generated offer.
5272 caller()->SetGeneratedSdpMunger([](cricket::SessionDescription* description) {
5273 cricket::AudioContentDescription* audio =
5274 GetFirstAudioContentDescription(description);
5275 ASSERT_NE(nullptr, audio);
5276 auto audio_codecs = audio->codecs();
5277 audio_codecs.erase(std::remove_if(audio_codecs.begin(), audio_codecs.end(),
5278 [](const cricket::AudioCodec& codec) {
5279 return codec.name != "opus";
5280 }),
5281 audio_codecs.end());
5282 ASSERT_EQ(1u, audio_codecs.size());
5283 audio_codecs[0].name = "OpUs";
5284 audio->set_codecs(audio_codecs);
5285
5286 cricket::VideoContentDescription* video =
5287 GetFirstVideoContentDescription(description);
5288 ASSERT_NE(nullptr, video);
5289 auto video_codecs = video->codecs();
5290 video_codecs.erase(std::remove_if(video_codecs.begin(), video_codecs.end(),
5291 [](const cricket::VideoCodec& codec) {
5292 return codec.name != "VP8";
5293 }),
5294 video_codecs.end());
5295 ASSERT_EQ(1u, video_codecs.size());
5296 video_codecs[0].name = "vP8";
5297 video->set_codecs(video_codecs);
5298 });
5299
5300 caller()->CreateAndSetAndSignalOffer();
5301 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5302
5303 // Verify frames are still received end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005304 MediaExpectations media_expectations;
5305 media_expectations.ExpectBidirectionalAudioAndVideo();
5306 ASSERT_TRUE(ExpectNewFrames(media_expectations));
deadbeefc964d0b2017-04-03 10:03:35 -07005307}
5308
Jonas Oreland49ac5952018-09-26 16:04:32 +02005309TEST_P(PeerConnectionIntegrationTest, GetSourcesAudio) {
hbos8d609f62017-04-10 07:39:05 -07005310 ASSERT_TRUE(CreatePeerConnectionWrappers());
5311 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08005312 caller()->AddAudioTrack();
hbos8d609f62017-04-10 07:39:05 -07005313 caller()->CreateAndSetAndSignalOffer();
5314 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
deadbeefd8ad7882017-04-18 16:01:17 -07005315 // Wait for one audio frame to be received by the callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005316 MediaExpectations media_expectations;
5317 media_expectations.CalleeExpectsSomeAudio(1);
5318 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Jonas Oreland49ac5952018-09-26 16:04:32 +02005319 ASSERT_EQ(callee()->pc()->GetReceivers().size(), 1u);
hbos8d609f62017-04-10 07:39:05 -07005320 auto receiver = callee()->pc()->GetReceivers()[0];
5321 ASSERT_EQ(receiver->media_type(), cricket::MEDIA_TYPE_AUDIO);
Jonas Oreland49ac5952018-09-26 16:04:32 +02005322 auto sources = receiver->GetSources();
hbos8d609f62017-04-10 07:39:05 -07005323 ASSERT_GT(receiver->GetParameters().encodings.size(), 0u);
5324 EXPECT_EQ(receiver->GetParameters().encodings[0].ssrc,
Jonas Oreland49ac5952018-09-26 16:04:32 +02005325 sources[0].source_id());
5326 EXPECT_EQ(webrtc::RtpSourceType::SSRC, sources[0].source_type());
5327}
5328
5329TEST_P(PeerConnectionIntegrationTest, GetSourcesVideo) {
5330 ASSERT_TRUE(CreatePeerConnectionWrappers());
5331 ConnectFakeSignaling();
5332 caller()->AddVideoTrack();
5333 caller()->CreateAndSetAndSignalOffer();
5334 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5335 // Wait for one video frame to be received by the callee.
5336 MediaExpectations media_expectations;
5337 media_expectations.CalleeExpectsSomeVideo(1);
5338 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5339 ASSERT_EQ(callee()->pc()->GetReceivers().size(), 1u);
5340 auto receiver = callee()->pc()->GetReceivers()[0];
5341 ASSERT_EQ(receiver->media_type(), cricket::MEDIA_TYPE_VIDEO);
5342 auto sources = receiver->GetSources();
5343 ASSERT_GT(receiver->GetParameters().encodings.size(), 0u);
Yves Gereyf781bb52019-07-23 19:15:39 +02005344 ASSERT_GT(sources.size(), 0u);
Jonas Oreland49ac5952018-09-26 16:04:32 +02005345 EXPECT_EQ(receiver->GetParameters().encodings[0].ssrc,
5346 sources[0].source_id());
5347 EXPECT_EQ(webrtc::RtpSourceType::SSRC, sources[0].source_type());
hbos8d609f62017-04-10 07:39:05 -07005348}
5349
deadbeef2f425aa2017-04-14 10:41:32 -07005350// Test that if a track is removed and added again with a different stream ID,
5351// the new stream ID is successfully communicated in SDP and media continues to
5352// flow end-to-end.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005353// TODO(webrtc.bugs.org/8734): This test does not work for Unified Plan because
5354// it will not reuse a transceiver that has already been sending. After creating
5355// a new transceiver it tries to create an offer with two senders of the same
5356// track ids and it fails.
5357TEST_F(PeerConnectionIntegrationTestPlanB, RemoveAndAddTrackWithNewStreamId) {
deadbeef2f425aa2017-04-14 10:41:32 -07005358 ASSERT_TRUE(CreatePeerConnectionWrappers());
5359 ConnectFakeSignaling();
5360
deadbeef2f425aa2017-04-14 10:41:32 -07005361 // Add track using stream 1, do offer/answer.
5362 rtc::scoped_refptr<webrtc::AudioTrackInterface> track =
5363 caller()->CreateLocalAudioTrack();
5364 rtc::scoped_refptr<webrtc::RtpSenderInterface> sender =
Steve Antond78323f2018-07-11 11:13:44 -07005365 caller()->AddTrack(track, {"stream_1"});
deadbeef2f425aa2017-04-14 10:41:32 -07005366 caller()->CreateAndSetAndSignalOffer();
5367 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005368 {
5369 MediaExpectations media_expectations;
5370 media_expectations.CalleeExpectsSomeAudio(1);
5371 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5372 }
deadbeef2f425aa2017-04-14 10:41:32 -07005373 // Remove the sender, and create a new one with the new stream.
5374 caller()->pc()->RemoveTrack(sender);
Steve Antond78323f2018-07-11 11:13:44 -07005375 sender = caller()->AddTrack(track, {"stream_2"});
deadbeef2f425aa2017-04-14 10:41:32 -07005376 caller()->CreateAndSetAndSignalOffer();
5377 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5378 // Wait for additional audio frames to be received by the callee.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005379 {
5380 MediaExpectations media_expectations;
5381 media_expectations.CalleeExpectsSomeAudio();
5382 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5383 }
deadbeef2f425aa2017-04-14 10:41:32 -07005384}
5385
Seth Hampson2f0d7022018-02-20 11:54:42 -08005386TEST_P(PeerConnectionIntegrationTest, RtcEventLogOutputWriteCalled) {
Elad Alon99c3fe52017-10-13 16:29:40 +02005387 ASSERT_TRUE(CreatePeerConnectionWrappers());
5388 ConnectFakeSignaling();
5389
Mirko Bonadei317a1f02019-09-17 17:06:18 +02005390 auto output = std::make_unique<testing::NiceMock<MockRtcEventLogOutput>>();
Mirko Bonadei6a489f22019-04-09 15:11:12 +02005391 ON_CALL(*output, IsActive()).WillByDefault(::testing::Return(true));
5392 ON_CALL(*output, Write(::testing::_)).WillByDefault(::testing::Return(true));
Elad Alon99c3fe52017-10-13 16:29:40 +02005393 EXPECT_CALL(*output, Write(::testing::_)).Times(::testing::AtLeast(1));
Bjorn Tereliusde939432017-11-20 17:38:14 +01005394 EXPECT_TRUE(caller()->pc()->StartRtcEventLog(
5395 std::move(output), webrtc::RtcEventLog::kImmediateOutput));
Elad Alon99c3fe52017-10-13 16:29:40 +02005396
Steve Anton15324772018-01-16 10:26:49 -08005397 caller()->AddAudioVideoTracks();
Elad Alon99c3fe52017-10-13 16:29:40 +02005398 caller()->CreateAndSetAndSignalOffer();
5399 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5400}
5401
Steve Antonede9ca52017-10-16 13:04:27 -07005402// Test that if candidates are only signaled by applying full session
5403// descriptions (instead of using AddIceCandidate), the peers can connect to
5404// each other and exchange media.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005405TEST_P(PeerConnectionIntegrationTest, MediaFlowsWhenCandidatesSetOnlyInSdp) {
Steve Antonede9ca52017-10-16 13:04:27 -07005406 ASSERT_TRUE(CreatePeerConnectionWrappers());
5407 // Each side will signal the session descriptions but not candidates.
5408 ConnectFakeSignalingForSdpOnly();
5409
5410 // Add audio video track and exchange the initial offer/answer with media
5411 // information only. This will start ICE gathering on each side.
Steve Anton15324772018-01-16 10:26:49 -08005412 caller()->AddAudioVideoTracks();
5413 callee()->AddAudioVideoTracks();
Steve Antonede9ca52017-10-16 13:04:27 -07005414 caller()->CreateAndSetAndSignalOffer();
5415
5416 // Wait for all candidates to be gathered on both the caller and callee.
5417 ASSERT_EQ_WAIT(PeerConnectionInterface::kIceGatheringComplete,
5418 caller()->ice_gathering_state(), kDefaultTimeout);
5419 ASSERT_EQ_WAIT(PeerConnectionInterface::kIceGatheringComplete,
5420 callee()->ice_gathering_state(), kDefaultTimeout);
5421
5422 // The candidates will now be included in the session description, so
5423 // signaling them will start the ICE connection.
5424 caller()->CreateAndSetAndSignalOffer();
5425 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5426
5427 // Ensure that media flows in both directions.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005428 MediaExpectations media_expectations;
5429 media_expectations.ExpectBidirectionalAudioAndVideo();
5430 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Antonede9ca52017-10-16 13:04:27 -07005431}
5432
henrika5f6bf242017-11-01 11:06:56 +01005433// Test that SetAudioPlayout can be used to disable audio playout from the
5434// start, then later enable it. This may be useful, for example, if the caller
5435// needs to play a local ringtone until some event occurs, after which it
5436// switches to playing the received audio.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005437TEST_P(PeerConnectionIntegrationTest, DisableAndEnableAudioPlayout) {
henrika5f6bf242017-11-01 11:06:56 +01005438 ASSERT_TRUE(CreatePeerConnectionWrappers());
5439 ConnectFakeSignaling();
5440
5441 // Set up audio-only call where audio playout is disabled on caller's side.
5442 caller()->pc()->SetAudioPlayout(false);
Steve Anton15324772018-01-16 10:26:49 -08005443 caller()->AddAudioTrack();
5444 callee()->AddAudioTrack();
henrika5f6bf242017-11-01 11:06:56 +01005445 caller()->CreateAndSetAndSignalOffer();
5446 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5447
5448 // Pump messages for a second.
5449 WAIT(false, 1000);
5450 // Since audio playout is disabled, the caller shouldn't have received
5451 // anything (at the playout level, at least).
5452 EXPECT_EQ(0, caller()->audio_frames_received());
5453 // As a sanity check, make sure the callee (for which playout isn't disabled)
5454 // did still see frames on its audio level.
5455 ASSERT_GT(callee()->audio_frames_received(), 0);
5456
5457 // Enable playout again, and ensure audio starts flowing.
5458 caller()->pc()->SetAudioPlayout(true);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005459 MediaExpectations media_expectations;
5460 media_expectations.ExpectBidirectionalAudio();
5461 ASSERT_TRUE(ExpectNewFrames(media_expectations));
henrika5f6bf242017-11-01 11:06:56 +01005462}
5463
5464double GetAudioEnergyStat(PeerConnectionWrapper* pc) {
5465 auto report = pc->NewGetStats();
5466 auto track_stats_list =
5467 report->GetStatsOfType<webrtc::RTCMediaStreamTrackStats>();
5468 const webrtc::RTCMediaStreamTrackStats* remote_track_stats = nullptr;
5469 for (const auto* track_stats : track_stats_list) {
5470 if (track_stats->remote_source.is_defined() &&
5471 *track_stats->remote_source) {
5472 remote_track_stats = track_stats;
5473 break;
5474 }
5475 }
5476
5477 if (!remote_track_stats->total_audio_energy.is_defined()) {
5478 return 0.0;
5479 }
5480 return *remote_track_stats->total_audio_energy;
5481}
5482
5483// Test that if audio playout is disabled via the SetAudioPlayout() method, then
5484// incoming audio is still processed and statistics are generated.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005485TEST_P(PeerConnectionIntegrationTest,
henrika5f6bf242017-11-01 11:06:56 +01005486 DisableAudioPlayoutStillGeneratesAudioStats) {
5487 ASSERT_TRUE(CreatePeerConnectionWrappers());
5488 ConnectFakeSignaling();
5489
5490 // Set up audio-only call where playout is disabled but audio-processing is
5491 // still active.
Steve Anton15324772018-01-16 10:26:49 -08005492 caller()->AddAudioTrack();
5493 callee()->AddAudioTrack();
henrika5f6bf242017-11-01 11:06:56 +01005494 caller()->pc()->SetAudioPlayout(false);
5495
5496 caller()->CreateAndSetAndSignalOffer();
5497 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5498
5499 // Wait for the callee to receive audio stats.
5500 EXPECT_TRUE_WAIT(GetAudioEnergyStat(caller()) > 0, kMaxWaitForFramesMs);
5501}
5502
henrika4f167df2017-11-01 14:45:55 +01005503// Test that SetAudioRecording can be used to disable audio recording from the
5504// start, then later enable it. This may be useful, for example, if the caller
5505// wants to ensure that no audio resources are active before a certain state
5506// is reached.
Seth Hampson2f0d7022018-02-20 11:54:42 -08005507TEST_P(PeerConnectionIntegrationTest, DisableAndEnableAudioRecording) {
henrika4f167df2017-11-01 14:45:55 +01005508 ASSERT_TRUE(CreatePeerConnectionWrappers());
5509 ConnectFakeSignaling();
5510
5511 // Set up audio-only call where audio recording is disabled on caller's side.
5512 caller()->pc()->SetAudioRecording(false);
Steve Anton15324772018-01-16 10:26:49 -08005513 caller()->AddAudioTrack();
5514 callee()->AddAudioTrack();
henrika4f167df2017-11-01 14:45:55 +01005515 caller()->CreateAndSetAndSignalOffer();
5516 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5517
5518 // Pump messages for a second.
5519 WAIT(false, 1000);
5520 // Since caller has disabled audio recording, the callee shouldn't have
5521 // received anything.
5522 EXPECT_EQ(0, callee()->audio_frames_received());
5523 // As a sanity check, make sure the caller did still see frames on its
5524 // audio level since audio recording is enabled on the calle side.
5525 ASSERT_GT(caller()->audio_frames_received(), 0);
5526
5527 // Enable audio recording again, and ensure audio starts flowing.
5528 caller()->pc()->SetAudioRecording(true);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005529 MediaExpectations media_expectations;
5530 media_expectations.ExpectBidirectionalAudio();
5531 ASSERT_TRUE(ExpectNewFrames(media_expectations));
henrika4f167df2017-11-01 14:45:55 +01005532}
5533
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005534// Test that after closing PeerConnections, they stop sending any packets (ICE,
5535// DTLS, RTP...).
Seth Hampson2f0d7022018-02-20 11:54:42 -08005536TEST_P(PeerConnectionIntegrationTest, ClosingConnectionStopsPacketFlow) {
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005537 // Set up audio/video/data, wait for some frames to be received.
5538 ASSERT_TRUE(CreatePeerConnectionWrappers());
5539 ConnectFakeSignaling();
Steve Anton15324772018-01-16 10:26:49 -08005540 caller()->AddAudioVideoTracks();
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005541#ifdef HAVE_SCTP
5542 caller()->CreateDataChannel();
5543#endif
5544 caller()->CreateAndSetAndSignalOffer();
5545 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
Seth Hampson2f0d7022018-02-20 11:54:42 -08005546 MediaExpectations media_expectations;
5547 media_expectations.CalleeExpectsSomeAudioAndVideo();
5548 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005549 // Close PeerConnections.
Steve Antond91969e2019-05-30 12:27:03 -07005550 ClosePeerConnections();
Taylor Brandstetter389a97c2018-01-03 16:26:06 -08005551 // Pump messages for a second, and ensure no new packets end up sent.
5552 uint32_t sent_packets_a = virtual_socket_server()->sent_packets();
5553 WAIT(false, 1000);
5554 uint32_t sent_packets_b = virtual_socket_server()->sent_packets();
5555 EXPECT_EQ(sent_packets_a, sent_packets_b);
5556}
5557
Steve Anton7eca0932018-03-30 15:18:41 -07005558// Test that transport stats are generated by the RTCStatsCollector for a
5559// connection that only involves data channels. This is a regression test for
5560// crbug.com/826972.
5561#ifdef HAVE_SCTP
5562TEST_P(PeerConnectionIntegrationTest,
5563 TransportStatsReportedForDataChannelOnlyConnection) {
5564 ASSERT_TRUE(CreatePeerConnectionWrappers());
5565 ConnectFakeSignaling();
5566 caller()->CreateDataChannel();
5567
5568 caller()->CreateAndSetAndSignalOffer();
5569 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5570 ASSERT_TRUE_WAIT(callee()->data_channel(), kDefaultTimeout);
5571
5572 auto caller_report = caller()->NewGetStats();
5573 EXPECT_EQ(1u, caller_report->GetStatsOfType<RTCTransportStats>().size());
5574 auto callee_report = callee()->NewGetStats();
5575 EXPECT_EQ(1u, callee_report->GetStatsOfType<RTCTransportStats>().size());
5576}
5577#endif // HAVE_SCTP
5578
Qingsi Wang7685e862018-06-11 20:15:46 -07005579TEST_P(PeerConnectionIntegrationTest,
5580 IceEventsGeneratedAndLoggedInRtcEventLog) {
5581 ASSERT_TRUE(CreatePeerConnectionWrappersWithFakeRtcEventLog());
5582 ConnectFakeSignaling();
5583 PeerConnectionInterface::RTCOfferAnswerOptions options;
5584 options.offer_to_receive_audio = 1;
5585 caller()->SetOfferAnswerOptions(options);
5586 caller()->CreateAndSetAndSignalOffer();
5587 ASSERT_TRUE_WAIT(DtlsConnected(), kDefaultTimeout);
5588 ASSERT_NE(nullptr, caller()->event_log_factory());
5589 ASSERT_NE(nullptr, callee()->event_log_factory());
5590 webrtc::FakeRtcEventLog* caller_event_log =
5591 static_cast<webrtc::FakeRtcEventLog*>(
5592 caller()->event_log_factory()->last_log_created());
5593 webrtc::FakeRtcEventLog* callee_event_log =
5594 static_cast<webrtc::FakeRtcEventLog*>(
5595 callee()->event_log_factory()->last_log_created());
5596 ASSERT_NE(nullptr, caller_event_log);
5597 ASSERT_NE(nullptr, callee_event_log);
5598 int caller_ice_config_count = caller_event_log->GetEventCount(
5599 webrtc::RtcEvent::Type::IceCandidatePairConfig);
5600 int caller_ice_event_count = caller_event_log->GetEventCount(
5601 webrtc::RtcEvent::Type::IceCandidatePairEvent);
5602 int callee_ice_config_count = callee_event_log->GetEventCount(
5603 webrtc::RtcEvent::Type::IceCandidatePairConfig);
5604 int callee_ice_event_count = callee_event_log->GetEventCount(
5605 webrtc::RtcEvent::Type::IceCandidatePairEvent);
5606 EXPECT_LT(0, caller_ice_config_count);
5607 EXPECT_LT(0, caller_ice_event_count);
5608 EXPECT_LT(0, callee_ice_config_count);
5609 EXPECT_LT(0, callee_ice_event_count);
5610}
5611
Qingsi Wangc129c352019-04-18 10:41:58 -07005612TEST_P(PeerConnectionIntegrationTest, RegatherAfterChangingIceTransportType) {
Qingsi Wangc129c352019-04-18 10:41:58 -07005613 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5614 3478};
5615 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5616
5617 CreateTurnServer(turn_server_internal_address, turn_server_external_address);
5618
5619 webrtc::PeerConnectionInterface::IceServer ice_server;
5620 ice_server.urls.push_back("turn:88.88.88.0:3478");
5621 ice_server.username = "test";
5622 ice_server.password = "test";
5623
5624 PeerConnectionInterface::RTCConfiguration caller_config;
5625 caller_config.servers.push_back(ice_server);
5626 caller_config.type = webrtc::PeerConnectionInterface::kRelay;
5627 caller_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
Qingsi Wang1fe119f2019-05-31 16:55:33 -07005628 caller_config.surface_ice_candidates_on_ice_transport_type_changed = true;
Qingsi Wangc129c352019-04-18 10:41:58 -07005629
5630 PeerConnectionInterface::RTCConfiguration callee_config;
5631 callee_config.servers.push_back(ice_server);
5632 callee_config.type = webrtc::PeerConnectionInterface::kRelay;
5633 callee_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
Qingsi Wang1fe119f2019-05-31 16:55:33 -07005634 callee_config.surface_ice_candidates_on_ice_transport_type_changed = true;
Qingsi Wangc129c352019-04-18 10:41:58 -07005635
5636 ASSERT_TRUE(
5637 CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
5638
5639 // Do normal offer/answer and wait for ICE to complete.
5640 ConnectFakeSignaling();
5641 caller()->AddAudioVideoTracks();
5642 callee()->AddAudioVideoTracks();
5643 caller()->CreateAndSetAndSignalOffer();
5644 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5645 // Since we are doing continual gathering, the ICE transport does not reach
5646 // kIceGatheringComplete (see
5647 // P2PTransportChannel::OnCandidatesAllocationDone), and consequently not
5648 // kIceConnectionComplete.
5649 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
5650 caller()->ice_connection_state(), kDefaultTimeout);
5651 EXPECT_EQ_WAIT(webrtc::PeerConnectionInterface::kIceConnectionConnected,
5652 callee()->ice_connection_state(), kDefaultTimeout);
5653 // Note that we cannot use the metric
5654 // |WebRTC.PeerConnection.CandidatePairType_UDP| in this test since this
5655 // metric is only populated when we reach kIceConnectionComplete in the
5656 // current implementation.
5657 EXPECT_EQ(cricket::RELAY_PORT_TYPE,
5658 caller()->last_candidate_gathered().type());
5659 EXPECT_EQ(cricket::RELAY_PORT_TYPE,
5660 callee()->last_candidate_gathered().type());
5661
5662 // Loosen the caller's candidate filter.
5663 caller_config = caller()->pc()->GetConfiguration();
5664 caller_config.type = webrtc::PeerConnectionInterface::kAll;
5665 caller()->pc()->SetConfiguration(caller_config);
5666 // We should have gathered a new host candidate.
5667 EXPECT_EQ_WAIT(cricket::LOCAL_PORT_TYPE,
5668 caller()->last_candidate_gathered().type(), kDefaultTimeout);
5669
5670 // Loosen the callee's candidate filter.
5671 callee_config = callee()->pc()->GetConfiguration();
5672 callee_config.type = webrtc::PeerConnectionInterface::kAll;
5673 callee()->pc()->SetConfiguration(callee_config);
5674 EXPECT_EQ_WAIT(cricket::LOCAL_PORT_TYPE,
5675 callee()->last_candidate_gathered().type(), kDefaultTimeout);
5676}
5677
Eldar Relloda13ea22019-06-01 12:23:43 +03005678TEST_P(PeerConnectionIntegrationTest, OnIceCandidateError) {
Eldar Relloda13ea22019-06-01 12:23:43 +03005679 static const rtc::SocketAddress turn_server_internal_address{"88.88.88.0",
5680 3478};
5681 static const rtc::SocketAddress turn_server_external_address{"88.88.88.1", 0};
5682
5683 CreateTurnServer(turn_server_internal_address, turn_server_external_address);
5684
5685 webrtc::PeerConnectionInterface::IceServer ice_server;
5686 ice_server.urls.push_back("turn:88.88.88.0:3478");
5687 ice_server.username = "test";
5688 ice_server.password = "123";
5689
5690 PeerConnectionInterface::RTCConfiguration caller_config;
5691 caller_config.servers.push_back(ice_server);
5692 caller_config.type = webrtc::PeerConnectionInterface::kRelay;
5693 caller_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
5694
5695 PeerConnectionInterface::RTCConfiguration callee_config;
5696 callee_config.servers.push_back(ice_server);
5697 callee_config.type = webrtc::PeerConnectionInterface::kRelay;
5698 callee_config.continual_gathering_policy = PeerConnection::GATHER_CONTINUALLY;
5699
5700 ASSERT_TRUE(
5701 CreatePeerConnectionWrappersWithConfig(caller_config, callee_config));
5702
5703 // Do normal offer/answer and wait for ICE to complete.
5704 ConnectFakeSignaling();
5705 caller()->AddAudioVideoTracks();
5706 callee()->AddAudioVideoTracks();
5707 caller()->CreateAndSetAndSignalOffer();
5708 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5709 EXPECT_EQ_WAIT(401, caller()->error_event().error_code, kDefaultTimeout);
5710 EXPECT_EQ("Unauthorized", caller()->error_event().error_text);
5711 EXPECT_EQ("turn:88.88.88.0:3478?transport=udp", caller()->error_event().url);
Eldar Rello0095d372019-12-02 22:22:07 +02005712 EXPECT_NE(caller()->error_event().address, "");
Eldar Relloda13ea22019-06-01 12:23:43 +03005713}
5714
Eldar Rello5ab79e62019-10-09 18:29:44 +03005715TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5716 AudioKeepsFlowingAfterImplicitRollback) {
5717 PeerConnectionInterface::RTCConfiguration config;
5718 config.sdp_semantics = SdpSemantics::kUnifiedPlan;
5719 config.enable_implicit_rollback = true;
5720 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
5721 ConnectFakeSignaling();
5722 caller()->AddAudioTrack();
5723 callee()->AddAudioTrack();
5724 caller()->CreateAndSetAndSignalOffer();
5725 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5726 MediaExpectations media_expectations;
5727 media_expectations.ExpectBidirectionalAudio();
5728 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5729 SetSignalIceCandidates(false); // Workaround candidate outrace sdp.
5730 caller()->AddVideoTrack();
5731 callee()->AddVideoTrack();
5732 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
5733 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5734 callee()->pc()->SetLocalDescription(observer,
5735 callee()->CreateOfferAndWait().release());
5736 EXPECT_TRUE_WAIT(observer->called(), kDefaultTimeout);
5737 caller()->CreateAndSetAndSignalOffer(); // Implicit rollback.
5738 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5739 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5740}
5741
5742TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5743 ImplicitRollbackVisitsStableState) {
5744 RTCConfiguration config;
5745 config.sdp_semantics = SdpSemantics::kUnifiedPlan;
5746 config.enable_implicit_rollback = true;
5747
5748 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
5749
5750 rtc::scoped_refptr<MockSetSessionDescriptionObserver> sld_observer(
5751 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5752 callee()->pc()->SetLocalDescription(sld_observer,
5753 callee()->CreateOfferAndWait().release());
5754 EXPECT_TRUE_WAIT(sld_observer->called(), kDefaultTimeout);
5755 EXPECT_EQ(sld_observer->error(), "");
5756
5757 rtc::scoped_refptr<MockSetSessionDescriptionObserver> srd_observer(
5758 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
5759 callee()->pc()->SetRemoteDescription(
5760 srd_observer, caller()->CreateOfferAndWait().release());
5761 EXPECT_TRUE_WAIT(srd_observer->called(), kDefaultTimeout);
5762 EXPECT_EQ(srd_observer->error(), "");
5763
5764 EXPECT_THAT(callee()->peer_connection_signaling_state_history(),
5765 ElementsAre(PeerConnectionInterface::kHaveLocalOffer,
5766 PeerConnectionInterface::kStable,
5767 PeerConnectionInterface::kHaveRemoteOffer));
5768}
5769
Mirko Bonadeic84f6612019-01-31 12:20:57 +01005770INSTANTIATE_TEST_SUITE_P(PeerConnectionIntegrationTest,
5771 PeerConnectionIntegrationTest,
5772 Values(SdpSemantics::kPlanB,
5773 SdpSemantics::kUnifiedPlan));
Steve Antond3679212018-01-17 17:41:02 -08005774
Steve Anton74255ff2018-01-24 18:32:57 -08005775// Tests that verify interoperability between Plan B and Unified Plan
5776// PeerConnections.
5777class PeerConnectionIntegrationInteropTest
Seth Hampson2f0d7022018-02-20 11:54:42 -08005778 : public PeerConnectionIntegrationBaseTest,
Steve Anton74255ff2018-01-24 18:32:57 -08005779 public ::testing::WithParamInterface<
5780 std::tuple<SdpSemantics, SdpSemantics>> {
5781 protected:
Seth Hampson2f0d7022018-02-20 11:54:42 -08005782 // Setting the SdpSemantics for the base test to kDefault does not matter
5783 // because we specify not to use the test semantics when creating
5784 // PeerConnectionWrappers.
Steve Anton74255ff2018-01-24 18:32:57 -08005785 PeerConnectionIntegrationInteropTest()
Steve Anton3acffc32018-04-12 17:21:03 -07005786 : PeerConnectionIntegrationBaseTest(SdpSemantics::kPlanB),
Seth Hampson2f0d7022018-02-20 11:54:42 -08005787 caller_semantics_(std::get<0>(GetParam())),
Steve Anton74255ff2018-01-24 18:32:57 -08005788 callee_semantics_(std::get<1>(GetParam())) {}
5789
5790 bool CreatePeerConnectionWrappersWithSemantics() {
Steve Anton3acffc32018-04-12 17:21:03 -07005791 return CreatePeerConnectionWrappersWithSdpSemantics(caller_semantics_,
5792 callee_semantics_);
Steve Anton74255ff2018-01-24 18:32:57 -08005793 }
5794
5795 const SdpSemantics caller_semantics_;
5796 const SdpSemantics callee_semantics_;
5797};
5798
5799TEST_P(PeerConnectionIntegrationInteropTest, NoMediaLocalToNoMediaRemote) {
5800 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5801 ConnectFakeSignaling();
5802
5803 caller()->CreateAndSetAndSignalOffer();
5804 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5805}
5806
5807TEST_P(PeerConnectionIntegrationInteropTest, OneAudioLocalToNoMediaRemote) {
5808 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5809 ConnectFakeSignaling();
5810 auto audio_sender = caller()->AddAudioTrack();
5811
5812 caller()->CreateAndSetAndSignalOffer();
5813 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5814
5815 // Verify that one audio receiver has been created on the remote and that it
5816 // has the same track ID as the sending track.
5817 auto receivers = callee()->pc()->GetReceivers();
5818 ASSERT_EQ(1u, receivers.size());
5819 EXPECT_EQ(cricket::MEDIA_TYPE_AUDIO, receivers[0]->media_type());
5820 EXPECT_EQ(receivers[0]->track()->id(), audio_sender->track()->id());
5821
Seth Hampson2f0d7022018-02-20 11:54:42 -08005822 MediaExpectations media_expectations;
5823 media_expectations.CalleeExpectsSomeAudio();
5824 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005825}
5826
5827TEST_P(PeerConnectionIntegrationInteropTest, OneAudioOneVideoToNoMediaRemote) {
5828 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5829 ConnectFakeSignaling();
5830 auto video_sender = caller()->AddVideoTrack();
5831 auto audio_sender = caller()->AddAudioTrack();
5832
5833 caller()->CreateAndSetAndSignalOffer();
5834 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5835
5836 // Verify that one audio and one video receiver have been created on the
5837 // remote and that they have the same track IDs as the sending tracks.
5838 auto audio_receivers =
5839 callee()->GetReceiversOfType(cricket::MEDIA_TYPE_AUDIO);
5840 ASSERT_EQ(1u, audio_receivers.size());
5841 EXPECT_EQ(audio_receivers[0]->track()->id(), audio_sender->track()->id());
5842 auto video_receivers =
5843 callee()->GetReceiversOfType(cricket::MEDIA_TYPE_VIDEO);
5844 ASSERT_EQ(1u, video_receivers.size());
5845 EXPECT_EQ(video_receivers[0]->track()->id(), video_sender->track()->id());
5846
Seth Hampson2f0d7022018-02-20 11:54:42 -08005847 MediaExpectations media_expectations;
5848 media_expectations.CalleeExpectsSomeAudioAndVideo();
5849 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005850}
5851
5852TEST_P(PeerConnectionIntegrationInteropTest,
5853 OneAudioOneVideoLocalToOneAudioOneVideoRemote) {
5854 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5855 ConnectFakeSignaling();
5856 caller()->AddAudioVideoTracks();
5857 callee()->AddAudioVideoTracks();
5858
5859 caller()->CreateAndSetAndSignalOffer();
5860 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5861
Seth Hampson2f0d7022018-02-20 11:54:42 -08005862 MediaExpectations media_expectations;
5863 media_expectations.ExpectBidirectionalAudioAndVideo();
5864 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005865}
5866
5867TEST_P(PeerConnectionIntegrationInteropTest,
5868 ReverseRolesOneAudioLocalToOneVideoRemote) {
5869 ASSERT_TRUE(CreatePeerConnectionWrappersWithSemantics());
5870 ConnectFakeSignaling();
5871 caller()->AddAudioTrack();
5872 callee()->AddVideoTrack();
5873
5874 caller()->CreateAndSetAndSignalOffer();
5875 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5876
5877 // Verify that only the audio track has been negotiated.
5878 EXPECT_EQ(0u, caller()->GetReceiversOfType(cricket::MEDIA_TYPE_VIDEO).size());
5879 // Might also check that the callee's NegotiationNeeded flag is set.
5880
5881 // Reverse roles.
5882 callee()->CreateAndSetAndSignalOffer();
5883 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5884
Seth Hampson2f0d7022018-02-20 11:54:42 -08005885 MediaExpectations media_expectations;
5886 media_expectations.CallerExpectsSomeVideo();
5887 media_expectations.CalleeExpectsSomeAudio();
5888 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005889}
5890
Mirko Bonadeic84f6612019-01-31 12:20:57 +01005891INSTANTIATE_TEST_SUITE_P(
Steve Antonba42e992018-04-09 14:10:01 -07005892 PeerConnectionIntegrationTest,
5893 PeerConnectionIntegrationInteropTest,
5894 Values(std::make_tuple(SdpSemantics::kPlanB, SdpSemantics::kUnifiedPlan),
5895 std::make_tuple(SdpSemantics::kUnifiedPlan, SdpSemantics::kPlanB)));
5896
5897// Test that if the Unified Plan side offers two video tracks then the Plan B
5898// side will only see the first one and ignore the second.
5899TEST_F(PeerConnectionIntegrationTestPlanB, TwoVideoUnifiedPlanToNoMediaPlanB) {
Steve Anton3acffc32018-04-12 17:21:03 -07005900 ASSERT_TRUE(CreatePeerConnectionWrappersWithSdpSemantics(
5901 SdpSemantics::kUnifiedPlan, SdpSemantics::kPlanB));
Steve Anton74255ff2018-01-24 18:32:57 -08005902 ConnectFakeSignaling();
5903 auto first_sender = caller()->AddVideoTrack();
5904 caller()->AddVideoTrack();
5905
5906 caller()->CreateAndSetAndSignalOffer();
5907 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5908
5909 // Verify that there is only one receiver and it corresponds to the first
5910 // added track.
5911 auto receivers = callee()->pc()->GetReceivers();
5912 ASSERT_EQ(1u, receivers.size());
5913 EXPECT_TRUE(receivers[0]->track()->enabled());
5914 EXPECT_EQ(first_sender->track()->id(), receivers[0]->track()->id());
5915
Seth Hampson2f0d7022018-02-20 11:54:42 -08005916 MediaExpectations media_expectations;
5917 media_expectations.CalleeExpectsSomeVideo();
5918 ASSERT_TRUE(ExpectNewFrames(media_expectations));
Steve Anton74255ff2018-01-24 18:32:57 -08005919}
5920
Steve Anton2bed3972019-01-04 17:04:30 -08005921// Test that if the initial offer tagged BUNDLE section is rejected due to its
5922// associated RtpTransceiver being stopped and another transceiver is added,
5923// then renegotiation causes the callee to receive the new video track without
5924// error.
5925// This is a regression test for bugs.webrtc.org/9954
5926TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5927 ReOfferWithStoppedBundleTaggedTransceiver) {
5928 RTCConfiguration config;
5929 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
5930 ASSERT_TRUE(CreatePeerConnectionWrappersWithConfig(config, config));
5931 ConnectFakeSignaling();
5932 auto audio_transceiver_or_error =
5933 caller()->pc()->AddTransceiver(caller()->CreateLocalAudioTrack());
5934 ASSERT_TRUE(audio_transceiver_or_error.ok());
5935 auto audio_transceiver = audio_transceiver_or_error.MoveValue();
5936
5937 caller()->CreateAndSetAndSignalOffer();
5938 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5939 {
5940 MediaExpectations media_expectations;
5941 media_expectations.CalleeExpectsSomeAudio();
5942 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5943 }
5944
5945 audio_transceiver->Stop();
5946 caller()->pc()->AddTransceiver(caller()->CreateLocalVideoTrack());
5947
5948 caller()->CreateAndSetAndSignalOffer();
5949 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5950 {
5951 MediaExpectations media_expectations;
5952 media_expectations.CalleeExpectsSomeVideo();
5953 ASSERT_TRUE(ExpectNewFrames(media_expectations));
5954 }
5955}
5956
Harald Alvestrandd61f2a72019-05-08 20:20:59 +02005957#ifdef HAVE_SCTP
5958
5959TEST_F(PeerConnectionIntegrationTestUnifiedPlan,
5960 EndToEndCallWithBundledSctpDataChannel) {
5961 ASSERT_TRUE(CreatePeerConnectionWrappers());
5962 ConnectFakeSignaling();
5963 caller()->CreateDataChannel();
5964 caller()->AddAudioVideoTracks();
5965 callee()->AddAudioVideoTracks();
5966 caller()->SetGeneratedSdpMunger(MakeSpecCompliantSctpOffer);
5967 caller()->CreateAndSetAndSignalOffer();
5968 ASSERT_TRUE_WAIT(SignalingStateStable(), kDefaultTimeout);
5969 // Ensure that media and data are multiplexed on the same DTLS transport.
5970 // This only works on Unified Plan, because transports are not exposed in plan
5971 // B.
5972 auto sctp_info = caller()->pc()->GetSctpTransport()->Information();
5973 EXPECT_EQ(sctp_info.dtls_transport(),
5974 caller()->pc()->GetSenders()[0]->dtls_transport());
5975}
5976
5977#endif // HAVE_SCTP
5978
deadbeef1dcb1642017-03-29 21:08:16 -07005979} // namespace
Mirko Bonadeiab64e8a2018-12-12 12:10:18 +01005980} // namespace webrtc
deadbeef1dcb1642017-03-29 21:08:16 -07005981
5982#endif // if !defined(THREAD_SANITIZER)