blob: 5a01430b9536cb45e9fb3fb6f879631034ce27ee [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:361/*
kjellanderb24317b2016-02-10 15:54:432 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:363 *
kjellanderb24317b2016-02-10 15:54:434 * 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.
henrike@webrtc.org28e20752013-07-10 00:45:369 */
10
Jonas Olssona4d87372019-07-05 17:08:3311#include "api/peer_connection_interface.h"
12
Yves Gerey3e707812018-11-28 15:47:4913#include <limits.h>
14#include <stdint.h>
15#include <string.h>
Jonas Olssona4d87372019-07-05 17:08:3316
kwibergd1fe2812016-04-27 13:47:2917#include <memory>
henrike@webrtc.org28e20752013-07-10 00:45:3618#include <string>
kwiberg0eb15ed2015-12-17 11:04:1519#include <utility>
Yves Gerey3e707812018-11-28 15:47:4920#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:3621
Steve Anton1c9c9fc2019-02-14 23:13:0922#include "absl/strings/str_replace.h"
Yves Gerey3e707812018-11-28 15:47:4923#include "absl/types/optional.h"
24#include "api/audio/audio_mixer.h"
25#include "api/audio_codecs/audio_decoder_factory.h"
26#include "api/audio_codecs/audio_encoder_factory.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3127#include "api/audio_codecs/builtin_audio_decoder_factory.h"
28#include "api/audio_codecs/builtin_audio_encoder_factory.h"
Steve Anton10542f22019-01-11 17:11:0029#include "api/call/call_factory_interface.h"
Mirko Bonadei2ff3f492018-11-22 08:00:1330#include "api/create_peerconnection_factory.h"
Steve Anton10542f22019-01-11 17:11:0031#include "api/data_channel_interface.h"
Yves Gerey3e707812018-11-28 15:47:4932#include "api/jsep.h"
Steve Anton10542f22019-01-11 17:11:0033#include "api/jsep_session_description.h"
34#include "api/media_stream_interface.h"
35#include "api/media_types.h"
Steve Anton10542f22019-01-11 17:11:0036#include "api/rtc_error.h"
Danil Chapovalov9da25bd2019-06-20 08:19:4237#include "api/rtc_event_log/rtc_event_log.h"
38#include "api/rtc_event_log/rtc_event_log_factory.h"
Steve Anton10542f22019-01-11 17:11:0039#include "api/rtc_event_log_output.h"
Niels Möllerd8b9ed72019-05-08 11:53:5140#include "api/rtc_event_log_output_file.h"
Steve Anton10542f22019-01-11 17:11:0041#include "api/rtp_receiver_interface.h"
42#include "api/rtp_sender_interface.h"
43#include "api/rtp_transceiver_interface.h"
Mirko Bonadeid9708072019-01-25 19:26:4844#include "api/scoped_refptr.h"
Danil Chapovalov9da25bd2019-06-20 08:19:4245#include "api/task_queue/default_task_queue_factory.h"
Anders Carlsson67537952018-05-03 09:28:2946#include "api/video_codecs/builtin_video_decoder_factory.h"
47#include "api/video_codecs/builtin_video_encoder_factory.h"
Yves Gerey3e707812018-11-28 15:47:4948#include "api/video_codecs/video_decoder_factory.h"
49#include "api/video_codecs/video_encoder_factory.h"
Yves Gerey3e707812018-11-28 15:47:4950#include "media/base/codec.h"
Steve Anton10542f22019-01-11 17:11:0051#include "media/base/media_config.h"
52#include "media/base/media_engine.h"
53#include "media/base/stream_params.h"
Steve Anton10542f22019-01-11 17:11:0054#include "media/engine/webrtc_media_engine.h"
Danil Chapovalov9da25bd2019-06-20 08:19:4255#include "media/engine/webrtc_media_engine_defaults.h"
Steve Anton10542f22019-01-11 17:11:0056#include "media/sctp/sctp_transport_internal.h"
Yves Gerey3e707812018-11-28 15:47:4957#include "modules/audio_device/include/audio_device.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3158#include "modules/audio_processing/include/audio_processing.h"
Steve Anton10542f22019-01-11 17:11:0059#include "p2p/base/fake_port_allocator.h"
60#include "p2p/base/p2p_constants.h"
Yves Gerey3e707812018-11-28 15:47:4961#include "p2p/base/port.h"
Steve Anton10542f22019-01-11 17:11:0062#include "p2p/base/port_allocator.h"
63#include "p2p/base/transport_description.h"
64#include "p2p/base/transport_info.h"
65#include "pc/audio_track.h"
66#include "pc/media_session.h"
67#include "pc/media_stream.h"
68#include "pc/peer_connection.h"
69#include "pc/peer_connection_factory.h"
70#include "pc/rtc_stats_collector.h"
71#include "pc/rtp_sender.h"
72#include "pc/session_description.h"
73#include "pc/stream_collection.h"
74#include "pc/test/fake_audio_capture_module.h"
75#include "pc/test/fake_rtc_certificate_generator.h"
76#include "pc/test/fake_video_track_source.h"
77#include "pc/test/mock_peer_connection_observers.h"
78#include "pc/test/test_sdp_strings.h"
79#include "pc/video_track.h"
Yves Gerey3e707812018-11-28 15:47:4980#include "rtc_base/checks.h"
Steve Anton10542f22019-01-11 17:11:0081#include "rtc_base/copy_on_write_buffer.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3182#include "rtc_base/gunit.h"
Steve Anton10542f22019-01-11 17:11:0083#include "rtc_base/ref_counted_object.h"
84#include "rtc_base/rtc_certificate_generator.h"
Steve Anton10542f22019-01-11 17:11:0085#include "rtc_base/socket_address.h"
Yves Gerey3e707812018-11-28 15:47:4986#include "rtc_base/thread.h"
Steve Anton10542f22019-01-11 17:11:0087#include "rtc_base/time_utils.h"
88#include "rtc_base/virtual_socket_server.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3189#include "test/gmock.h"
Yves Gerey3e707812018-11-28 15:47:4990#include "test/gtest.h"
Steve Anton10542f22019-01-11 17:11:0091#include "test/testsupport/file_utils.h"
kwibergac9f8762016-10-01 05:29:4392
93#ifdef WEBRTC_ANDROID
Steve Anton10542f22019-01-11 17:11:0094#include "pc/test/android_test_initializer.h"
kwibergac9f8762016-10-01 05:29:4395#endif
henrike@webrtc.org28e20752013-07-10 00:45:3696
Mirko Bonadeiab64e8a2018-12-12 11:10:1897namespace webrtc {
98namespace {
99
Seth Hampson845e8782018-03-02 19:34:10100static const char kStreamId1[] = "local_stream_1";
101static const char kStreamId2[] = "local_stream_2";
102static const char kStreamId3[] = "local_stream_3";
henrike@webrtc.org28e20752013-07-10 00:45:36103static const int kDefaultStunPort = 3478;
104static const char kStunAddressOnly[] = "stun:address";
105static const char kStunInvalidPort[] = "stun:address:-1";
106static const char kStunAddressPortAndMore1[] = "stun:address:port:more";
107static const char kStunAddressPortAndMore2[] = "stun:address:port more";
Niels Möllerdb4def92019-03-18 15:53:59108static const char kTurnIceServerUri[] = "turn:turn.example.org";
henrike@webrtc.org28e20752013-07-10 00:45:36109static const char kTurnUsername[] = "user";
110static const char kTurnPassword[] = "password";
111static const char kTurnHostname[] = "turn.example.org";
Peter Boström0c4e06b2015-10-07 10:23:21112static const uint32_t kTimeout = 10000U;
henrike@webrtc.org28e20752013-07-10 00:45:36113
deadbeefab9b2d12015-10-14 18:33:11114static const char kStreams[][8] = {"stream1", "stream2"};
115static const char kAudioTracks[][32] = {"audiotrack0", "audiotrack1"};
116static const char kVideoTracks[][32] = {"videotrack0", "videotrack1"};
117
deadbeef5e97fb52015-10-15 19:49:08118static const char kRecvonly[] = "recvonly";
119static const char kSendrecv[] = "sendrecv";
120
deadbeefab9b2d12015-10-14 18:33:11121// Reference SDP with a MediaStream with label "stream1" and audio track with
122// id "audio_1" and a video track with id "video_1;
Steve Anton36da6ff2018-02-17 00:04:20123static const char kSdpStringWithStream1PlanB[] =
deadbeefab9b2d12015-10-14 18:33:11124 "v=0\r\n"
125 "o=- 0 0 IN IP4 127.0.0.1\r\n"
126 "s=-\r\n"
127 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33128 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefab9b2d12015-10-14 18:33:11129 "a=ice-ufrag:e5785931\r\n"
130 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
131 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
132 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11133 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08134 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12135 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11136 "a=rtpmap:103 ISAC/16000\r\n"
137 "a=ssrc:1 cname:stream1\r\n"
138 "a=ssrc:1 mslabel:stream1\r\n"
139 "a=ssrc:1 label:audiotrack0\r\n"
140 "m=video 1 RTP/AVPF 120\r\n"
deadbeefd1a38b52016-12-10 21:15:33141 "a=ice-ufrag:e5785931\r\n"
142 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
143 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
144 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11145 "a=mid:video\r\n"
deadbeef5e97fb52015-10-15 19:49:08146 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12147 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11148 "a=rtpmap:120 VP8/90000\r\n"
149 "a=ssrc:2 cname:stream1\r\n"
150 "a=ssrc:2 mslabel:stream1\r\n"
151 "a=ssrc:2 label:videotrack0\r\n";
Steve Anton36da6ff2018-02-17 00:04:20152// Same string as above but with the MID changed to the Unified Plan default.
153// This is needed so that this SDP can be used as an answer for a Unified Plan
154// offer.
155static const char kSdpStringWithStream1UnifiedPlan[] =
156 "v=0\r\n"
157 "o=- 0 0 IN IP4 127.0.0.1\r\n"
158 "s=-\r\n"
159 "t=0 0\r\n"
160 "m=audio 1 RTP/AVPF 103\r\n"
161 "a=ice-ufrag:e5785931\r\n"
162 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
163 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
164 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
165 "a=mid:0\r\n"
166 "a=sendrecv\r\n"
167 "a=rtcp-mux\r\n"
168 "a=rtpmap:103 ISAC/16000\r\n"
169 "a=ssrc:1 cname:stream1\r\n"
170 "a=ssrc:1 mslabel:stream1\r\n"
171 "a=ssrc:1 label:audiotrack0\r\n"
172 "m=video 1 RTP/AVPF 120\r\n"
173 "a=ice-ufrag:e5785931\r\n"
174 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
175 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
176 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
177 "a=mid:1\r\n"
178 "a=sendrecv\r\n"
179 "a=rtcp-mux\r\n"
180 "a=rtpmap:120 VP8/90000\r\n"
181 "a=ssrc:2 cname:stream1\r\n"
182 "a=ssrc:2 mslabel:stream1\r\n"
183 "a=ssrc:2 label:videotrack0\r\n";
deadbeefab9b2d12015-10-14 18:33:11184
zhihuang81c3a032016-11-17 20:06:24185// Reference SDP with a MediaStream with label "stream1" and audio track with
186// id "audio_1";
187static const char kSdpStringWithStream1AudioTrackOnly[] =
188 "v=0\r\n"
189 "o=- 0 0 IN IP4 127.0.0.1\r\n"
190 "s=-\r\n"
191 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33192 "m=audio 1 RTP/AVPF 103\r\n"
zhihuang81c3a032016-11-17 20:06:24193 "a=ice-ufrag:e5785931\r\n"
194 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
195 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
196 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
zhihuang81c3a032016-11-17 20:06:24197 "a=mid:audio\r\n"
198 "a=sendrecv\r\n"
199 "a=rtpmap:103 ISAC/16000\r\n"
200 "a=ssrc:1 cname:stream1\r\n"
201 "a=ssrc:1 mslabel:stream1\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12202 "a=ssrc:1 label:audiotrack0\r\n"
203 "a=rtcp-mux\r\n";
zhihuang81c3a032016-11-17 20:06:24204
deadbeefab9b2d12015-10-14 18:33:11205// Reference SDP with two MediaStreams with label "stream1" and "stream2. Each
206// MediaStreams have one audio track and one video track.
207// This uses MSID.
Steve Anton36da6ff2018-02-17 00:04:20208static const char kSdpStringWithStream1And2PlanB[] =
deadbeefab9b2d12015-10-14 18:33:11209 "v=0\r\n"
210 "o=- 0 0 IN IP4 127.0.0.1\r\n"
211 "s=-\r\n"
212 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33213 "a=msid-semantic: WMS stream1 stream2\r\n"
214 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefab9b2d12015-10-14 18:33:11215 "a=ice-ufrag:e5785931\r\n"
216 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
217 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
218 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11219 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08220 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12221 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11222 "a=rtpmap:103 ISAC/16000\r\n"
223 "a=ssrc:1 cname:stream1\r\n"
224 "a=ssrc:1 msid:stream1 audiotrack0\r\n"
225 "a=ssrc:3 cname:stream2\r\n"
226 "a=ssrc:3 msid:stream2 audiotrack1\r\n"
227 "m=video 1 RTP/AVPF 120\r\n"
deadbeefd1a38b52016-12-10 21:15:33228 "a=ice-ufrag:e5785931\r\n"
229 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
230 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
231 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11232 "a=mid:video\r\n"
deadbeef5e97fb52015-10-15 19:49:08233 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12234 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11235 "a=rtpmap:120 VP8/0\r\n"
236 "a=ssrc:2 cname:stream1\r\n"
237 "a=ssrc:2 msid:stream1 videotrack0\r\n"
238 "a=ssrc:4 cname:stream2\r\n"
239 "a=ssrc:4 msid:stream2 videotrack1\r\n";
Steve Anton36da6ff2018-02-17 00:04:20240static const char kSdpStringWithStream1And2UnifiedPlan[] =
241 "v=0\r\n"
242 "o=- 0 0 IN IP4 127.0.0.1\r\n"
243 "s=-\r\n"
244 "t=0 0\r\n"
245 "a=msid-semantic: WMS stream1 stream2\r\n"
246 "m=audio 1 RTP/AVPF 103\r\n"
247 "a=ice-ufrag:e5785931\r\n"
248 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
249 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
250 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
251 "a=mid:0\r\n"
252 "a=sendrecv\r\n"
253 "a=rtcp-mux\r\n"
254 "a=rtpmap:103 ISAC/16000\r\n"
255 "a=ssrc:1 cname:stream1\r\n"
256 "a=ssrc:1 msid:stream1 audiotrack0\r\n"
257 "m=video 1 RTP/AVPF 120\r\n"
258 "a=ice-ufrag:e5785931\r\n"
259 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
260 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
261 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
262 "a=mid:1\r\n"
263 "a=sendrecv\r\n"
264 "a=rtcp-mux\r\n"
265 "a=rtpmap:120 VP8/0\r\n"
266 "a=ssrc:2 cname:stream1\r\n"
267 "a=ssrc:2 msid:stream1 videotrack0\r\n"
268 "m=audio 1 RTP/AVPF 103\r\n"
269 "a=ice-ufrag:e5785931\r\n"
270 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
271 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
272 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
273 "a=mid:2\r\n"
274 "a=sendrecv\r\n"
275 "a=rtcp-mux\r\n"
276 "a=rtpmap:103 ISAC/16000\r\n"
277 "a=ssrc:3 cname:stream2\r\n"
278 "a=ssrc:3 msid:stream2 audiotrack1\r\n"
279 "m=video 1 RTP/AVPF 120\r\n"
280 "a=ice-ufrag:e5785931\r\n"
281 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
282 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
283 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
284 "a=mid:3\r\n"
285 "a=sendrecv\r\n"
286 "a=rtcp-mux\r\n"
287 "a=rtpmap:120 VP8/0\r\n"
288 "a=ssrc:4 cname:stream2\r\n"
289 "a=ssrc:4 msid:stream2 videotrack1\r\n";
deadbeefab9b2d12015-10-14 18:33:11290
291// Reference SDP without MediaStreams. Msid is not supported.
292static const char kSdpStringWithoutStreams[] =
293 "v=0\r\n"
294 "o=- 0 0 IN IP4 127.0.0.1\r\n"
295 "s=-\r\n"
296 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33297 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefab9b2d12015-10-14 18:33:11298 "a=ice-ufrag:e5785931\r\n"
299 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
300 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
301 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11302 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08303 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12304 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11305 "a=rtpmap:103 ISAC/16000\r\n"
306 "m=video 1 RTP/AVPF 120\r\n"
deadbeefd1a38b52016-12-10 21:15:33307 "a=ice-ufrag:e5785931\r\n"
308 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
309 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
310 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11311 "a=mid:video\r\n"
deadbeef5e97fb52015-10-15 19:49:08312 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12313 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11314 "a=rtpmap:120 VP8/90000\r\n";
315
316// Reference SDP without MediaStreams. Msid is supported.
317static const char kSdpStringWithMsidWithoutStreams[] =
318 "v=0\r\n"
319 "o=- 0 0 IN IP4 127.0.0.1\r\n"
320 "s=-\r\n"
321 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33322 "a=msid-semantic: WMS\r\n"
323 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefab9b2d12015-10-14 18:33:11324 "a=ice-ufrag:e5785931\r\n"
325 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
326 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
327 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11328 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08329 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12330 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11331 "a=rtpmap:103 ISAC/16000\r\n"
332 "m=video 1 RTP/AVPF 120\r\n"
deadbeefd1a38b52016-12-10 21:15:33333 "a=ice-ufrag:e5785931\r\n"
334 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
335 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
336 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11337 "a=mid:video\r\n"
deadbeef5e97fb52015-10-15 19:49:08338 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12339 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11340 "a=rtpmap:120 VP8/90000\r\n";
341
342// Reference SDP without MediaStreams and audio only.
343static const char kSdpStringWithoutStreamsAudioOnly[] =
344 "v=0\r\n"
345 "o=- 0 0 IN IP4 127.0.0.1\r\n"
346 "s=-\r\n"
347 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33348 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefab9b2d12015-10-14 18:33:11349 "a=ice-ufrag:e5785931\r\n"
350 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
351 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
352 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11353 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08354 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12355 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11356 "a=rtpmap:103 ISAC/16000\r\n";
357
358// Reference SENDONLY SDP without MediaStreams. Msid is not supported.
359static const char kSdpStringSendOnlyWithoutStreams[] =
360 "v=0\r\n"
361 "o=- 0 0 IN IP4 127.0.0.1\r\n"
362 "s=-\r\n"
363 "t=0 0\r\n"
deadbeefd1a38b52016-12-10 21:15:33364 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefab9b2d12015-10-14 18:33:11365 "a=ice-ufrag:e5785931\r\n"
366 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
367 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
368 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11369 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08370 "a=sendrecv\r\n"
deadbeefab9b2d12015-10-14 18:33:11371 "a=sendonly\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12372 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11373 "a=rtpmap:103 ISAC/16000\r\n"
374 "m=video 1 RTP/AVPF 120\r\n"
deadbeefd1a38b52016-12-10 21:15:33375 "a=ice-ufrag:e5785931\r\n"
376 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
377 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
378 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11379 "a=mid:video\r\n"
deadbeef5e97fb52015-10-15 19:49:08380 "a=sendrecv\r\n"
deadbeefab9b2d12015-10-14 18:33:11381 "a=sendonly\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12382 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11383 "a=rtpmap:120 VP8/90000\r\n";
384
385static const char kSdpStringInit[] =
386 "v=0\r\n"
387 "o=- 0 0 IN IP4 127.0.0.1\r\n"
388 "s=-\r\n"
389 "t=0 0\r\n"
deadbeefab9b2d12015-10-14 18:33:11390 "a=msid-semantic: WMS\r\n";
391
392static const char kSdpStringAudio[] =
393 "m=audio 1 RTP/AVPF 103\r\n"
deadbeefd1a38b52016-12-10 21:15:33394 "a=ice-ufrag:e5785931\r\n"
395 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
396 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
397 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11398 "a=mid:audio\r\n"
deadbeef5e97fb52015-10-15 19:49:08399 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12400 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11401 "a=rtpmap:103 ISAC/16000\r\n";
402
403static const char kSdpStringVideo[] =
404 "m=video 1 RTP/AVPF 120\r\n"
deadbeefd1a38b52016-12-10 21:15:33405 "a=ice-ufrag:e5785931\r\n"
406 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
407 "a=fingerprint:sha-256 58:AB:6E:F5:F1:E4:57:B7:E9:46:F4:86:04:28:F9:A7:ED:"
408 "BD:AB:AE:40:EF:CE:9A:51:2C:2A:B1:9B:8B:78:84\r\n"
deadbeefab9b2d12015-10-14 18:33:11409 "a=mid:video\r\n"
deadbeef5e97fb52015-10-15 19:49:08410 "a=sendrecv\r\n"
zhihuang4dfb8ce2016-11-23 18:30:12411 "a=rtcp-mux\r\n"
deadbeefab9b2d12015-10-14 18:33:11412 "a=rtpmap:120 VP8/90000\r\n";
413
414static const char kSdpStringMs1Audio0[] =
415 "a=ssrc:1 cname:stream1\r\n"
416 "a=ssrc:1 msid:stream1 audiotrack0\r\n";
417
418static const char kSdpStringMs1Video0[] =
419 "a=ssrc:2 cname:stream1\r\n"
420 "a=ssrc:2 msid:stream1 videotrack0\r\n";
421
422static const char kSdpStringMs1Audio1[] =
423 "a=ssrc:3 cname:stream1\r\n"
424 "a=ssrc:3 msid:stream1 audiotrack1\r\n";
425
426static const char kSdpStringMs1Video1[] =
427 "a=ssrc:4 cname:stream1\r\n"
428 "a=ssrc:4 msid:stream1 videotrack1\r\n";
429
deadbeef8662f942017-01-21 05:20:51430static const char kDtlsSdesFallbackSdp[] =
431 "v=0\r\n"
432 "o=xxxxxx 7 2 IN IP4 0.0.0.0\r\n"
433 "s=-\r\n"
434 "c=IN IP4 0.0.0.0\r\n"
435 "t=0 0\r\n"
436 "a=group:BUNDLE audio\r\n"
437 "a=msid-semantic: WMS\r\n"
438 "m=audio 1 RTP/SAVPF 0\r\n"
439 "a=sendrecv\r\n"
440 "a=rtcp-mux\r\n"
441 "a=mid:audio\r\n"
442 "a=ssrc:1 cname:stream1\r\n"
443 "a=ssrc:1 mslabel:stream1\r\n"
444 "a=ssrc:1 label:audiotrack0\r\n"
445 "a=ice-ufrag:e5785931\r\n"
446 "a=ice-pwd:36fb7878390db89481c1d46daa4278d8\r\n"
447 "a=rtpmap:0 pcmu/8000\r\n"
448 "a=fingerprint:sha-1 "
449 "4A:AD:B9:B1:3F:82:18:3B:54:02:12:DF:3E:5D:49:6B:19:E5:7C:AB\r\n"
450 "a=setup:actpass\r\n"
Taylor Brandstetterfd350d72018-04-03 23:29:26451 "a=crypto:0 AES_CM_128_HMAC_SHA1_80 "
deadbeef8662f942017-01-21 05:20:51452 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
453 "dummy_session_params\r\n";
454
Niels Möllerdec9f742019-06-03 13:25:20455class RtcEventLogOutputNull final : public RtcEventLogOutput {
456 public:
457 bool IsActive() const override { return true; }
458 bool Write(const std::string& output) override { return true; }
459};
460
Mirko Bonadeiab64e8a2018-12-12 11:10:18461using ::cricket::StreamParams;
perkjd61bf802016-03-24 10:16:19462using ::testing::Exactly;
Steve Anton36da6ff2018-02-17 00:04:20463using ::testing::Values;
henrike@webrtc.org28e20752013-07-10 00:45:36464
Steve Anton36da6ff2018-02-17 00:04:20465using RTCConfiguration = PeerConnectionInterface::RTCConfiguration;
466using RTCOfferAnswerOptions = PeerConnectionInterface::RTCOfferAnswerOptions;
deadbeefab9b2d12015-10-14 18:33:11467
henrike@webrtc.org28e20752013-07-10 00:45:36468// Gets the first ssrc of given content type from the ContentInfo.
469bool GetFirstSsrc(const cricket::ContentInfo* content_info, int* ssrc) {
470 if (!content_info || !ssrc) {
471 return false;
472 }
473 const cricket::MediaContentDescription* media_desc =
Steve Antonb1c1de12017-12-21 23:14:30474 content_info->media_description();
henrike@webrtc.org28e20752013-07-10 00:45:36475 if (!media_desc || media_desc->streams().empty()) {
476 return false;
477 }
478 *ssrc = media_desc->streams().begin()->first_ssrc();
479 return true;
480}
481
deadbeefd1a38b52016-12-10 21:15:33482// Get the ufrags out of an SDP blob. Useful for testing ICE restart
483// behavior.
484std::vector<std::string> GetUfrags(
485 const webrtc::SessionDescriptionInterface* desc) {
486 std::vector<std::string> ufrags;
487 for (const cricket::TransportInfo& info :
488 desc->description()->transport_infos()) {
489 ufrags.push_back(info.description.ice_ufrag);
490 }
491 return ufrags;
492}
493
henrike@webrtc.org28e20752013-07-10 00:45:36494void SetSsrcToZero(std::string* sdp) {
495 const char kSdpSsrcAtribute[] = "a=ssrc:";
496 const char kSdpSsrcAtributeZero[] = "a=ssrc:0";
497 size_t ssrc_pos = 0;
498 while ((ssrc_pos = sdp->find(kSdpSsrcAtribute, ssrc_pos)) !=
Yves Gerey665174f2018-06-19 13:03:05499 std::string::npos) {
henrike@webrtc.org28e20752013-07-10 00:45:36500 size_t end_ssrc = sdp->find(" ", ssrc_pos);
501 sdp->replace(ssrc_pos, end_ssrc - ssrc_pos, kSdpSsrcAtributeZero);
502 ssrc_pos = end_ssrc;
503 }
504}
505
deadbeefab9b2d12015-10-14 18:33:11506// Check if |streams| contains the specified track.
507bool ContainsTrack(const std::vector<cricket::StreamParams>& streams,
Seth Hampson845e8782018-03-02 19:34:10508 const std::string& stream_id,
deadbeefab9b2d12015-10-14 18:33:11509 const std::string& track_id) {
510 for (const cricket::StreamParams& params : streams) {
Seth Hampson845e8782018-03-02 19:34:10511 if (params.first_stream_id() == stream_id && params.id == track_id) {
deadbeefab9b2d12015-10-14 18:33:11512 return true;
513 }
514 }
515 return false;
516}
517
518// Check if |senders| contains the specified sender, by id.
519bool ContainsSender(
520 const std::vector<rtc::scoped_refptr<RtpSenderInterface>>& senders,
521 const std::string& id) {
522 for (const auto& sender : senders) {
523 if (sender->id() == id) {
524 return true;
525 }
526 }
527 return false;
528}
529
Taylor Brandstetterdc4eb8c2016-05-12 15:14:50530// Check if |senders| contains the specified sender, by id and stream id.
531bool ContainsSender(
532 const std::vector<rtc::scoped_refptr<RtpSenderInterface>>& senders,
533 const std::string& id,
534 const std::string& stream_id) {
535 for (const auto& sender : senders) {
deadbeefa601f5c2016-06-06 21:27:39536 if (sender->id() == id && sender->stream_ids()[0] == stream_id) {
Taylor Brandstetterdc4eb8c2016-05-12 15:14:50537 return true;
538 }
539 }
540 return false;
541}
542
deadbeefab9b2d12015-10-14 18:33:11543// Create a collection of streams.
544// CreateStreamCollection(1) creates a collection that
545// correspond to kSdpStringWithStream1.
546// CreateStreamCollection(2) correspond to kSdpStringWithStream1And2.
547rtc::scoped_refptr<StreamCollection> CreateStreamCollection(
Taylor Brandstetterdc4eb8c2016-05-12 15:14:50548 int number_of_streams,
549 int tracks_per_stream) {
deadbeefab9b2d12015-10-14 18:33:11550 rtc::scoped_refptr<StreamCollection> local_collection(
551 StreamCollection::Create());
552
553 for (int i = 0; i < number_of_streams; ++i) {
554 rtc::scoped_refptr<webrtc::MediaStreamInterface> stream(
555 webrtc::MediaStream::Create(kStreams[i]));
556
Taylor Brandstetterdc4eb8c2016-05-12 15:14:50557 for (int j = 0; j < tracks_per_stream; ++j) {
558 // Add a local audio track.
559 rtc::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
560 webrtc::AudioTrack::Create(kAudioTracks[i * tracks_per_stream + j],
561 nullptr));
562 stream->AddTrack(audio_track);
deadbeefab9b2d12015-10-14 18:33:11563
Taylor Brandstetterdc4eb8c2016-05-12 15:14:50564 // Add a local video track.
565 rtc::scoped_refptr<webrtc::VideoTrackInterface> video_track(
566 webrtc::VideoTrack::Create(kVideoTracks[i * tracks_per_stream + j],
perkj773be362017-08-01 06:22:01567 webrtc::FakeVideoTrackSource::Create(),
568 rtc::Thread::Current()));
Taylor Brandstetterdc4eb8c2016-05-12 15:14:50569 stream->AddTrack(video_track);
570 }
deadbeefab9b2d12015-10-14 18:33:11571
572 local_collection->AddStream(stream);
573 }
574 return local_collection;
575}
576
577// Check equality of StreamCollections.
578bool CompareStreamCollections(StreamCollectionInterface* s1,
579 StreamCollectionInterface* s2) {
580 if (s1 == nullptr || s2 == nullptr || s1->count() != s2->count()) {
581 return false;
582 }
583
584 for (size_t i = 0; i != s1->count(); ++i) {
Seth Hampson13b8bad2018-03-13 23:05:28585 if (s1->at(i)->id() != s2->at(i)->id()) {
deadbeefab9b2d12015-10-14 18:33:11586 return false;
587 }
588 webrtc::AudioTrackVector audio_tracks1 = s1->at(i)->GetAudioTracks();
589 webrtc::AudioTrackVector audio_tracks2 = s2->at(i)->GetAudioTracks();
590 webrtc::VideoTrackVector video_tracks1 = s1->at(i)->GetVideoTracks();
591 webrtc::VideoTrackVector video_tracks2 = s2->at(i)->GetVideoTracks();
592
593 if (audio_tracks1.size() != audio_tracks2.size()) {
594 return false;
595 }
596 for (size_t j = 0; j != audio_tracks1.size(); ++j) {
597 if (audio_tracks1[j]->id() != audio_tracks2[j]->id()) {
598 return false;
599 }
600 }
601 if (video_tracks1.size() != video_tracks2.size()) {
602 return false;
603 }
604 for (size_t j = 0; j != video_tracks1.size(); ++j) {
605 if (video_tracks1[j]->id() != video_tracks2[j]->id()) {
606 return false;
607 }
608 }
609 }
610 return true;
611}
612
perkjd61bf802016-03-24 10:16:19613// Helper class to test Observer.
614class MockTrackObserver : public ObserverInterface {
615 public:
616 explicit MockTrackObserver(NotifierInterface* notifier)
617 : notifier_(notifier) {
618 notifier_->RegisterObserver(this);
619 }
620
621 ~MockTrackObserver() { Unregister(); }
622
623 void Unregister() {
624 if (notifier_) {
625 notifier_->UnregisterObserver(this);
626 notifier_ = nullptr;
627 }
628 }
629
630 MOCK_METHOD0(OnChanged, void());
631
632 private:
633 NotifierInterface* notifier_;
634};
635
nisse528b7932017-05-08 10:21:43636// The PeerConnectionMediaConfig tests below verify that configuration and
637// constraints are propagated into the PeerConnection's MediaConfig. These
638// settings are intended for MediaChannel constructors, but that is not
639// exercised by these unittest.
zhihuang29ff8442016-07-27 18:07:25640class PeerConnectionFactoryForTest : public webrtc::PeerConnectionFactory {
641 public:
zhihuang38ede132017-06-15 19:52:32642 static rtc::scoped_refptr<PeerConnectionFactoryForTest>
643 CreatePeerConnectionFactoryForTest() {
Danil Chapovalovf5258be2019-03-19 16:45:24644 PeerConnectionFactoryDependencies dependencies;
645 dependencies.worker_thread = rtc::Thread::Current();
646 dependencies.network_thread = rtc::Thread::Current();
647 dependencies.signaling_thread = rtc::Thread::Current();
Danil Chapovalov9da25bd2019-06-20 08:19:42648 dependencies.task_queue_factory = CreateDefaultTaskQueueFactory();
649 cricket::MediaEngineDependencies media_deps;
650 media_deps.task_queue_factory = dependencies.task_queue_factory.get();
henrika919dc2e2017-10-12 12:24:55651 // Use fake audio device module since we're only testing the interface
652 // level, and using a real one could make tests flaky when run in parallel.
Danil Chapovalov9da25bd2019-06-20 08:19:42653 media_deps.adm = FakeAudioCaptureModule::Create();
654 SetMediaEngineDefaults(&media_deps);
655 dependencies.media_engine =
656 cricket::CreateMediaEngine(std::move(media_deps));
Danil Chapovalovf5258be2019-03-19 16:45:24657 dependencies.call_factory = webrtc::CreateCallFactory();
Mirko Bonadei317a1f02019-09-17 15:06:18658 dependencies.event_log_factory = std::make_unique<RtcEventLogFactory>(
Danil Chapovalov9da25bd2019-06-20 08:19:42659 dependencies.task_queue_factory.get());
zhihuang38ede132017-06-15 19:52:32660
661 return new rtc::RefCountedObject<PeerConnectionFactoryForTest>(
Danil Chapovalovf5258be2019-03-19 16:45:24662 std::move(dependencies));
zhihuang38ede132017-06-15 19:52:32663 }
664
Danil Chapovalovf5258be2019-03-19 16:45:24665 using PeerConnectionFactory::PeerConnectionFactory;
kwiberg1e4e8cb2017-01-31 09:48:08666
Danil Chapovalovf5258be2019-03-19 16:45:24667 private:
deadbeefd7850b22017-08-23 17:59:19668 rtc::scoped_refptr<FakeAudioCaptureModule> fake_audio_capture_module_;
zhihuang29ff8442016-07-27 18:07:25669};
670
Steve Anton36da6ff2018-02-17 00:04:20671// TODO(steveanton): Convert to use the new PeerConnectionWrapper.
Mirko Bonadei6a489f22019-04-09 13:11:12672class PeerConnectionInterfaceBaseTest : public ::testing::Test {
henrike@webrtc.org28e20752013-07-10 00:45:36673 protected:
Steve Anton36da6ff2018-02-17 00:04:20674 explicit PeerConnectionInterfaceBaseTest(SdpSemantics sdp_semantics)
675 : vss_(new rtc::VirtualSocketServer()),
676 main_(vss_.get()),
677 sdp_semantics_(sdp_semantics) {
phoglund37ebcf02016-01-08 13:04:57678#ifdef WEBRTC_ANDROID
679 webrtc::InitializeAndroidObjects();
680#endif
681 }
682
henrike@webrtc.org28e20752013-07-10 00:45:36683 virtual void SetUp() {
deadbeefd7850b22017-08-23 17:59:19684 // Use fake audio capture module since we're only testing the interface
685 // level, and using a real one could make tests flaky when run in parallel.
686 fake_audio_capture_module_ = FakeAudioCaptureModule::Create();
henrike@webrtc.org28e20752013-07-10 00:45:36687 pc_factory_ = webrtc::CreatePeerConnectionFactory(
danilchape9021a32016-05-17 08:52:02688 rtc::Thread::Current(), rtc::Thread::Current(), rtc::Thread::Current(),
Anders Carlsson67537952018-05-03 09:28:29689 rtc::scoped_refptr<webrtc::AudioDeviceModule>(
690 fake_audio_capture_module_),
691 webrtc::CreateBuiltinAudioEncoderFactory(),
692 webrtc::CreateBuiltinAudioDecoderFactory(),
693 webrtc::CreateBuiltinVideoEncoderFactory(),
694 webrtc::CreateBuiltinVideoDecoderFactory(), nullptr /* audio_mixer */,
695 nullptr /* audio_processing */);
danilchape9021a32016-05-17 08:52:02696 ASSERT_TRUE(pc_factory_);
zhihuang29ff8442016-07-27 18:07:25697 pc_factory_for_test_ =
zhihuang38ede132017-06-15 19:52:32698 PeerConnectionFactoryForTest::CreatePeerConnectionFactoryForTest();
zhihuang29ff8442016-07-27 18:07:25699 pc_factory_for_test_->Initialize();
henrike@webrtc.org28e20752013-07-10 00:45:36700 }
701
702 void CreatePeerConnection() {
Niels Möllerf06f9232018-08-07 10:32:18703 CreatePeerConnection(PeerConnectionInterface::RTCConfiguration());
henrike@webrtc.org28e20752013-07-10 00:45:36704 }
705
deadbeef293e9262017-01-11 20:28:30706 // DTLS does not work in a loopback call, so is disabled for most of the
707 // tests in this file.
708 void CreatePeerConnectionWithoutDtls() {
Niels Möllerf06f9232018-08-07 10:32:18709 RTCConfiguration config;
710 config.enable_dtls_srtp = false;
deadbeef293e9262017-01-11 20:28:30711
Niels Möllerf06f9232018-08-07 10:32:18712 CreatePeerConnection(config);
henrike@webrtc.org28e20752013-07-10 00:45:36713 }
714
Taylor Brandstettera1c30352016-05-13 15:15:11715 void CreatePeerConnectionWithIceTransportsType(
716 PeerConnectionInterface::IceTransportsType type) {
717 PeerConnectionInterface::RTCConfiguration config;
718 config.type = type;
Niels Möllerf06f9232018-08-07 10:32:18719 return CreatePeerConnection(config);
Taylor Brandstettera1c30352016-05-13 15:15:11720 }
721
722 void CreatePeerConnectionWithIceServer(const std::string& uri,
Niels Möllerdb4def92019-03-18 15:53:59723 const std::string& username,
Taylor Brandstettera1c30352016-05-13 15:15:11724 const std::string& password) {
Taylor Brandstetter0c7e9f52015-12-29 22:14:52725 PeerConnectionInterface::RTCConfiguration config;
henrike@webrtc.org28e20752013-07-10 00:45:36726 PeerConnectionInterface::IceServer server;
Taylor Brandstettera1c30352016-05-13 15:15:11727 server.uri = uri;
Niels Möllerdb4def92019-03-18 15:53:59728 server.username = username;
Taylor Brandstettera1c30352016-05-13 15:15:11729 server.password = password;
730 config.servers.push_back(server);
Niels Möllerf06f9232018-08-07 10:32:18731 CreatePeerConnection(config);
Taylor Brandstettera1c30352016-05-13 15:15:11732 }
henrike@webrtc.org28e20752013-07-10 00:45:36733
Niels Möllerf06f9232018-08-07 10:32:18734 void CreatePeerConnection(const RTCConfiguration& config) {
kwibergd1fe2812016-04-27 13:47:29735 std::unique_ptr<cricket::FakePortAllocator> port_allocator(
Taylor Brandstetter0c7e9f52015-12-29 22:14:52736 new cricket::FakePortAllocator(rtc::Thread::Current(), nullptr));
737 port_allocator_ = port_allocator.get();
jiayl@webrtc.orga576faf2014-01-29 17:45:53738
deadbeef1dcb1642017-03-30 04:08:16739 // Create certificate generator unless DTLS constraint is explicitly set to
740 // false.
Henrik Boströmd79599d2016-06-01 11:58:50741 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator;
Niels Möllerf06f9232018-08-07 10:32:18742
743 if (config.enable_dtls_srtp.value_or(true)) {
deadbeef8662f942017-01-21 05:20:51744 fake_certificate_generator_ = new FakeRTCCertificateGenerator();
745 cert_generator.reset(fake_certificate_generator_);
jiayl@webrtc.orga576faf2014-01-29 17:45:53746 }
Steve Anton36da6ff2018-02-17 00:04:20747 RTCConfiguration modified_config = config;
748 modified_config.sdp_semantics = sdp_semantics_;
Henrik Boströmd79599d2016-06-01 11:58:50749 pc_ = pc_factory_->CreatePeerConnection(
Niels Möllerf06f9232018-08-07 10:32:18750 modified_config, std::move(port_allocator), std::move(cert_generator),
751 &observer_);
henrike@webrtc.org28e20752013-07-10 00:45:36752 ASSERT_TRUE(pc_.get() != NULL);
753 observer_.SetPeerConnectionInterface(pc_.get());
754 EXPECT_EQ(PeerConnectionInterface::kStable, observer_.state_);
755 }
756
deadbeef0a6c4ca2015-10-06 18:38:28757 void CreatePeerConnectionExpectFail(const std::string& uri) {
Taylor Brandstetter0c7e9f52015-12-29 22:14:52758 PeerConnectionInterface::RTCConfiguration config;
deadbeef0a6c4ca2015-10-06 18:38:28759 PeerConnectionInterface::IceServer server;
deadbeef0a6c4ca2015-10-06 18:38:28760 server.uri = uri;
Taylor Brandstetter0c7e9f52015-12-29 22:14:52761 config.servers.push_back(server);
Steve Anton36da6ff2018-02-17 00:04:20762 config.sdp_semantics = sdp_semantics_;
763 rtc::scoped_refptr<PeerConnectionInterface> pc =
Niels Möllerf06f9232018-08-07 10:32:18764 pc_factory_->CreatePeerConnection(config, nullptr, nullptr, &observer_);
Taylor Brandstetter0c7e9f52015-12-29 22:14:52765 EXPECT_EQ(nullptr, pc);
deadbeef0a6c4ca2015-10-06 18:38:28766 }
767
Steve Anton038834f2017-07-14 22:59:59768 void CreatePeerConnectionExpectFail(
769 PeerConnectionInterface::RTCConfiguration config) {
770 PeerConnectionInterface::IceServer server;
771 server.uri = kTurnIceServerUri;
772 server.password = kTurnPassword;
773 config.servers.push_back(server);
Steve Anton36da6ff2018-02-17 00:04:20774 config.sdp_semantics = sdp_semantics_;
Steve Anton038834f2017-07-14 22:59:59775 rtc::scoped_refptr<PeerConnectionInterface> pc =
776 pc_factory_->CreatePeerConnection(config, nullptr, nullptr, &observer_);
777 EXPECT_EQ(nullptr, pc);
778 }
779
henrike@webrtc.org28e20752013-07-10 00:45:36780 void CreatePeerConnectionWithDifferentConfigurations() {
Niels Möllerdb4def92019-03-18 15:53:59781 CreatePeerConnectionWithIceServer(kStunAddressOnly, "", "");
Taylor Brandstetter0c7e9f52015-12-29 22:14:52782 EXPECT_EQ(1u, port_allocator_->stun_servers().size());
783 EXPECT_EQ(0u, port_allocator_->turn_servers().size());
784 EXPECT_EQ("address", port_allocator_->stun_servers().begin()->hostname());
henrike@webrtc.org28e20752013-07-10 00:45:36785 EXPECT_EQ(kDefaultStunPort,
Taylor Brandstetter0c7e9f52015-12-29 22:14:52786 port_allocator_->stun_servers().begin()->port());
henrike@webrtc.org28e20752013-07-10 00:45:36787
deadbeef0a6c4ca2015-10-06 18:38:28788 CreatePeerConnectionExpectFail(kStunInvalidPort);
789 CreatePeerConnectionExpectFail(kStunAddressPortAndMore1);
790 CreatePeerConnectionExpectFail(kStunAddressPortAndMore2);
henrike@webrtc.org28e20752013-07-10 00:45:36791
Niels Möllerdb4def92019-03-18 15:53:59792 CreatePeerConnectionWithIceServer(kTurnIceServerUri, kTurnUsername,
793 kTurnPassword);
Taylor Brandstetter0c7e9f52015-12-29 22:14:52794 EXPECT_EQ(0u, port_allocator_->stun_servers().size());
795 EXPECT_EQ(1u, port_allocator_->turn_servers().size());
henrike@webrtc.org28e20752013-07-10 00:45:36796 EXPECT_EQ(kTurnUsername,
Taylor Brandstetter0c7e9f52015-12-29 22:14:52797 port_allocator_->turn_servers()[0].credentials.username);
henrike@webrtc.org28e20752013-07-10 00:45:36798 EXPECT_EQ(kTurnPassword,
Taylor Brandstetter0c7e9f52015-12-29 22:14:52799 port_allocator_->turn_servers()[0].credentials.password);
henrike@webrtc.org28e20752013-07-10 00:45:36800 EXPECT_EQ(kTurnHostname,
Taylor Brandstetter0c7e9f52015-12-29 22:14:52801 port_allocator_->turn_servers()[0].ports[0].address.hostname());
henrike@webrtc.org28e20752013-07-10 00:45:36802 }
803
804 void ReleasePeerConnection() {
805 pc_ = NULL;
806 observer_.SetPeerConnectionInterface(NULL);
807 }
808
Steve Anton36da6ff2018-02-17 00:04:20809 rtc::scoped_refptr<VideoTrackInterface> CreateVideoTrack(
810 const std::string& label) {
Niels Möller215ba602019-01-18 12:59:45811 return pc_factory_->CreateVideoTrack(label, FakeVideoTrackSource::Create());
Steve Anton36da6ff2018-02-17 00:04:20812 }
813
814 void AddVideoTrack(const std::string& track_label,
Seth Hampson845e8782018-03-02 19:34:10815 const std::vector<std::string>& stream_ids = {}) {
Steve Anton36da6ff2018-02-17 00:04:20816 auto sender_or_error =
Seth Hampson845e8782018-03-02 19:34:10817 pc_->AddTrack(CreateVideoTrack(track_label), stream_ids);
Steve Anton36da6ff2018-02-17 00:04:20818 ASSERT_EQ(RTCErrorType::NONE, sender_or_error.error().type());
henrike@webrtc.org28e20752013-07-10 00:45:36819 }
820
Steve Anton36da6ff2018-02-17 00:04:20821 void AddVideoStream(const std::string& label) {
zhihuang9763d562016-08-05 18:14:50822 rtc::scoped_refptr<MediaStreamInterface> stream(
henrike@webrtc.org28e20752013-07-10 00:45:36823 pc_factory_->CreateLocalMediaStream(label));
Steve Anton36da6ff2018-02-17 00:04:20824 stream->AddTrack(CreateVideoTrack(label + "v0"));
825 ASSERT_TRUE(pc_->AddStream(stream));
Steve Anton36da6ff2018-02-17 00:04:20826 }
827
828 rtc::scoped_refptr<AudioTrackInterface> CreateAudioTrack(
829 const std::string& label) {
830 return pc_factory_->CreateAudioTrack(label, nullptr);
831 }
832
833 void AddAudioTrack(const std::string& track_label,
Seth Hampson845e8782018-03-02 19:34:10834 const std::vector<std::string>& stream_ids = {}) {
Steve Anton36da6ff2018-02-17 00:04:20835 auto sender_or_error =
Seth Hampson845e8782018-03-02 19:34:10836 pc_->AddTrack(CreateAudioTrack(track_label), stream_ids);
Steve Anton36da6ff2018-02-17 00:04:20837 ASSERT_EQ(RTCErrorType::NONE, sender_or_error.error().type());
Steve Anton36da6ff2018-02-17 00:04:20838 }
839
840 void AddAudioStream(const std::string& label) {
841 rtc::scoped_refptr<MediaStreamInterface> stream(
842 pc_factory_->CreateLocalMediaStream(label));
843 stream->AddTrack(CreateAudioTrack(label + "a0"));
844 ASSERT_TRUE(pc_->AddStream(stream));
henrike@webrtc.org28e20752013-07-10 00:45:36845 }
846
Seth Hampson845e8782018-03-02 19:34:10847 void AddAudioVideoStream(const std::string& stream_id,
henrike@webrtc.org28e20752013-07-10 00:45:36848 const std::string& audio_track_label,
849 const std::string& video_track_label) {
850 // Create a local stream.
zhihuang9763d562016-08-05 18:14:50851 rtc::scoped_refptr<MediaStreamInterface> stream(
Seth Hampson845e8782018-03-02 19:34:10852 pc_factory_->CreateLocalMediaStream(stream_id));
Steve Anton36da6ff2018-02-17 00:04:20853 stream->AddTrack(CreateAudioTrack(audio_track_label));
854 stream->AddTrack(CreateVideoTrack(video_track_label));
855 ASSERT_TRUE(pc_->AddStream(stream));
henrike@webrtc.org28e20752013-07-10 00:45:36856 }
857
Steve Anton36da6ff2018-02-17 00:04:20858 rtc::scoped_refptr<RtpReceiverInterface> GetFirstReceiverOfType(
859 cricket::MediaType media_type) {
860 for (auto receiver : pc_->GetReceivers()) {
861 if (receiver->media_type() == media_type) {
862 return receiver;
863 }
864 }
865 return nullptr;
866 }
867
kwibergd1fe2812016-04-27 13:47:29868 bool DoCreateOfferAnswer(std::unique_ptr<SessionDescriptionInterface>* desc,
Niels Möllerf06f9232018-08-07 10:32:18869 const RTCOfferAnswerOptions* options,
870 bool offer) {
Yves Gerey665174f2018-06-19 13:03:05871 rtc::scoped_refptr<MockCreateSessionDescriptionObserver> observer(
872 new rtc::RefCountedObject<MockCreateSessionDescriptionObserver>());
henrike@webrtc.org28e20752013-07-10 00:45:36873 if (offer) {
Niels Möllerf06f9232018-08-07 10:32:18874 pc_->CreateOffer(observer, options ? *options : RTCOfferAnswerOptions());
henrike@webrtc.org28e20752013-07-10 00:45:36875 } else {
Niels Möllerf06f9232018-08-07 10:32:18876 pc_->CreateAnswer(observer, options ? *options : RTCOfferAnswerOptions());
henrike@webrtc.org28e20752013-07-10 00:45:36877 }
878 EXPECT_EQ_WAIT(true, observer->called(), kTimeout);
deadbeef1dcb1642017-03-30 04:08:16879 *desc = observer->MoveDescription();
henrike@webrtc.org28e20752013-07-10 00:45:36880 return observer->result();
881 }
882
kwibergd1fe2812016-04-27 13:47:29883 bool DoCreateOffer(std::unique_ptr<SessionDescriptionInterface>* desc,
Niels Möllerf06f9232018-08-07 10:32:18884 const RTCOfferAnswerOptions* options) {
885 return DoCreateOfferAnswer(desc, options, true);
henrike@webrtc.org28e20752013-07-10 00:45:36886 }
887
kwibergd1fe2812016-04-27 13:47:29888 bool DoCreateAnswer(std::unique_ptr<SessionDescriptionInterface>* desc,
Niels Möllerf06f9232018-08-07 10:32:18889 const RTCOfferAnswerOptions* options) {
890 return DoCreateOfferAnswer(desc, options, false);
henrike@webrtc.org28e20752013-07-10 00:45:36891 }
892
Steve Antondb45ca82017-09-12 01:27:34893 bool DoSetSessionDescription(
894 std::unique_ptr<SessionDescriptionInterface> desc,
895 bool local) {
Yves Gerey665174f2018-06-19 13:03:05896 rtc::scoped_refptr<MockSetSessionDescriptionObserver> observer(
897 new rtc::RefCountedObject<MockSetSessionDescriptionObserver>());
henrike@webrtc.org28e20752013-07-10 00:45:36898 if (local) {
Steve Antondb45ca82017-09-12 01:27:34899 pc_->SetLocalDescription(observer, desc.release());
henrike@webrtc.org28e20752013-07-10 00:45:36900 } else {
Steve Antondb45ca82017-09-12 01:27:34901 pc_->SetRemoteDescription(observer, desc.release());
henrike@webrtc.org28e20752013-07-10 00:45:36902 }
zhihuang29ff8442016-07-27 18:07:25903 if (pc_->signaling_state() != PeerConnectionInterface::kClosed) {
904 EXPECT_EQ_WAIT(true, observer->called(), kTimeout);
905 }
henrike@webrtc.org28e20752013-07-10 00:45:36906 return observer->result();
907 }
908
Steve Antondb45ca82017-09-12 01:27:34909 bool DoSetLocalDescription(
910 std::unique_ptr<SessionDescriptionInterface> desc) {
911 return DoSetSessionDescription(std::move(desc), true);
henrike@webrtc.org28e20752013-07-10 00:45:36912 }
913
Steve Antondb45ca82017-09-12 01:27:34914 bool DoSetRemoteDescription(
915 std::unique_ptr<SessionDescriptionInterface> desc) {
916 return DoSetSessionDescription(std::move(desc), false);
henrike@webrtc.org28e20752013-07-10 00:45:36917 }
918
919 // Calls PeerConnection::GetStats and check the return value.
920 // It does not verify the values in the StatReports since a RTCP packet might
921 // be required.
922 bool DoGetStats(MediaStreamTrackInterface* track) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52923 rtc::scoped_refptr<MockStatsObserver> observer(
924 new rtc::RefCountedObject<MockStatsObserver>());
Yves Gerey665174f2018-06-19 13:03:05925 if (!pc_->GetStats(observer, track,
926 PeerConnectionInterface::kStatsOutputLevelStandard))
henrike@webrtc.org28e20752013-07-10 00:45:36927 return false;
928 EXPECT_TRUE_WAIT(observer->called(), kTimeout);
929 return observer->called();
930 }
931
Harald Alvestrand89061872018-01-02 13:08:34932 // Call the standards-compliant GetStats function.
933 bool DoGetRTCStats() {
934 rtc::scoped_refptr<webrtc::MockRTCStatsCollectorCallback> callback(
935 new rtc::RefCountedObject<webrtc::MockRTCStatsCollectorCallback>());
936 pc_->GetStats(callback);
937 EXPECT_TRUE_WAIT(callback->called(), kTimeout);
938 return callback->called();
939 }
940
henrike@webrtc.org28e20752013-07-10 00:45:36941 void InitiateCall() {
deadbeef293e9262017-01-11 20:28:30942 CreatePeerConnectionWithoutDtls();
henrike@webrtc.org28e20752013-07-10 00:45:36943 // Create a local stream with audio&video tracks.
Steve Anton36da6ff2018-02-17 00:04:20944 if (sdp_semantics_ == SdpSemantics::kPlanB) {
Seth Hampson845e8782018-03-02 19:34:10945 AddAudioVideoStream(kStreamId1, "audio_track", "video_track");
Steve Anton36da6ff2018-02-17 00:04:20946 } else {
947 // Unified Plan does not support AddStream, so just add an audio and video
948 // track.
Seth Hampson845e8782018-03-02 19:34:10949 AddAudioTrack(kAudioTracks[0], {kStreamId1});
950 AddVideoTrack(kVideoTracks[0], {kStreamId1});
Steve Anton36da6ff2018-02-17 00:04:20951 }
henrike@webrtc.org28e20752013-07-10 00:45:36952 CreateOfferReceiveAnswer();
953 }
954
955 // Verify that RTP Header extensions has been negotiated for audio and video.
956 void VerifyRemoteRtpHeaderExtensions() {
957 const cricket::MediaContentDescription* desc =
958 cricket::GetFirstAudioContentDescription(
959 pc_->remote_description()->description());
960 ASSERT_TRUE(desc != NULL);
961 EXPECT_GT(desc->rtp_header_extensions().size(), 0u);
962
963 desc = cricket::GetFirstVideoContentDescription(
964 pc_->remote_description()->description());
965 ASSERT_TRUE(desc != NULL);
966 EXPECT_GT(desc->rtp_header_extensions().size(), 0u);
967 }
968
969 void CreateOfferAsRemoteDescription() {
kwibergd1fe2812016-04-27 13:47:29970 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:04971 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:36972 std::string sdp;
973 EXPECT_TRUE(offer->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:34974 std::unique_ptr<SessionDescriptionInterface> remote_offer(
Steve Antona3a92c22017-12-07 18:27:41975 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
Steve Antondb45ca82017-09-12 01:27:34976 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_offer)));
henrike@webrtc.org28e20752013-07-10 00:45:36977 EXPECT_EQ(PeerConnectionInterface::kHaveRemoteOffer, observer_.state_);
978 }
979
deadbeefab9b2d12015-10-14 18:33:11980 void CreateAndSetRemoteOffer(const std::string& sdp) {
Steve Antondb45ca82017-09-12 01:27:34981 std::unique_ptr<SessionDescriptionInterface> remote_offer(
Steve Antona3a92c22017-12-07 18:27:41982 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
Steve Antondb45ca82017-09-12 01:27:34983 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_offer)));
deadbeefab9b2d12015-10-14 18:33:11984 EXPECT_EQ(PeerConnectionInterface::kHaveRemoteOffer, observer_.state_);
985 }
986
henrike@webrtc.org28e20752013-07-10 00:45:36987 void CreateAnswerAsLocalDescription() {
kwibergd1fe2812016-04-27 13:47:29988 std::unique_ptr<SessionDescriptionInterface> answer;
kwiberg2bbff992016-03-16 18:03:04989 ASSERT_TRUE(DoCreateAnswer(&answer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:36990
991 // TODO(perkj): Currently SetLocalDescription fails if any parameters in an
992 // audio codec change, even if the parameter has nothing to do with
993 // receiving. Not all parameters are serialized to SDP.
994 // Since CreatePrAnswerAsLocalDescription serialize/deserialize
995 // the SessionDescription, it is necessary to do that here to in order to
996 // get ReceiveOfferCreatePrAnswerAndAnswer and RenegotiateAudioOnly to pass.
997 // https://code.google.com/p/webrtc/issues/detail?id=1356
998 std::string sdp;
999 EXPECT_TRUE(answer->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:341000 std::unique_ptr<SessionDescriptionInterface> new_answer(
Steve Antona3a92c22017-12-07 18:27:411001 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:341002 EXPECT_TRUE(DoSetLocalDescription(std::move(new_answer)));
henrike@webrtc.org28e20752013-07-10 00:45:361003 EXPECT_EQ(PeerConnectionInterface::kStable, observer_.state_);
1004 }
1005
1006 void CreatePrAnswerAsLocalDescription() {
kwibergd1fe2812016-04-27 13:47:291007 std::unique_ptr<SessionDescriptionInterface> answer;
kwiberg2bbff992016-03-16 18:03:041008 ASSERT_TRUE(DoCreateAnswer(&answer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:361009
1010 std::string sdp;
1011 EXPECT_TRUE(answer->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:341012 std::unique_ptr<SessionDescriptionInterface> pr_answer(
Steve Antona3a92c22017-12-07 18:27:411013 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:341014 EXPECT_TRUE(DoSetLocalDescription(std::move(pr_answer)));
henrike@webrtc.org28e20752013-07-10 00:45:361015 EXPECT_EQ(PeerConnectionInterface::kHaveLocalPrAnswer, observer_.state_);
1016 }
1017
1018 void CreateOfferReceiveAnswer() {
1019 CreateOfferAsLocalDescription();
1020 std::string sdp;
1021 EXPECT_TRUE(pc_->local_description()->ToString(&sdp));
1022 CreateAnswerAsRemoteDescription(sdp);
1023 }
1024
1025 void CreateOfferAsLocalDescription() {
kwibergd1fe2812016-04-27 13:47:291026 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041027 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:361028 // TODO(perkj): Currently SetLocalDescription fails if any parameters in an
1029 // audio codec change, even if the parameter has nothing to do with
1030 // receiving. Not all parameters are serialized to SDP.
1031 // Since CreatePrAnswerAsLocalDescription serialize/deserialize
1032 // the SessionDescription, it is necessary to do that here to in order to
1033 // get ReceiveOfferCreatePrAnswerAndAnswer and RenegotiateAudioOnly to pass.
1034 // https://code.google.com/p/webrtc/issues/detail?id=1356
1035 std::string sdp;
1036 EXPECT_TRUE(offer->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:341037 std::unique_ptr<SessionDescriptionInterface> new_offer(
Steve Antona3a92c22017-12-07 18:27:411038 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
henrike@webrtc.org28e20752013-07-10 00:45:361039
Steve Antondb45ca82017-09-12 01:27:341040 EXPECT_TRUE(DoSetLocalDescription(std::move(new_offer)));
henrike@webrtc.org28e20752013-07-10 00:45:361041 EXPECT_EQ(PeerConnectionInterface::kHaveLocalOffer, observer_.state_);
mallinath@webrtc.org68cbd012014-01-22 00:16:461042 // Wait for the ice_complete message, so that SDP will have candidates.
Steve Anton6f25b092017-10-23 16:39:201043 EXPECT_TRUE_WAIT(observer_.ice_gathering_complete_, kTimeout);
henrike@webrtc.org28e20752013-07-10 00:45:361044 }
1045
deadbeefab9b2d12015-10-14 18:33:111046 void CreateAnswerAsRemoteDescription(const std::string& sdp) {
Steve Antondb45ca82017-09-12 01:27:341047 std::unique_ptr<SessionDescriptionInterface> answer(
Steve Antona3a92c22017-12-07 18:27:411048 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:341049 ASSERT_TRUE(answer);
1050 EXPECT_TRUE(DoSetRemoteDescription(std::move(answer)));
henrike@webrtc.org28e20752013-07-10 00:45:361051 EXPECT_EQ(PeerConnectionInterface::kStable, observer_.state_);
1052 }
1053
deadbeefab9b2d12015-10-14 18:33:111054 void CreatePrAnswerAndAnswerAsRemoteDescription(const std::string& sdp) {
Steve Antondb45ca82017-09-12 01:27:341055 std::unique_ptr<SessionDescriptionInterface> pr_answer(
Steve Antona3a92c22017-12-07 18:27:411056 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:341057 ASSERT_TRUE(pr_answer);
1058 EXPECT_TRUE(DoSetRemoteDescription(std::move(pr_answer)));
henrike@webrtc.org28e20752013-07-10 00:45:361059 EXPECT_EQ(PeerConnectionInterface::kHaveRemotePrAnswer, observer_.state_);
Steve Antondb45ca82017-09-12 01:27:341060 std::unique_ptr<SessionDescriptionInterface> answer(
Steve Antona3a92c22017-12-07 18:27:411061 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:341062 ASSERT_TRUE(answer);
1063 EXPECT_TRUE(DoSetRemoteDescription(std::move(answer)));
henrike@webrtc.org28e20752013-07-10 00:45:361064 EXPECT_EQ(PeerConnectionInterface::kStable, observer_.state_);
1065 }
1066
Seth Hampson845e8782018-03-02 19:34:101067 // Waits until a remote stream with the given id is signaled. This helper
Steve Anton36da6ff2018-02-17 00:04:201068 // function will verify both OnAddTrack and OnAddStream (Plan B only) are
Seth Hampson845e8782018-03-02 19:34:101069 // called with the given stream id and expected number of tracks.
1070 void WaitAndVerifyOnAddStream(const std::string& stream_id,
Steve Anton36da6ff2018-02-17 00:04:201071 int expected_num_tracks) {
1072 // Verify that both OnAddStream and OnAddTrack are called.
Seth Hampson845e8782018-03-02 19:34:101073 EXPECT_EQ_WAIT(stream_id, observer_.GetLastAddedStreamId(), kTimeout);
Steve Anton36da6ff2018-02-17 00:04:201074 EXPECT_EQ_WAIT(expected_num_tracks,
Seth Hampson845e8782018-03-02 19:34:101075 observer_.CountAddTrackEventsForStream(stream_id), kTimeout);
henrike@webrtc.org28e20752013-07-10 00:45:361076 }
1077
1078 // Creates an offer and applies it as a local session description.
1079 // Creates an answer with the same SDP an the offer but removes all lines
1080 // that start with a:ssrc"
1081 void CreateOfferReceiveAnswerWithoutSsrc() {
1082 CreateOfferAsLocalDescription();
1083 std::string sdp;
1084 EXPECT_TRUE(pc_->local_description()->ToString(&sdp));
1085 SetSsrcToZero(&sdp);
1086 CreateAnswerAsRemoteDescription(sdp);
1087 }
1088
deadbeefab9b2d12015-10-14 18:33:111089 // This function creates a MediaStream with label kStreams[0] and
1090 // |number_of_audio_tracks| and |number_of_video_tracks| tracks and the
1091 // corresponding SessionDescriptionInterface. The SessionDescriptionInterface
kwiberg2bbff992016-03-16 18:03:041092 // is returned and the MediaStream is stored in
deadbeefab9b2d12015-10-14 18:33:111093 // |reference_collection_|
kwibergd1fe2812016-04-27 13:47:291094 std::unique_ptr<SessionDescriptionInterface>
kwiberg2bbff992016-03-16 18:03:041095 CreateSessionDescriptionAndReference(size_t number_of_audio_tracks,
1096 size_t number_of_video_tracks) {
1097 EXPECT_LE(number_of_audio_tracks, 2u);
1098 EXPECT_LE(number_of_video_tracks, 2u);
deadbeefab9b2d12015-10-14 18:33:111099
1100 reference_collection_ = StreamCollection::Create();
1101 std::string sdp_ms1 = std::string(kSdpStringInit);
1102
Seth Hampson845e8782018-03-02 19:34:101103 std::string mediastream_id = kStreams[0];
deadbeefab9b2d12015-10-14 18:33:111104
1105 rtc::scoped_refptr<webrtc::MediaStreamInterface> stream(
Seth Hampson845e8782018-03-02 19:34:101106 webrtc::MediaStream::Create(mediastream_id));
deadbeefab9b2d12015-10-14 18:33:111107 reference_collection_->AddStream(stream);
1108
1109 if (number_of_audio_tracks > 0) {
1110 sdp_ms1 += std::string(kSdpStringAudio);
1111 sdp_ms1 += std::string(kSdpStringMs1Audio0);
1112 AddAudioTrack(kAudioTracks[0], stream);
1113 }
1114 if (number_of_audio_tracks > 1) {
1115 sdp_ms1 += kSdpStringMs1Audio1;
1116 AddAudioTrack(kAudioTracks[1], stream);
1117 }
1118
1119 if (number_of_video_tracks > 0) {
1120 sdp_ms1 += std::string(kSdpStringVideo);
1121 sdp_ms1 += std::string(kSdpStringMs1Video0);
1122 AddVideoTrack(kVideoTracks[0], stream);
1123 }
1124 if (number_of_video_tracks > 1) {
1125 sdp_ms1 += kSdpStringMs1Video1;
1126 AddVideoTrack(kVideoTracks[1], stream);
1127 }
1128
kwibergd1fe2812016-04-27 13:47:291129 return std::unique_ptr<SessionDescriptionInterface>(
Steve Antona3a92c22017-12-07 18:27:411130 webrtc::CreateSessionDescription(SdpType::kOffer, sdp_ms1));
deadbeefab9b2d12015-10-14 18:33:111131 }
1132
1133 void AddAudioTrack(const std::string& track_id,
1134 MediaStreamInterface* stream) {
1135 rtc::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
1136 webrtc::AudioTrack::Create(track_id, nullptr));
1137 ASSERT_TRUE(stream->AddTrack(audio_track));
1138 }
1139
1140 void AddVideoTrack(const std::string& track_id,
1141 MediaStreamInterface* stream) {
1142 rtc::scoped_refptr<webrtc::VideoTrackInterface> video_track(
nisseaf510af2016-03-21 15:20:421143 webrtc::VideoTrack::Create(track_id,
perkj773be362017-08-01 06:22:011144 webrtc::FakeVideoTrackSource::Create(),
1145 rtc::Thread::Current()));
deadbeefab9b2d12015-10-14 18:33:111146 ASSERT_TRUE(stream->AddTrack(video_track));
1147 }
1148
Steve Anton36da6ff2018-02-17 00:04:201149 std::unique_ptr<SessionDescriptionInterface> CreateOfferWithOneAudioTrack() {
deadbeef293e9262017-01-11 20:28:301150 CreatePeerConnectionWithoutDtls();
Steve Anton36da6ff2018-02-17 00:04:201151 AddAudioTrack(kAudioTracks[0]);
kwibergfd8be342016-05-15 02:44:111152 std::unique_ptr<SessionDescriptionInterface> offer;
zhihuang8f65cdf2016-05-07 01:40:301153 EXPECT_TRUE(DoCreateOffer(&offer, nullptr));
1154 return offer;
1155 }
1156
Steve Anton36da6ff2018-02-17 00:04:201157 std::unique_ptr<SessionDescriptionInterface> CreateOfferWithOneAudioStream() {
1158 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101159 AddAudioStream(kStreamId1);
Steve Anton36da6ff2018-02-17 00:04:201160 std::unique_ptr<SessionDescriptionInterface> offer;
1161 EXPECT_TRUE(DoCreateOffer(&offer, nullptr));
1162 return offer;
1163 }
1164
1165 std::unique_ptr<SessionDescriptionInterface> CreateAnswerWithOneAudioTrack() {
1166 EXPECT_TRUE(DoSetRemoteDescription(CreateOfferWithOneAudioTrack()));
1167 std::unique_ptr<SessionDescriptionInterface> answer;
1168 EXPECT_TRUE(DoCreateAnswer(&answer, nullptr));
1169 return answer;
1170 }
1171
kwibergfd8be342016-05-15 02:44:111172 std::unique_ptr<SessionDescriptionInterface>
zhihuang8f65cdf2016-05-07 01:40:301173 CreateAnswerWithOneAudioStream() {
Steve Antondb45ca82017-09-12 01:27:341174 EXPECT_TRUE(DoSetRemoteDescription(CreateOfferWithOneAudioStream()));
kwibergfd8be342016-05-15 02:44:111175 std::unique_ptr<SessionDescriptionInterface> answer;
zhihuang8f65cdf2016-05-07 01:40:301176 EXPECT_TRUE(DoCreateAnswer(&answer, nullptr));
1177 return answer;
1178 }
1179
1180 const std::string& GetFirstAudioStreamCname(
1181 const SessionDescriptionInterface* desc) {
zhihuang8f65cdf2016-05-07 01:40:301182 const cricket::AudioContentDescription* audio_desc =
Steve Antonb1c1de12017-12-21 23:14:301183 cricket::GetFirstAudioContentDescription(desc->description());
zhihuang8f65cdf2016-05-07 01:40:301184 return audio_desc->streams()[0].cname;
1185 }
1186
zhihuang1c378ed2017-08-17 21:10:501187 std::unique_ptr<SessionDescriptionInterface> CreateOfferWithOptions(
1188 const RTCOfferAnswerOptions& offer_answer_options) {
1189 RTC_DCHECK(pc_);
1190 rtc::scoped_refptr<MockCreateSessionDescriptionObserver> observer(
1191 new rtc::RefCountedObject<MockCreateSessionDescriptionObserver>());
1192 pc_->CreateOffer(observer, offer_answer_options);
1193 EXPECT_EQ_WAIT(true, observer->called(), kTimeout);
1194 return observer->MoveDescription();
1195 }
1196
1197 void CreateOfferWithOptionsAsRemoteDescription(
1198 std::unique_ptr<SessionDescriptionInterface>* desc,
1199 const RTCOfferAnswerOptions& offer_answer_options) {
1200 *desc = CreateOfferWithOptions(offer_answer_options);
1201 ASSERT_TRUE(desc != nullptr);
1202 std::string sdp;
1203 EXPECT_TRUE((*desc)->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:341204 std::unique_ptr<SessionDescriptionInterface> remote_offer(
Steve Antona3a92c22017-12-07 18:27:411205 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
Steve Antondb45ca82017-09-12 01:27:341206 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_offer)));
zhihuang1c378ed2017-08-17 21:10:501207 EXPECT_EQ(PeerConnectionInterface::kHaveRemoteOffer, observer_.state_);
1208 }
1209
1210 void CreateOfferWithOptionsAsLocalDescription(
1211 std::unique_ptr<SessionDescriptionInterface>* desc,
1212 const RTCOfferAnswerOptions& offer_answer_options) {
1213 *desc = CreateOfferWithOptions(offer_answer_options);
1214 ASSERT_TRUE(desc != nullptr);
1215 std::string sdp;
1216 EXPECT_TRUE((*desc)->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:341217 std::unique_ptr<SessionDescriptionInterface> new_offer(
Steve Antona3a92c22017-12-07 18:27:411218 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
zhihuang1c378ed2017-08-17 21:10:501219
Steve Antondb45ca82017-09-12 01:27:341220 EXPECT_TRUE(DoSetLocalDescription(std::move(new_offer)));
zhihuang1c378ed2017-08-17 21:10:501221 EXPECT_EQ(PeerConnectionInterface::kHaveLocalOffer, observer_.state_);
1222 }
1223
1224 bool HasCNCodecs(const cricket::ContentInfo* content) {
Steve Antonb1c1de12017-12-21 23:14:301225 RTC_DCHECK(content);
1226 RTC_DCHECK(content->media_description());
1227 for (const cricket::AudioCodec& codec :
1228 content->media_description()->as_audio()->codecs()) {
1229 if (codec.name == "CN") {
zhihuang1c378ed2017-08-17 21:10:501230 return true;
Steve Antonb1c1de12017-12-21 23:14:301231 }
zhihuang1c378ed2017-08-17 21:10:501232 }
1233 return false;
1234 }
1235
Steve Anton36da6ff2018-02-17 00:04:201236 const char* GetSdpStringWithStream1() const {
1237 if (sdp_semantics_ == SdpSemantics::kPlanB) {
1238 return kSdpStringWithStream1PlanB;
1239 } else {
1240 return kSdpStringWithStream1UnifiedPlan;
1241 }
1242 }
1243
1244 const char* GetSdpStringWithStream1And2() const {
1245 if (sdp_semantics_ == SdpSemantics::kPlanB) {
1246 return kSdpStringWithStream1And2PlanB;
1247 } else {
1248 return kSdpStringWithStream1And2UnifiedPlan;
1249 }
1250 }
1251
deadbeef9a6f4d42017-05-16 02:43:331252 std::unique_ptr<rtc::VirtualSocketServer> vss_;
1253 rtc::AutoSocketServerThread main_;
deadbeefd7850b22017-08-23 17:59:191254 rtc::scoped_refptr<FakeAudioCaptureModule> fake_audio_capture_module_;
Taylor Brandstetter0c7e9f52015-12-29 22:14:521255 cricket::FakePortAllocator* port_allocator_ = nullptr;
deadbeef8662f942017-01-21 05:20:511256 FakeRTCCertificateGenerator* fake_certificate_generator_ = nullptr;
zhihuang9763d562016-08-05 18:14:501257 rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory_;
1258 rtc::scoped_refptr<PeerConnectionFactoryForTest> pc_factory_for_test_;
1259 rtc::scoped_refptr<PeerConnectionInterface> pc_;
henrike@webrtc.org28e20752013-07-10 00:45:361260 MockPeerConnectionObserver observer_;
deadbeefab9b2d12015-10-14 18:33:111261 rtc::scoped_refptr<StreamCollection> reference_collection_;
Steve Anton36da6ff2018-02-17 00:04:201262 const SdpSemantics sdp_semantics_;
1263};
1264
1265class PeerConnectionInterfaceTest
1266 : public PeerConnectionInterfaceBaseTest,
1267 public ::testing::WithParamInterface<SdpSemantics> {
1268 protected:
1269 PeerConnectionInterfaceTest() : PeerConnectionInterfaceBaseTest(GetParam()) {}
1270};
1271
1272class PeerConnectionInterfaceTestPlanB
1273 : public PeerConnectionInterfaceBaseTest {
1274 protected:
1275 PeerConnectionInterfaceTestPlanB()
1276 : PeerConnectionInterfaceBaseTest(SdpSemantics::kPlanB) {}
henrike@webrtc.org28e20752013-07-10 00:45:361277};
1278
zhihuang8f65cdf2016-05-07 01:40:301279// Generate different CNAMEs when PeerConnections are created.
1280// The CNAMEs are expected to be generated randomly. It is possible
1281// that the test fails, though the possibility is very low.
Steve Anton36da6ff2018-02-17 00:04:201282TEST_P(PeerConnectionInterfaceTest, CnameGenerationInOffer) {
kwibergfd8be342016-05-15 02:44:111283 std::unique_ptr<SessionDescriptionInterface> offer1 =
Steve Anton36da6ff2018-02-17 00:04:201284 CreateOfferWithOneAudioTrack();
kwibergfd8be342016-05-15 02:44:111285 std::unique_ptr<SessionDescriptionInterface> offer2 =
Steve Anton36da6ff2018-02-17 00:04:201286 CreateOfferWithOneAudioTrack();
zhihuang8f65cdf2016-05-07 01:40:301287 EXPECT_NE(GetFirstAudioStreamCname(offer1.get()),
1288 GetFirstAudioStreamCname(offer2.get()));
1289}
1290
Steve Anton36da6ff2018-02-17 00:04:201291TEST_P(PeerConnectionInterfaceTest, CnameGenerationInAnswer) {
kwibergfd8be342016-05-15 02:44:111292 std::unique_ptr<SessionDescriptionInterface> answer1 =
Steve Anton36da6ff2018-02-17 00:04:201293 CreateAnswerWithOneAudioTrack();
kwibergfd8be342016-05-15 02:44:111294 std::unique_ptr<SessionDescriptionInterface> answer2 =
Steve Anton36da6ff2018-02-17 00:04:201295 CreateAnswerWithOneAudioTrack();
zhihuang8f65cdf2016-05-07 01:40:301296 EXPECT_NE(GetFirstAudioStreamCname(answer1.get()),
1297 GetFirstAudioStreamCname(answer2.get()));
1298}
1299
Steve Anton36da6ff2018-02-17 00:04:201300TEST_P(PeerConnectionInterfaceTest,
henrike@webrtc.org28e20752013-07-10 00:45:361301 CreatePeerConnectionWithDifferentConfigurations) {
1302 CreatePeerConnectionWithDifferentConfigurations();
1303}
1304
Steve Anton36da6ff2018-02-17 00:04:201305TEST_P(PeerConnectionInterfaceTest,
Taylor Brandstettera1c30352016-05-13 15:15:111306 CreatePeerConnectionWithDifferentIceTransportsTypes) {
1307 CreatePeerConnectionWithIceTransportsType(PeerConnectionInterface::kNone);
1308 EXPECT_EQ(cricket::CF_NONE, port_allocator_->candidate_filter());
1309 CreatePeerConnectionWithIceTransportsType(PeerConnectionInterface::kRelay);
1310 EXPECT_EQ(cricket::CF_RELAY, port_allocator_->candidate_filter());
1311 CreatePeerConnectionWithIceTransportsType(PeerConnectionInterface::kNoHost);
1312 EXPECT_EQ(cricket::CF_ALL & ~cricket::CF_HOST,
1313 port_allocator_->candidate_filter());
1314 CreatePeerConnectionWithIceTransportsType(PeerConnectionInterface::kAll);
1315 EXPECT_EQ(cricket::CF_ALL, port_allocator_->candidate_filter());
1316}
1317
1318// Test that when a PeerConnection is created with a nonzero candidate pool
1319// size, the pooled PortAllocatorSession is created with all the attributes
1320// in the RTCConfiguration.
Steve Anton36da6ff2018-02-17 00:04:201321TEST_P(PeerConnectionInterfaceTest, CreatePeerConnectionWithPooledCandidates) {
Taylor Brandstettera1c30352016-05-13 15:15:111322 PeerConnectionInterface::RTCConfiguration config;
1323 PeerConnectionInterface::IceServer server;
1324 server.uri = kStunAddressOnly;
1325 config.servers.push_back(server);
1326 config.type = PeerConnectionInterface::kRelay;
1327 config.disable_ipv6 = true;
1328 config.tcp_candidate_policy =
1329 PeerConnectionInterface::kTcpCandidatePolicyDisabled;
honghaiz60347052016-06-01 01:29:121330 config.candidate_network_policy =
1331 PeerConnectionInterface::kCandidateNetworkPolicyLowCost;
Taylor Brandstettera1c30352016-05-13 15:15:111332 config.ice_candidate_pool_size = 1;
Niels Möllerf06f9232018-08-07 10:32:181333 CreatePeerConnection(config);
Taylor Brandstettera1c30352016-05-13 15:15:111334
1335 const cricket::FakePortAllocatorSession* session =
1336 static_cast<const cricket::FakePortAllocatorSession*>(
1337 port_allocator_->GetPooledSession());
1338 ASSERT_NE(nullptr, session);
1339 EXPECT_EQ(1UL, session->stun_servers().size());
1340 EXPECT_EQ(0U, session->flags() & cricket::PORTALLOCATOR_ENABLE_IPV6);
1341 EXPECT_LT(0U, session->flags() & cricket::PORTALLOCATOR_DISABLE_TCP);
honghaiz60347052016-06-01 01:29:121342 EXPECT_LT(0U,
1343 session->flags() & cricket::PORTALLOCATOR_DISABLE_COSTLY_NETWORKS);
Taylor Brandstettera1c30352016-05-13 15:15:111344}
1345
deadbeefd21eab3e2017-07-26 23:50:111346// Test that network-related RTCConfiguration members are applied to the
1347// PortAllocator when CreatePeerConnection is called. Specifically:
1348// - disable_ipv6_on_wifi
1349// - max_ipv6_networks
1350// - tcp_candidate_policy
1351// - candidate_network_policy
1352// - prune_turn_ports
1353//
1354// Note that the candidate filter (RTCConfiguration::type) is already tested
1355// above.
Steve Anton36da6ff2018-02-17 00:04:201356TEST_P(PeerConnectionInterfaceTest,
deadbeefd21eab3e2017-07-26 23:50:111357 CreatePeerConnectionAppliesNetworkConfigToPortAllocator) {
1358 // Create fake port allocator.
1359 std::unique_ptr<cricket::FakePortAllocator> port_allocator(
1360 new cricket::FakePortAllocator(rtc::Thread::Current(), nullptr));
1361 cricket::FakePortAllocator* raw_port_allocator = port_allocator.get();
1362
1363 // Create RTCConfiguration with some network-related fields relevant to
1364 // PortAllocator populated.
1365 PeerConnectionInterface::RTCConfiguration config;
1366 config.disable_ipv6_on_wifi = true;
1367 config.max_ipv6_networks = 10;
1368 config.tcp_candidate_policy =
1369 PeerConnectionInterface::kTcpCandidatePolicyDisabled;
1370 config.candidate_network_policy =
1371 PeerConnectionInterface::kCandidateNetworkPolicyLowCost;
1372 config.prune_turn_ports = true;
1373
1374 // Create the PC factory and PC with the above config.
1375 rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory(
1376 webrtc::CreatePeerConnectionFactory(
1377 rtc::Thread::Current(), rtc::Thread::Current(),
Karl Wiberg1b0eae32017-10-17 12:48:541378 rtc::Thread::Current(), fake_audio_capture_module_,
1379 webrtc::CreateBuiltinAudioEncoderFactory(),
Anders Carlsson67537952018-05-03 09:28:291380 webrtc::CreateBuiltinAudioDecoderFactory(),
1381 webrtc::CreateBuiltinVideoEncoderFactory(),
1382 webrtc::CreateBuiltinVideoDecoderFactory(), nullptr /* audio_mixer */,
1383 nullptr /* audio_processing */));
deadbeefd21eab3e2017-07-26 23:50:111384 rtc::scoped_refptr<PeerConnectionInterface> pc(
Niels Möllerf06f9232018-08-07 10:32:181385 pc_factory->CreatePeerConnection(config, std::move(port_allocator),
1386 nullptr, &observer_));
Yves Gerey4e933292018-10-31 14:36:051387 EXPECT_TRUE(pc.get());
1388 observer_.SetPeerConnectionInterface(pc.get());
deadbeefd21eab3e2017-07-26 23:50:111389
1390 // Now validate that the config fields set above were applied to the
1391 // PortAllocator, as flags or otherwise.
1392 EXPECT_FALSE(raw_port_allocator->flags() &
1393 cricket::PORTALLOCATOR_ENABLE_IPV6_ON_WIFI);
1394 EXPECT_EQ(10, raw_port_allocator->max_ipv6_networks());
1395 EXPECT_TRUE(raw_port_allocator->flags() & cricket::PORTALLOCATOR_DISABLE_TCP);
1396 EXPECT_TRUE(raw_port_allocator->flags() &
1397 cricket::PORTALLOCATOR_DISABLE_COSTLY_NETWORKS);
Honghai Zhangf8998cf2019-10-14 18:27:501398 EXPECT_EQ(webrtc::PRUNE_BASED_ON_PRIORITY,
1399 raw_port_allocator->turn_port_prune_policy());
deadbeefd21eab3e2017-07-26 23:50:111400}
1401
deadbeef46c73892016-11-17 03:42:041402// Check that GetConfiguration returns the configuration the PeerConnection was
1403// constructed with, before SetConfiguration is called.
Steve Anton36da6ff2018-02-17 00:04:201404TEST_P(PeerConnectionInterfaceTest, GetConfigurationAfterCreatePeerConnection) {
deadbeef46c73892016-11-17 03:42:041405 PeerConnectionInterface::RTCConfiguration config;
1406 config.type = PeerConnectionInterface::kRelay;
Niels Möllerf06f9232018-08-07 10:32:181407 CreatePeerConnection(config);
deadbeef46c73892016-11-17 03:42:041408
1409 PeerConnectionInterface::RTCConfiguration returned_config =
1410 pc_->GetConfiguration();
1411 EXPECT_EQ(PeerConnectionInterface::kRelay, returned_config.type);
1412}
1413
1414// Check that GetConfiguration returns the last configuration passed into
1415// SetConfiguration.
Steve Anton36da6ff2018-02-17 00:04:201416TEST_P(PeerConnectionInterfaceTest, GetConfigurationAfterSetConfiguration) {
Piotr (Peter) Slatala37227be2018-11-21 15:42:221417 PeerConnectionInterface::RTCConfiguration starting_config;
1418 starting_config.bundle_policy =
1419 webrtc::PeerConnection::kBundlePolicyMaxBundle;
1420 CreatePeerConnection(starting_config);
deadbeef46c73892016-11-17 03:42:041421
Steve Anton36da6ff2018-02-17 00:04:201422 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
deadbeef46c73892016-11-17 03:42:041423 config.type = PeerConnectionInterface::kRelay;
Piotr (Peter) Slatalaaa1e7c22018-10-16 17:04:451424 config.use_media_transport = true;
Bjorn Mellema9bbd862018-11-02 16:07:481425 config.use_media_transport_for_data_channels = true;
Niels Möller2579f0c2019-08-19 07:58:171426 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeef46c73892016-11-17 03:42:041427
1428 PeerConnectionInterface::RTCConfiguration returned_config =
1429 pc_->GetConfiguration();
1430 EXPECT_EQ(PeerConnectionInterface::kRelay, returned_config.type);
Piotr (Peter) Slatalaaa1e7c22018-10-16 17:04:451431 EXPECT_TRUE(returned_config.use_media_transport);
Bjorn Mellema9bbd862018-11-02 16:07:481432 EXPECT_TRUE(returned_config.use_media_transport_for_data_channels);
deadbeef46c73892016-11-17 03:42:041433}
1434
Steve Antonc79268f2018-04-24 16:54:101435TEST_P(PeerConnectionInterfaceTest, SetConfigurationFailsAfterClose) {
1436 CreatePeerConnection();
1437
1438 pc_->Close();
1439
1440 EXPECT_FALSE(
Niels Möller2579f0c2019-08-19 07:58:171441 pc_->SetConfiguration(PeerConnectionInterface::RTCConfiguration()).ok());
Steve Antonc79268f2018-04-24 16:54:101442}
1443
Steve Anton36da6ff2018-02-17 00:04:201444TEST_F(PeerConnectionInterfaceTestPlanB, AddStreams) {
deadbeef293e9262017-01-11 20:28:301445 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101446 AddVideoStream(kStreamId1);
1447 AddAudioStream(kStreamId2);
henrike@webrtc.org28e20752013-07-10 00:45:361448 ASSERT_EQ(2u, pc_->local_streams()->count());
1449
wu@webrtc.org9dba5252013-08-05 20:36:571450 // Test we can add multiple local streams to one peerconnection.
zhihuang9763d562016-08-05 18:14:501451 rtc::scoped_refptr<MediaStreamInterface> stream(
Seth Hampson845e8782018-03-02 19:34:101452 pc_factory_->CreateLocalMediaStream(kStreamId3));
zhihuang9763d562016-08-05 18:14:501453 rtc::scoped_refptr<AudioTrackInterface> audio_track(
Seth Hampson845e8782018-03-02 19:34:101454 pc_factory_->CreateAudioTrack(kStreamId3,
zhihuang9763d562016-08-05 18:14:501455 static_cast<AudioSourceInterface*>(NULL)));
henrike@webrtc.org28e20752013-07-10 00:45:361456 stream->AddTrack(audio_track.get());
perkj@webrtc.orgc2dd5ee2014-11-04 11:31:291457 EXPECT_TRUE(pc_->AddStream(stream));
wu@webrtc.org9dba5252013-08-05 20:36:571458 EXPECT_EQ(3u, pc_->local_streams()->count());
1459
1460 // Remove the third stream.
1461 pc_->RemoveStream(pc_->local_streams()->at(2));
1462 EXPECT_EQ(2u, pc_->local_streams()->count());
1463
1464 // Remove the second stream.
1465 pc_->RemoveStream(pc_->local_streams()->at(1));
1466 EXPECT_EQ(1u, pc_->local_streams()->count());
1467
1468 // Remove the first stream.
1469 pc_->RemoveStream(pc_->local_streams()->at(0));
1470 EXPECT_EQ(0u, pc_->local_streams()->count());
henrike@webrtc.org28e20752013-07-10 00:45:361471}
1472
deadbeefab9b2d12015-10-14 18:33:111473// Test that the created offer includes streams we added.
Steve Anton36da6ff2018-02-17 00:04:201474// Don't run under Unified Plan since the stream API is not available.
1475TEST_F(PeerConnectionInterfaceTestPlanB, AddedStreamsPresentInOffer) {
deadbeef293e9262017-01-11 20:28:301476 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101477 AddAudioVideoStream(kStreamId1, "audio_track", "video_track");
kwibergd1fe2812016-04-27 13:47:291478 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041479 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefab9b2d12015-10-14 18:33:111480
deadbeefab9b2d12015-10-14 18:33:111481 const cricket::AudioContentDescription* audio_desc =
Steve Antonb1c1de12017-12-21 23:14:301482 cricket::GetFirstAudioContentDescription(offer->description());
Seth Hampson845e8782018-03-02 19:34:101483 EXPECT_TRUE(ContainsTrack(audio_desc->streams(), kStreamId1, "audio_track"));
deadbeefab9b2d12015-10-14 18:33:111484
deadbeefab9b2d12015-10-14 18:33:111485 const cricket::VideoContentDescription* video_desc =
Steve Antonb1c1de12017-12-21 23:14:301486 cricket::GetFirstVideoContentDescription(offer->description());
Seth Hampson845e8782018-03-02 19:34:101487 EXPECT_TRUE(ContainsTrack(video_desc->streams(), kStreamId1, "video_track"));
deadbeefab9b2d12015-10-14 18:33:111488
1489 // Add another stream and ensure the offer includes both the old and new
1490 // streams.
Seth Hampson845e8782018-03-02 19:34:101491 AddAudioVideoStream(kStreamId2, "audio_track2", "video_track2");
kwiberg2bbff992016-03-16 18:03:041492 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefab9b2d12015-10-14 18:33:111493
Steve Antonb1c1de12017-12-21 23:14:301494 audio_desc = cricket::GetFirstAudioContentDescription(offer->description());
Seth Hampson845e8782018-03-02 19:34:101495 EXPECT_TRUE(ContainsTrack(audio_desc->streams(), kStreamId1, "audio_track"));
1496 EXPECT_TRUE(ContainsTrack(audio_desc->streams(), kStreamId2, "audio_track2"));
deadbeefab9b2d12015-10-14 18:33:111497
Steve Antonb1c1de12017-12-21 23:14:301498 video_desc = cricket::GetFirstVideoContentDescription(offer->description());
Seth Hampson845e8782018-03-02 19:34:101499 EXPECT_TRUE(ContainsTrack(video_desc->streams(), kStreamId1, "video_track"));
1500 EXPECT_TRUE(ContainsTrack(video_desc->streams(), kStreamId2, "video_track2"));
deadbeefab9b2d12015-10-14 18:33:111501}
1502
Steve Anton36da6ff2018-02-17 00:04:201503// Don't run under Unified Plan since the stream API is not available.
1504TEST_F(PeerConnectionInterfaceTestPlanB, RemoveStream) {
deadbeef293e9262017-01-11 20:28:301505 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101506 AddVideoStream(kStreamId1);
henrike@webrtc.org28e20752013-07-10 00:45:361507 ASSERT_EQ(1u, pc_->local_streams()->count());
1508 pc_->RemoveStream(pc_->local_streams()->at(0));
1509 EXPECT_EQ(0u, pc_->local_streams()->count());
1510}
1511
deadbeefe1f9d832016-01-14 23:35:421512// Test for AddTrack and RemoveTrack methods.
1513// Tests that the created offer includes tracks we added,
1514// and that the RtpSenders are created correctly.
1515// Also tests that RemoveTrack removes the tracks from subsequent offers.
Steve Anton36da6ff2018-02-17 00:04:201516// Only tested with Plan B since Unified Plan is covered in more detail by tests
1517// in peerconnection_jsep_unittests.cc
1518TEST_F(PeerConnectionInterfaceTestPlanB, AddTrackRemoveTrack) {
deadbeef293e9262017-01-11 20:28:301519 CreatePeerConnectionWithoutDtls();
zhihuang9763d562016-08-05 18:14:501520 rtc::scoped_refptr<AudioTrackInterface> audio_track(
Niels Möller215ba602019-01-18 12:59:451521 CreateAudioTrack("audio_track"));
zhihuang9763d562016-08-05 18:14:501522 rtc::scoped_refptr<VideoTrackInterface> video_track(
Niels Möller215ba602019-01-18 12:59:451523 CreateVideoTrack("video_track"));
Seth Hampson845e8782018-03-02 19:34:101524 auto audio_sender = pc_->AddTrack(audio_track, {kStreamId1}).MoveValue();
1525 auto video_sender = pc_->AddTrack(video_track, {kStreamId1}).MoveValue();
deadbeefa601f5c2016-06-06 21:27:391526 EXPECT_EQ(1UL, audio_sender->stream_ids().size());
Seth Hampson845e8782018-03-02 19:34:101527 EXPECT_EQ(kStreamId1, audio_sender->stream_ids()[0]);
deadbeefe1f9d832016-01-14 23:35:421528 EXPECT_EQ("audio_track", audio_sender->id());
1529 EXPECT_EQ(audio_track, audio_sender->track());
deadbeefa601f5c2016-06-06 21:27:391530 EXPECT_EQ(1UL, video_sender->stream_ids().size());
Seth Hampson845e8782018-03-02 19:34:101531 EXPECT_EQ(kStreamId1, video_sender->stream_ids()[0]);
deadbeefe1f9d832016-01-14 23:35:421532 EXPECT_EQ("video_track", video_sender->id());
1533 EXPECT_EQ(video_track, video_sender->track());
1534
1535 // Now create an offer and check for the senders.
kwibergd1fe2812016-04-27 13:47:291536 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041537 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefe1f9d832016-01-14 23:35:421538
1539 const cricket::ContentInfo* audio_content =
1540 cricket::GetFirstAudioContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:301541 EXPECT_TRUE(ContainsTrack(audio_content->media_description()->streams(),
Seth Hampson845e8782018-03-02 19:34:101542 kStreamId1, "audio_track"));
deadbeefe1f9d832016-01-14 23:35:421543
1544 const cricket::ContentInfo* video_content =
1545 cricket::GetFirstVideoContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:301546 EXPECT_TRUE(ContainsTrack(video_content->media_description()->streams(),
Seth Hampson845e8782018-03-02 19:34:101547 kStreamId1, "video_track"));
deadbeefe1f9d832016-01-14 23:35:421548
Steve Antondb45ca82017-09-12 01:27:341549 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefe1f9d832016-01-14 23:35:421550
1551 // Now try removing the tracks.
1552 EXPECT_TRUE(pc_->RemoveTrack(audio_sender));
1553 EXPECT_TRUE(pc_->RemoveTrack(video_sender));
1554
1555 // Create a new offer and ensure it doesn't contain the removed senders.
kwiberg2bbff992016-03-16 18:03:041556 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefe1f9d832016-01-14 23:35:421557
1558 audio_content = cricket::GetFirstAudioContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:301559 EXPECT_FALSE(ContainsTrack(audio_content->media_description()->streams(),
Seth Hampson845e8782018-03-02 19:34:101560 kStreamId1, "audio_track"));
deadbeefe1f9d832016-01-14 23:35:421561
1562 video_content = cricket::GetFirstVideoContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:301563 EXPECT_FALSE(ContainsTrack(video_content->media_description()->streams(),
Seth Hampson845e8782018-03-02 19:34:101564 kStreamId1, "video_track"));
deadbeefe1f9d832016-01-14 23:35:421565
Steve Antondb45ca82017-09-12 01:27:341566 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefe1f9d832016-01-14 23:35:421567
1568 // Calling RemoveTrack on a sender no longer attached to a PeerConnection
1569 // should return false.
1570 EXPECT_FALSE(pc_->RemoveTrack(audio_sender));
1571 EXPECT_FALSE(pc_->RemoveTrack(video_sender));
1572}
1573
1574// Test creating senders without a stream specified,
1575// expecting a random stream ID to be generated.
Steve Anton36da6ff2018-02-17 00:04:201576TEST_P(PeerConnectionInterfaceTest, AddTrackWithoutStream) {
deadbeef293e9262017-01-11 20:28:301577 CreatePeerConnectionWithoutDtls();
zhihuang9763d562016-08-05 18:14:501578 rtc::scoped_refptr<AudioTrackInterface> audio_track(
Niels Möller215ba602019-01-18 12:59:451579 CreateAudioTrack("audio_track"));
zhihuang9763d562016-08-05 18:14:501580 rtc::scoped_refptr<VideoTrackInterface> video_track(
Niels Möller215ba602019-01-18 12:59:451581 CreateVideoTrack("video_track"));
deadbeefe1f9d832016-01-14 23:35:421582 auto audio_sender =
Steve Anton2d6c76a2018-01-06 01:10:521583 pc_->AddTrack(audio_track, std::vector<std::string>()).MoveValue();
deadbeefe1f9d832016-01-14 23:35:421584 auto video_sender =
Steve Anton2d6c76a2018-01-06 01:10:521585 pc_->AddTrack(video_track, std::vector<std::string>()).MoveValue();
deadbeefe1f9d832016-01-14 23:35:421586 EXPECT_EQ("audio_track", audio_sender->id());
1587 EXPECT_EQ(audio_track, audio_sender->track());
1588 EXPECT_EQ("video_track", video_sender->id());
1589 EXPECT_EQ(video_track, video_sender->track());
Seth Hampson5b4f0752018-04-02 23:31:361590 if (sdp_semantics_ == SdpSemantics::kPlanB) {
1591 // If the ID is truly a random GUID, it should be infinitely unlikely they
1592 // will be the same.
1593 EXPECT_NE(video_sender->stream_ids(), audio_sender->stream_ids());
1594 } else {
1595 // We allows creating tracks without stream ids under Unified Plan
1596 // semantics.
1597 EXPECT_EQ(0u, video_sender->stream_ids().size());
1598 EXPECT_EQ(0u, audio_sender->stream_ids().size());
1599 }
deadbeefe1f9d832016-01-14 23:35:421600}
1601
Harald Alvestrand89061872018-01-02 13:08:341602// Test that we can call GetStats() after AddTrack but before connecting
1603// the PeerConnection to a peer.
Steve Anton36da6ff2018-02-17 00:04:201604TEST_P(PeerConnectionInterfaceTest, AddTrackBeforeConnecting) {
Harald Alvestrand89061872018-01-02 13:08:341605 CreatePeerConnectionWithoutDtls();
1606 rtc::scoped_refptr<AudioTrackInterface> audio_track(
Niels Möller215ba602019-01-18 12:59:451607 CreateAudioTrack("audio_track"));
Harald Alvestrand89061872018-01-02 13:08:341608 rtc::scoped_refptr<VideoTrackInterface> video_track(
Niels Möller215ba602019-01-18 12:59:451609 CreateVideoTrack("video_track"));
Steve Anton2d6c76a2018-01-06 01:10:521610 auto audio_sender = pc_->AddTrack(audio_track, std::vector<std::string>());
1611 auto video_sender = pc_->AddTrack(video_track, std::vector<std::string>());
Harald Alvestrand89061872018-01-02 13:08:341612 EXPECT_TRUE(DoGetStats(nullptr));
1613}
1614
Steve Anton36da6ff2018-02-17 00:04:201615TEST_P(PeerConnectionInterfaceTest, AttachmentIdIsSetOnAddTrack) {
Harald Alvestrandc72af932018-01-11 16:18:191616 CreatePeerConnectionWithoutDtls();
1617 rtc::scoped_refptr<AudioTrackInterface> audio_track(
Niels Möller215ba602019-01-18 12:59:451618 CreateAudioTrack("audio_track"));
Harald Alvestrandc72af932018-01-11 16:18:191619 rtc::scoped_refptr<VideoTrackInterface> video_track(
Niels Möller215ba602019-01-18 12:59:451620 CreateVideoTrack("video_track"));
Harald Alvestrandc72af932018-01-11 16:18:191621 auto audio_sender = pc_->AddTrack(audio_track, std::vector<std::string>());
Steve Anton57858b32018-02-15 23:19:501622 ASSERT_TRUE(audio_sender.ok());
1623 auto* audio_sender_proxy =
1624 static_cast<RtpSenderProxyWithInternal<RtpSenderInternal>*>(
1625 audio_sender.value().get());
1626 EXPECT_NE(0, audio_sender_proxy->internal()->AttachmentId());
1627
Harald Alvestrandc72af932018-01-11 16:18:191628 auto video_sender = pc_->AddTrack(video_track, std::vector<std::string>());
Steve Anton57858b32018-02-15 23:19:501629 ASSERT_TRUE(video_sender.ok());
1630 auto* video_sender_proxy =
1631 static_cast<RtpSenderProxyWithInternal<RtpSenderInternal>*>(
1632 video_sender.value().get());
1633 EXPECT_NE(0, video_sender_proxy->internal()->AttachmentId());
Harald Alvestrandc72af932018-01-11 16:18:191634}
1635
Steve Anton36da6ff2018-02-17 00:04:201636// Don't run under Unified Plan since the stream API is not available.
1637TEST_F(PeerConnectionInterfaceTestPlanB, AttachmentIdIsSetOnAddStream) {
Harald Alvestrandc72af932018-01-11 16:18:191638 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101639 AddVideoStream(kStreamId1);
Harald Alvestrandc72af932018-01-11 16:18:191640 auto senders = pc_->GetSenders();
Steve Anton57858b32018-02-15 23:19:501641 ASSERT_EQ(1u, senders.size());
1642 auto* sender_proxy =
1643 static_cast<RtpSenderProxyWithInternal<RtpSenderInternal>*>(
1644 senders[0].get());
1645 EXPECT_NE(0, sender_proxy->internal()->AttachmentId());
Harald Alvestrandc72af932018-01-11 16:18:191646}
1647
Steve Anton36da6ff2018-02-17 00:04:201648TEST_P(PeerConnectionInterfaceTest, CreateOfferReceiveAnswer) {
henrike@webrtc.org28e20752013-07-10 00:45:361649 InitiateCall();
Seth Hampson845e8782018-03-02 19:34:101650 WaitAndVerifyOnAddStream(kStreamId1, 2);
henrike@webrtc.org28e20752013-07-10 00:45:361651 VerifyRemoteRtpHeaderExtensions();
1652}
1653
Steve Anton36da6ff2018-02-17 00:04:201654TEST_P(PeerConnectionInterfaceTest, CreateOfferReceivePrAnswerAndAnswer) {
deadbeef293e9262017-01-11 20:28:301655 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101656 AddVideoTrack(kVideoTracks[0], {kStreamId1});
henrike@webrtc.org28e20752013-07-10 00:45:361657 CreateOfferAsLocalDescription();
1658 std::string offer;
1659 EXPECT_TRUE(pc_->local_description()->ToString(&offer));
1660 CreatePrAnswerAndAnswerAsRemoteDescription(offer);
Seth Hampson845e8782018-03-02 19:34:101661 WaitAndVerifyOnAddStream(kStreamId1, 1);
henrike@webrtc.org28e20752013-07-10 00:45:361662}
1663
Steve Anton36da6ff2018-02-17 00:04:201664TEST_P(PeerConnectionInterfaceTest, ReceiveOfferCreateAnswer) {
deadbeef293e9262017-01-11 20:28:301665 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101666 AddVideoTrack(kVideoTracks[0], {kStreamId1});
henrike@webrtc.org28e20752013-07-10 00:45:361667
1668 CreateOfferAsRemoteDescription();
1669 CreateAnswerAsLocalDescription();
1670
Seth Hampson845e8782018-03-02 19:34:101671 WaitAndVerifyOnAddStream(kStreamId1, 1);
henrike@webrtc.org28e20752013-07-10 00:45:361672}
1673
Steve Anton36da6ff2018-02-17 00:04:201674TEST_P(PeerConnectionInterfaceTest, ReceiveOfferCreatePrAnswerAndAnswer) {
deadbeef293e9262017-01-11 20:28:301675 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101676 AddVideoTrack(kVideoTracks[0], {kStreamId1});
henrike@webrtc.org28e20752013-07-10 00:45:361677
1678 CreateOfferAsRemoteDescription();
1679 CreatePrAnswerAsLocalDescription();
1680 CreateAnswerAsLocalDescription();
1681
Seth Hampson845e8782018-03-02 19:34:101682 WaitAndVerifyOnAddStream(kStreamId1, 1);
henrike@webrtc.org28e20752013-07-10 00:45:361683}
1684
Steve Anton36da6ff2018-02-17 00:04:201685// Don't run under Unified Plan since the stream API is not available.
1686TEST_F(PeerConnectionInterfaceTestPlanB, Renegotiate) {
henrike@webrtc.org28e20752013-07-10 00:45:361687 InitiateCall();
1688 ASSERT_EQ(1u, pc_->remote_streams()->count());
1689 pc_->RemoveStream(pc_->local_streams()->at(0));
1690 CreateOfferReceiveAnswer();
1691 EXPECT_EQ(0u, pc_->remote_streams()->count());
Seth Hampson845e8782018-03-02 19:34:101692 AddVideoStream(kStreamId1);
henrike@webrtc.org28e20752013-07-10 00:45:361693 CreateOfferReceiveAnswer();
1694}
1695
1696// Tests that after negotiating an audio only call, the respondent can perform a
1697// renegotiation that removes the audio stream.
Steve Anton36da6ff2018-02-17 00:04:201698TEST_F(PeerConnectionInterfaceTestPlanB, RenegotiateAudioOnly) {
deadbeef293e9262017-01-11 20:28:301699 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101700 AddAudioStream(kStreamId1);
henrike@webrtc.org28e20752013-07-10 00:45:361701 CreateOfferAsRemoteDescription();
1702 CreateAnswerAsLocalDescription();
1703
1704 ASSERT_EQ(1u, pc_->remote_streams()->count());
1705 pc_->RemoveStream(pc_->local_streams()->at(0));
1706 CreateOfferReceiveAnswer();
1707 EXPECT_EQ(0u, pc_->remote_streams()->count());
1708}
1709
1710// Test that candidates are generated and that we can parse our own candidates.
Steve Anton36da6ff2018-02-17 00:04:201711TEST_P(PeerConnectionInterfaceTest, IceCandidates) {
deadbeef293e9262017-01-11 20:28:301712 CreatePeerConnectionWithoutDtls();
henrike@webrtc.org28e20752013-07-10 00:45:361713
Steve Antonf1c6db12017-10-13 18:13:351714 EXPECT_FALSE(pc_->AddIceCandidate(observer_.last_candidate()));
henrike@webrtc.org28e20752013-07-10 00:45:361715 // SetRemoteDescription takes ownership of offer.
kwibergd1fe2812016-04-27 13:47:291716 std::unique_ptr<SessionDescriptionInterface> offer;
Steve Anton36da6ff2018-02-17 00:04:201717 AddVideoTrack(kVideoTracks[0]);
deadbeefc80741f2015-10-22 20:14:451718 EXPECT_TRUE(DoCreateOffer(&offer, nullptr));
Steve Antondb45ca82017-09-12 01:27:341719 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
henrike@webrtc.org28e20752013-07-10 00:45:361720
1721 // SetLocalDescription takes ownership of answer.
kwibergd1fe2812016-04-27 13:47:291722 std::unique_ptr<SessionDescriptionInterface> answer;
deadbeefc80741f2015-10-22 20:14:451723 EXPECT_TRUE(DoCreateAnswer(&answer, nullptr));
Steve Antondb45ca82017-09-12 01:27:341724 EXPECT_TRUE(DoSetLocalDescription(std::move(answer)));
henrike@webrtc.org28e20752013-07-10 00:45:361725
Steve Antonf1c6db12017-10-13 18:13:351726 EXPECT_TRUE_WAIT(observer_.last_candidate() != nullptr, kTimeout);
Steve Anton6f25b092017-10-23 16:39:201727 EXPECT_TRUE_WAIT(observer_.ice_gathering_complete_, kTimeout);
henrike@webrtc.org28e20752013-07-10 00:45:361728
Steve Antonf1c6db12017-10-13 18:13:351729 EXPECT_TRUE(pc_->AddIceCandidate(observer_.last_candidate()));
henrike@webrtc.org28e20752013-07-10 00:45:361730}
1731
deadbeefab9b2d12015-10-14 18:33:111732// Test that CreateOffer and CreateAnswer will fail if the track labels are
henrike@webrtc.org28e20752013-07-10 00:45:361733// not unique.
Steve Anton07563732018-06-26 18:13:501734TEST_F(PeerConnectionInterfaceTestPlanB, CreateOfferAnswerWithInvalidStream) {
deadbeef293e9262017-01-11 20:28:301735 CreatePeerConnectionWithoutDtls();
henrike@webrtc.org28e20752013-07-10 00:45:361736 // Create a regular offer for the CreateAnswer test later.
kwibergd1fe2812016-04-27 13:47:291737 std::unique_ptr<SessionDescriptionInterface> offer;
deadbeefc80741f2015-10-22 20:14:451738 EXPECT_TRUE(DoCreateOffer(&offer, nullptr));
kwiberg2bbff992016-03-16 18:03:041739 EXPECT_TRUE(offer);
1740 offer.reset();
henrike@webrtc.org28e20752013-07-10 00:45:361741
1742 // Create a local stream with audio&video tracks having same label.
Seth Hampson845e8782018-03-02 19:34:101743 AddAudioTrack("track_label", {kStreamId1});
1744 AddVideoTrack("track_label", {kStreamId1});
henrike@webrtc.org28e20752013-07-10 00:45:361745
1746 // Test CreateOffer
deadbeefc80741f2015-10-22 20:14:451747 EXPECT_FALSE(DoCreateOffer(&offer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:361748
1749 // Test CreateAnswer
kwibergd1fe2812016-04-27 13:47:291750 std::unique_ptr<SessionDescriptionInterface> answer;
deadbeefc80741f2015-10-22 20:14:451751 EXPECT_FALSE(DoCreateAnswer(&answer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:361752}
1753
1754// Test that we will get different SSRCs for each tracks in the offer and answer
1755// we created.
Steve Anton36da6ff2018-02-17 00:04:201756TEST_P(PeerConnectionInterfaceTest, SsrcInOfferAnswer) {
deadbeef293e9262017-01-11 20:28:301757 CreatePeerConnectionWithoutDtls();
henrike@webrtc.org28e20752013-07-10 00:45:361758 // Create a local stream with audio&video tracks having different labels.
Seth Hampson845e8782018-03-02 19:34:101759 AddAudioTrack(kAudioTracks[0], {kStreamId1});
1760 AddVideoTrack(kVideoTracks[0], {kStreamId1});
henrike@webrtc.org28e20752013-07-10 00:45:361761
1762 // Test CreateOffer
kwibergd1fe2812016-04-27 13:47:291763 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041764 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:361765 int audio_ssrc = 0;
1766 int video_ssrc = 0;
Yves Gerey665174f2018-06-19 13:03:051767 EXPECT_TRUE(
1768 GetFirstSsrc(GetFirstAudioContent(offer->description()), &audio_ssrc));
1769 EXPECT_TRUE(
1770 GetFirstSsrc(GetFirstVideoContent(offer->description()), &video_ssrc));
henrike@webrtc.org28e20752013-07-10 00:45:361771 EXPECT_NE(audio_ssrc, video_ssrc);
1772
1773 // Test CreateAnswer
Steve Antondb45ca82017-09-12 01:27:341774 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
kwibergd1fe2812016-04-27 13:47:291775 std::unique_ptr<SessionDescriptionInterface> answer;
kwiberg2bbff992016-03-16 18:03:041776 ASSERT_TRUE(DoCreateAnswer(&answer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:361777 audio_ssrc = 0;
1778 video_ssrc = 0;
Yves Gerey665174f2018-06-19 13:03:051779 EXPECT_TRUE(
1780 GetFirstSsrc(GetFirstAudioContent(answer->description()), &audio_ssrc));
1781 EXPECT_TRUE(
1782 GetFirstSsrc(GetFirstVideoContent(answer->description()), &video_ssrc));
henrike@webrtc.org28e20752013-07-10 00:45:361783 EXPECT_NE(audio_ssrc, video_ssrc);
1784}
1785
deadbeefeb459812015-12-16 03:24:431786// Test that it's possible to call AddTrack on a MediaStream after adding
1787// the stream to a PeerConnection.
1788// TODO(deadbeef): Remove this test once this behavior is no longer supported.
Steve Anton36da6ff2018-02-17 00:04:201789// Don't run under Unified Plan since the stream API is not available.
1790TEST_F(PeerConnectionInterfaceTestPlanB, AddTrackAfterAddStream) {
deadbeef293e9262017-01-11 20:28:301791 CreatePeerConnectionWithoutDtls();
deadbeefeb459812015-12-16 03:24:431792 // Create audio stream and add to PeerConnection.
Seth Hampson845e8782018-03-02 19:34:101793 AddAudioStream(kStreamId1);
deadbeefeb459812015-12-16 03:24:431794 MediaStreamInterface* stream = pc_->local_streams()->at(0);
1795
1796 // Add video track to the audio-only stream.
zhihuang9763d562016-08-05 18:14:501797 rtc::scoped_refptr<VideoTrackInterface> video_track(
Niels Möller215ba602019-01-18 12:59:451798 CreateVideoTrack("video_label"));
deadbeefeb459812015-12-16 03:24:431799 stream->AddTrack(video_track.get());
1800
kwibergd1fe2812016-04-27 13:47:291801 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041802 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefeb459812015-12-16 03:24:431803
1804 const cricket::MediaContentDescription* video_desc =
1805 cricket::GetFirstVideoContentDescription(offer->description());
1806 EXPECT_TRUE(video_desc != nullptr);
1807}
1808
1809// Test that it's possible to call RemoveTrack on a MediaStream after adding
1810// the stream to a PeerConnection.
1811// TODO(deadbeef): Remove this test once this behavior is no longer supported.
Steve Anton36da6ff2018-02-17 00:04:201812// Don't run under Unified Plan since the stream API is not available.
1813TEST_F(PeerConnectionInterfaceTestPlanB, RemoveTrackAfterAddStream) {
deadbeef293e9262017-01-11 20:28:301814 CreatePeerConnectionWithoutDtls();
deadbeefeb459812015-12-16 03:24:431815 // Create audio/video stream and add to PeerConnection.
Seth Hampson845e8782018-03-02 19:34:101816 AddAudioVideoStream(kStreamId1, "audio_label", "video_label");
deadbeefeb459812015-12-16 03:24:431817 MediaStreamInterface* stream = pc_->local_streams()->at(0);
1818
1819 // Remove the video track.
1820 stream->RemoveTrack(stream->GetVideoTracks()[0]);
1821
kwibergd1fe2812016-04-27 13:47:291822 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041823 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefeb459812015-12-16 03:24:431824
1825 const cricket::MediaContentDescription* video_desc =
1826 cricket::GetFirstVideoContentDescription(offer->description());
1827 EXPECT_TRUE(video_desc == nullptr);
1828}
1829
deadbeefbd7d8f72015-12-19 00:58:441830// Test creating a sender with a stream ID, and ensure the ID is populated
1831// in the offer.
Steve Anton36da6ff2018-02-17 00:04:201832// Don't run under Unified Plan since the stream API is not available.
1833TEST_F(PeerConnectionInterfaceTestPlanB, CreateSenderWithStream) {
deadbeef293e9262017-01-11 20:28:301834 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:101835 pc_->CreateSender("video", kStreamId1);
deadbeefbd7d8f72015-12-19 00:58:441836
kwibergd1fe2812016-04-27 13:47:291837 std::unique_ptr<SessionDescriptionInterface> offer;
kwiberg2bbff992016-03-16 18:03:041838 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
deadbeefbd7d8f72015-12-19 00:58:441839
1840 const cricket::MediaContentDescription* video_desc =
1841 cricket::GetFirstVideoContentDescription(offer->description());
1842 ASSERT_TRUE(video_desc != nullptr);
1843 ASSERT_EQ(1u, video_desc->streams().size());
Seth Hampson845e8782018-03-02 19:34:101844 EXPECT_EQ(kStreamId1, video_desc->streams()[0].first_stream_id());
deadbeefbd7d8f72015-12-19 00:58:441845}
1846
henrike@webrtc.org28e20752013-07-10 00:45:361847// Test that we can specify a certain track that we want statistics about.
Steve Anton36da6ff2018-02-17 00:04:201848TEST_P(PeerConnectionInterfaceTest, GetStatsForSpecificTrack) {
henrike@webrtc.org28e20752013-07-10 00:45:361849 InitiateCall();
Steve Anton36da6ff2018-02-17 00:04:201850 ASSERT_LT(0u, pc_->GetSenders().size());
1851 ASSERT_LT(0u, pc_->GetReceivers().size());
zhihuang9763d562016-08-05 18:14:501852 rtc::scoped_refptr<MediaStreamTrackInterface> remote_audio =
Steve Anton36da6ff2018-02-17 00:04:201853 pc_->GetReceivers()[0]->track();
henrike@webrtc.org28e20752013-07-10 00:45:361854 EXPECT_TRUE(DoGetStats(remote_audio));
1855
1856 // Remove the stream. Since we are sending to our selves the local
1857 // and the remote stream is the same.
Steve Anton36da6ff2018-02-17 00:04:201858 pc_->RemoveTrack(pc_->GetSenders()[0]);
henrike@webrtc.org28e20752013-07-10 00:45:361859 // Do a re-negotiation.
1860 CreateOfferReceiveAnswer();
1861
henrike@webrtc.org28e20752013-07-10 00:45:361862 // Test that we still can get statistics for the old track. Even if it is not
1863 // sent any longer.
1864 EXPECT_TRUE(DoGetStats(remote_audio));
1865}
1866
1867// Test that we can get stats on a video track.
Steve Anton36da6ff2018-02-17 00:04:201868TEST_P(PeerConnectionInterfaceTest, GetStatsForVideoTrack) {
henrike@webrtc.org28e20752013-07-10 00:45:361869 InitiateCall();
Steve Anton36da6ff2018-02-17 00:04:201870 auto video_receiver = GetFirstReceiverOfType(cricket::MEDIA_TYPE_VIDEO);
1871 ASSERT_TRUE(video_receiver);
1872 EXPECT_TRUE(DoGetStats(video_receiver->track()));
henrike@webrtc.org28e20752013-07-10 00:45:361873}
1874
1875// Test that we don't get statistics for an invalid track.
Steve Anton36da6ff2018-02-17 00:04:201876TEST_P(PeerConnectionInterfaceTest, GetStatsForInvalidTrack) {
henrike@webrtc.org28e20752013-07-10 00:45:361877 InitiateCall();
zhihuang9763d562016-08-05 18:14:501878 rtc::scoped_refptr<AudioTrackInterface> unknown_audio_track(
henrike@webrtc.org28e20752013-07-10 00:45:361879 pc_factory_->CreateAudioTrack("unknown track", NULL));
1880 EXPECT_FALSE(DoGetStats(unknown_audio_track));
1881}
1882
Steve Anton36da6ff2018-02-17 00:04:201883TEST_P(PeerConnectionInterfaceTest, GetRTCStatsBeforeAndAfterCalling) {
Harald Alvestrand89061872018-01-02 13:08:341884 CreatePeerConnectionWithoutDtls();
1885 EXPECT_TRUE(DoGetRTCStats());
1886 // Clearing stats cache is needed now, but should be temporary.
1887 // https://bugs.chromium.org/p/webrtc/issues/detail?id=8693
1888 pc_->ClearStatsCache();
Seth Hampson845e8782018-03-02 19:34:101889 AddAudioTrack(kAudioTracks[0], {kStreamId1});
1890 AddVideoTrack(kVideoTracks[0], {kStreamId1});
Harald Alvestrand89061872018-01-02 13:08:341891 EXPECT_TRUE(DoGetRTCStats());
1892 pc_->ClearStatsCache();
1893 CreateOfferReceiveAnswer();
1894 EXPECT_TRUE(DoGetRTCStats());
1895}
1896
henrike@webrtc.org28e20752013-07-10 00:45:361897// This test setup two RTP data channels in loop back.
Steve Anton36da6ff2018-02-17 00:04:201898TEST_P(PeerConnectionInterfaceTest, TestDataChannel) {
Niels Möllerf06f9232018-08-07 10:32:181899 RTCConfiguration config;
1900 config.enable_rtp_data_channel = true;
1901 config.enable_dtls_srtp = false;
1902 CreatePeerConnection(config);
zhihuang9763d562016-08-05 18:14:501903 rtc::scoped_refptr<DataChannelInterface> data1 =
henrike@webrtc.org28e20752013-07-10 00:45:361904 pc_->CreateDataChannel("test1", NULL);
zhihuang9763d562016-08-05 18:14:501905 rtc::scoped_refptr<DataChannelInterface> data2 =
henrike@webrtc.org28e20752013-07-10 00:45:361906 pc_->CreateDataChannel("test2", NULL);
1907 ASSERT_TRUE(data1 != NULL);
kwibergd1fe2812016-04-27 13:47:291908 std::unique_ptr<MockDataChannelObserver> observer1(
henrike@webrtc.org28e20752013-07-10 00:45:361909 new MockDataChannelObserver(data1));
kwibergd1fe2812016-04-27 13:47:291910 std::unique_ptr<MockDataChannelObserver> observer2(
henrike@webrtc.org28e20752013-07-10 00:45:361911 new MockDataChannelObserver(data2));
1912
1913 EXPECT_EQ(DataChannelInterface::kConnecting, data1->state());
1914 EXPECT_EQ(DataChannelInterface::kConnecting, data2->state());
1915 std::string data_to_send1 = "testing testing";
1916 std::string data_to_send2 = "testing something else";
1917 EXPECT_FALSE(data1->Send(DataBuffer(data_to_send1)));
1918
1919 CreateOfferReceiveAnswer();
1920 EXPECT_TRUE_WAIT(observer1->IsOpen(), kTimeout);
1921 EXPECT_TRUE_WAIT(observer2->IsOpen(), kTimeout);
1922
1923 EXPECT_EQ(DataChannelInterface::kOpen, data1->state());
1924 EXPECT_EQ(DataChannelInterface::kOpen, data2->state());
1925 EXPECT_TRUE(data1->Send(DataBuffer(data_to_send1)));
1926 EXPECT_TRUE(data2->Send(DataBuffer(data_to_send2)));
1927
1928 EXPECT_EQ_WAIT(data_to_send1, observer1->last_message(), kTimeout);
1929 EXPECT_EQ_WAIT(data_to_send2, observer2->last_message(), kTimeout);
1930
1931 data1->Close();
1932 EXPECT_EQ(DataChannelInterface::kClosing, data1->state());
1933 CreateOfferReceiveAnswer();
1934 EXPECT_FALSE(observer1->IsOpen());
1935 EXPECT_EQ(DataChannelInterface::kClosed, data1->state());
1936 EXPECT_TRUE(observer2->IsOpen());
1937
1938 data_to_send2 = "testing something else again";
1939 EXPECT_TRUE(data2->Send(DataBuffer(data_to_send2)));
1940
1941 EXPECT_EQ_WAIT(data_to_send2, observer2->last_message(), kTimeout);
1942}
1943
1944// This test verifies that sendnig binary data over RTP data channels should
1945// fail.
Steve Anton36da6ff2018-02-17 00:04:201946TEST_P(PeerConnectionInterfaceTest, TestSendBinaryOnRtpDataChannel) {
Niels Möllerf06f9232018-08-07 10:32:181947 RTCConfiguration config;
1948 config.enable_rtp_data_channel = true;
1949 config.enable_dtls_srtp = false;
1950 CreatePeerConnection(config);
zhihuang9763d562016-08-05 18:14:501951 rtc::scoped_refptr<DataChannelInterface> data1 =
henrike@webrtc.org28e20752013-07-10 00:45:361952 pc_->CreateDataChannel("test1", NULL);
zhihuang9763d562016-08-05 18:14:501953 rtc::scoped_refptr<DataChannelInterface> data2 =
henrike@webrtc.org28e20752013-07-10 00:45:361954 pc_->CreateDataChannel("test2", NULL);
1955 ASSERT_TRUE(data1 != NULL);
kwibergd1fe2812016-04-27 13:47:291956 std::unique_ptr<MockDataChannelObserver> observer1(
henrike@webrtc.org28e20752013-07-10 00:45:361957 new MockDataChannelObserver(data1));
kwibergd1fe2812016-04-27 13:47:291958 std::unique_ptr<MockDataChannelObserver> observer2(
henrike@webrtc.org28e20752013-07-10 00:45:361959 new MockDataChannelObserver(data2));
1960
1961 EXPECT_EQ(DataChannelInterface::kConnecting, data1->state());
1962 EXPECT_EQ(DataChannelInterface::kConnecting, data2->state());
1963
1964 CreateOfferReceiveAnswer();
1965 EXPECT_TRUE_WAIT(observer1->IsOpen(), kTimeout);
1966 EXPECT_TRUE_WAIT(observer2->IsOpen(), kTimeout);
1967
1968 EXPECT_EQ(DataChannelInterface::kOpen, data1->state());
1969 EXPECT_EQ(DataChannelInterface::kOpen, data2->state());
1970
jbaucheec21bd2016-03-20 13:15:431971 rtc::CopyOnWriteBuffer buffer("test", 4);
henrike@webrtc.org28e20752013-07-10 00:45:361972 EXPECT_FALSE(data1->Send(DataBuffer(buffer, true)));
1973}
1974
1975// This test setup a RTP data channels in loop back and test that a channel is
1976// opened even if the remote end answer with a zero SSRC.
Steve Anton36da6ff2018-02-17 00:04:201977TEST_P(PeerConnectionInterfaceTest, TestSendOnlyDataChannel) {
Niels Möllerf06f9232018-08-07 10:32:181978 RTCConfiguration config;
1979 config.enable_rtp_data_channel = true;
1980 config.enable_dtls_srtp = false;
1981 CreatePeerConnection(config);
zhihuang9763d562016-08-05 18:14:501982 rtc::scoped_refptr<DataChannelInterface> data1 =
henrike@webrtc.org28e20752013-07-10 00:45:361983 pc_->CreateDataChannel("test1", NULL);
kwibergd1fe2812016-04-27 13:47:291984 std::unique_ptr<MockDataChannelObserver> observer1(
henrike@webrtc.org28e20752013-07-10 00:45:361985 new MockDataChannelObserver(data1));
1986
1987 CreateOfferReceiveAnswerWithoutSsrc();
1988
1989 EXPECT_TRUE_WAIT(observer1->IsOpen(), kTimeout);
1990
1991 data1->Close();
1992 EXPECT_EQ(DataChannelInterface::kClosing, data1->state());
1993 CreateOfferReceiveAnswerWithoutSsrc();
1994 EXPECT_EQ(DataChannelInterface::kClosed, data1->state());
1995 EXPECT_FALSE(observer1->IsOpen());
1996}
1997
1998// This test that if a data channel is added in an answer a receive only channel
1999// channel is created.
Steve Anton36da6ff2018-02-17 00:04:202000TEST_P(PeerConnectionInterfaceTest, TestReceiveOnlyDataChannel) {
Niels Möllerf06f9232018-08-07 10:32:182001 RTCConfiguration config;
2002 config.enable_rtp_data_channel = true;
2003 config.enable_dtls_srtp = false;
2004
2005 CreatePeerConnection(config);
henrike@webrtc.org28e20752013-07-10 00:45:362006
2007 std::string offer_label = "offer_channel";
zhihuang9763d562016-08-05 18:14:502008 rtc::scoped_refptr<DataChannelInterface> offer_channel =
henrike@webrtc.org28e20752013-07-10 00:45:362009 pc_->CreateDataChannel(offer_label, NULL);
2010
2011 CreateOfferAsLocalDescription();
2012
2013 // Replace the data channel label in the offer and apply it as an answer.
2014 std::string receive_label = "answer_channel";
2015 std::string sdp;
2016 EXPECT_TRUE(pc_->local_description()->ToString(&sdp));
Steve Anton1c9c9fc2019-02-14 23:13:092017 absl::StrReplaceAll({{offer_label, receive_label}}, &sdp);
henrike@webrtc.org28e20752013-07-10 00:45:362018 CreateAnswerAsRemoteDescription(sdp);
2019
2020 // Verify that a new incoming data channel has been created and that
2021 // it is open but can't we written to.
2022 ASSERT_TRUE(observer_.last_datachannel_ != NULL);
2023 DataChannelInterface* received_channel = observer_.last_datachannel_;
2024 EXPECT_EQ(DataChannelInterface::kConnecting, received_channel->state());
2025 EXPECT_EQ(receive_label, received_channel->label());
2026 EXPECT_FALSE(received_channel->Send(DataBuffer("something")));
2027
2028 // Verify that the channel we initially offered has been rejected.
2029 EXPECT_EQ(DataChannelInterface::kClosed, offer_channel->state());
2030
2031 // Do another offer / answer exchange and verify that the data channel is
2032 // opened.
2033 CreateOfferReceiveAnswer();
2034 EXPECT_EQ_WAIT(DataChannelInterface::kOpen, received_channel->state(),
2035 kTimeout);
2036}
2037
2038// This test that no data channel is returned if a reliable channel is
2039// requested.
2040// TODO(perkj): Remove this test once reliable channels are implemented.
Steve Anton36da6ff2018-02-17 00:04:202041TEST_P(PeerConnectionInterfaceTest, CreateReliableRtpDataChannelShouldFail) {
Niels Möllerf06f9232018-08-07 10:32:182042 RTCConfiguration rtc_config;
2043 rtc_config.enable_rtp_data_channel = true;
2044 CreatePeerConnection(rtc_config);
henrike@webrtc.org28e20752013-07-10 00:45:362045
2046 std::string label = "test";
2047 webrtc::DataChannelInit config;
2048 config.reliable = true;
zhihuang9763d562016-08-05 18:14:502049 rtc::scoped_refptr<DataChannelInterface> channel =
henrike@webrtc.org28e20752013-07-10 00:45:362050 pc_->CreateDataChannel(label, &config);
2051 EXPECT_TRUE(channel == NULL);
2052}
2053
deadbeefab9b2d12015-10-14 18:33:112054// Verifies that duplicated label is not allowed for RTP data channel.
Steve Anton36da6ff2018-02-17 00:04:202055TEST_P(PeerConnectionInterfaceTest, RtpDuplicatedLabelNotAllowed) {
Niels Möllerf06f9232018-08-07 10:32:182056 RTCConfiguration config;
2057 config.enable_rtp_data_channel = true;
2058 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:112059
2060 std::string label = "test";
zhihuang9763d562016-08-05 18:14:502061 rtc::scoped_refptr<DataChannelInterface> channel =
deadbeefab9b2d12015-10-14 18:33:112062 pc_->CreateDataChannel(label, nullptr);
2063 EXPECT_NE(channel, nullptr);
2064
zhihuang9763d562016-08-05 18:14:502065 rtc::scoped_refptr<DataChannelInterface> dup_channel =
deadbeefab9b2d12015-10-14 18:33:112066 pc_->CreateDataChannel(label, nullptr);
2067 EXPECT_EQ(dup_channel, nullptr);
2068}
2069
henrike@webrtc.org28e20752013-07-10 00:45:362070// This tests that a SCTP data channel is returned using different
2071// DataChannelInit configurations.
Steve Anton36da6ff2018-02-17 00:04:202072TEST_P(PeerConnectionInterfaceTest, CreateSctpDataChannel) {
Niels Möllerf06f9232018-08-07 10:32:182073 RTCConfiguration rtc_config;
2074 rtc_config.enable_dtls_srtp = true;
2075 CreatePeerConnection(rtc_config);
henrike@webrtc.org28e20752013-07-10 00:45:362076
2077 webrtc::DataChannelInit config;
zhihuang9763d562016-08-05 18:14:502078 rtc::scoped_refptr<DataChannelInterface> channel =
henrike@webrtc.org28e20752013-07-10 00:45:362079 pc_->CreateDataChannel("1", &config);
2080 EXPECT_TRUE(channel != NULL);
2081 EXPECT_TRUE(channel->reliable());
jiayl@webrtc.org001fd2d2014-05-29 15:31:112082 EXPECT_TRUE(observer_.renegotiation_needed_);
2083 observer_.renegotiation_needed_ = false;
henrike@webrtc.org28e20752013-07-10 00:45:362084
2085 config.ordered = false;
2086 channel = pc_->CreateDataChannel("2", &config);
2087 EXPECT_TRUE(channel != NULL);
2088 EXPECT_TRUE(channel->reliable());
jiayl@webrtc.org001fd2d2014-05-29 15:31:112089 EXPECT_FALSE(observer_.renegotiation_needed_);
henrike@webrtc.org28e20752013-07-10 00:45:362090
2091 config.ordered = true;
2092 config.maxRetransmits = 0;
2093 channel = pc_->CreateDataChannel("3", &config);
2094 EXPECT_TRUE(channel != NULL);
2095 EXPECT_FALSE(channel->reliable());
jiayl@webrtc.org001fd2d2014-05-29 15:31:112096 EXPECT_FALSE(observer_.renegotiation_needed_);
henrike@webrtc.org28e20752013-07-10 00:45:362097
Harald Alvestrandf3736ed2019-04-08 11:09:302098 config.maxRetransmits = absl::nullopt;
henrike@webrtc.org28e20752013-07-10 00:45:362099 config.maxRetransmitTime = 0;
2100 channel = pc_->CreateDataChannel("4", &config);
2101 EXPECT_TRUE(channel != NULL);
2102 EXPECT_FALSE(channel->reliable());
jiayl@webrtc.org001fd2d2014-05-29 15:31:112103 EXPECT_FALSE(observer_.renegotiation_needed_);
henrike@webrtc.org28e20752013-07-10 00:45:362104}
2105
Harald Alvestrandf3736ed2019-04-08 11:09:302106// For backwards compatibility, we want people who "unset" maxRetransmits
2107// and maxRetransmitTime by setting them to -1 to get what they want.
2108TEST_P(PeerConnectionInterfaceTest, CreateSctpDataChannelWithMinusOne) {
2109 RTCConfiguration rtc_config;
2110 rtc_config.enable_dtls_srtp = true;
2111 CreatePeerConnection(rtc_config);
2112
2113 webrtc::DataChannelInit config;
2114 config.maxRetransmitTime = -1;
2115 config.maxRetransmits = -1;
2116 rtc::scoped_refptr<DataChannelInterface> channel =
2117 pc_->CreateDataChannel("1", &config);
2118 EXPECT_TRUE(channel != NULL);
2119}
2120
henrike@webrtc.org28e20752013-07-10 00:45:362121// This tests that no data channel is returned if both maxRetransmits and
2122// maxRetransmitTime are set for SCTP data channels.
Steve Anton36da6ff2018-02-17 00:04:202123TEST_P(PeerConnectionInterfaceTest,
henrike@webrtc.org28e20752013-07-10 00:45:362124 CreateSctpDataChannelShouldFailForInvalidConfig) {
Niels Möllerf06f9232018-08-07 10:32:182125 RTCConfiguration rtc_config;
2126 rtc_config.enable_dtls_srtp = true;
2127 CreatePeerConnection(rtc_config);
henrike@webrtc.org28e20752013-07-10 00:45:362128
2129 std::string label = "test";
2130 webrtc::DataChannelInit config;
2131 config.maxRetransmits = 0;
2132 config.maxRetransmitTime = 0;
2133
zhihuang9763d562016-08-05 18:14:502134 rtc::scoped_refptr<DataChannelInterface> channel =
henrike@webrtc.org28e20752013-07-10 00:45:362135 pc_->CreateDataChannel(label, &config);
2136 EXPECT_TRUE(channel == NULL);
2137}
2138
henrike@webrtc.org28e20752013-07-10 00:45:362139// The test verifies that creating a SCTP data channel with an id already in use
2140// or out of range should fail.
Steve Anton36da6ff2018-02-17 00:04:202141TEST_P(PeerConnectionInterfaceTest,
henrike@webrtc.org28e20752013-07-10 00:45:362142 CreateSctpDataChannelWithInvalidIdShouldFail) {
Niels Möllerf06f9232018-08-07 10:32:182143 RTCConfiguration rtc_config;
2144 rtc_config.enable_dtls_srtp = true;
2145 CreatePeerConnection(rtc_config);
henrike@webrtc.org28e20752013-07-10 00:45:362146
2147 webrtc::DataChannelInit config;
zhihuang9763d562016-08-05 18:14:502148 rtc::scoped_refptr<DataChannelInterface> channel;
henrike@webrtc.org28e20752013-07-10 00:45:362149
wu@webrtc.orgcecfd182013-10-30 05:18:122150 config.id = 1;
Harald Alvestrand5c4d2ee2019-04-01 10:58:152151 config.negotiated = true;
wu@webrtc.orgcecfd182013-10-30 05:18:122152 channel = pc_->CreateDataChannel("1", &config);
henrike@webrtc.org28e20752013-07-10 00:45:362153 EXPECT_TRUE(channel != NULL);
2154 EXPECT_EQ(1, channel->id());
2155
henrike@webrtc.org28e20752013-07-10 00:45:362156 channel = pc_->CreateDataChannel("x", &config);
2157 EXPECT_TRUE(channel == NULL);
2158
2159 config.id = cricket::kMaxSctpSid;
Harald Alvestrand5c4d2ee2019-04-01 10:58:152160 config.negotiated = true;
henrike@webrtc.org28e20752013-07-10 00:45:362161 channel = pc_->CreateDataChannel("max", &config);
2162 EXPECT_TRUE(channel != NULL);
2163 EXPECT_EQ(config.id, channel->id());
2164
2165 config.id = cricket::kMaxSctpSid + 1;
Harald Alvestrand5c4d2ee2019-04-01 10:58:152166 config.negotiated = true;
henrike@webrtc.org28e20752013-07-10 00:45:362167 channel = pc_->CreateDataChannel("x", &config);
2168 EXPECT_TRUE(channel == NULL);
2169}
2170
deadbeefab9b2d12015-10-14 18:33:112171// Verifies that duplicated label is allowed for SCTP data channel.
Steve Anton36da6ff2018-02-17 00:04:202172TEST_P(PeerConnectionInterfaceTest, SctpDuplicatedLabelAllowed) {
Niels Möllerf06f9232018-08-07 10:32:182173 RTCConfiguration rtc_config;
2174 rtc_config.enable_dtls_srtp = true;
2175 CreatePeerConnection(rtc_config);
deadbeefab9b2d12015-10-14 18:33:112176
2177 std::string label = "test";
zhihuang9763d562016-08-05 18:14:502178 rtc::scoped_refptr<DataChannelInterface> channel =
deadbeefab9b2d12015-10-14 18:33:112179 pc_->CreateDataChannel(label, nullptr);
2180 EXPECT_NE(channel, nullptr);
2181
zhihuang9763d562016-08-05 18:14:502182 rtc::scoped_refptr<DataChannelInterface> dup_channel =
deadbeefab9b2d12015-10-14 18:33:112183 pc_->CreateDataChannel(label, nullptr);
2184 EXPECT_NE(dup_channel, nullptr);
2185}
2186
jiayl@webrtc.org001fd2d2014-05-29 15:31:112187// This test verifies that OnRenegotiationNeeded is fired for every new RTP
2188// DataChannel.
Steve Anton36da6ff2018-02-17 00:04:202189TEST_P(PeerConnectionInterfaceTest, RenegotiationNeededForNewRtpDataChannel) {
Niels Möllerf06f9232018-08-07 10:32:182190 RTCConfiguration rtc_config;
2191 rtc_config.enable_rtp_data_channel = true;
2192 rtc_config.enable_dtls_srtp = false;
2193 CreatePeerConnection(rtc_config);
jiayl@webrtc.org001fd2d2014-05-29 15:31:112194
zhihuang9763d562016-08-05 18:14:502195 rtc::scoped_refptr<DataChannelInterface> dc1 =
jiayl@webrtc.org001fd2d2014-05-29 15:31:112196 pc_->CreateDataChannel("test1", NULL);
2197 EXPECT_TRUE(observer_.renegotiation_needed_);
2198 observer_.renegotiation_needed_ = false;
2199
Guido Urdaneta70c2db12019-04-16 10:24:142200 CreateOfferReceiveAnswer();
2201
zhihuang9763d562016-08-05 18:14:502202 rtc::scoped_refptr<DataChannelInterface> dc2 =
jiayl@webrtc.org001fd2d2014-05-29 15:31:112203 pc_->CreateDataChannel("test2", NULL);
Guido Urdaneta70c2db12019-04-16 10:24:142204 EXPECT_EQ(observer_.renegotiation_needed_,
2205 GetParam() == SdpSemantics::kPlanB);
jiayl@webrtc.org001fd2d2014-05-29 15:31:112206}
2207
henrike@webrtc.org28e20752013-07-10 00:45:362208// This test that a data channel closes when a PeerConnection is deleted/closed.
Steve Anton36da6ff2018-02-17 00:04:202209TEST_P(PeerConnectionInterfaceTest, DataChannelCloseWhenPeerConnectionClose) {
Niels Möllerf06f9232018-08-07 10:32:182210 RTCConfiguration rtc_config;
2211 rtc_config.enable_rtp_data_channel = true;
2212 rtc_config.enable_dtls_srtp = false;
2213 CreatePeerConnection(rtc_config);
henrike@webrtc.org28e20752013-07-10 00:45:362214
zhihuang9763d562016-08-05 18:14:502215 rtc::scoped_refptr<DataChannelInterface> data1 =
henrike@webrtc.org28e20752013-07-10 00:45:362216 pc_->CreateDataChannel("test1", NULL);
zhihuang9763d562016-08-05 18:14:502217 rtc::scoped_refptr<DataChannelInterface> data2 =
henrike@webrtc.org28e20752013-07-10 00:45:362218 pc_->CreateDataChannel("test2", NULL);
2219 ASSERT_TRUE(data1 != NULL);
kwibergd1fe2812016-04-27 13:47:292220 std::unique_ptr<MockDataChannelObserver> observer1(
henrike@webrtc.org28e20752013-07-10 00:45:362221 new MockDataChannelObserver(data1));
kwibergd1fe2812016-04-27 13:47:292222 std::unique_ptr<MockDataChannelObserver> observer2(
henrike@webrtc.org28e20752013-07-10 00:45:362223 new MockDataChannelObserver(data2));
2224
2225 CreateOfferReceiveAnswer();
2226 EXPECT_TRUE_WAIT(observer1->IsOpen(), kTimeout);
2227 EXPECT_TRUE_WAIT(observer2->IsOpen(), kTimeout);
2228
2229 ReleasePeerConnection();
2230 EXPECT_EQ(DataChannelInterface::kClosed, data1->state());
2231 EXPECT_EQ(DataChannelInterface::kClosed, data2->state());
2232}
2233
Zhi Huang644fde42018-04-03 02:16:262234// This tests that RTP data channels can be rejected in an answer.
2235TEST_P(PeerConnectionInterfaceTest, TestRejectRtpDataChannelInAnswer) {
Niels Möllerf06f9232018-08-07 10:32:182236 RTCConfiguration rtc_config;
2237 rtc_config.enable_rtp_data_channel = true;
2238 rtc_config.enable_dtls_srtp = false;
2239 CreatePeerConnection(rtc_config);
henrike@webrtc.org28e20752013-07-10 00:45:362240
zhihuang9763d562016-08-05 18:14:502241 rtc::scoped_refptr<DataChannelInterface> offer_channel(
henrike@webrtc.org28e20752013-07-10 00:45:362242 pc_->CreateDataChannel("offer_channel", NULL));
2243
2244 CreateOfferAsLocalDescription();
2245
2246 // Create an answer where the m-line for data channels are rejected.
2247 std::string sdp;
2248 EXPECT_TRUE(pc_->local_description()->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:342249 std::unique_ptr<SessionDescriptionInterface> answer(
Steve Antona3a92c22017-12-07 18:27:412250 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:342251 ASSERT_TRUE(answer);
henrike@webrtc.org28e20752013-07-10 00:45:362252 cricket::ContentInfo* data_info =
Steve Anton36da6ff2018-02-17 00:04:202253 cricket::GetFirstDataContent(answer->description());
henrike@webrtc.org28e20752013-07-10 00:45:362254 data_info->rejected = true;
2255
Steve Antondb45ca82017-09-12 01:27:342256 DoSetRemoteDescription(std::move(answer));
henrike@webrtc.org28e20752013-07-10 00:45:362257 EXPECT_EQ(DataChannelInterface::kClosed, offer_channel->state());
2258}
2259
Zhi Huang644fde42018-04-03 02:16:262260#ifdef HAVE_SCTP
2261// This tests that SCTP data channels can be rejected in an answer.
2262TEST_P(PeerConnectionInterfaceTest, TestRejectSctpDataChannelInAnswer)
2263#else
2264TEST_P(PeerConnectionInterfaceTest, DISABLED_TestRejectSctpDataChannelInAnswer)
2265#endif
2266{
Niels Möllerf06f9232018-08-07 10:32:182267 RTCConfiguration rtc_config;
2268 CreatePeerConnection(rtc_config);
Zhi Huang644fde42018-04-03 02:16:262269
2270 rtc::scoped_refptr<DataChannelInterface> offer_channel(
2271 pc_->CreateDataChannel("offer_channel", NULL));
2272
2273 CreateOfferAsLocalDescription();
2274
2275 // Create an answer where the m-line for data channels are rejected.
2276 std::string sdp;
2277 EXPECT_TRUE(pc_->local_description()->ToString(&sdp));
2278 std::unique_ptr<SessionDescriptionInterface> answer(
2279 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
2280 ASSERT_TRUE(answer);
2281 cricket::ContentInfo* data_info =
2282 cricket::GetFirstDataContent(answer->description());
2283 data_info->rejected = true;
2284
2285 DoSetRemoteDescription(std::move(answer));
2286 EXPECT_EQ(DataChannelInterface::kClosed, offer_channel->state());
2287}
2288
henrike@webrtc.org28e20752013-07-10 00:45:362289// Test that we can create a session description from an SDP string from
2290// FireFox, use it as a remote session description, generate an answer and use
2291// the answer as a local description.
Steve Anton36da6ff2018-02-17 00:04:202292TEST_P(PeerConnectionInterfaceTest, ReceiveFireFoxOffer) {
Niels Möllerf06f9232018-08-07 10:32:182293 RTCConfiguration rtc_config;
2294 rtc_config.enable_dtls_srtp = true;
2295 CreatePeerConnection(rtc_config);
Steve Anton36da6ff2018-02-17 00:04:202296 AddAudioTrack("audio_label");
2297 AddVideoTrack("video_label");
Steve Antondb45ca82017-09-12 01:27:342298 std::unique_ptr<SessionDescriptionInterface> desc(
Steve Antona3a92c22017-12-07 18:27:412299 webrtc::CreateSessionDescription(SdpType::kOffer,
Steve Antondb45ca82017-09-12 01:27:342300 webrtc::kFireFoxSdpOffer, nullptr));
2301 EXPECT_TRUE(DoSetSessionDescription(std::move(desc), false));
henrike@webrtc.org28e20752013-07-10 00:45:362302 CreateAnswerAsLocalDescription();
2303 ASSERT_TRUE(pc_->local_description() != NULL);
2304 ASSERT_TRUE(pc_->remote_description() != NULL);
2305
2306 const cricket::ContentInfo* content =
2307 cricket::GetFirstAudioContent(pc_->local_description()->description());
2308 ASSERT_TRUE(content != NULL);
2309 EXPECT_FALSE(content->rejected);
2310
2311 content =
2312 cricket::GetFirstVideoContent(pc_->local_description()->description());
2313 ASSERT_TRUE(content != NULL);
2314 EXPECT_FALSE(content->rejected);
sergeyu@chromium.orga23f0ca2013-11-13 22:48:522315#ifdef HAVE_SCTP
henrike@webrtc.org28e20752013-07-10 00:45:362316 content =
2317 cricket::GetFirstDataContent(pc_->local_description()->description());
2318 ASSERT_TRUE(content != NULL);
Zhi Huange830e682018-03-30 17:48:352319 EXPECT_FALSE(content->rejected);
sergeyu@chromium.orga23f0ca2013-11-13 22:48:522320#endif
henrike@webrtc.org28e20752013-07-10 00:45:362321}
2322
zhihuangb19012e2017-09-19 20:47:592323// Test that fallback from DTLS to SDES is not supported.
2324// The fallback was previously supported but was removed to simplify the code
2325// and because it's non-standard.
Steve Anton36da6ff2018-02-17 00:04:202326TEST_P(PeerConnectionInterfaceTest, DtlsSdesFallbackNotSupported) {
Niels Möllerf06f9232018-08-07 10:32:182327 RTCConfiguration rtc_config;
2328 rtc_config.enable_dtls_srtp = true;
2329 CreatePeerConnection(rtc_config);
deadbeef8662f942017-01-21 05:20:512330 // Wait for fake certificate to be generated. Previously, this is what caused
2331 // the "a=crypto" lines to be rejected.
Steve Anton36da6ff2018-02-17 00:04:202332 AddAudioTrack("audio_label");
2333 AddVideoTrack("video_label");
deadbeef8662f942017-01-21 05:20:512334 ASSERT_NE(nullptr, fake_certificate_generator_);
2335 EXPECT_EQ_WAIT(1, fake_certificate_generator_->generated_certificates(),
2336 kTimeout);
Steve Antondb45ca82017-09-12 01:27:342337 std::unique_ptr<SessionDescriptionInterface> desc(
Steve Antona3a92c22017-12-07 18:27:412338 webrtc::CreateSessionDescription(SdpType::kOffer, kDtlsSdesFallbackSdp,
2339 nullptr));
Zhi Huange830e682018-03-30 17:48:352340 EXPECT_FALSE(DoSetSessionDescription(std::move(desc), /*local=*/false));
deadbeef8662f942017-01-21 05:20:512341}
2342
henrike@webrtc.org28e20752013-07-10 00:45:362343// Test that we can create an audio only offer and receive an answer with a
2344// limited set of audio codecs and receive an updated offer with more audio
2345// codecs, where the added codecs are not supported.
Steve Anton36da6ff2018-02-17 00:04:202346TEST_P(PeerConnectionInterfaceTest, ReceiveUpdatedAudioOfferWithBadCodecs) {
deadbeef293e9262017-01-11 20:28:302347 CreatePeerConnectionWithoutDtls();
Steve Anton36da6ff2018-02-17 00:04:202348 AddAudioTrack("audio_label");
henrike@webrtc.org28e20752013-07-10 00:45:362349 CreateOfferAsLocalDescription();
2350
Steve Anton36da6ff2018-02-17 00:04:202351 const char* answer_sdp =
2352 (sdp_semantics_ == SdpSemantics::kPlanB ? webrtc::kAudioSdpPlanB
2353 : webrtc::kAudioSdpUnifiedPlan);
Steve Antondb45ca82017-09-12 01:27:342354 std::unique_ptr<SessionDescriptionInterface> answer(
Steve Anton36da6ff2018-02-17 00:04:202355 webrtc::CreateSessionDescription(SdpType::kAnswer, answer_sdp, nullptr));
Steve Antondb45ca82017-09-12 01:27:342356 EXPECT_TRUE(DoSetSessionDescription(std::move(answer), false));
henrike@webrtc.org28e20752013-07-10 00:45:362357
Steve Anton36da6ff2018-02-17 00:04:202358 const char* reoffer_sdp =
2359 (sdp_semantics_ == SdpSemantics::kPlanB
2360 ? webrtc::kAudioSdpWithUnsupportedCodecsPlanB
2361 : webrtc::kAudioSdpWithUnsupportedCodecsUnifiedPlan);
Steve Antondb45ca82017-09-12 01:27:342362 std::unique_ptr<SessionDescriptionInterface> updated_offer(
Steve Anton36da6ff2018-02-17 00:04:202363 webrtc::CreateSessionDescription(SdpType::kOffer, reoffer_sdp, nullptr));
Steve Antondb45ca82017-09-12 01:27:342364 EXPECT_TRUE(DoSetSessionDescription(std::move(updated_offer), false));
henrike@webrtc.org28e20752013-07-10 00:45:362365 CreateAnswerAsLocalDescription();
2366}
2367
deadbeefc80741f2015-10-22 20:14:452368// Test that if we're receiving (but not sending) a track, subsequent offers
2369// will have m-lines with a=recvonly.
Steve Anton36da6ff2018-02-17 00:04:202370TEST_P(PeerConnectionInterfaceTest, CreateSubsequentRecvOnlyOffer) {
Niels Möllerf06f9232018-08-07 10:32:182371 RTCConfiguration rtc_config;
2372 rtc_config.enable_dtls_srtp = true;
2373 CreatePeerConnection(rtc_config);
Steve Anton36da6ff2018-02-17 00:04:202374 CreateAndSetRemoteOffer(GetSdpStringWithStream1());
deadbeefc80741f2015-10-22 20:14:452375 CreateAnswerAsLocalDescription();
2376
2377 // At this point we should be receiving stream 1, but not sending anything.
2378 // A new offer should be recvonly.
kwibergd1fe2812016-04-27 13:47:292379 std::unique_ptr<SessionDescriptionInterface> offer;
deadbeefc80741f2015-10-22 20:14:452380 DoCreateOffer(&offer, nullptr);
2381
2382 const cricket::ContentInfo* video_content =
2383 cricket::GetFirstVideoContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:302384 ASSERT_EQ(RtpTransceiverDirection::kRecvOnly,
2385 video_content->media_description()->direction());
deadbeefc80741f2015-10-22 20:14:452386
2387 const cricket::ContentInfo* audio_content =
2388 cricket::GetFirstAudioContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:302389 ASSERT_EQ(RtpTransceiverDirection::kRecvOnly,
2390 audio_content->media_description()->direction());
deadbeefc80741f2015-10-22 20:14:452391}
2392
2393// Test that if we're receiving (but not sending) a track, and the
2394// offerToReceiveVideo/offerToReceiveAudio constraints are explicitly set to
2395// false, the generated m-lines will be a=inactive.
Steve Anton36da6ff2018-02-17 00:04:202396TEST_P(PeerConnectionInterfaceTest, CreateSubsequentInactiveOffer) {
Niels Möllerf06f9232018-08-07 10:32:182397 RTCConfiguration rtc_config;
2398 rtc_config.enable_dtls_srtp = true;
2399 CreatePeerConnection(rtc_config);
Steve Anton36da6ff2018-02-17 00:04:202400 CreateAndSetRemoteOffer(GetSdpStringWithStream1());
deadbeefc80741f2015-10-22 20:14:452401 CreateAnswerAsLocalDescription();
2402
2403 // At this point we should be receiving stream 1, but not sending anything.
2404 // A new offer would be recvonly, but we'll set the "no receive" constraints
2405 // to make it inactive.
kwibergd1fe2812016-04-27 13:47:292406 std::unique_ptr<SessionDescriptionInterface> offer;
Niels Möllerf06f9232018-08-07 10:32:182407 RTCOfferAnswerOptions options;
2408 options.offer_to_receive_audio = 0;
2409 options.offer_to_receive_video = 0;
2410 DoCreateOffer(&offer, &options);
deadbeefc80741f2015-10-22 20:14:452411
2412 const cricket::ContentInfo* video_content =
2413 cricket::GetFirstVideoContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:302414 ASSERT_EQ(RtpTransceiverDirection::kInactive,
2415 video_content->media_description()->direction());
deadbeefc80741f2015-10-22 20:14:452416
2417 const cricket::ContentInfo* audio_content =
2418 cricket::GetFirstAudioContent(offer->description());
Steve Antonb1c1de12017-12-21 23:14:302419 ASSERT_EQ(RtpTransceiverDirection::kInactive,
2420 audio_content->media_description()->direction());
deadbeefc80741f2015-10-22 20:14:452421}
2422
deadbeef653b8e02015-11-11 20:55:102423// Test that we can use SetConfiguration to change the ICE servers of the
2424// PortAllocator.
Steve Anton36da6ff2018-02-17 00:04:202425TEST_P(PeerConnectionInterfaceTest, SetConfigurationChangesIceServers) {
deadbeef653b8e02015-11-11 20:55:102426 CreatePeerConnection();
2427
Steve Anton36da6ff2018-02-17 00:04:202428 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
deadbeef653b8e02015-11-11 20:55:102429 PeerConnectionInterface::IceServer server;
2430 server.uri = "stun:test_hostname";
2431 config.servers.push_back(server);
Niels Möller2579f0c2019-08-19 07:58:172432 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeef653b8e02015-11-11 20:55:102433
Taylor Brandstetter0c7e9f52015-12-29 22:14:522434 EXPECT_EQ(1u, port_allocator_->stun_servers().size());
2435 EXPECT_EQ("test_hostname",
2436 port_allocator_->stun_servers().begin()->hostname());
deadbeef653b8e02015-11-11 20:55:102437}
2438
Steve Anton36da6ff2018-02-17 00:04:202439TEST_P(PeerConnectionInterfaceTest, SetConfigurationChangesCandidateFilter) {
Taylor Brandstettera1c30352016-05-13 15:15:112440 CreatePeerConnection();
Steve Anton36da6ff2018-02-17 00:04:202441 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
Taylor Brandstettera1c30352016-05-13 15:15:112442 config.type = PeerConnectionInterface::kRelay;
Niels Möller2579f0c2019-08-19 07:58:172443 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
Taylor Brandstettera1c30352016-05-13 15:15:112444 EXPECT_EQ(cricket::CF_RELAY, port_allocator_->candidate_filter());
2445}
2446
Steve Anton36da6ff2018-02-17 00:04:202447TEST_P(PeerConnectionInterfaceTest, SetConfigurationChangesPruneTurnPortsFlag) {
deadbeef293e9262017-01-11 20:28:302448 PeerConnectionInterface::RTCConfiguration config;
2449 config.prune_turn_ports = false;
Niels Möllerf06f9232018-08-07 10:32:182450 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202451 config = pc_->GetConfiguration();
Honghai Zhangf8998cf2019-10-14 18:27:502452 EXPECT_EQ(webrtc::NO_PRUNE, port_allocator_->turn_port_prune_policy());
deadbeef293e9262017-01-11 20:28:302453
2454 config.prune_turn_ports = true;
Niels Möller2579f0c2019-08-19 07:58:172455 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
Honghai Zhangf8998cf2019-10-14 18:27:502456 EXPECT_EQ(webrtc::PRUNE_BASED_ON_PRIORITY,
2457 port_allocator_->turn_port_prune_policy());
deadbeef293e9262017-01-11 20:28:302458}
2459
skvladd1f5fda2017-02-04 00:54:052460// Test that the ice check interval can be changed. This does not verify that
2461// the setting makes it all the way to P2PTransportChannel, as that would
2462// require a very complex set of mocks.
Steve Anton36da6ff2018-02-17 00:04:202463TEST_P(PeerConnectionInterfaceTest, SetConfigurationChangesIceCheckInterval) {
skvladd1f5fda2017-02-04 00:54:052464 PeerConnectionInterface::RTCConfiguration config;
Danil Chapovalov66cadcc2018-06-19 14:47:432465 config.ice_check_min_interval = absl::nullopt;
Niels Möllerf06f9232018-08-07 10:32:182466 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202467 config = pc_->GetConfiguration();
Oskar Sundbomb95fd2c2017-11-16 09:54:382468 config.ice_check_min_interval = 100;
Niels Möller2579f0c2019-08-19 07:58:172469 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
Qingsi Wangbca14852019-06-26 21:56:022470 config = pc_->GetConfiguration();
2471 EXPECT_EQ(config.ice_check_min_interval, 100);
2472}
2473
2474TEST_P(PeerConnectionInterfaceTest,
2475 SetConfigurationChangesSurfaceIceCandidatesOnIceTransportTypeChanged) {
2476 PeerConnectionInterface::RTCConfiguration config;
2477 config.surface_ice_candidates_on_ice_transport_type_changed = false;
2478 CreatePeerConnection(config);
2479 config = pc_->GetConfiguration();
2480 EXPECT_FALSE(config.surface_ice_candidates_on_ice_transport_type_changed);
2481
2482 config.surface_ice_candidates_on_ice_transport_type_changed = true;
Niels Möller2579f0c2019-08-19 07:58:172483 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
Qingsi Wangbca14852019-06-26 21:56:022484 config = pc_->GetConfiguration();
2485 EXPECT_TRUE(config.surface_ice_candidates_on_ice_transport_type_changed);
skvladd1f5fda2017-02-04 00:54:052486}
2487
Taylor Brandstettera1c30352016-05-13 15:15:112488// Test that when SetConfiguration changes both the pool size and other
2489// attributes, the pooled session is created with the updated attributes.
Steve Anton36da6ff2018-02-17 00:04:202490TEST_P(PeerConnectionInterfaceTest,
Taylor Brandstettera1c30352016-05-13 15:15:112491 SetConfigurationCreatesPooledSessionCorrectly) {
2492 CreatePeerConnection();
Steve Anton36da6ff2018-02-17 00:04:202493 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
Taylor Brandstettera1c30352016-05-13 15:15:112494 config.ice_candidate_pool_size = 1;
2495 PeerConnectionInterface::IceServer server;
2496 server.uri = kStunAddressOnly;
2497 config.servers.push_back(server);
2498 config.type = PeerConnectionInterface::kRelay;
Niels Möller2579f0c2019-08-19 07:58:172499 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
Taylor Brandstettera1c30352016-05-13 15:15:112500
2501 const cricket::FakePortAllocatorSession* session =
2502 static_cast<const cricket::FakePortAllocatorSession*>(
2503 port_allocator_->GetPooledSession());
2504 ASSERT_NE(nullptr, session);
2505 EXPECT_EQ(1UL, session->stun_servers().size());
Taylor Brandstettera1c30352016-05-13 15:15:112506}
2507
deadbeef293e9262017-01-11 20:28:302508// Test that after SetLocalDescription, changing the pool size is not allowed,
2509// and an invalid modification error is returned.
Steve Anton36da6ff2018-02-17 00:04:202510TEST_P(PeerConnectionInterfaceTest,
deadbeef6de92f92016-12-13 02:49:322511 CantChangePoolSizeAfterSetLocalDescription) {
2512 CreatePeerConnection();
2513 // Start by setting a size of 1.
Steve Anton36da6ff2018-02-17 00:04:202514 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
deadbeef6de92f92016-12-13 02:49:322515 config.ice_candidate_pool_size = 1;
Niels Möller2579f0c2019-08-19 07:58:172516 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeef6de92f92016-12-13 02:49:322517
2518 // Set remote offer; can still change pool size at this point.
2519 CreateOfferAsRemoteDescription();
2520 config.ice_candidate_pool_size = 2;
Niels Möller2579f0c2019-08-19 07:58:172521 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeef6de92f92016-12-13 02:49:322522
2523 // Set local answer; now it's too late.
2524 CreateAnswerAsLocalDescription();
2525 config.ice_candidate_pool_size = 3;
Niels Möller2579f0c2019-08-19 07:58:172526 RTCError error = pc_->SetConfiguration(config);
deadbeef293e9262017-01-11 20:28:302527 EXPECT_EQ(RTCErrorType::INVALID_MODIFICATION, error.type());
2528}
2529
deadbeef42a42632017-03-10 23:18:002530// Test that after setting an answer, extra pooled sessions are discarded. The
2531// ICE candidate pool is only intended to be used for the first offer/answer.
Steve Anton36da6ff2018-02-17 00:04:202532TEST_P(PeerConnectionInterfaceTest,
deadbeef42a42632017-03-10 23:18:002533 ExtraPooledSessionsDiscardedAfterApplyingAnswer) {
2534 CreatePeerConnection();
2535
2536 // Set a larger-than-necessary size.
Steve Anton36da6ff2018-02-17 00:04:202537 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
deadbeef42a42632017-03-10 23:18:002538 config.ice_candidate_pool_size = 4;
Niels Möller2579f0c2019-08-19 07:58:172539 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeef42a42632017-03-10 23:18:002540
2541 // Do offer/answer.
2542 CreateOfferAsRemoteDescription();
2543 CreateAnswerAsLocalDescription();
2544
2545 // Expect no pooled sessions to be left.
2546 const cricket::PortAllocatorSession* session =
2547 port_allocator_->GetPooledSession();
2548 EXPECT_EQ(nullptr, session);
2549}
2550
2551// After Close is called, pooled candidates should be discarded so as to not
2552// waste network resources.
Steve Anton36da6ff2018-02-17 00:04:202553TEST_P(PeerConnectionInterfaceTest, PooledSessionsDiscardedAfterClose) {
deadbeef42a42632017-03-10 23:18:002554 CreatePeerConnection();
2555
Steve Anton36da6ff2018-02-17 00:04:202556 PeerConnectionInterface::RTCConfiguration config = pc_->GetConfiguration();
deadbeef42a42632017-03-10 23:18:002557 config.ice_candidate_pool_size = 3;
Niels Möller2579f0c2019-08-19 07:58:172558 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeef42a42632017-03-10 23:18:002559 pc_->Close();
2560
2561 // Expect no pooled sessions to be left.
2562 const cricket::PortAllocatorSession* session =
2563 port_allocator_->GetPooledSession();
2564 EXPECT_EQ(nullptr, session);
2565}
2566
deadbeef293e9262017-01-11 20:28:302567// Test that SetConfiguration returns an invalid modification error if
2568// modifying a field in the configuration that isn't allowed to be modified.
Steve Anton36da6ff2018-02-17 00:04:202569TEST_P(PeerConnectionInterfaceTest,
deadbeef293e9262017-01-11 20:28:302570 SetConfigurationReturnsInvalidModificationError) {
2571 PeerConnectionInterface::RTCConfiguration config;
2572 config.bundle_policy = PeerConnectionInterface::kBundlePolicyBalanced;
2573 config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyNegotiate;
2574 config.continual_gathering_policy = PeerConnectionInterface::GATHER_ONCE;
Niels Möllerf06f9232018-08-07 10:32:182575 CreatePeerConnection(config);
deadbeef293e9262017-01-11 20:28:302576
Steve Anton36da6ff2018-02-17 00:04:202577 PeerConnectionInterface::RTCConfiguration modified_config =
2578 pc_->GetConfiguration();
deadbeef293e9262017-01-11 20:28:302579 modified_config.bundle_policy =
2580 PeerConnectionInterface::kBundlePolicyMaxBundle;
Niels Möller2579f0c2019-08-19 07:58:172581 RTCError error = pc_->SetConfiguration(modified_config);
deadbeef293e9262017-01-11 20:28:302582 EXPECT_EQ(RTCErrorType::INVALID_MODIFICATION, error.type());
2583
Steve Anton36da6ff2018-02-17 00:04:202584 modified_config = pc_->GetConfiguration();
deadbeef293e9262017-01-11 20:28:302585 modified_config.rtcp_mux_policy =
2586 PeerConnectionInterface::kRtcpMuxPolicyRequire;
Niels Möller2579f0c2019-08-19 07:58:172587 error = pc_->SetConfiguration(modified_config);
deadbeef293e9262017-01-11 20:28:302588 EXPECT_EQ(RTCErrorType::INVALID_MODIFICATION, error.type());
2589
Steve Anton36da6ff2018-02-17 00:04:202590 modified_config = pc_->GetConfiguration();
deadbeef293e9262017-01-11 20:28:302591 modified_config.continual_gathering_policy =
2592 PeerConnectionInterface::GATHER_CONTINUALLY;
Niels Möller2579f0c2019-08-19 07:58:172593 error = pc_->SetConfiguration(modified_config);
deadbeef293e9262017-01-11 20:28:302594 EXPECT_EQ(RTCErrorType::INVALID_MODIFICATION, error.type());
2595}
2596
2597// Test that SetConfiguration returns a range error if the candidate pool size
2598// is negative or larger than allowed by the spec.
Steve Anton36da6ff2018-02-17 00:04:202599TEST_P(PeerConnectionInterfaceTest,
deadbeef293e9262017-01-11 20:28:302600 SetConfigurationReturnsRangeErrorForBadCandidatePoolSize) {
2601 PeerConnectionInterface::RTCConfiguration config;
Niels Möllerf06f9232018-08-07 10:32:182602 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202603 config = pc_->GetConfiguration();
deadbeef293e9262017-01-11 20:28:302604
2605 config.ice_candidate_pool_size = -1;
Niels Möller2579f0c2019-08-19 07:58:172606 RTCError error = pc_->SetConfiguration(config);
deadbeef293e9262017-01-11 20:28:302607 EXPECT_EQ(RTCErrorType::INVALID_RANGE, error.type());
2608
2609 config.ice_candidate_pool_size = INT_MAX;
Niels Möller2579f0c2019-08-19 07:58:172610 error = pc_->SetConfiguration(config);
deadbeef293e9262017-01-11 20:28:302611 EXPECT_EQ(RTCErrorType::INVALID_RANGE, error.type());
2612}
2613
2614// Test that SetConfiguration returns a syntax error if parsing an ICE server
2615// URL failed.
Steve Anton36da6ff2018-02-17 00:04:202616TEST_P(PeerConnectionInterfaceTest,
deadbeef293e9262017-01-11 20:28:302617 SetConfigurationReturnsSyntaxErrorFromBadIceUrls) {
2618 PeerConnectionInterface::RTCConfiguration config;
Niels Möllerf06f9232018-08-07 10:32:182619 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202620 config = pc_->GetConfiguration();
deadbeef293e9262017-01-11 20:28:302621
2622 PeerConnectionInterface::IceServer bad_server;
2623 bad_server.uri = "stunn:www.example.com";
2624 config.servers.push_back(bad_server);
Niels Möller2579f0c2019-08-19 07:58:172625 RTCError error = pc_->SetConfiguration(config);
deadbeef293e9262017-01-11 20:28:302626 EXPECT_EQ(RTCErrorType::SYNTAX_ERROR, error.type());
2627}
2628
2629// Test that SetConfiguration returns an invalid parameter error if a TURN
2630// IceServer is missing a username or password.
Steve Anton36da6ff2018-02-17 00:04:202631TEST_P(PeerConnectionInterfaceTest,
deadbeef293e9262017-01-11 20:28:302632 SetConfigurationReturnsInvalidParameterIfCredentialsMissing) {
2633 PeerConnectionInterface::RTCConfiguration config;
Niels Möllerf06f9232018-08-07 10:32:182634 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202635 config = pc_->GetConfiguration();
deadbeef293e9262017-01-11 20:28:302636
2637 PeerConnectionInterface::IceServer bad_server;
2638 bad_server.uri = "turn:www.example.com";
2639 // Missing password.
2640 bad_server.username = "foo";
2641 config.servers.push_back(bad_server);
2642 RTCError error;
Niels Möller340e0c52019-08-26 09:03:472643 EXPECT_EQ(pc_->SetConfiguration(config).type(),
2644 RTCErrorType::INVALID_PARAMETER);
deadbeef6de92f92016-12-13 02:49:322645}
2646
henrike@webrtc.org28e20752013-07-10 00:45:362647// Test that PeerConnection::Close changes the states to closed and all remote
2648// tracks change state to ended.
Steve Anton36da6ff2018-02-17 00:04:202649TEST_P(PeerConnectionInterfaceTest, CloseAndTestStreamsAndStates) {
henrike@webrtc.org28e20752013-07-10 00:45:362650 // Initialize a PeerConnection and negotiate local and remote session
2651 // description.
2652 InitiateCall();
Steve Anton36da6ff2018-02-17 00:04:202653
2654 // With Plan B, verify the stream count. The analog with Unified Plan is the
2655 // RtpTransceiver count.
2656 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2657 ASSERT_EQ(1u, pc_->local_streams()->count());
2658 ASSERT_EQ(1u, pc_->remote_streams()->count());
2659 } else {
2660 ASSERT_EQ(2u, pc_->GetTransceivers().size());
2661 }
henrike@webrtc.org28e20752013-07-10 00:45:362662
2663 pc_->Close();
2664
2665 EXPECT_EQ(PeerConnectionInterface::kClosed, pc_->signaling_state());
2666 EXPECT_EQ(PeerConnectionInterface::kIceConnectionClosed,
2667 pc_->ice_connection_state());
2668 EXPECT_EQ(PeerConnectionInterface::kIceGatheringComplete,
2669 pc_->ice_gathering_state());
2670
Steve Anton36da6ff2018-02-17 00:04:202671 if (sdp_semantics_ == SdpSemantics::kPlanB) {
2672 EXPECT_EQ(1u, pc_->local_streams()->count());
2673 EXPECT_EQ(1u, pc_->remote_streams()->count());
2674 } else {
2675 // Verify that the RtpTransceivers are still present but all stopped.
2676 EXPECT_EQ(2u, pc_->GetTransceivers().size());
Mirko Bonadei739baf02019-01-27 16:29:422677 for (const auto& transceiver : pc_->GetTransceivers()) {
Steve Anton36da6ff2018-02-17 00:04:202678 EXPECT_TRUE(transceiver->stopped());
2679 }
2680 }
henrike@webrtc.org28e20752013-07-10 00:45:362681
Steve Anton36da6ff2018-02-17 00:04:202682 auto audio_receiver = GetFirstReceiverOfType(cricket::MEDIA_TYPE_AUDIO);
2683 ASSERT_TRUE(audio_receiver);
2684 auto video_receiver = GetFirstReceiverOfType(cricket::MEDIA_TYPE_VIDEO);
2685 ASSERT_TRUE(video_receiver);
2686
Taylor Brandstetterd45b95c2016-03-29 20:16:522687 // Track state may be updated asynchronously.
perkjd61bf802016-03-24 10:16:192688 EXPECT_EQ_WAIT(MediaStreamTrackInterface::kEnded,
Steve Anton36da6ff2018-02-17 00:04:202689 audio_receiver->track()->state(), kTimeout);
Taylor Brandstetterd45b95c2016-03-29 20:16:522690 EXPECT_EQ_WAIT(MediaStreamTrackInterface::kEnded,
Steve Anton36da6ff2018-02-17 00:04:202691 video_receiver->track()->state(), kTimeout);
henrike@webrtc.org28e20752013-07-10 00:45:362692}
2693
2694// Test that PeerConnection methods fails gracefully after
2695// PeerConnection::Close has been called.
Steve Anton36da6ff2018-02-17 00:04:202696// Don't run under Unified Plan since the stream API is not available.
2697TEST_F(PeerConnectionInterfaceTestPlanB, CloseAndTestMethods) {
deadbeef293e9262017-01-11 20:28:302698 CreatePeerConnectionWithoutDtls();
Seth Hampson845e8782018-03-02 19:34:102699 AddAudioVideoStream(kStreamId1, "audio_label", "video_label");
henrike@webrtc.org28e20752013-07-10 00:45:362700 CreateOfferAsRemoteDescription();
2701 CreateAnswerAsLocalDescription();
2702
2703 ASSERT_EQ(1u, pc_->local_streams()->count());
zhihuang9763d562016-08-05 18:14:502704 rtc::scoped_refptr<MediaStreamInterface> local_stream =
henrike@webrtc.org28e20752013-07-10 00:45:362705 pc_->local_streams()->at(0);
2706
2707 pc_->Close();
2708
2709 pc_->RemoveStream(local_stream);
perkj@webrtc.orgc2dd5ee2014-11-04 11:31:292710 EXPECT_FALSE(pc_->AddStream(local_stream));
henrike@webrtc.org28e20752013-07-10 00:45:362711
henrike@webrtc.org28e20752013-07-10 00:45:362712 EXPECT_TRUE(pc_->CreateDataChannel("test", NULL) == NULL);
2713
2714 EXPECT_TRUE(pc_->local_description() != NULL);
2715 EXPECT_TRUE(pc_->remote_description() != NULL);
2716
kwibergd1fe2812016-04-27 13:47:292717 std::unique_ptr<SessionDescriptionInterface> offer;
Steve Anton8d3444d2017-10-20 22:30:512718 EXPECT_FALSE(DoCreateOffer(&offer, nullptr));
kwibergd1fe2812016-04-27 13:47:292719 std::unique_ptr<SessionDescriptionInterface> answer;
Steve Anton8d3444d2017-10-20 22:30:512720 EXPECT_FALSE(DoCreateAnswer(&answer, nullptr));
henrike@webrtc.org28e20752013-07-10 00:45:362721
2722 std::string sdp;
2723 ASSERT_TRUE(pc_->remote_description()->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:342724 std::unique_ptr<SessionDescriptionInterface> remote_offer(
Steve Antona3a92c22017-12-07 18:27:412725 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
Steve Antondb45ca82017-09-12 01:27:342726 EXPECT_FALSE(DoSetRemoteDescription(std::move(remote_offer)));
henrike@webrtc.org28e20752013-07-10 00:45:362727
2728 ASSERT_TRUE(pc_->local_description()->ToString(&sdp));
Steve Antondb45ca82017-09-12 01:27:342729 std::unique_ptr<SessionDescriptionInterface> local_offer(
Steve Antona3a92c22017-12-07 18:27:412730 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
Steve Antondb45ca82017-09-12 01:27:342731 EXPECT_FALSE(DoSetLocalDescription(std::move(local_offer)));
henrike@webrtc.org28e20752013-07-10 00:45:362732}
2733
2734// Test that GetStats can still be called after PeerConnection::Close.
Steve Anton36da6ff2018-02-17 00:04:202735TEST_P(PeerConnectionInterfaceTest, CloseAndGetStats) {
henrike@webrtc.org28e20752013-07-10 00:45:362736 InitiateCall();
2737 pc_->Close();
2738 DoGetStats(NULL);
2739}
deadbeefab9b2d12015-10-14 18:33:112740
2741// NOTE: The series of tests below come from what used to be
2742// mediastreamsignaling_unittest.cc, and are mostly aimed at testing that
2743// setting a remote or local description has the expected effects.
2744
2745// This test verifies that the remote MediaStreams corresponding to a received
2746// SDP string is created. In this test the two separate MediaStreams are
2747// signaled.
Steve Anton36da6ff2018-02-17 00:04:202748TEST_P(PeerConnectionInterfaceTest, UpdateRemoteStreams) {
Niels Möllerf06f9232018-08-07 10:32:182749 RTCConfiguration config;
2750 config.enable_dtls_srtp = true;
2751 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202752 CreateAndSetRemoteOffer(GetSdpStringWithStream1());
deadbeefab9b2d12015-10-14 18:33:112753
Taylor Brandstetterdc4eb8c2016-05-12 15:14:502754 rtc::scoped_refptr<StreamCollection> reference(CreateStreamCollection(1, 1));
deadbeefab9b2d12015-10-14 18:33:112755 EXPECT_TRUE(
2756 CompareStreamCollections(observer_.remote_streams(), reference.get()));
2757 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
2758 EXPECT_TRUE(remote_stream->GetVideoTracks()[0]->GetSource() != nullptr);
2759
2760 // Create a session description based on another SDP with another
2761 // MediaStream.
Steve Anton36da6ff2018-02-17 00:04:202762 CreateAndSetRemoteOffer(GetSdpStringWithStream1And2());
deadbeefab9b2d12015-10-14 18:33:112763
Taylor Brandstetterdc4eb8c2016-05-12 15:14:502764 rtc::scoped_refptr<StreamCollection> reference2(CreateStreamCollection(2, 1));
deadbeefab9b2d12015-10-14 18:33:112765 EXPECT_TRUE(
2766 CompareStreamCollections(observer_.remote_streams(), reference2.get()));
2767}
2768
2769// This test verifies that when remote tracks are added/removed from SDP, the
2770// created remote streams are updated appropriately.
Steve Anton36da6ff2018-02-17 00:04:202771// Don't run under Unified Plan since this test uses Plan B SDP to test Plan B
2772// specific behavior.
2773TEST_F(PeerConnectionInterfaceTestPlanB,
deadbeefab9b2d12015-10-14 18:33:112774 AddRemoveTrackFromExistingRemoteMediaStream) {
Niels Möllerf06f9232018-08-07 10:32:182775 RTCConfiguration config;
2776 config.enable_dtls_srtp = true;
2777 CreatePeerConnection(config);
kwibergd1fe2812016-04-27 13:47:292778 std::unique_ptr<SessionDescriptionInterface> desc_ms1 =
kwiberg2bbff992016-03-16 18:03:042779 CreateSessionDescriptionAndReference(1, 1);
Steve Antondb45ca82017-09-12 01:27:342780 EXPECT_TRUE(DoSetRemoteDescription(std::move(desc_ms1)));
deadbeefab9b2d12015-10-14 18:33:112781 EXPECT_TRUE(CompareStreamCollections(observer_.remote_streams(),
2782 reference_collection_));
2783
2784 // Add extra audio and video tracks to the same MediaStream.
kwibergd1fe2812016-04-27 13:47:292785 std::unique_ptr<SessionDescriptionInterface> desc_ms1_two_tracks =
kwiberg2bbff992016-03-16 18:03:042786 CreateSessionDescriptionAndReference(2, 2);
Steve Antondb45ca82017-09-12 01:27:342787 EXPECT_TRUE(DoSetRemoteDescription(std::move(desc_ms1_two_tracks)));
deadbeefab9b2d12015-10-14 18:33:112788 EXPECT_TRUE(CompareStreamCollections(observer_.remote_streams(),
2789 reference_collection_));
zhihuang9763d562016-08-05 18:14:502790 rtc::scoped_refptr<AudioTrackInterface> audio_track2 =
perkjd61bf802016-03-24 10:16:192791 observer_.remote_streams()->at(0)->GetAudioTracks()[1];
2792 EXPECT_EQ(webrtc::MediaStreamTrackInterface::kLive, audio_track2->state());
zhihuang9763d562016-08-05 18:14:502793 rtc::scoped_refptr<VideoTrackInterface> video_track2 =
perkjd61bf802016-03-24 10:16:192794 observer_.remote_streams()->at(0)->GetVideoTracks()[1];
2795 EXPECT_EQ(webrtc::MediaStreamTrackInterface::kLive, video_track2->state());
deadbeefab9b2d12015-10-14 18:33:112796
2797 // Remove the extra audio and video tracks.
kwibergd1fe2812016-04-27 13:47:292798 std::unique_ptr<SessionDescriptionInterface> desc_ms2 =
kwiberg2bbff992016-03-16 18:03:042799 CreateSessionDescriptionAndReference(1, 1);
perkjd61bf802016-03-24 10:16:192800 MockTrackObserver audio_track_observer(audio_track2);
2801 MockTrackObserver video_track_observer(video_track2);
2802
2803 EXPECT_CALL(audio_track_observer, OnChanged()).Times(Exactly(1));
2804 EXPECT_CALL(video_track_observer, OnChanged()).Times(Exactly(1));
Steve Antondb45ca82017-09-12 01:27:342805 EXPECT_TRUE(DoSetRemoteDescription(std::move(desc_ms2)));
deadbeefab9b2d12015-10-14 18:33:112806 EXPECT_TRUE(CompareStreamCollections(observer_.remote_streams(),
2807 reference_collection_));
Taylor Brandstetterd45b95c2016-03-29 20:16:522808 // Track state may be updated asynchronously.
perkjd61bf802016-03-24 10:16:192809 EXPECT_EQ_WAIT(webrtc::MediaStreamTrackInterface::kEnded,
Taylor Brandstetterd45b95c2016-03-29 20:16:522810 audio_track2->state(), kTimeout);
2811 EXPECT_EQ_WAIT(webrtc::MediaStreamTrackInterface::kEnded,
2812 video_track2->state(), kTimeout);
deadbeefab9b2d12015-10-14 18:33:112813}
2814
2815// This tests that remote tracks are ended if a local session description is set
2816// that rejects the media content type.
Steve Anton36da6ff2018-02-17 00:04:202817TEST_P(PeerConnectionInterfaceTest, RejectMediaContent) {
Niels Möllerf06f9232018-08-07 10:32:182818 RTCConfiguration config;
2819 config.enable_dtls_srtp = true;
2820 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:112821 // First create and set a remote offer, then reject its video content in our
2822 // answer.
Steve Anton36da6ff2018-02-17 00:04:202823 CreateAndSetRemoteOffer(kSdpStringWithStream1PlanB);
2824 auto audio_receiver = GetFirstReceiverOfType(cricket::MEDIA_TYPE_AUDIO);
2825 ASSERT_TRUE(audio_receiver);
2826 auto video_receiver = GetFirstReceiverOfType(cricket::MEDIA_TYPE_VIDEO);
2827 ASSERT_TRUE(video_receiver);
deadbeefab9b2d12015-10-14 18:33:112828
Steve Anton36da6ff2018-02-17 00:04:202829 rtc::scoped_refptr<MediaStreamTrackInterface> remote_audio =
2830 audio_receiver->track();
deadbeefab9b2d12015-10-14 18:33:112831 EXPECT_EQ(webrtc::MediaStreamTrackInterface::kLive, remote_audio->state());
Steve Anton36da6ff2018-02-17 00:04:202832 rtc::scoped_refptr<MediaStreamTrackInterface> remote_video =
2833 video_receiver->track();
2834 EXPECT_EQ(MediaStreamTrackInterface::kLive, remote_video->state());
deadbeefab9b2d12015-10-14 18:33:112835
kwibergd1fe2812016-04-27 13:47:292836 std::unique_ptr<SessionDescriptionInterface> local_answer;
kwiberg2bbff992016-03-16 18:03:042837 EXPECT_TRUE(DoCreateAnswer(&local_answer, nullptr));
deadbeefab9b2d12015-10-14 18:33:112838 cricket::ContentInfo* video_info =
2839 local_answer->description()->GetContentByName("video");
2840 video_info->rejected = true;
Steve Antondb45ca82017-09-12 01:27:342841 EXPECT_TRUE(DoSetLocalDescription(std::move(local_answer)));
Steve Anton36da6ff2018-02-17 00:04:202842 EXPECT_EQ(MediaStreamTrackInterface::kEnded, remote_video->state());
2843 EXPECT_EQ(MediaStreamTrackInterface::kLive, remote_audio->state());
deadbeefab9b2d12015-10-14 18:33:112844
2845 // Now create an offer where we reject both video and audio.
kwibergd1fe2812016-04-27 13:47:292846 std::unique_ptr<SessionDescriptionInterface> local_offer;
kwiberg2bbff992016-03-16 18:03:042847 EXPECT_TRUE(DoCreateOffer(&local_offer, nullptr));
deadbeefab9b2d12015-10-14 18:33:112848 video_info = local_offer->description()->GetContentByName("video");
2849 ASSERT_TRUE(video_info != nullptr);
2850 video_info->rejected = true;
2851 cricket::ContentInfo* audio_info =
2852 local_offer->description()->GetContentByName("audio");
2853 ASSERT_TRUE(audio_info != nullptr);
2854 audio_info->rejected = true;
Steve Antondb45ca82017-09-12 01:27:342855 EXPECT_TRUE(DoSetLocalDescription(std::move(local_offer)));
Taylor Brandstetterd45b95c2016-03-29 20:16:522856 // Track state may be updated asynchronously.
Steve Anton36da6ff2018-02-17 00:04:202857 EXPECT_EQ_WAIT(MediaStreamTrackInterface::kEnded, remote_audio->state(),
2858 kTimeout);
2859 EXPECT_EQ_WAIT(MediaStreamTrackInterface::kEnded, remote_video->state(),
2860 kTimeout);
deadbeefab9b2d12015-10-14 18:33:112861}
2862
2863// This tests that we won't crash if the remote track has been removed outside
2864// of PeerConnection and then PeerConnection tries to reject the track.
Steve Anton36da6ff2018-02-17 00:04:202865// Don't run under Unified Plan since the stream API is not available.
2866TEST_F(PeerConnectionInterfaceTestPlanB, RemoveTrackThenRejectMediaContent) {
Niels Möllerf06f9232018-08-07 10:32:182867 RTCConfiguration config;
2868 config.enable_dtls_srtp = true;
2869 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202870 CreateAndSetRemoteOffer(GetSdpStringWithStream1());
deadbeefab9b2d12015-10-14 18:33:112871 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
2872 remote_stream->RemoveTrack(remote_stream->GetVideoTracks()[0]);
2873 remote_stream->RemoveTrack(remote_stream->GetAudioTracks()[0]);
2874
kwibergd1fe2812016-04-27 13:47:292875 std::unique_ptr<SessionDescriptionInterface> local_answer(
Steve Anton36da6ff2018-02-17 00:04:202876 webrtc::CreateSessionDescription(SdpType::kAnswer,
2877 GetSdpStringWithStream1(), nullptr));
deadbeefab9b2d12015-10-14 18:33:112878 cricket::ContentInfo* video_info =
2879 local_answer->description()->GetContentByName("video");
2880 video_info->rejected = true;
2881 cricket::ContentInfo* audio_info =
2882 local_answer->description()->GetContentByName("audio");
2883 audio_info->rejected = true;
Steve Antondb45ca82017-09-12 01:27:342884 EXPECT_TRUE(DoSetLocalDescription(std::move(local_answer)));
deadbeefab9b2d12015-10-14 18:33:112885
2886 // No crash is a pass.
2887}
2888
deadbeef5e97fb52015-10-15 19:49:082889// This tests that if a recvonly remote description is set, no remote streams
2890// will be created, even if the description contains SSRCs/MSIDs.
2891// See: https://code.google.com/p/webrtc/issues/detail?id=5054
Steve Anton36da6ff2018-02-17 00:04:202892TEST_P(PeerConnectionInterfaceTest, RecvonlyDescriptionDoesntCreateStream) {
Niels Möllerf06f9232018-08-07 10:32:182893 RTCConfiguration config;
2894 config.enable_dtls_srtp = true;
2895 CreatePeerConnection(config);
deadbeef5e97fb52015-10-15 19:49:082896
Steve Anton36da6ff2018-02-17 00:04:202897 std::string recvonly_offer = GetSdpStringWithStream1();
Steve Anton1c9c9fc2019-02-14 23:13:092898 absl::StrReplaceAll({{kSendrecv, kRecvonly}}, &recvonly_offer);
deadbeef5e97fb52015-10-15 19:49:082899 CreateAndSetRemoteOffer(recvonly_offer);
2900
2901 EXPECT_EQ(0u, observer_.remote_streams()->count());
2902}
2903
deadbeefab9b2d12015-10-14 18:33:112904// This tests that a default MediaStream is created if a remote session
2905// description doesn't contain any streams and no MSID support.
2906// It also tests that the default stream is updated if a video m-line is added
2907// in a subsequent session description.
Steve Anton36da6ff2018-02-17 00:04:202908// Don't run under Unified Plan since this behavior is Plan B specific.
2909TEST_F(PeerConnectionInterfaceTestPlanB, SdpWithoutMsidCreatesDefaultStream) {
Niels Möllerf06f9232018-08-07 10:32:182910 RTCConfiguration config;
2911 config.enable_dtls_srtp = true;
2912 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:112913 CreateAndSetRemoteOffer(kSdpStringWithoutStreamsAudioOnly);
2914
2915 ASSERT_EQ(1u, observer_.remote_streams()->count());
2916 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
2917
2918 EXPECT_EQ(1u, remote_stream->GetAudioTracks().size());
2919 EXPECT_EQ(0u, remote_stream->GetVideoTracks().size());
Seth Hampson13b8bad2018-03-13 23:05:282920 EXPECT_EQ("default", remote_stream->id());
deadbeefab9b2d12015-10-14 18:33:112921
2922 CreateAndSetRemoteOffer(kSdpStringWithoutStreams);
2923 ASSERT_EQ(1u, observer_.remote_streams()->count());
2924 ASSERT_EQ(1u, remote_stream->GetAudioTracks().size());
2925 EXPECT_EQ("defaulta0", remote_stream->GetAudioTracks()[0]->id());
deadbeef884f5852016-01-15 17:20:042926 EXPECT_EQ(MediaStreamTrackInterface::kLive,
2927 remote_stream->GetAudioTracks()[0]->state());
deadbeefab9b2d12015-10-14 18:33:112928 ASSERT_EQ(1u, remote_stream->GetVideoTracks().size());
2929 EXPECT_EQ("defaultv0", remote_stream->GetVideoTracks()[0]->id());
deadbeef884f5852016-01-15 17:20:042930 EXPECT_EQ(MediaStreamTrackInterface::kLive,
2931 remote_stream->GetVideoTracks()[0]->state());
deadbeefab9b2d12015-10-14 18:33:112932}
2933
2934// This tests that a default MediaStream is created if a remote session
2935// description doesn't contain any streams and media direction is send only.
Steve Anton36da6ff2018-02-17 00:04:202936// Don't run under Unified Plan since this behavior is Plan B specific.
2937TEST_F(PeerConnectionInterfaceTestPlanB,
Taylor Brandstetter7ff17372016-04-01 18:50:392938 SendOnlySdpWithoutMsidCreatesDefaultStream) {
Niels Möllerf06f9232018-08-07 10:32:182939 RTCConfiguration config;
2940 config.enable_dtls_srtp = true;
2941 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:112942 CreateAndSetRemoteOffer(kSdpStringSendOnlyWithoutStreams);
2943
2944 ASSERT_EQ(1u, observer_.remote_streams()->count());
2945 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
2946
2947 EXPECT_EQ(1u, remote_stream->GetAudioTracks().size());
2948 EXPECT_EQ(1u, remote_stream->GetVideoTracks().size());
Seth Hampson13b8bad2018-03-13 23:05:282949 EXPECT_EQ("default", remote_stream->id());
deadbeefab9b2d12015-10-14 18:33:112950}
2951
2952// This tests that it won't crash when PeerConnection tries to remove
2953// a remote track that as already been removed from the MediaStream.
Steve Anton36da6ff2018-02-17 00:04:202954// Don't run under Unified Plan since this behavior is Plan B specific.
2955TEST_F(PeerConnectionInterfaceTestPlanB, RemoveAlreadyGoneRemoteStream) {
Niels Möllerf06f9232018-08-07 10:32:182956 RTCConfiguration config;
2957 config.enable_dtls_srtp = true;
2958 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:202959 CreateAndSetRemoteOffer(GetSdpStringWithStream1());
deadbeefab9b2d12015-10-14 18:33:112960 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
2961 remote_stream->RemoveTrack(remote_stream->GetAudioTracks()[0]);
2962 remote_stream->RemoveTrack(remote_stream->GetVideoTracks()[0]);
2963
2964 CreateAndSetRemoteOffer(kSdpStringWithoutStreams);
2965
2966 // No crash is a pass.
2967}
2968
2969// This tests that a default MediaStream is created if the remote session
2970// description doesn't contain any streams and don't contain an indication if
2971// MSID is supported.
Steve Anton36da6ff2018-02-17 00:04:202972// Don't run under Unified Plan since this behavior is Plan B specific.
2973TEST_F(PeerConnectionInterfaceTestPlanB,
Taylor Brandstetter7ff17372016-04-01 18:50:392974 SdpWithoutMsidAndStreamsCreatesDefaultStream) {
Niels Möllerf06f9232018-08-07 10:32:182975 RTCConfiguration config;
2976 config.enable_dtls_srtp = true;
2977 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:112978 CreateAndSetRemoteOffer(kSdpStringWithoutStreams);
2979
2980 ASSERT_EQ(1u, observer_.remote_streams()->count());
2981 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
2982 EXPECT_EQ(1u, remote_stream->GetAudioTracks().size());
2983 EXPECT_EQ(1u, remote_stream->GetVideoTracks().size());
2984}
2985
2986// This tests that a default MediaStream is not created if the remote session
2987// description doesn't contain any streams but does support MSID.
Steve Anton36da6ff2018-02-17 00:04:202988// Don't run under Unified Plan since this behavior is Plan B specific.
2989TEST_F(PeerConnectionInterfaceTestPlanB, SdpWithMsidDontCreatesDefaultStream) {
Niels Möllerf06f9232018-08-07 10:32:182990 RTCConfiguration config;
2991 config.enable_dtls_srtp = true;
2992 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:112993 CreateAndSetRemoteOffer(kSdpStringWithMsidWithoutStreams);
2994 EXPECT_EQ(0u, observer_.remote_streams()->count());
2995}
2996
deadbeefbda7e0b2015-12-09 01:13:402997// This tests that when setting a new description, the old default tracks are
2998// not destroyed and recreated.
2999// See: https://bugs.chromium.org/p/webrtc/issues/detail?id=5250
Steve Anton36da6ff2018-02-17 00:04:203000// Don't run under Unified Plan since this behavior is Plan B specific.
3001TEST_F(PeerConnectionInterfaceTestPlanB,
Taylor Brandstetter7ff17372016-04-01 18:50:393002 DefaultTracksNotDestroyedAndRecreated) {
Niels Möllerf06f9232018-08-07 10:32:183003 RTCConfiguration config;
3004 config.enable_dtls_srtp = true;
3005 CreatePeerConnection(config);
deadbeefbda7e0b2015-12-09 01:13:403006 CreateAndSetRemoteOffer(kSdpStringWithoutStreamsAudioOnly);
3007
3008 ASSERT_EQ(1u, observer_.remote_streams()->count());
3009 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
3010 ASSERT_EQ(1u, remote_stream->GetAudioTracks().size());
3011
3012 // Set the track to "disabled", then set a new description and ensure the
3013 // track is still disabled, which ensures it hasn't been recreated.
3014 remote_stream->GetAudioTracks()[0]->set_enabled(false);
3015 CreateAndSetRemoteOffer(kSdpStringWithoutStreamsAudioOnly);
3016 ASSERT_EQ(1u, remote_stream->GetAudioTracks().size());
3017 EXPECT_FALSE(remote_stream->GetAudioTracks()[0]->enabled());
3018}
3019
deadbeefab9b2d12015-10-14 18:33:113020// This tests that a default MediaStream is not created if a remote session
3021// description is updated to not have any MediaStreams.
Steve Anton36da6ff2018-02-17 00:04:203022// Don't run under Unified Plan since this behavior is Plan B specific.
3023TEST_F(PeerConnectionInterfaceTestPlanB, VerifyDefaultStreamIsNotCreated) {
Niels Möllerf06f9232018-08-07 10:32:183024 RTCConfiguration config;
3025 config.enable_dtls_srtp = true;
3026 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:203027 CreateAndSetRemoteOffer(GetSdpStringWithStream1());
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503028 rtc::scoped_refptr<StreamCollection> reference(CreateStreamCollection(1, 1));
deadbeefab9b2d12015-10-14 18:33:113029 EXPECT_TRUE(
3030 CompareStreamCollections(observer_.remote_streams(), reference.get()));
3031
3032 CreateAndSetRemoteOffer(kSdpStringWithoutStreams);
3033 EXPECT_EQ(0u, observer_.remote_streams()->count());
3034}
3035
Seth Hampson5897a6e2018-04-03 18:16:333036// This tests that a default MediaStream is created if a remote SDP comes from
3037// an endpoint that doesn't signal SSRCs, but signals media stream IDs.
3038TEST_F(PeerConnectionInterfaceTestPlanB,
3039 SdpWithMsidWithoutSsrcCreatesDefaultStream) {
Niels Möllerf06f9232018-08-07 10:32:183040 RTCConfiguration config;
3041 config.enable_dtls_srtp = true;
3042 CreatePeerConnection(config);
Seth Hampson5897a6e2018-04-03 18:16:333043 std::string sdp_string = kSdpStringWithoutStreamsAudioOnly;
3044 // Add a=msid lines to simulate a Unified Plan endpoint that only
3045 // signals stream IDs with a=msid lines.
3046 sdp_string.append("a=msid:audio_stream_id audio_track_id\n");
3047
3048 CreateAndSetRemoteOffer(sdp_string);
3049
3050 ASSERT_EQ(1u, observer_.remote_streams()->count());
3051 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
3052 EXPECT_EQ("default", remote_stream->id());
3053 ASSERT_EQ(1u, remote_stream->GetAudioTracks().size());
3054}
3055
Seth Hampson5b4f0752018-04-02 23:31:363056// This tests that when a Plan B endpoint receives an SDP that signals no media
3057// stream IDs indicated by the special character "-" in the a=msid line, that
3058// a default stream ID will be used for the MediaStream ID. This can occur
3059// when a Unified Plan endpoint signals no media stream IDs, but signals both
3060// a=ssrc msid and a=msid lines for interop signaling with Plan B.
3061TEST_F(PeerConnectionInterfaceTestPlanB,
3062 SdpWithEmptyMsidAndSsrcCreatesDefaultStreamId) {
Niels Möllerf06f9232018-08-07 10:32:183063 RTCConfiguration config;
3064 config.enable_dtls_srtp = true;
3065 CreatePeerConnection(config);
Seth Hampson5b4f0752018-04-02 23:31:363066 // Add a a=msid line to the SDP. This is prioritized when parsing the SDP, so
3067 // the sender's stream ID will be interpreted as no stream IDs.
3068 std::string sdp_string = kSdpStringWithStream1AudioTrackOnly;
3069 sdp_string.append("a=msid:- audiotrack0\n");
3070
3071 CreateAndSetRemoteOffer(sdp_string);
3072
3073 ASSERT_EQ(1u, observer_.remote_streams()->count());
3074 // Because SSRCs are signaled the track ID will be what was signaled in the
3075 // a=msid line.
3076 EXPECT_EQ("audiotrack0", observer_.last_added_track_label_);
3077 MediaStreamInterface* remote_stream = observer_.remote_streams()->at(0);
3078 EXPECT_EQ("default", remote_stream->id());
3079 ASSERT_EQ(1u, remote_stream->GetAudioTracks().size());
Seth Hampson83d676b2018-04-06 01:12:093080
3081 // Previously a bug ocurred when setting the remote description a second time.
3082 // This is because we checked equality of the remote StreamParams stream ID
3083 // (empty), and the previously set stream ID for the remote sender
3084 // ("default"). This cause a track to be removed, then added, when really
3085 // nothing should occur because it is the same track.
3086 CreateAndSetRemoteOffer(sdp_string);
3087 EXPECT_EQ(0u, observer_.remove_track_events_.size());
3088 EXPECT_EQ(1u, observer_.add_track_events_.size());
3089 EXPECT_EQ("audiotrack0", observer_.last_added_track_label_);
3090 remote_stream = observer_.remote_streams()->at(0);
3091 EXPECT_EQ("default", remote_stream->id());
3092 ASSERT_EQ(1u, remote_stream->GetAudioTracks().size());
Seth Hampson5b4f0752018-04-02 23:31:363093}
3094
deadbeefab9b2d12015-10-14 18:33:113095// This tests that an RtpSender is created when the local description is set
3096// after adding a local stream.
3097// TODO(deadbeef): This test and the one below it need to be updated when
3098// an RtpSender's lifetime isn't determined by when a local description is set.
Steve Anton36da6ff2018-02-17 00:04:203099// Don't run under Unified Plan since this behavior is Plan B specific.
3100TEST_F(PeerConnectionInterfaceTestPlanB, LocalDescriptionChanged) {
Niels Möllerf06f9232018-08-07 10:32:183101 RTCConfiguration config;
3102 config.enable_dtls_srtp = true;
3103 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:113104
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503105 // Create an offer with 1 stream with 2 tracks of each type.
3106 rtc::scoped_refptr<StreamCollection> stream_collection =
3107 CreateStreamCollection(1, 2);
3108 pc_->AddStream(stream_collection->at(0));
3109 std::unique_ptr<SessionDescriptionInterface> offer;
3110 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Steve Antondb45ca82017-09-12 01:27:343111 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefab9b2d12015-10-14 18:33:113112
deadbeefab9b2d12015-10-14 18:33:113113 auto senders = pc_->GetSenders();
3114 EXPECT_EQ(4u, senders.size());
3115 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0]));
3116 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0]));
3117 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[1]));
3118 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[1]));
3119
3120 // Remove an audio and video track.
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503121 pc_->RemoveStream(stream_collection->at(0));
3122 stream_collection = CreateStreamCollection(1, 1);
3123 pc_->AddStream(stream_collection->at(0));
3124 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Steve Antondb45ca82017-09-12 01:27:343125 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503126
deadbeefab9b2d12015-10-14 18:33:113127 senders = pc_->GetSenders();
3128 EXPECT_EQ(2u, senders.size());
3129 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0]));
3130 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0]));
3131 EXPECT_FALSE(ContainsSender(senders, kAudioTracks[1]));
3132 EXPECT_FALSE(ContainsSender(senders, kVideoTracks[1]));
3133}
3134
3135// This tests that an RtpSender is created when the local description is set
3136// before adding a local stream.
Steve Anton36da6ff2018-02-17 00:04:203137// Don't run under Unified Plan since this behavior is Plan B specific.
3138TEST_F(PeerConnectionInterfaceTestPlanB,
Taylor Brandstetter7ff17372016-04-01 18:50:393139 AddLocalStreamAfterLocalDescriptionChanged) {
Niels Möllerf06f9232018-08-07 10:32:183140 RTCConfiguration config;
3141 config.enable_dtls_srtp = true;
3142 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:113143
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503144 rtc::scoped_refptr<StreamCollection> stream_collection =
3145 CreateStreamCollection(1, 2);
3146 // Add a stream to create the offer, but remove it afterwards.
3147 pc_->AddStream(stream_collection->at(0));
3148 std::unique_ptr<SessionDescriptionInterface> offer;
3149 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
3150 pc_->RemoveStream(stream_collection->at(0));
deadbeefab9b2d12015-10-14 18:33:113151
Steve Antondb45ca82017-09-12 01:27:343152 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefab9b2d12015-10-14 18:33:113153 auto senders = pc_->GetSenders();
3154 EXPECT_EQ(0u, senders.size());
3155
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503156 pc_->AddStream(stream_collection->at(0));
deadbeefab9b2d12015-10-14 18:33:113157 senders = pc_->GetSenders();
3158 EXPECT_EQ(4u, senders.size());
3159 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0]));
3160 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0]));
3161 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[1]));
3162 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[1]));
3163}
3164
3165// This tests that the expected behavior occurs if the SSRC on a local track is
3166// changed when SetLocalDescription is called.
Steve Anton36da6ff2018-02-17 00:04:203167TEST_P(PeerConnectionInterfaceTest,
Taylor Brandstetter7ff17372016-04-01 18:50:393168 ChangeSsrcOnTrackInLocalSessionDescription) {
Niels Möllerf06f9232018-08-07 10:32:183169 RTCConfiguration config;
3170 config.enable_dtls_srtp = true;
3171 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:113172
Steve Anton36da6ff2018-02-17 00:04:203173 AddAudioTrack(kAudioTracks[0]);
3174 AddVideoTrack(kVideoTracks[0]);
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503175 std::unique_ptr<SessionDescriptionInterface> offer;
3176 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
3177 // Grab a copy of the offer before it gets passed into the PC.
Steve Antond9e4a062018-07-25 01:23:333178 std::unique_ptr<SessionDescriptionInterface> modified_offer =
3179 webrtc::CreateSessionDescription(
3180 webrtc::SdpType::kOffer, offer->session_id(),
Harald Alvestrand4d7160e2019-04-12 05:01:293181 offer->session_version(), offer->description()->Clone());
Steve Antondb45ca82017-09-12 01:27:343182 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefab9b2d12015-10-14 18:33:113183
deadbeefab9b2d12015-10-14 18:33:113184 auto senders = pc_->GetSenders();
3185 EXPECT_EQ(2u, senders.size());
3186 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0]));
3187 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0]));
3188
3189 // Change the ssrc of the audio and video track.
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503190 cricket::MediaContentDescription* desc =
3191 cricket::GetFirstAudioContentDescription(modified_offer->description());
3192 ASSERT_TRUE(desc != NULL);
3193 for (StreamParams& stream : desc->mutable_streams()) {
3194 for (unsigned int& ssrc : stream.ssrcs) {
3195 ++ssrc;
3196 }
3197 }
deadbeefab9b2d12015-10-14 18:33:113198
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503199 desc =
3200 cricket::GetFirstVideoContentDescription(modified_offer->description());
3201 ASSERT_TRUE(desc != NULL);
3202 for (StreamParams& stream : desc->mutable_streams()) {
3203 for (unsigned int& ssrc : stream.ssrcs) {
3204 ++ssrc;
3205 }
3206 }
3207
Steve Antondb45ca82017-09-12 01:27:343208 EXPECT_TRUE(DoSetLocalDescription(std::move(modified_offer)));
deadbeefab9b2d12015-10-14 18:33:113209 senders = pc_->GetSenders();
3210 EXPECT_EQ(2u, senders.size());
3211 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0]));
3212 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0]));
3213 // TODO(deadbeef): Once RtpSenders expose parameters, check that the SSRC
3214 // changed.
3215}
3216
3217// This tests that the expected behavior occurs if a new session description is
3218// set with the same tracks, but on a different MediaStream.
Steve Anton36da6ff2018-02-17 00:04:203219// Don't run under Unified Plan since the stream API is not available.
3220TEST_F(PeerConnectionInterfaceTestPlanB,
Taylor Brandstetter7ff17372016-04-01 18:50:393221 SignalSameTracksInSeparateMediaStream) {
Niels Möllerf06f9232018-08-07 10:32:183222 RTCConfiguration config;
3223 config.enable_dtls_srtp = true;
3224 CreatePeerConnection(config);
deadbeefab9b2d12015-10-14 18:33:113225
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503226 rtc::scoped_refptr<StreamCollection> stream_collection =
3227 CreateStreamCollection(2, 1);
3228 pc_->AddStream(stream_collection->at(0));
3229 std::unique_ptr<SessionDescriptionInterface> offer;
3230 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Steve Antondb45ca82017-09-12 01:27:343231 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefab9b2d12015-10-14 18:33:113232
deadbeefab9b2d12015-10-14 18:33:113233 auto senders = pc_->GetSenders();
3234 EXPECT_EQ(2u, senders.size());
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503235 EXPECT_TRUE(ContainsSender(senders, kAudioTracks[0], kStreams[0]));
3236 EXPECT_TRUE(ContainsSender(senders, kVideoTracks[0], kStreams[0]));
deadbeefab9b2d12015-10-14 18:33:113237
3238 // Add a new MediaStream but with the same tracks as in the first stream.
3239 rtc::scoped_refptr<webrtc::MediaStreamInterface> stream_1(
3240 webrtc::MediaStream::Create(kStreams[1]));
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503241 stream_1->AddTrack(stream_collection->at(0)->GetVideoTracks()[0]);
3242 stream_1->AddTrack(stream_collection->at(0)->GetAudioTracks()[0]);
deadbeefab9b2d12015-10-14 18:33:113243 pc_->AddStream(stream_1);
3244
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503245 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Steve Antondb45ca82017-09-12 01:27:343246 EXPECT_TRUE(DoSetLocalDescription(std::move(offer)));
deadbeefab9b2d12015-10-14 18:33:113247
Taylor Brandstetterdc4eb8c2016-05-12 15:14:503248 auto new_senders = pc_->GetSenders();
3249 // Should be the same senders as before, but with updated stream id.
3250 // Note that this behavior is subject to change in the future.
3251 // We may decide the PC should ignore existing tracks in AddStream.
3252 EXPECT_EQ(senders, new_senders);
3253 EXPECT_TRUE(ContainsSender(new_senders, kAudioTracks[0], kStreams[1]));
3254 EXPECT_TRUE(ContainsSender(new_senders, kVideoTracks[0], kStreams[1]));
deadbeefab9b2d12015-10-14 18:33:113255}
3256
zhihuang81c3a032016-11-17 20:06:243257// This tests that PeerConnectionObserver::OnAddTrack is correctly called.
Steve Anton36da6ff2018-02-17 00:04:203258TEST_P(PeerConnectionInterfaceTest, OnAddTrackCallback) {
Niels Möllerf06f9232018-08-07 10:32:183259 RTCConfiguration config;
3260 config.enable_dtls_srtp = true;
3261 CreatePeerConnection(config);
zhihuang81c3a032016-11-17 20:06:243262 CreateAndSetRemoteOffer(kSdpStringWithStream1AudioTrackOnly);
3263 EXPECT_EQ(observer_.num_added_tracks_, 1);
3264 EXPECT_EQ(observer_.last_added_track_label_, kAudioTracks[0]);
3265
3266 // Create and set the updated remote SDP.
Steve Anton36da6ff2018-02-17 00:04:203267 CreateAndSetRemoteOffer(kSdpStringWithStream1PlanB);
Steve Anton0f5400a2018-07-17 21:25:363268 EXPECT_EQ(observer_.num_added_tracks_, 2);
zhihuang81c3a032016-11-17 20:06:243269 EXPECT_EQ(observer_.last_added_track_label_, kVideoTracks[0]);
3270}
3271
deadbeefd1a38b52016-12-10 21:15:333272// Test that when SetConfiguration is called and the configuration is
3273// changing, the next offer causes an ICE restart.
Steve Anton36da6ff2018-02-17 00:04:203274TEST_P(PeerConnectionInterfaceTest, SetConfigurationCausingIceRestart) {
deadbeefd1a38b52016-12-10 21:15:333275 PeerConnectionInterface::RTCConfiguration config;
3276 config.type = PeerConnectionInterface::kRelay;
Niels Möllerf06f9232018-08-07 10:32:183277 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:203278 config = pc_->GetConfiguration();
Seth Hampson845e8782018-03-02 19:34:103279 AddAudioTrack(kAudioTracks[0], {kStreamId1});
3280 AddVideoTrack(kVideoTracks[0], {kStreamId1});
deadbeefd1a38b52016-12-10 21:15:333281
3282 // Do initial offer/answer so there's something to restart.
3283 CreateOfferAsLocalDescription();
Steve Anton36da6ff2018-02-17 00:04:203284 CreateAnswerAsRemoteDescription(GetSdpStringWithStream1());
deadbeefd1a38b52016-12-10 21:15:333285
3286 // Grab the ufrags.
3287 std::vector<std::string> initial_ufrags = GetUfrags(pc_->local_description());
3288
3289 // Change ICE policy, which should trigger an ICE restart on the next offer.
3290 config.type = PeerConnectionInterface::kAll;
Niels Möller2579f0c2019-08-19 07:58:173291 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeefd1a38b52016-12-10 21:15:333292 CreateOfferAsLocalDescription();
3293
3294 // Grab the new ufrags.
3295 std::vector<std::string> subsequent_ufrags =
3296 GetUfrags(pc_->local_description());
3297
3298 // Sanity check.
3299 EXPECT_EQ(initial_ufrags.size(), subsequent_ufrags.size());
3300 // Check that each ufrag is different.
3301 for (int i = 0; i < static_cast<int>(initial_ufrags.size()); ++i) {
3302 EXPECT_NE(initial_ufrags[i], subsequent_ufrags[i]);
3303 }
3304}
3305
3306// Test that when SetConfiguration is called and the configuration *isn't*
3307// changing, the next offer does *not* cause an ICE restart.
Steve Anton36da6ff2018-02-17 00:04:203308TEST_P(PeerConnectionInterfaceTest, SetConfigurationNotCausingIceRestart) {
deadbeefd1a38b52016-12-10 21:15:333309 PeerConnectionInterface::RTCConfiguration config;
3310 config.type = PeerConnectionInterface::kRelay;
Niels Möllerf06f9232018-08-07 10:32:183311 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:203312 config = pc_->GetConfiguration();
3313 AddAudioTrack(kAudioTracks[0]);
3314 AddVideoTrack(kVideoTracks[0]);
deadbeefd1a38b52016-12-10 21:15:333315
3316 // Do initial offer/answer so there's something to restart.
3317 CreateOfferAsLocalDescription();
Steve Anton36da6ff2018-02-17 00:04:203318 CreateAnswerAsRemoteDescription(GetSdpStringWithStream1());
deadbeefd1a38b52016-12-10 21:15:333319
3320 // Grab the ufrags.
3321 std::vector<std::string> initial_ufrags = GetUfrags(pc_->local_description());
3322
3323 // Call SetConfiguration with a config identical to what the PC was
3324 // constructed with.
Niels Möller2579f0c2019-08-19 07:58:173325 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeefd1a38b52016-12-10 21:15:333326 CreateOfferAsLocalDescription();
3327
3328 // Grab the new ufrags.
3329 std::vector<std::string> subsequent_ufrags =
3330 GetUfrags(pc_->local_description());
3331
3332 EXPECT_EQ(initial_ufrags, subsequent_ufrags);
3333}
3334
3335// Test for a weird corner case scenario:
3336// 1. Audio/video session established.
3337// 2. SetConfiguration changes ICE config; ICE restart needed.
3338// 3. ICE restart initiated by remote peer, but only for one m= section.
3339// 4. Next createOffer should initiate an ICE restart, but only for the other
3340// m= section; it would be pointless to do an ICE restart for the m= section
3341// that was already restarted.
Steve Anton36da6ff2018-02-17 00:04:203342TEST_P(PeerConnectionInterfaceTest, SetConfigurationCausingPartialIceRestart) {
deadbeefd1a38b52016-12-10 21:15:333343 PeerConnectionInterface::RTCConfiguration config;
3344 config.type = PeerConnectionInterface::kRelay;
Niels Möllerf06f9232018-08-07 10:32:183345 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:203346 config = pc_->GetConfiguration();
Seth Hampson845e8782018-03-02 19:34:103347 AddAudioTrack(kAudioTracks[0], {kStreamId1});
3348 AddVideoTrack(kVideoTracks[0], {kStreamId1});
deadbeefd1a38b52016-12-10 21:15:333349
3350 // Do initial offer/answer so there's something to restart.
3351 CreateOfferAsLocalDescription();
Steve Anton36da6ff2018-02-17 00:04:203352 CreateAnswerAsRemoteDescription(GetSdpStringWithStream1());
deadbeefd1a38b52016-12-10 21:15:333353
3354 // Change ICE policy, which should set the "needs-ice-restart" flag.
3355 config.type = PeerConnectionInterface::kAll;
Niels Möller2579f0c2019-08-19 07:58:173356 EXPECT_TRUE(pc_->SetConfiguration(config).ok());
deadbeefd1a38b52016-12-10 21:15:333357
3358 // Do ICE restart for the first m= section, initiated by remote peer.
Steve Antondb45ca82017-09-12 01:27:343359 std::unique_ptr<webrtc::SessionDescriptionInterface> remote_offer(
Steve Anton36da6ff2018-02-17 00:04:203360 webrtc::CreateSessionDescription(SdpType::kOffer,
3361 GetSdpStringWithStream1(), nullptr));
Steve Antondb45ca82017-09-12 01:27:343362 ASSERT_TRUE(remote_offer);
deadbeefd1a38b52016-12-10 21:15:333363 remote_offer->description()->transport_infos()[0].description.ice_ufrag =
3364 "modified";
Steve Antondb45ca82017-09-12 01:27:343365 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_offer)));
deadbeefd1a38b52016-12-10 21:15:333366 CreateAnswerAsLocalDescription();
3367
3368 // Grab the ufrags.
3369 std::vector<std::string> initial_ufrags = GetUfrags(pc_->local_description());
Mirko Bonadeie12c1fe2018-07-03 10:53:233370 ASSERT_EQ(2U, initial_ufrags.size());
deadbeefd1a38b52016-12-10 21:15:333371
3372 // Create offer and grab the new ufrags.
3373 CreateOfferAsLocalDescription();
3374 std::vector<std::string> subsequent_ufrags =
3375 GetUfrags(pc_->local_description());
Mirko Bonadeie12c1fe2018-07-03 10:53:233376 ASSERT_EQ(2U, subsequent_ufrags.size());
deadbeefd1a38b52016-12-10 21:15:333377
3378 // Ensure that only the ufrag for the second m= section changed.
3379 EXPECT_EQ(initial_ufrags[0], subsequent_ufrags[0]);
3380 EXPECT_NE(initial_ufrags[1], subsequent_ufrags[1]);
3381}
3382
deadbeeffe4a8a42016-12-21 01:56:173383// Tests that the methods to return current/pending descriptions work as
3384// expected at different points in the offer/answer exchange. This test does
3385// one offer/answer exchange as the offerer, then another as the answerer.
Steve Anton36da6ff2018-02-17 00:04:203386TEST_P(PeerConnectionInterfaceTest, CurrentAndPendingDescriptions) {
deadbeeffe4a8a42016-12-21 01:56:173387 // This disables DTLS so we can apply an answer to ourselves.
3388 CreatePeerConnection();
3389
3390 // Create initial local offer and get SDP (which will also be used as
3391 // answer/pranswer);
Steve Antondb45ca82017-09-12 01:27:343392 std::unique_ptr<SessionDescriptionInterface> local_offer;
3393 ASSERT_TRUE(DoCreateOffer(&local_offer, nullptr));
deadbeeffe4a8a42016-12-21 01:56:173394 std::string sdp;
Steve Antondb45ca82017-09-12 01:27:343395 EXPECT_TRUE(local_offer->ToString(&sdp));
deadbeeffe4a8a42016-12-21 01:56:173396
3397 // Set local offer.
Steve Antondb45ca82017-09-12 01:27:343398 SessionDescriptionInterface* local_offer_ptr = local_offer.get();
3399 EXPECT_TRUE(DoSetLocalDescription(std::move(local_offer)));
3400 EXPECT_EQ(local_offer_ptr, pc_->pending_local_description());
deadbeeffe4a8a42016-12-21 01:56:173401 EXPECT_EQ(nullptr, pc_->pending_remote_description());
3402 EXPECT_EQ(nullptr, pc_->current_local_description());
3403 EXPECT_EQ(nullptr, pc_->current_remote_description());
3404
3405 // Set remote pranswer.
Steve Antondb45ca82017-09-12 01:27:343406 std::unique_ptr<SessionDescriptionInterface> remote_pranswer(
Steve Antona3a92c22017-12-07 18:27:413407 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:343408 SessionDescriptionInterface* remote_pranswer_ptr = remote_pranswer.get();
3409 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_pranswer)));
3410 EXPECT_EQ(local_offer_ptr, pc_->pending_local_description());
3411 EXPECT_EQ(remote_pranswer_ptr, pc_->pending_remote_description());
deadbeeffe4a8a42016-12-21 01:56:173412 EXPECT_EQ(nullptr, pc_->current_local_description());
3413 EXPECT_EQ(nullptr, pc_->current_remote_description());
3414
3415 // Set remote answer.
Steve Antondb45ca82017-09-12 01:27:343416 std::unique_ptr<SessionDescriptionInterface> remote_answer(
Steve Antona3a92c22017-12-07 18:27:413417 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:343418 SessionDescriptionInterface* remote_answer_ptr = remote_answer.get();
3419 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_answer)));
deadbeeffe4a8a42016-12-21 01:56:173420 EXPECT_EQ(nullptr, pc_->pending_local_description());
3421 EXPECT_EQ(nullptr, pc_->pending_remote_description());
Steve Antondb45ca82017-09-12 01:27:343422 EXPECT_EQ(local_offer_ptr, pc_->current_local_description());
3423 EXPECT_EQ(remote_answer_ptr, pc_->current_remote_description());
deadbeeffe4a8a42016-12-21 01:56:173424
3425 // Set remote offer.
Steve Antondb45ca82017-09-12 01:27:343426 std::unique_ptr<SessionDescriptionInterface> remote_offer(
Steve Antona3a92c22017-12-07 18:27:413427 webrtc::CreateSessionDescription(SdpType::kOffer, sdp));
Steve Antondb45ca82017-09-12 01:27:343428 SessionDescriptionInterface* remote_offer_ptr = remote_offer.get();
3429 EXPECT_TRUE(DoSetRemoteDescription(std::move(remote_offer)));
3430 EXPECT_EQ(remote_offer_ptr, pc_->pending_remote_description());
deadbeeffe4a8a42016-12-21 01:56:173431 EXPECT_EQ(nullptr, pc_->pending_local_description());
Steve Antondb45ca82017-09-12 01:27:343432 EXPECT_EQ(local_offer_ptr, pc_->current_local_description());
3433 EXPECT_EQ(remote_answer_ptr, pc_->current_remote_description());
deadbeeffe4a8a42016-12-21 01:56:173434
3435 // Set local pranswer.
Steve Antondb45ca82017-09-12 01:27:343436 std::unique_ptr<SessionDescriptionInterface> local_pranswer(
Steve Antona3a92c22017-12-07 18:27:413437 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:343438 SessionDescriptionInterface* local_pranswer_ptr = local_pranswer.get();
3439 EXPECT_TRUE(DoSetLocalDescription(std::move(local_pranswer)));
3440 EXPECT_EQ(remote_offer_ptr, pc_->pending_remote_description());
3441 EXPECT_EQ(local_pranswer_ptr, pc_->pending_local_description());
3442 EXPECT_EQ(local_offer_ptr, pc_->current_local_description());
3443 EXPECT_EQ(remote_answer_ptr, pc_->current_remote_description());
deadbeeffe4a8a42016-12-21 01:56:173444
3445 // Set local answer.
Steve Antondb45ca82017-09-12 01:27:343446 std::unique_ptr<SessionDescriptionInterface> local_answer(
Steve Antona3a92c22017-12-07 18:27:413447 webrtc::CreateSessionDescription(SdpType::kAnswer, sdp));
Steve Antondb45ca82017-09-12 01:27:343448 SessionDescriptionInterface* local_answer_ptr = local_answer.get();
3449 EXPECT_TRUE(DoSetLocalDescription(std::move(local_answer)));
deadbeeffe4a8a42016-12-21 01:56:173450 EXPECT_EQ(nullptr, pc_->pending_remote_description());
3451 EXPECT_EQ(nullptr, pc_->pending_local_description());
Steve Antondb45ca82017-09-12 01:27:343452 EXPECT_EQ(remote_offer_ptr, pc_->current_remote_description());
3453 EXPECT_EQ(local_answer_ptr, pc_->current_local_description());
deadbeeffe4a8a42016-12-21 01:56:173454}
3455
zhihuang77985012017-02-07 23:45:163456// Tests that it won't crash when calling StartRtcEventLog or StopRtcEventLog
3457// after the PeerConnection is closed.
Elad Alon99c3fe52017-10-13 14:29:403458// This version tests the StartRtcEventLog version that receives an object
3459// of type |RtcEventLogOutput|.
Steve Anton36da6ff2018-02-17 00:04:203460TEST_P(PeerConnectionInterfaceTest,
Elad Alon99c3fe52017-10-13 14:29:403461 StartAndStopLoggingToOutputAfterPeerConnectionClosed) {
3462 CreatePeerConnection();
3463 // The RtcEventLog will be reset when the PeerConnection is closed.
3464 pc_->Close();
3465
Niels Möllerdec9f742019-06-03 13:25:203466 EXPECT_FALSE(
Mirko Bonadei317a1f02019-09-17 15:06:183467 pc_->StartRtcEventLog(std::make_unique<webrtc::RtcEventLogOutputNull>(),
Niels Möllerdec9f742019-06-03 13:25:203468 webrtc::RtcEventLog::kImmediateOutput));
Elad Alon99c3fe52017-10-13 14:29:403469 pc_->StopRtcEventLog();
3470}
3471
deadbeef30952b42017-04-21 09:41:293472// Test that generated offers/answers include "ice-option:trickle".
Steve Anton36da6ff2018-02-17 00:04:203473TEST_P(PeerConnectionInterfaceTest, OffersAndAnswersHaveTrickleIceOption) {
deadbeef30952b42017-04-21 09:41:293474 CreatePeerConnection();
3475
3476 // First, create an offer with audio/video.
Niels Möllerf06f9232018-08-07 10:32:183477 RTCOfferAnswerOptions options;
3478 options.offer_to_receive_audio = 1;
3479 options.offer_to_receive_video = 1;
deadbeef30952b42017-04-21 09:41:293480 std::unique_ptr<SessionDescriptionInterface> offer;
Niels Möllerf06f9232018-08-07 10:32:183481 ASSERT_TRUE(DoCreateOffer(&offer, &options));
deadbeef30952b42017-04-21 09:41:293482 cricket::SessionDescription* desc = offer->description();
3483 ASSERT_EQ(2u, desc->transport_infos().size());
3484 EXPECT_TRUE(desc->transport_infos()[0].description.HasOption("trickle"));
3485 EXPECT_TRUE(desc->transport_infos()[1].description.HasOption("trickle"));
3486
3487 // Apply the offer as a remote description, then create an answer.
Steve Antondb45ca82017-09-12 01:27:343488 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
deadbeef30952b42017-04-21 09:41:293489 std::unique_ptr<SessionDescriptionInterface> answer;
Niels Möllerf06f9232018-08-07 10:32:183490 ASSERT_TRUE(DoCreateAnswer(&answer, &options));
deadbeef30952b42017-04-21 09:41:293491 desc = answer->description();
3492 ASSERT_EQ(2u, desc->transport_infos().size());
3493 EXPECT_TRUE(desc->transport_infos()[0].description.HasOption("trickle"));
3494 EXPECT_TRUE(desc->transport_infos()[1].description.HasOption("trickle"));
3495}
3496
deadbeef1dcb1642017-03-30 04:08:163497// Test that ICE renomination isn't offered if it's not enabled in the PC's
3498// RTCConfiguration.
Steve Anton36da6ff2018-02-17 00:04:203499TEST_P(PeerConnectionInterfaceTest, IceRenominationNotOffered) {
deadbeef1dcb1642017-03-30 04:08:163500 PeerConnectionInterface::RTCConfiguration config;
3501 config.enable_ice_renomination = false;
Niels Möllerf06f9232018-08-07 10:32:183502 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:203503 AddAudioTrack("foo");
deadbeef1dcb1642017-03-30 04:08:163504
3505 std::unique_ptr<SessionDescriptionInterface> offer;
3506 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
3507 cricket::SessionDescription* desc = offer->description();
3508 EXPECT_EQ(1u, desc->transport_infos().size());
3509 EXPECT_FALSE(
3510 desc->transport_infos()[0].description.GetIceParameters().renomination);
3511}
3512
3513// Test that the ICE renomination option is present in generated offers/answers
3514// if it's enabled in the PC's RTCConfiguration.
Steve Anton36da6ff2018-02-17 00:04:203515TEST_P(PeerConnectionInterfaceTest, IceRenominationOptionInOfferAndAnswer) {
deadbeef1dcb1642017-03-30 04:08:163516 PeerConnectionInterface::RTCConfiguration config;
3517 config.enable_ice_renomination = true;
Niels Möllerf06f9232018-08-07 10:32:183518 CreatePeerConnection(config);
Steve Anton36da6ff2018-02-17 00:04:203519 AddAudioTrack("foo");
deadbeef1dcb1642017-03-30 04:08:163520
3521 std::unique_ptr<SessionDescriptionInterface> offer;
3522 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
3523 cricket::SessionDescription* desc = offer->description();
3524 EXPECT_EQ(1u, desc->transport_infos().size());
3525 EXPECT_TRUE(
3526 desc->transport_infos()[0].description.GetIceParameters().renomination);
3527
3528 // Set the offer as a remote description, then create an answer and ensure it
3529 // has the renomination flag too.
Steve Antondb45ca82017-09-12 01:27:343530 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
deadbeef1dcb1642017-03-30 04:08:163531 std::unique_ptr<SessionDescriptionInterface> answer;
3532 ASSERT_TRUE(DoCreateAnswer(&answer, nullptr));
3533 desc = answer->description();
3534 EXPECT_EQ(1u, desc->transport_infos().size());
3535 EXPECT_TRUE(
3536 desc->transport_infos()[0].description.GetIceParameters().renomination);
3537}
3538
3539// Test that if CreateOffer is called with the deprecated "offer to receive
3540// audio/video" constraints, they're processed and result in an offer with
3541// audio/video sections just as if RTCOfferAnswerOptions had been used.
Steve Anton36da6ff2018-02-17 00:04:203542TEST_P(PeerConnectionInterfaceTest, CreateOfferWithOfferToReceiveConstraints) {
deadbeef1dcb1642017-03-30 04:08:163543 CreatePeerConnection();
3544
Niels Möllerf06f9232018-08-07 10:32:183545 RTCOfferAnswerOptions options;
3546 options.offer_to_receive_audio = 1;
3547 options.offer_to_receive_video = 1;
deadbeef1dcb1642017-03-30 04:08:163548 std::unique_ptr<SessionDescriptionInterface> offer;
Niels Möllerf06f9232018-08-07 10:32:183549 ASSERT_TRUE(DoCreateOffer(&offer, &options));
deadbeef1dcb1642017-03-30 04:08:163550
3551 cricket::SessionDescription* desc = offer->description();
3552 const cricket::ContentInfo* audio = cricket::GetFirstAudioContent(desc);
3553 const cricket::ContentInfo* video = cricket::GetFirstVideoContent(desc);
3554 ASSERT_NE(nullptr, audio);
3555 ASSERT_NE(nullptr, video);
3556 EXPECT_FALSE(audio->rejected);
3557 EXPECT_FALSE(video->rejected);
3558}
3559
3560// Test that if CreateAnswer is called with the deprecated "offer to receive
3561// audio/video" constraints, they're processed and can be used to reject an
3562// offered m= section just as can be done with RTCOfferAnswerOptions;
Steve Anton36da6ff2018-02-17 00:04:203563// Don't run under Unified Plan since this behavior is not supported.
3564TEST_F(PeerConnectionInterfaceTestPlanB,
3565 CreateAnswerWithOfferToReceiveConstraints) {
deadbeef1dcb1642017-03-30 04:08:163566 CreatePeerConnection();
3567
3568 // First, create an offer with audio/video and apply it as a remote
3569 // description.
Niels Möllerf06f9232018-08-07 10:32:183570 RTCOfferAnswerOptions options;
3571 options.offer_to_receive_audio = 1;
3572 options.offer_to_receive_video = 1;
deadbeef1dcb1642017-03-30 04:08:163573 std::unique_ptr<SessionDescriptionInterface> offer;
Niels Möllerf06f9232018-08-07 10:32:183574 ASSERT_TRUE(DoCreateOffer(&offer, &options));
Steve Antondb45ca82017-09-12 01:27:343575 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
deadbeef1dcb1642017-03-30 04:08:163576
3577 // Now create answer that rejects audio/video.
Niels Möllerf06f9232018-08-07 10:32:183578 options.offer_to_receive_audio = 0;
3579 options.offer_to_receive_video = 0;
deadbeef1dcb1642017-03-30 04:08:163580 std::unique_ptr<SessionDescriptionInterface> answer;
Niels Möllerf06f9232018-08-07 10:32:183581 ASSERT_TRUE(DoCreateAnswer(&answer, &options));
deadbeef1dcb1642017-03-30 04:08:163582
3583 cricket::SessionDescription* desc = answer->description();
3584 const cricket::ContentInfo* audio = cricket::GetFirstAudioContent(desc);
3585 const cricket::ContentInfo* video = cricket::GetFirstVideoContent(desc);
3586 ASSERT_NE(nullptr, audio);
3587 ASSERT_NE(nullptr, video);
3588 EXPECT_TRUE(audio->rejected);
3589 EXPECT_TRUE(video->rejected);
3590}
3591
deadbeef1dcb1642017-03-30 04:08:163592// Test that negotiation can succeed with a data channel only, and with the max
3593// bundle policy. Previously there was a bug that prevented this.
Steve Anton36da6ff2018-02-17 00:04:203594#ifdef HAVE_SCTP
3595TEST_P(PeerConnectionInterfaceTest, DataChannelOnlyOfferWithMaxBundlePolicy) {
3596#else
3597TEST_P(PeerConnectionInterfaceTest,
3598 DISABLED_DataChannelOnlyOfferWithMaxBundlePolicy) {
3599#endif // HAVE_SCTP
deadbeef1dcb1642017-03-30 04:08:163600 PeerConnectionInterface::RTCConfiguration config;
3601 config.bundle_policy = PeerConnectionInterface::kBundlePolicyMaxBundle;
Niels Möllerf06f9232018-08-07 10:32:183602 CreatePeerConnection(config);
deadbeef1dcb1642017-03-30 04:08:163603
3604 // First, create an offer with only a data channel and apply it as a remote
3605 // description.
3606 pc_->CreateDataChannel("test", nullptr);
3607 std::unique_ptr<SessionDescriptionInterface> offer;
3608 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Steve Antondb45ca82017-09-12 01:27:343609 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
deadbeef1dcb1642017-03-30 04:08:163610
3611 // Create and set answer as well.
3612 std::unique_ptr<SessionDescriptionInterface> answer;
3613 ASSERT_TRUE(DoCreateAnswer(&answer, nullptr));
Steve Antondb45ca82017-09-12 01:27:343614 EXPECT_TRUE(DoSetLocalDescription(std::move(answer)));
deadbeef1dcb1642017-03-30 04:08:163615}
3616
Steve Anton36da6ff2018-02-17 00:04:203617TEST_P(PeerConnectionInterfaceTest, SetBitrateWithoutMinSucceeds) {
zstein4b979802017-06-02 21:37:373618 CreatePeerConnection();
3619 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383620 bitrate.current_bitrate_bps = 100000;
zstein4b979802017-06-02 21:37:373621 EXPECT_TRUE(pc_->SetBitrate(bitrate).ok());
3622}
3623
Steve Anton36da6ff2018-02-17 00:04:203624TEST_P(PeerConnectionInterfaceTest, SetBitrateNegativeMinFails) {
zstein4b979802017-06-02 21:37:373625 CreatePeerConnection();
3626 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383627 bitrate.min_bitrate_bps = -1;
zstein4b979802017-06-02 21:37:373628 EXPECT_FALSE(pc_->SetBitrate(bitrate).ok());
3629}
3630
Steve Anton36da6ff2018-02-17 00:04:203631TEST_P(PeerConnectionInterfaceTest, SetBitrateCurrentLessThanMinFails) {
zstein4b979802017-06-02 21:37:373632 CreatePeerConnection();
3633 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383634 bitrate.min_bitrate_bps = 5;
3635 bitrate.current_bitrate_bps = 3;
zstein4b979802017-06-02 21:37:373636 EXPECT_FALSE(pc_->SetBitrate(bitrate).ok());
3637}
3638
Steve Anton36da6ff2018-02-17 00:04:203639TEST_P(PeerConnectionInterfaceTest, SetBitrateCurrentNegativeFails) {
zstein4b979802017-06-02 21:37:373640 CreatePeerConnection();
3641 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383642 bitrate.current_bitrate_bps = -1;
zstein4b979802017-06-02 21:37:373643 EXPECT_FALSE(pc_->SetBitrate(bitrate).ok());
3644}
3645
Steve Anton36da6ff2018-02-17 00:04:203646TEST_P(PeerConnectionInterfaceTest, SetBitrateMaxLessThanCurrentFails) {
zstein4b979802017-06-02 21:37:373647 CreatePeerConnection();
3648 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383649 bitrate.current_bitrate_bps = 10;
3650 bitrate.max_bitrate_bps = 8;
zstein4b979802017-06-02 21:37:373651 EXPECT_FALSE(pc_->SetBitrate(bitrate).ok());
3652}
3653
Steve Anton36da6ff2018-02-17 00:04:203654TEST_P(PeerConnectionInterfaceTest, SetBitrateMaxLessThanMinFails) {
zstein4b979802017-06-02 21:37:373655 CreatePeerConnection();
3656 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383657 bitrate.min_bitrate_bps = 10;
3658 bitrate.max_bitrate_bps = 8;
zstein4b979802017-06-02 21:37:373659 EXPECT_FALSE(pc_->SetBitrate(bitrate).ok());
3660}
3661
Steve Anton36da6ff2018-02-17 00:04:203662TEST_P(PeerConnectionInterfaceTest, SetBitrateMaxNegativeFails) {
zstein4b979802017-06-02 21:37:373663 CreatePeerConnection();
3664 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383665 bitrate.max_bitrate_bps = -1;
zstein4b979802017-06-02 21:37:373666 EXPECT_FALSE(pc_->SetBitrate(bitrate).ok());
3667}
3668
Steve Anton038834f2017-07-14 22:59:593669// ice_regather_interval_range requires WebRTC to be configured for continual
3670// gathering already.
Steve Anton36da6ff2018-02-17 00:04:203671TEST_P(PeerConnectionInterfaceTest,
Steve Anton038834f2017-07-14 22:59:593672 SetIceRegatherIntervalRangeWithoutContinualGatheringFails) {
3673 PeerConnectionInterface::RTCConfiguration config;
3674 config.ice_regather_interval_range.emplace(1000, 2000);
3675 config.continual_gathering_policy =
3676 PeerConnectionInterface::ContinualGatheringPolicy::GATHER_ONCE;
3677 CreatePeerConnectionExpectFail(config);
3678}
3679
3680// Ensures that there is no error when ice_regather_interval_range is set with
3681// continual gathering enabled.
Steve Anton36da6ff2018-02-17 00:04:203682TEST_P(PeerConnectionInterfaceTest,
Steve Anton038834f2017-07-14 22:59:593683 SetIceRegatherIntervalRangeWithContinualGathering) {
3684 PeerConnectionInterface::RTCConfiguration config;
3685 config.ice_regather_interval_range.emplace(1000, 2000);
3686 config.continual_gathering_policy =
3687 PeerConnectionInterface::ContinualGatheringPolicy::GATHER_CONTINUALLY;
Niels Möllerf06f9232018-08-07 10:32:183688 CreatePeerConnection(config);
Steve Anton038834f2017-07-14 22:59:593689}
3690
Niels Möller0c4f7be2018-05-07 12:01:373691// The current bitrate from BitrateSettings is currently clamped
Sebastian Janssonfc8d26b2018-02-21 08:52:063692// by Call's BitrateConstraints, which comes from the SDP or a default value.
3693// This test checks that a call to SetBitrate with a current bitrate that will
3694// be clamped succeeds.
Steve Anton36da6ff2018-02-17 00:04:203695TEST_P(PeerConnectionInterfaceTest, SetBitrateCurrentLessThanImplicitMin) {
zstein4b979802017-06-02 21:37:373696 CreatePeerConnection();
3697 PeerConnectionInterface::BitrateParameters bitrate;
Oskar Sundbomb95fd2c2017-11-16 09:54:383698 bitrate.current_bitrate_bps = 1;
zstein4b979802017-06-02 21:37:373699 EXPECT_TRUE(pc_->SetBitrate(bitrate).ok());
3700}
3701
zhihuang1c378ed2017-08-17 21:10:503702// The following tests verify that the offer can be created correctly.
Steve Anton36da6ff2018-02-17 00:04:203703TEST_P(PeerConnectionInterfaceTest,
zhihuang1c378ed2017-08-17 21:10:503704 CreateOfferFailsWithInvalidOfferToReceiveAudio) {
3705 RTCOfferAnswerOptions rtc_options;
3706
3707 // Setting offer_to_receive_audio to a value lower than kUndefined or greater
3708 // than kMaxOfferToReceiveMedia should be treated as invalid.
3709 rtc_options.offer_to_receive_audio = RTCOfferAnswerOptions::kUndefined - 1;
3710 CreatePeerConnection();
3711 EXPECT_FALSE(CreateOfferWithOptions(rtc_options));
3712
3713 rtc_options.offer_to_receive_audio =
3714 RTCOfferAnswerOptions::kMaxOfferToReceiveMedia + 1;
3715 EXPECT_FALSE(CreateOfferWithOptions(rtc_options));
3716}
3717
Steve Anton36da6ff2018-02-17 00:04:203718TEST_P(PeerConnectionInterfaceTest,
zhihuang1c378ed2017-08-17 21:10:503719 CreateOfferFailsWithInvalidOfferToReceiveVideo) {
3720 RTCOfferAnswerOptions rtc_options;
3721
3722 // Setting offer_to_receive_video to a value lower than kUndefined or greater
3723 // than kMaxOfferToReceiveMedia should be treated as invalid.
3724 rtc_options.offer_to_receive_video = RTCOfferAnswerOptions::kUndefined - 1;
3725 CreatePeerConnection();
3726 EXPECT_FALSE(CreateOfferWithOptions(rtc_options));
3727
3728 rtc_options.offer_to_receive_video =
3729 RTCOfferAnswerOptions::kMaxOfferToReceiveMedia + 1;
3730 EXPECT_FALSE(CreateOfferWithOptions(rtc_options));
3731}
3732
3733// Test that the audio and video content will be added to an offer if both
3734// |offer_to_receive_audio| and |offer_to_receive_video| options are 1.
Steve Anton36da6ff2018-02-17 00:04:203735TEST_P(PeerConnectionInterfaceTest, CreateOfferWithAudioVideoOptions) {
zhihuang1c378ed2017-08-17 21:10:503736 RTCOfferAnswerOptions rtc_options;
3737 rtc_options.offer_to_receive_audio = 1;
3738 rtc_options.offer_to_receive_video = 1;
3739
3740 std::unique_ptr<SessionDescriptionInterface> offer;
3741 CreatePeerConnection();
3742 offer = CreateOfferWithOptions(rtc_options);
3743 ASSERT_TRUE(offer);
3744 EXPECT_NE(nullptr, GetFirstAudioContent(offer->description()));
3745 EXPECT_NE(nullptr, GetFirstVideoContent(offer->description()));
3746}
3747
3748// Test that only audio content will be added to the offer if only
3749// |offer_to_receive_audio| options is 1.
Steve Anton36da6ff2018-02-17 00:04:203750TEST_P(PeerConnectionInterfaceTest, CreateOfferWithAudioOnlyOptions) {
zhihuang1c378ed2017-08-17 21:10:503751 RTCOfferAnswerOptions rtc_options;
3752 rtc_options.offer_to_receive_audio = 1;
3753 rtc_options.offer_to_receive_video = 0;
3754
3755 std::unique_ptr<SessionDescriptionInterface> offer;
3756 CreatePeerConnection();
3757 offer = CreateOfferWithOptions(rtc_options);
3758 ASSERT_TRUE(offer);
3759 EXPECT_NE(nullptr, GetFirstAudioContent(offer->description()));
3760 EXPECT_EQ(nullptr, GetFirstVideoContent(offer->description()));
3761}
3762
3763// Test that only video content will be added if only |offer_to_receive_video|
3764// options is 1.
Steve Anton36da6ff2018-02-17 00:04:203765TEST_P(PeerConnectionInterfaceTest, CreateOfferWithVideoOnlyOptions) {
zhihuang1c378ed2017-08-17 21:10:503766 RTCOfferAnswerOptions rtc_options;
3767 rtc_options.offer_to_receive_audio = 0;
3768 rtc_options.offer_to_receive_video = 1;
3769
3770 std::unique_ptr<SessionDescriptionInterface> offer;
3771 CreatePeerConnection();
3772 offer = CreateOfferWithOptions(rtc_options);
3773 ASSERT_TRUE(offer);
3774 EXPECT_EQ(nullptr, GetFirstAudioContent(offer->description()));
3775 EXPECT_NE(nullptr, GetFirstVideoContent(offer->description()));
3776}
3777
zhihuang1c378ed2017-08-17 21:10:503778// Test that no media content will be added to the offer if using default
3779// RTCOfferAnswerOptions.
Steve Anton36da6ff2018-02-17 00:04:203780TEST_P(PeerConnectionInterfaceTest, CreateOfferWithDefaultOfferAnswerOptions) {
zhihuang1c378ed2017-08-17 21:10:503781 RTCOfferAnswerOptions rtc_options;
3782
3783 std::unique_ptr<SessionDescriptionInterface> offer;
3784 CreatePeerConnection();
3785 offer = CreateOfferWithOptions(rtc_options);
3786 ASSERT_TRUE(offer);
3787 EXPECT_EQ(nullptr, GetFirstAudioContent(offer->description()));
3788 EXPECT_EQ(nullptr, GetFirstVideoContent(offer->description()));
3789}
3790
3791// Test that if |ice_restart| is true, the ufrag/pwd will change, otherwise
3792// ufrag/pwd will be the same in the new offer.
Steve Anton36da6ff2018-02-17 00:04:203793TEST_P(PeerConnectionInterfaceTest, CreateOfferWithIceRestart) {
3794 CreatePeerConnection();
3795
zhihuang1c378ed2017-08-17 21:10:503796 RTCOfferAnswerOptions rtc_options;
3797 rtc_options.ice_restart = false;
3798 rtc_options.offer_to_receive_audio = 1;
3799
3800 std::unique_ptr<SessionDescriptionInterface> offer;
zhihuang1c378ed2017-08-17 21:10:503801 CreateOfferWithOptionsAsLocalDescription(&offer, rtc_options);
Steve Anton36da6ff2018-02-17 00:04:203802 std::string mid = cricket::GetFirstAudioContent(offer->description())->name;
3803 auto ufrag1 =
3804 offer->description()->GetTransportInfoByName(mid)->description.ice_ufrag;
3805 auto pwd1 =
3806 offer->description()->GetTransportInfoByName(mid)->description.ice_pwd;
zhihuang1c378ed2017-08-17 21:10:503807
3808 // |ice_restart| is false, the ufrag/pwd shouldn't change.
3809 CreateOfferWithOptionsAsLocalDescription(&offer, rtc_options);
Steve Anton36da6ff2018-02-17 00:04:203810 auto ufrag2 =
3811 offer->description()->GetTransportInfoByName(mid)->description.ice_ufrag;
3812 auto pwd2 =
3813 offer->description()->GetTransportInfoByName(mid)->description.ice_pwd;
zhihuang1c378ed2017-08-17 21:10:503814
3815 // |ice_restart| is true, the ufrag/pwd should change.
3816 rtc_options.ice_restart = true;
3817 CreateOfferWithOptionsAsLocalDescription(&offer, rtc_options);
Steve Anton36da6ff2018-02-17 00:04:203818 auto ufrag3 =
3819 offer->description()->GetTransportInfoByName(mid)->description.ice_ufrag;
3820 auto pwd3 =
3821 offer->description()->GetTransportInfoByName(mid)->description.ice_pwd;
zhihuang1c378ed2017-08-17 21:10:503822
3823 EXPECT_EQ(ufrag1, ufrag2);
3824 EXPECT_EQ(pwd1, pwd2);
3825 EXPECT_NE(ufrag2, ufrag3);
3826 EXPECT_NE(pwd2, pwd3);
3827}
3828
3829// Test that if |use_rtp_mux| is true, the bundling will be enabled in the
3830// offer; if it is false, there won't be any bundle group in the offer.
Steve Anton36da6ff2018-02-17 00:04:203831TEST_P(PeerConnectionInterfaceTest, CreateOfferWithRtpMux) {
zhihuang1c378ed2017-08-17 21:10:503832 RTCOfferAnswerOptions rtc_options;
3833 rtc_options.offer_to_receive_audio = 1;
3834 rtc_options.offer_to_receive_video = 1;
3835
3836 std::unique_ptr<SessionDescriptionInterface> offer;
3837 CreatePeerConnection();
3838
3839 rtc_options.use_rtp_mux = true;
3840 offer = CreateOfferWithOptions(rtc_options);
3841 ASSERT_TRUE(offer);
3842 EXPECT_NE(nullptr, GetFirstAudioContent(offer->description()));
3843 EXPECT_NE(nullptr, GetFirstVideoContent(offer->description()));
3844 EXPECT_TRUE(offer->description()->HasGroup(cricket::GROUP_TYPE_BUNDLE));
3845
3846 rtc_options.use_rtp_mux = false;
3847 offer = CreateOfferWithOptions(rtc_options);
3848 ASSERT_TRUE(offer);
3849 EXPECT_NE(nullptr, GetFirstAudioContent(offer->description()));
3850 EXPECT_NE(nullptr, GetFirstVideoContent(offer->description()));
3851 EXPECT_FALSE(offer->description()->HasGroup(cricket::GROUP_TYPE_BUNDLE));
3852}
3853
zhihuang141aacb2017-08-29 20:23:533854// This test ensures OnRenegotiationNeeded is called when we add track with
3855// MediaStream -> AddTrack in the same way it is called when we add track with
3856// PeerConnection -> AddTrack.
3857// The test can be removed once addStream is rewritten in terms of addTrack
3858// https://bugs.chromium.org/p/webrtc/issues/detail?id=7815
Steve Anton36da6ff2018-02-17 00:04:203859// Don't run under Unified Plan since the stream API is not available.
3860TEST_F(PeerConnectionInterfaceTestPlanB,
3861 MediaStreamAddTrackRemoveTrackRenegotiate) {
zhihuang141aacb2017-08-29 20:23:533862 CreatePeerConnectionWithoutDtls();
3863 rtc::scoped_refptr<MediaStreamInterface> stream(
Seth Hampson845e8782018-03-02 19:34:103864 pc_factory_->CreateLocalMediaStream(kStreamId1));
zhihuang141aacb2017-08-29 20:23:533865 pc_->AddStream(stream);
3866 rtc::scoped_refptr<AudioTrackInterface> audio_track(
Niels Möller215ba602019-01-18 12:59:453867 CreateAudioTrack("audio_track"));
zhihuang141aacb2017-08-29 20:23:533868 rtc::scoped_refptr<VideoTrackInterface> video_track(
Niels Möller215ba602019-01-18 12:59:453869 CreateVideoTrack("video_track"));
zhihuang141aacb2017-08-29 20:23:533870 stream->AddTrack(audio_track);
3871 EXPECT_TRUE_WAIT(observer_.renegotiation_needed_, kTimeout);
3872 observer_.renegotiation_needed_ = false;
3873
Guido Urdaneta70c2db12019-04-16 10:24:143874 CreateOfferReceiveAnswer();
zhihuang141aacb2017-08-29 20:23:533875 stream->AddTrack(video_track);
3876 EXPECT_TRUE_WAIT(observer_.renegotiation_needed_, kTimeout);
3877 observer_.renegotiation_needed_ = false;
3878
Guido Urdaneta70c2db12019-04-16 10:24:143879 CreateOfferReceiveAnswer();
zhihuang141aacb2017-08-29 20:23:533880 stream->RemoveTrack(audio_track);
3881 EXPECT_TRUE_WAIT(observer_.renegotiation_needed_, kTimeout);
3882 observer_.renegotiation_needed_ = false;
3883
Guido Urdaneta70c2db12019-04-16 10:24:143884 CreateOfferReceiveAnswer();
zhihuang141aacb2017-08-29 20:23:533885 stream->RemoveTrack(video_track);
3886 EXPECT_TRUE_WAIT(observer_.renegotiation_needed_, kTimeout);
3887 observer_.renegotiation_needed_ = false;
3888}
3889
Zhi Huangb2d355e2017-10-27 00:26:373890// Tests that an error is returned if a description is applied that has fewer
3891// media sections than the existing description.
Steve Anton36da6ff2018-02-17 00:04:203892TEST_P(PeerConnectionInterfaceTest,
Zhi Huangb2d355e2017-10-27 00:26:373893 MediaSectionCountEnforcedForSubsequentOffer) {
3894 CreatePeerConnection();
Steve Anton36da6ff2018-02-17 00:04:203895 AddAudioTrack("audio_label");
3896 AddVideoTrack("video_label");
3897
Zhi Huangb2d355e2017-10-27 00:26:373898 std::unique_ptr<SessionDescriptionInterface> offer;
Steve Anton36da6ff2018-02-17 00:04:203899 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Zhi Huangb2d355e2017-10-27 00:26:373900 EXPECT_TRUE(DoSetRemoteDescription(std::move(offer)));
3901
3902 // A remote offer with fewer media sections should be rejected.
Steve Anton36da6ff2018-02-17 00:04:203903 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Zhi Huangb2d355e2017-10-27 00:26:373904 offer->description()->contents().pop_back();
3905 offer->description()->contents().pop_back();
3906 ASSERT_TRUE(offer->description()->contents().empty());
3907 EXPECT_FALSE(DoSetRemoteDescription(std::move(offer)));
3908
3909 std::unique_ptr<SessionDescriptionInterface> answer;
3910 ASSERT_TRUE(DoCreateAnswer(&answer, nullptr));
3911 EXPECT_TRUE(DoSetLocalDescription(std::move(answer)));
3912
3913 // A subsequent local offer with fewer media sections should be rejected.
Steve Anton36da6ff2018-02-17 00:04:203914 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
Zhi Huangb2d355e2017-10-27 00:26:373915 offer->description()->contents().pop_back();
3916 offer->description()->contents().pop_back();
3917 ASSERT_TRUE(offer->description()->contents().empty());
3918 EXPECT_FALSE(DoSetLocalDescription(std::move(offer)));
3919}
3920
Johannes Kron89f874e2018-11-12 09:25:483921TEST_P(PeerConnectionInterfaceTest, ExtmapAllowMixedIsConfigurable) {
3922 RTCConfiguration config;
3923 // Default behavior is false.
3924 CreatePeerConnection(config);
3925 std::unique_ptr<SessionDescriptionInterface> offer;
3926 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
3927 EXPECT_FALSE(offer->description()->extmap_allow_mixed());
3928 // Possible to set to true.
3929 config.offer_extmap_allow_mixed = true;
3930 CreatePeerConnection(config);
3931 offer.release();
3932 ASSERT_TRUE(DoCreateOffer(&offer, nullptr));
3933 EXPECT_TRUE(offer->description()->extmap_allow_mixed());
3934}
3935
Mirko Bonadeic84f6612019-01-31 11:20:573936INSTANTIATE_TEST_SUITE_P(PeerConnectionInterfaceTest,
3937 PeerConnectionInterfaceTest,
3938 Values(SdpSemantics::kPlanB,
3939 SdpSemantics::kUnifiedPlan));
Steve Anton36da6ff2018-02-17 00:04:203940
Mirko Bonadei6a489f22019-04-09 13:11:123941class PeerConnectionMediaConfigTest : public ::testing::Test {
nisse51542be2016-02-12 10:27:063942 protected:
3943 void SetUp() override {
zhihuang38ede132017-06-15 19:52:323944 pcf_ = PeerConnectionFactoryForTest::CreatePeerConnectionFactoryForTest();
nisse51542be2016-02-12 10:27:063945 pcf_->Initialize();
3946 }
nisseeaabdf62017-05-05 09:23:023947 const cricket::MediaConfig TestCreatePeerConnection(
Niels Möllerf06f9232018-08-07 10:32:183948 const RTCConfiguration& config) {
3949 rtc::scoped_refptr<PeerConnectionInterface> pc(
3950 pcf_->CreatePeerConnection(config, nullptr, nullptr, &observer_));
nisse51542be2016-02-12 10:27:063951 EXPECT_TRUE(pc.get());
Yves Gereyf3ff14c2018-10-25 08:28:123952 observer_.SetPeerConnectionInterface(pc.get());
nisseeaabdf62017-05-05 09:23:023953 return pc->GetConfiguration().media_config;
nisse51542be2016-02-12 10:27:063954 }
3955
zhihuang9763d562016-08-05 18:14:503956 rtc::scoped_refptr<PeerConnectionFactoryForTest> pcf_;
nisse51542be2016-02-12 10:27:063957 MockPeerConnectionObserver observer_;
3958};
3959
Yves Gereyf3ff14c2018-10-25 08:28:123960// This sanity check validates the test infrastructure itself.
3961TEST_F(PeerConnectionMediaConfigTest, TestCreateAndClose) {
3962 PeerConnectionInterface::RTCConfiguration config;
3963 rtc::scoped_refptr<PeerConnectionInterface> pc(
3964 pcf_->CreatePeerConnection(config, nullptr, nullptr, &observer_));
3965 EXPECT_TRUE(pc.get());
3966 observer_.SetPeerConnectionInterface(pc.get()); // Required.
3967 pc->Close(); // No abort -> ok.
3968 SUCCEED();
3969}
3970
nisse51542be2016-02-12 10:27:063971// This test verifies the default behaviour with no constraints and a
3972// default RTCConfiguration.
3973TEST_F(PeerConnectionMediaConfigTest, TestDefaults) {
3974 PeerConnectionInterface::RTCConfiguration config;
nisse51542be2016-02-12 10:27:063975
Niels Möllerf06f9232018-08-07 10:32:183976 const cricket::MediaConfig& media_config = TestCreatePeerConnection(config);
nisse51542be2016-02-12 10:27:063977
3978 EXPECT_FALSE(media_config.enable_dscp);
Niels Möller1d7ecd22018-01-18 14:25:123979 EXPECT_TRUE(media_config.video.enable_cpu_adaptation);
3980 EXPECT_TRUE(media_config.video.enable_prerenderer_smoothing);
nisse0db023a2016-03-01 12:29:593981 EXPECT_FALSE(media_config.video.suspend_below_min_bitrate);
Niels Möller6539f692018-01-18 07:58:503982 EXPECT_FALSE(media_config.video.experiment_cpu_load_estimator);
nisse51542be2016-02-12 10:27:063983}
3984
Niels Möller1d7ecd22018-01-18 14:25:123985// This test verifies that the enable_prerenderer_smoothing flag is
nisse528b7932017-05-08 10:21:433986// propagated from RTCConfiguration to the PeerConnection.
nisse51542be2016-02-12 10:27:063987TEST_F(PeerConnectionMediaConfigTest, TestDisablePrerendererSmoothingTrue) {
3988 PeerConnectionInterface::RTCConfiguration config;
nisse51542be2016-02-12 10:27:063989
Niels Möller71bdda02016-03-31 10:59:593990 config.set_prerenderer_smoothing(false);
Niels Möllerf06f9232018-08-07 10:32:183991 const cricket::MediaConfig& media_config = TestCreatePeerConnection(config);
nisse51542be2016-02-12 10:27:063992
Niels Möller1d7ecd22018-01-18 14:25:123993 EXPECT_FALSE(media_config.video.enable_prerenderer_smoothing);
nisse0db023a2016-03-01 12:29:593994}
3995
Niels Möller6539f692018-01-18 07:58:503996// This test verifies that the experiment_cpu_load_estimator flag is
3997// propagated from RTCConfiguration to the PeerConnection.
3998TEST_F(PeerConnectionMediaConfigTest, TestEnableExperimentCpuLoadEstimator) {
3999 PeerConnectionInterface::RTCConfiguration config;
Niels Möller6539f692018-01-18 07:58:504000
4001 config.set_experiment_cpu_load_estimator(true);
Niels Möllerf06f9232018-08-07 10:32:184002 const cricket::MediaConfig& media_config = TestCreatePeerConnection(config);
Niels Möller6539f692018-01-18 07:58:504003
4004 EXPECT_TRUE(media_config.video.experiment_cpu_load_estimator);
4005}
4006
deadbeef293e9262017-01-11 20:28:304007// Tests a few random fields being different.
4008TEST(RTCConfigurationTest, ComparisonOperators) {
4009 PeerConnectionInterface::RTCConfiguration a;
4010 PeerConnectionInterface::RTCConfiguration b;
4011 EXPECT_EQ(a, b);
4012
4013 PeerConnectionInterface::RTCConfiguration c;
4014 c.servers.push_back(PeerConnectionInterface::IceServer());
4015 EXPECT_NE(a, c);
4016
4017 PeerConnectionInterface::RTCConfiguration d;
4018 d.type = PeerConnectionInterface::kRelay;
4019 EXPECT_NE(a, d);
4020
4021 PeerConnectionInterface::RTCConfiguration e;
4022 e.audio_jitter_buffer_max_packets = 5;
4023 EXPECT_NE(a, e);
4024
4025 PeerConnectionInterface::RTCConfiguration f;
4026 f.ice_connection_receiving_timeout = 1337;
4027 EXPECT_NE(a, f);
4028
4029 PeerConnectionInterface::RTCConfiguration g;
4030 g.disable_ipv6 = true;
4031 EXPECT_NE(a, g);
4032
4033 PeerConnectionInterface::RTCConfiguration h(
4034 PeerConnectionInterface::RTCConfigurationType::kAggressive);
4035 EXPECT_NE(a, h);
4036}
Mirko Bonadeiab64e8a2018-12-12 11:10:184037
4038} // namespace
4039} // namespace webrtc