blob: 210848ff8c381b3b4e011c3957e68228b141c753 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2011 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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:36 +00009 */
10
Yves Gerey3e707812018-11-28 16:47:49 +010011#include <stdio.h>
12#include <string.h>
13#include <cstdint>
14#include <map>
kwibergd1fe2812016-04-27 06:47:29 -070015#include <memory>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000016#include <string>
Yves Gerey3e707812018-11-28 16:47:49 +010017#include <utility>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000018#include <vector>
19
Yves Gerey3e707812018-11-28 16:47:49 +010020#include "api/array_view.h"
Steve Anton10542f22019-01-11 09:11:00 -080021#include "api/crypto_params.h"
22#include "api/jsep_session_description.h"
23#include "api/media_types.h"
24#include "api/rtp_parameters.h"
25#include "api/rtp_transceiver_interface.h"
Yves Gerey3e707812018-11-28 16:47:49 +010026#include "media/base/codec.h"
Steve Anton10542f22019-01-11 09:11:00 -080027#include "media/base/media_constants.h"
28#include "media/base/stream_params.h"
29#include "p2p/base/p2p_constants.h"
Yves Gerey665174f2018-06-19 15:03:05 +020030#include "p2p/base/port.h"
Steve Anton10542f22019-01-11 09:11:00 -080031#include "p2p/base/transport_description.h"
32#include "p2p/base/transport_info.h"
33#include "pc/media_session.h"
34#include "pc/session_description.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020035#include "rtc_base/checks.h"
Steve Anton10542f22019-01-11 09:11:00 -080036#include "rtc_base/message_digest.h"
37#include "rtc_base/socket_address.h"
38#include "rtc_base/ssl_fingerprint.h"
39#include "rtc_base/string_encode.h"
40#include "rtc_base/string_utils.h"
Steve Anton06817cd2018-12-18 15:55:30 -080041#include "test/gmock.h"
Yves Gerey3e707812018-11-28 16:47:49 +010042#include "test/gtest.h"
Patrik Höglund563934e2017-09-15 09:04:28 +020043
ossu7bb87ee2017-01-23 04:56:25 -080044#ifdef WEBRTC_ANDROID
Steve Anton10542f22019-01-11 09:11:00 -080045#include "pc/test/android_test_initializer.h"
ossu7bb87ee2017-01-23 04:56:25 -080046#endif
Steve Anton10542f22019-01-11 09:11:00 -080047#include "pc/webrtc_sdp.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000048
49using cricket::AudioCodec;
50using cricket::AudioContentDescription;
51using cricket::Candidate;
Steve Anton06817cd2018-12-18 15:55:30 -080052using cricket::ContentGroup;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000053using cricket::ContentInfo;
54using cricket::CryptoParams;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000055using cricket::DataCodec;
56using cricket::DataContentDescription;
57using cricket::ICE_CANDIDATE_COMPONENT_RTCP;
58using cricket::ICE_CANDIDATE_COMPONENT_RTP;
59using cricket::kFecSsrcGroupSemantics;
60using cricket::LOCAL_PORT_TYPE;
Steve Anton5adfafd2017-12-20 16:34:00 -080061using cricket::MediaProtocolType;
Steve Anton06817cd2018-12-18 15:55:30 -080062using cricket::RELAY_PORT_TYPE;
Amit Hilbuchc57d5732018-12-11 15:30:11 -080063using cricket::RidDescription;
64using cricket::RidDirection;
Steve Anton06817cd2018-12-18 15:55:30 -080065using cricket::SessionDescription;
Amit Hilbucha2012042018-12-03 11:35:05 -080066using cricket::SimulcastDescription;
67using cricket::SimulcastLayer;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000068using cricket::StreamParams;
69using cricket::STUN_PORT_TYPE;
70using cricket::TransportDescription;
71using cricket::TransportInfo;
72using cricket::VideoCodec;
73using cricket::VideoContentDescription;
Steve Anton06817cd2018-12-18 15:55:30 -080074using ::testing::ElementsAre;
75using ::testing::Field;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000076using webrtc::IceCandidateCollection;
77using webrtc::IceCandidateInterface;
78using webrtc::JsepIceCandidate;
79using webrtc::JsepSessionDescription;
isheriff6f8d6862016-05-26 11:24:55 -070080using webrtc::RtpExtension;
Steve Anton4e70a722017-11-28 14:57:10 -080081using webrtc::RtpTransceiverDirection;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000082using webrtc::SdpParseError;
Steve Antona3a92c22017-12-07 10:27:41 -080083using webrtc::SdpType;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000084using webrtc::SessionDescriptionInterface;
85
86typedef std::vector<AudioCodec> AudioCodecs;
87typedef std::vector<Candidate> Candidates;
88
Peter Boström0c4e06b2015-10-07 12:23:21 +020089static const uint32_t kDefaultSctpPort = 5000;
zstein4b2e0822017-02-17 19:48:38 -080090static const char kDefaultSctpPortStr[] = "5000";
91static const uint16_t kUnusualSctpPort = 9556;
92static const char kUnusualSctpPortStr[] = "9556";
henrike@webrtc.org28e20752013-07-10 00:45:36 +000093static const char kSessionTime[] = "t=0 0\r\n";
Peter Boström0c4e06b2015-10-07 12:23:21 +020094static const uint32_t kCandidatePriority = 2130706432U; // pref = 1.0
deadbeef3f7219b2015-12-28 15:17:14 -080095static const char kAttributeIceUfragVoice[] = "a=ice-ufrag:ufrag_voice\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +000096static const char kAttributeIcePwdVoice[] = "a=ice-pwd:pwd_voice\r\n";
deadbeef3f7219b2015-12-28 15:17:14 -080097static const char kAttributeIceUfragVideo[] = "a=ice-ufrag:ufrag_video\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +000098static const char kAttributeIcePwdVideo[] = "a=ice-pwd:pwd_video\r\n";
Peter Boström0c4e06b2015-10-07 12:23:21 +020099static const uint32_t kCandidateGeneration = 2;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000100static const char kCandidateFoundation1[] = "a0+B/1";
101static const char kCandidateFoundation2[] = "a0+B/2";
102static const char kCandidateFoundation3[] = "a0+B/3";
103static const char kCandidateFoundation4[] = "a0+B/4";
104static const char kAttributeCryptoVoice[] =
105 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
106 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
107 "dummy_session_params\r\n";
108static const char kAttributeCryptoVideo[] =
109 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
110 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n";
Yves Gerey665174f2018-06-19 15:03:05 +0200111static const char kFingerprint[] =
112 "a=fingerprint:sha-1 "
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000113 "4A:AD:B9:B1:3F:82:18:3B:54:02:12:DF:3E:5D:49:6B:19:E5:7C:AB\r\n";
Johannes Kron0854eb62018-10-10 22:33:20 +0200114static const char kExtmapAllowMixed[] = "a=extmap-allow-mixed\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000115static const int kExtmapId = 1;
116static const char kExtmapUri[] = "http://example.com/082005/ext.htm#ttime";
117static const char kExtmap[] =
118 "a=extmap:1 http://example.com/082005/ext.htm#ttime\r\n";
119static const char kExtmapWithDirectionAndAttribute[] =
120 "a=extmap:1/sendrecv http://example.com/082005/ext.htm#ttime a1 a2\r\n";
jbauch5869f502017-06-29 12:31:36 -0700121static const char kExtmapWithDirectionAndAttributeEncrypted[] =
122 "a=extmap:1/sendrecv urn:ietf:params:rtp-hdrext:encrypt "
123 "http://example.com/082005/ext.htm#ttime a1 a2\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000124
Peter Boström0c4e06b2015-10-07 12:23:21 +0200125static const uint8_t kIdentityDigest[] = {
126 0x4A, 0xAD, 0xB9, 0xB1, 0x3F, 0x82, 0x18, 0x3B, 0x54, 0x02,
127 0x12, 0xDF, 0x3E, 0x5D, 0x49, 0x6B, 0x19, 0xE5, 0x7C, 0xAB};
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000128
lally@webrtc.org34807282015-02-24 20:19:39 +0000129static const char kDtlsSctp[] = "DTLS/SCTP";
130static const char kUdpDtlsSctp[] = "UDP/DTLS/SCTP";
131static const char kTcpDtlsSctp[] = "TCP/DTLS/SCTP";
lally@webrtc.org36300852015-02-24 20:19:35 +0000132
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000133struct CodecParams {
134 int max_ptime;
135 int ptime;
136 int min_ptime;
137 int sprop_stereo;
138 int stereo;
139 int useinband;
henrike@webrtc.org1e09a712013-07-26 19:17:59 +0000140 int maxaveragebitrate;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000141};
142
deadbeef9d3584c2016-02-16 17:54:10 -0800143// TODO(deadbeef): In these reference strings, use "a=fingerprint" by default
144// instead of "a=crypto", and have an explicit test for adding "a=crypto".
145// Currently it's the other way around.
146
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000147// Reference sdp string
148static const char kSdpFullString[] =
149 "v=0\r\n"
150 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
151 "s=-\r\n"
152 "t=0 0\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800153 "a=msid-semantic: WMS local_stream_1\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000154 "m=audio 2345 RTP/SAVPF 111 103 104\r\n"
155 "c=IN IP4 74.125.127.126\r\n"
156 "a=rtcp:2347 IN IP4 74.125.127.126\r\n"
157 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
158 "generation 2\r\n"
159 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1235 typ host "
160 "generation 2\r\n"
161 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
162 "generation 2\r\n"
163 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1239 typ host "
164 "generation 2\r\n"
165 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
166 "raddr 192.168.1.5 rport 2346 "
167 "generation 2\r\n"
168 "a=candidate:a0+B/3 2 udp 2130706432 74.125.127.126 2347 typ srflx "
169 "raddr 192.168.1.5 rport 2348 "
170 "generation 2\r\n"
171 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
172 "a=mid:audio_content_name\r\n"
173 "a=sendrecv\r\n"
174 "a=rtcp-mux\r\n"
deadbeef13871492015-12-09 12:37:51 -0800175 "a=rtcp-rsize\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000176 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
177 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
178 "dummy_session_params\r\n"
179 "a=rtpmap:111 opus/48000/2\r\n"
180 "a=rtpmap:103 ISAC/16000\r\n"
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +0000181 "a=rtpmap:104 ISAC/32000\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000182 "a=ssrc:1 cname:stream_1_cname\r\n"
183 "a=ssrc:1 msid:local_stream_1 audio_track_id_1\r\n"
184 "a=ssrc:1 mslabel:local_stream_1\r\n"
185 "a=ssrc:1 label:audio_track_id_1\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000186 "m=video 3457 RTP/SAVPF 120\r\n"
187 "c=IN IP4 74.125.224.39\r\n"
188 "a=rtcp:3456 IN IP4 74.125.224.39\r\n"
189 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1236 typ host "
190 "generation 2\r\n"
191 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1237 typ host "
192 "generation 2\r\n"
193 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1240 typ host "
194 "generation 2\r\n"
195 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1241 typ host "
196 "generation 2\r\n"
197 "a=candidate:a0+B/4 2 udp 2130706432 74.125.224.39 3456 typ relay "
198 "generation 2\r\n"
199 "a=candidate:a0+B/4 1 udp 2130706432 74.125.224.39 3457 typ relay "
200 "generation 2\r\n"
201 "a=ice-ufrag:ufrag_video\r\na=ice-pwd:pwd_video\r\n"
202 "a=mid:video_content_name\r\n"
203 "a=sendrecv\r\n"
204 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
205 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
206 "a=rtpmap:120 VP8/90000\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800207 "a=ssrc-group:FEC 2 3\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000208 "a=ssrc:2 cname:stream_1_cname\r\n"
209 "a=ssrc:2 msid:local_stream_1 video_track_id_1\r\n"
210 "a=ssrc:2 mslabel:local_stream_1\r\n"
211 "a=ssrc:2 label:video_track_id_1\r\n"
212 "a=ssrc:3 cname:stream_1_cname\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800213 "a=ssrc:3 msid:local_stream_1 video_track_id_1\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000214 "a=ssrc:3 mslabel:local_stream_1\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800215 "a=ssrc:3 label:video_track_id_1\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000216
217// SDP reference string without the candidates.
218static const char kSdpString[] =
219 "v=0\r\n"
220 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
221 "s=-\r\n"
222 "t=0 0\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800223 "a=msid-semantic: WMS local_stream_1\r\n"
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000224 "m=audio 9 RTP/SAVPF 111 103 104\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000225 "c=IN IP4 0.0.0.0\r\n"
226 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000227 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
228 "a=mid:audio_content_name\r\n"
229 "a=sendrecv\r\n"
230 "a=rtcp-mux\r\n"
deadbeef13871492015-12-09 12:37:51 -0800231 "a=rtcp-rsize\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000232 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
233 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
234 "dummy_session_params\r\n"
235 "a=rtpmap:111 opus/48000/2\r\n"
236 "a=rtpmap:103 ISAC/16000\r\n"
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +0000237 "a=rtpmap:104 ISAC/32000\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000238 "a=ssrc:1 cname:stream_1_cname\r\n"
239 "a=ssrc:1 msid:local_stream_1 audio_track_id_1\r\n"
240 "a=ssrc:1 mslabel:local_stream_1\r\n"
241 "a=ssrc:1 label:audio_track_id_1\r\n"
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000242 "m=video 9 RTP/SAVPF 120\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000243 "c=IN IP4 0.0.0.0\r\n"
244 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000245 "a=ice-ufrag:ufrag_video\r\na=ice-pwd:pwd_video\r\n"
246 "a=mid:video_content_name\r\n"
247 "a=sendrecv\r\n"
248 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
249 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
250 "a=rtpmap:120 VP8/90000\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800251 "a=ssrc-group:FEC 2 3\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000252 "a=ssrc:2 cname:stream_1_cname\r\n"
253 "a=ssrc:2 msid:local_stream_1 video_track_id_1\r\n"
254 "a=ssrc:2 mslabel:local_stream_1\r\n"
255 "a=ssrc:2 label:video_track_id_1\r\n"
256 "a=ssrc:3 cname:stream_1_cname\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800257 "a=ssrc:3 msid:local_stream_1 video_track_id_1\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000258 "a=ssrc:3 mslabel:local_stream_1\r\n"
deadbeef9d3584c2016-02-16 17:54:10 -0800259 "a=ssrc:3 label:video_track_id_1\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000260
261static const char kSdpRtpDataChannelString[] =
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000262 "m=application 9 RTP/SAVPF 101\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000263 "c=IN IP4 0.0.0.0\r\n"
264 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000265 "a=ice-ufrag:ufrag_data\r\n"
266 "a=ice-pwd:pwd_data\r\n"
267 "a=mid:data_content_name\r\n"
268 "a=sendrecv\r\n"
269 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
270 "inline:FvLcvU2P3ZWmQxgPAgcDu7Zl9vftYElFOjEzhWs5\r\n"
271 "a=rtpmap:101 google-data/90000\r\n"
272 "a=ssrc:10 cname:data_channel_cname\r\n"
273 "a=ssrc:10 msid:data_channel data_channeld0\r\n"
274 "a=ssrc:10 mslabel:data_channel\r\n"
275 "a=ssrc:10 label:data_channeld0\r\n";
276
277static const char kSdpSctpDataChannelString[] =
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000278 "m=application 9 DTLS/SCTP 5000\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000279 "c=IN IP4 0.0.0.0\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000280 "a=ice-ufrag:ufrag_data\r\n"
281 "a=ice-pwd:pwd_data\r\n"
282 "a=mid:data_content_name\r\n"
wu@webrtc.org97077a32013-10-25 21:18:33 +0000283 "a=sctpmap:5000 webrtc-datachannel 1024\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000284
lally@webrtc.orgec97c652015-02-24 20:18:48 +0000285// draft-ietf-mmusic-sctp-sdp-12
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +0000286static const char kSdpSctpDataChannelStringWithSctpPort[] =
lally@webrtc.orgc7848b72015-02-24 20:19:26 +0000287 "m=application 9 DTLS/SCTP webrtc-datachannel\r\n"
288 "a=max-message-size=100000\r\n"
289 "a=sctp-port 5000\r\n"
290 "c=IN IP4 0.0.0.0\r\n"
291 "a=ice-ufrag:ufrag_data\r\n"
292 "a=ice-pwd:pwd_data\r\n"
293 "a=mid:data_content_name\r\n";
294
lally69f57602015-10-08 10:15:04 -0700295static const char kSdpSctpDataChannelStringWithSctpColonPort[] =
296 "m=application 9 DTLS/SCTP webrtc-datachannel\r\n"
297 "a=max-message-size=100000\r\n"
298 "a=sctp-port:5000\r\n"
299 "c=IN IP4 0.0.0.0\r\n"
300 "a=ice-ufrag:ufrag_data\r\n"
301 "a=ice-pwd:pwd_data\r\n"
302 "a=mid:data_content_name\r\n";
303
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000304static const char kSdpSctpDataChannelWithCandidatesString[] =
305 "m=application 2345 DTLS/SCTP 5000\r\n"
306 "c=IN IP4 74.125.127.126\r\n"
307 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
308 "generation 2\r\n"
309 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
310 "generation 2\r\n"
311 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
312 "raddr 192.168.1.5 rport 2346 "
313 "generation 2\r\n"
314 "a=ice-ufrag:ufrag_data\r\n"
315 "a=ice-pwd:pwd_data\r\n"
316 "a=mid:data_content_name\r\n"
wu@webrtc.org97077a32013-10-25 21:18:33 +0000317 "a=sctpmap:5000 webrtc-datachannel 1024\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000318
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +0000319static const char kSdpConferenceString[] =
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000320 "v=0\r\n"
321 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
322 "s=-\r\n"
323 "t=0 0\r\n"
324 "a=msid-semantic: WMS\r\n"
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000325 "m=audio 9 RTP/SAVPF 111 103 104\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000326 "c=IN IP4 0.0.0.0\r\n"
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000327 "a=x-google-flag:conference\r\n"
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000328 "m=video 9 RTP/SAVPF 120\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000329 "c=IN IP4 0.0.0.0\r\n"
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +0000330 "a=x-google-flag:conference\r\n";
331
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +0000332static const char kSdpSessionString[] =
333 "v=0\r\n"
334 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
335 "s=-\r\n"
336 "t=0 0\r\n"
337 "a=msid-semantic: WMS local_stream\r\n";
338
339static const char kSdpAudioString[] =
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000340 "m=audio 9 RTP/SAVPF 111\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000341 "c=IN IP4 0.0.0.0\r\n"
342 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +0000343 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
344 "a=mid:audio_content_name\r\n"
345 "a=sendrecv\r\n"
346 "a=rtpmap:111 opus/48000/2\r\n"
347 "a=ssrc:1 cname:stream_1_cname\r\n"
348 "a=ssrc:1 msid:local_stream audio_track_id_1\r\n"
349 "a=ssrc:1 mslabel:local_stream\r\n"
350 "a=ssrc:1 label:audio_track_id_1\r\n";
351
352static const char kSdpVideoString[] =
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +0000353 "m=video 9 RTP/SAVPF 120\r\n"
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +0000354 "c=IN IP4 0.0.0.0\r\n"
355 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +0000356 "a=ice-ufrag:ufrag_video\r\na=ice-pwd:pwd_video\r\n"
357 "a=mid:video_content_name\r\n"
358 "a=sendrecv\r\n"
359 "a=rtpmap:120 VP8/90000\r\n"
360 "a=ssrc:2 cname:stream_1_cname\r\n"
361 "a=ssrc:2 msid:local_stream video_track_id_1\r\n"
362 "a=ssrc:2 mslabel:local_stream\r\n"
363 "a=ssrc:2 label:video_track_id_1\r\n";
364
deadbeef25ed4352016-12-12 18:37:36 -0800365// Reference sdp string using bundle-only.
366static const char kBundleOnlySdpFullString[] =
367 "v=0\r\n"
368 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
369 "s=-\r\n"
370 "t=0 0\r\n"
371 "a=group:BUNDLE audio_content_name video_content_name\r\n"
372 "a=msid-semantic: WMS local_stream_1\r\n"
373 "m=audio 2345 RTP/SAVPF 111 103 104\r\n"
374 "c=IN IP4 74.125.127.126\r\n"
375 "a=rtcp:2347 IN IP4 74.125.127.126\r\n"
376 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
377 "generation 2\r\n"
378 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1235 typ host "
379 "generation 2\r\n"
380 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
381 "generation 2\r\n"
382 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1239 typ host "
383 "generation 2\r\n"
384 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
385 "raddr 192.168.1.5 rport 2346 "
386 "generation 2\r\n"
387 "a=candidate:a0+B/3 2 udp 2130706432 74.125.127.126 2347 typ srflx "
388 "raddr 192.168.1.5 rport 2348 "
389 "generation 2\r\n"
390 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
391 "a=mid:audio_content_name\r\n"
392 "a=sendrecv\r\n"
393 "a=rtcp-mux\r\n"
394 "a=rtcp-rsize\r\n"
395 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
396 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
397 "dummy_session_params\r\n"
398 "a=rtpmap:111 opus/48000/2\r\n"
399 "a=rtpmap:103 ISAC/16000\r\n"
400 "a=rtpmap:104 ISAC/32000\r\n"
401 "a=ssrc:1 cname:stream_1_cname\r\n"
402 "a=ssrc:1 msid:local_stream_1 audio_track_id_1\r\n"
403 "a=ssrc:1 mslabel:local_stream_1\r\n"
404 "a=ssrc:1 label:audio_track_id_1\r\n"
405 "m=video 0 RTP/SAVPF 120\r\n"
406 "c=IN IP4 0.0.0.0\r\n"
407 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
408 "a=bundle-only\r\n"
409 "a=mid:video_content_name\r\n"
410 "a=sendrecv\r\n"
411 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
412 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
413 "a=rtpmap:120 VP8/90000\r\n"
414 "a=ssrc-group:FEC 2 3\r\n"
415 "a=ssrc:2 cname:stream_1_cname\r\n"
416 "a=ssrc:2 msid:local_stream_1 video_track_id_1\r\n"
417 "a=ssrc:2 mslabel:local_stream_1\r\n"
418 "a=ssrc:2 label:video_track_id_1\r\n"
419 "a=ssrc:3 cname:stream_1_cname\r\n"
420 "a=ssrc:3 msid:local_stream_1 video_track_id_1\r\n"
421 "a=ssrc:3 mslabel:local_stream_1\r\n"
422 "a=ssrc:3 label:video_track_id_1\r\n";
423
deadbeef9d3584c2016-02-16 17:54:10 -0800424// Plan B SDP reference string, with 2 streams, 2 audio tracks and 3 video
425// tracks.
426static const char kPlanBSdpFullString[] =
427 "v=0\r\n"
428 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
429 "s=-\r\n"
430 "t=0 0\r\n"
431 "a=msid-semantic: WMS local_stream_1 local_stream_2\r\n"
432 "m=audio 2345 RTP/SAVPF 111 103 104\r\n"
433 "c=IN IP4 74.125.127.126\r\n"
434 "a=rtcp:2347 IN IP4 74.125.127.126\r\n"
435 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
436 "generation 2\r\n"
437 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1235 typ host "
438 "generation 2\r\n"
439 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
440 "generation 2\r\n"
441 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1239 typ host "
442 "generation 2\r\n"
443 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
444 "raddr 192.168.1.5 rport 2346 "
445 "generation 2\r\n"
446 "a=candidate:a0+B/3 2 udp 2130706432 74.125.127.126 2347 typ srflx "
447 "raddr 192.168.1.5 rport 2348 "
448 "generation 2\r\n"
449 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
450 "a=mid:audio_content_name\r\n"
451 "a=sendrecv\r\n"
452 "a=rtcp-mux\r\n"
453 "a=rtcp-rsize\r\n"
454 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
455 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
456 "dummy_session_params\r\n"
457 "a=rtpmap:111 opus/48000/2\r\n"
458 "a=rtpmap:103 ISAC/16000\r\n"
459 "a=rtpmap:104 ISAC/32000\r\n"
460 "a=ssrc:1 cname:stream_1_cname\r\n"
461 "a=ssrc:1 msid:local_stream_1 audio_track_id_1\r\n"
462 "a=ssrc:1 mslabel:local_stream_1\r\n"
463 "a=ssrc:1 label:audio_track_id_1\r\n"
464 "a=ssrc:4 cname:stream_2_cname\r\n"
465 "a=ssrc:4 msid:local_stream_2 audio_track_id_2\r\n"
466 "a=ssrc:4 mslabel:local_stream_2\r\n"
467 "a=ssrc:4 label:audio_track_id_2\r\n"
468 "m=video 3457 RTP/SAVPF 120\r\n"
469 "c=IN IP4 74.125.224.39\r\n"
470 "a=rtcp:3456 IN IP4 74.125.224.39\r\n"
471 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1236 typ host "
472 "generation 2\r\n"
473 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1237 typ host "
474 "generation 2\r\n"
475 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1240 typ host "
476 "generation 2\r\n"
477 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1241 typ host "
478 "generation 2\r\n"
479 "a=candidate:a0+B/4 2 udp 2130706432 74.125.224.39 3456 typ relay "
480 "generation 2\r\n"
481 "a=candidate:a0+B/4 1 udp 2130706432 74.125.224.39 3457 typ relay "
482 "generation 2\r\n"
483 "a=ice-ufrag:ufrag_video\r\na=ice-pwd:pwd_video\r\n"
484 "a=mid:video_content_name\r\n"
485 "a=sendrecv\r\n"
486 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
487 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
488 "a=rtpmap:120 VP8/90000\r\n"
489 "a=ssrc-group:FEC 2 3\r\n"
490 "a=ssrc:2 cname:stream_1_cname\r\n"
491 "a=ssrc:2 msid:local_stream_1 video_track_id_1\r\n"
492 "a=ssrc:2 mslabel:local_stream_1\r\n"
493 "a=ssrc:2 label:video_track_id_1\r\n"
494 "a=ssrc:3 cname:stream_1_cname\r\n"
495 "a=ssrc:3 msid:local_stream_1 video_track_id_1\r\n"
496 "a=ssrc:3 mslabel:local_stream_1\r\n"
497 "a=ssrc:3 label:video_track_id_1\r\n"
498 "a=ssrc:5 cname:stream_2_cname\r\n"
499 "a=ssrc:5 msid:local_stream_2 video_track_id_2\r\n"
500 "a=ssrc:5 mslabel:local_stream_2\r\n"
501 "a=ssrc:5 label:video_track_id_2\r\n"
502 "a=ssrc:6 cname:stream_2_cname\r\n"
503 "a=ssrc:6 msid:local_stream_2 video_track_id_3\r\n"
504 "a=ssrc:6 mslabel:local_stream_2\r\n"
505 "a=ssrc:6 label:video_track_id_3\r\n";
506
507// Unified Plan SDP reference string, with 2 streams, 2 audio tracks and 3 video
508// tracks.
509static const char kUnifiedPlanSdpFullString[] =
510 "v=0\r\n"
511 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
512 "s=-\r\n"
513 "t=0 0\r\n"
514 "a=msid-semantic: WMS local_stream_1\r\n"
515 // Audio track 1, stream 1 (with candidates).
516 "m=audio 2345 RTP/SAVPF 111 103 104\r\n"
517 "c=IN IP4 74.125.127.126\r\n"
518 "a=rtcp:2347 IN IP4 74.125.127.126\r\n"
519 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
520 "generation 2\r\n"
521 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1235 typ host "
522 "generation 2\r\n"
523 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
524 "generation 2\r\n"
525 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1239 typ host "
526 "generation 2\r\n"
527 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
528 "raddr 192.168.1.5 rport 2346 "
529 "generation 2\r\n"
530 "a=candidate:a0+B/3 2 udp 2130706432 74.125.127.126 2347 typ srflx "
531 "raddr 192.168.1.5 rport 2348 "
532 "generation 2\r\n"
533 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
534 "a=mid:audio_content_name\r\n"
535 "a=msid:local_stream_1 audio_track_id_1\r\n"
536 "a=sendrecv\r\n"
537 "a=rtcp-mux\r\n"
538 "a=rtcp-rsize\r\n"
539 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
540 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
541 "dummy_session_params\r\n"
542 "a=rtpmap:111 opus/48000/2\r\n"
543 "a=rtpmap:103 ISAC/16000\r\n"
544 "a=rtpmap:104 ISAC/32000\r\n"
545 "a=ssrc:1 cname:stream_1_cname\r\n"
546 // Video track 1, stream 1 (with candidates).
547 "m=video 3457 RTP/SAVPF 120\r\n"
548 "c=IN IP4 74.125.224.39\r\n"
549 "a=rtcp:3456 IN IP4 74.125.224.39\r\n"
550 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1236 typ host "
551 "generation 2\r\n"
552 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1237 typ host "
553 "generation 2\r\n"
554 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1240 typ host "
555 "generation 2\r\n"
556 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1241 typ host "
557 "generation 2\r\n"
558 "a=candidate:a0+B/4 2 udp 2130706432 74.125.224.39 3456 typ relay "
559 "generation 2\r\n"
560 "a=candidate:a0+B/4 1 udp 2130706432 74.125.224.39 3457 typ relay "
561 "generation 2\r\n"
562 "a=ice-ufrag:ufrag_video\r\na=ice-pwd:pwd_video\r\n"
563 "a=mid:video_content_name\r\n"
564 "a=msid:local_stream_1 video_track_id_1\r\n"
565 "a=sendrecv\r\n"
566 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
567 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
568 "a=rtpmap:120 VP8/90000\r\n"
569 "a=ssrc-group:FEC 2 3\r\n"
570 "a=ssrc:2 cname:stream_1_cname\r\n"
571 "a=ssrc:3 cname:stream_1_cname\r\n"
572 // Audio track 2, stream 2.
573 "m=audio 9 RTP/SAVPF 111 103 104\r\n"
574 "c=IN IP4 0.0.0.0\r\n"
575 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
576 "a=ice-ufrag:ufrag_voice_2\r\na=ice-pwd:pwd_voice_2\r\n"
577 "a=mid:audio_content_name_2\r\n"
578 "a=msid:local_stream_2 audio_track_id_2\r\n"
579 "a=sendrecv\r\n"
580 "a=rtcp-mux\r\n"
581 "a=rtcp-rsize\r\n"
582 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
583 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
584 "dummy_session_params\r\n"
585 "a=rtpmap:111 opus/48000/2\r\n"
586 "a=rtpmap:103 ISAC/16000\r\n"
587 "a=rtpmap:104 ISAC/32000\r\n"
588 "a=ssrc:4 cname:stream_2_cname\r\n"
589 // Video track 2, stream 2.
590 "m=video 9 RTP/SAVPF 120\r\n"
591 "c=IN IP4 0.0.0.0\r\n"
592 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
593 "a=ice-ufrag:ufrag_video_2\r\na=ice-pwd:pwd_video_2\r\n"
594 "a=mid:video_content_name_2\r\n"
595 "a=msid:local_stream_2 video_track_id_2\r\n"
596 "a=sendrecv\r\n"
597 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
598 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
599 "a=rtpmap:120 VP8/90000\r\n"
600 "a=ssrc:5 cname:stream_2_cname\r\n"
601 // Video track 3, stream 2.
602 "m=video 9 RTP/SAVPF 120\r\n"
603 "c=IN IP4 0.0.0.0\r\n"
604 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
605 "a=ice-ufrag:ufrag_video_3\r\na=ice-pwd:pwd_video_3\r\n"
606 "a=mid:video_content_name_3\r\n"
607 "a=msid:local_stream_2 video_track_id_3\r\n"
608 "a=sendrecv\r\n"
609 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
610 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
611 "a=rtpmap:120 VP8/90000\r\n"
612 "a=ssrc:6 cname:stream_2_cname\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000613
Seth Hampson5b4f0752018-04-02 16:31:36 -0700614// Unified Plan SDP reference string:
615// - audio track 1 has 1 a=msid lines
616// - audio track 2 has 2 a=msid lines
617// - audio track 3 has 1 a=msid line with the special "-" marker signifying that
618// there are 0 media stream ids.
619// This Unified Plan SDP represents a SDP that signals the msid using both
620// a=msid and a=ssrc msid semantics.
621static const char kUnifiedPlanSdpFullStringWithSpecialMsid[] =
622 "v=0\r\n"
623 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
624 "s=-\r\n"
625 "t=0 0\r\n"
626 "a=msid-semantic: WMS local_stream_1\r\n"
627 // Audio track 1, with 1 stream id.
628 "m=audio 2345 RTP/SAVPF 111 103 104\r\n"
629 "c=IN IP4 74.125.127.126\r\n"
630 "a=rtcp:2347 IN IP4 74.125.127.126\r\n"
631 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
632 "generation 2\r\n"
633 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1235 typ host "
634 "generation 2\r\n"
635 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
636 "generation 2\r\n"
637 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1239 typ host "
638 "generation 2\r\n"
639 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
640 "raddr 192.168.1.5 rport 2346 "
641 "generation 2\r\n"
642 "a=candidate:a0+B/3 2 udp 2130706432 74.125.127.126 2347 typ srflx "
643 "raddr 192.168.1.5 rport 2348 "
644 "generation 2\r\n"
645 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
646 "a=mid:audio_content_name\r\n"
Seth Hampson5b4f0752018-04-02 16:31:36 -0700647 "a=sendrecv\r\n"
Seth Hampson7fa6ee62018-10-17 10:25:28 -0700648 "a=msid:local_stream_1 audio_track_id_1\r\n"
Seth Hampson5b4f0752018-04-02 16:31:36 -0700649 "a=rtcp-mux\r\n"
650 "a=rtcp-rsize\r\n"
651 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
652 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
653 "dummy_session_params\r\n"
654 "a=rtpmap:111 opus/48000/2\r\n"
655 "a=rtpmap:103 ISAC/16000\r\n"
656 "a=rtpmap:104 ISAC/32000\r\n"
657 "a=ssrc:1 cname:stream_1_cname\r\n"
658 "a=ssrc:1 msid:local_stream_1 audio_track_id_1\r\n"
659 "a=ssrc:1 mslabel:local_stream_1\r\n"
660 "a=ssrc:1 label:audio_track_id_1\r\n"
661 // Audio track 2, with two stream ids.
662 "m=audio 9 RTP/SAVPF 111 103 104\r\n"
663 "c=IN IP4 0.0.0.0\r\n"
664 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
665 "a=ice-ufrag:ufrag_voice_2\r\na=ice-pwd:pwd_voice_2\r\n"
666 "a=mid:audio_content_name_2\r\n"
Seth Hampson7fa6ee62018-10-17 10:25:28 -0700667 "a=sendrecv\r\n"
Seth Hampson5b4f0752018-04-02 16:31:36 -0700668 "a=msid:local_stream_1 audio_track_id_2\r\n"
669 "a=msid:local_stream_2 audio_track_id_2\r\n"
Seth Hampson5b4f0752018-04-02 16:31:36 -0700670 "a=rtcp-mux\r\n"
671 "a=rtcp-rsize\r\n"
672 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
673 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
674 "dummy_session_params\r\n"
675 "a=rtpmap:111 opus/48000/2\r\n"
676 "a=rtpmap:103 ISAC/16000\r\n"
677 "a=rtpmap:104 ISAC/32000\r\n"
678 "a=ssrc:4 cname:stream_1_cname\r\n"
679 // The support for Plan B msid signaling only includes the
680 // first media stream id "local_stream_1."
681 "a=ssrc:4 msid:local_stream_1 audio_track_id_2\r\n"
682 "a=ssrc:4 mslabel:local_stream_1\r\n"
683 "a=ssrc:4 label:audio_track_id_2\r\n"
684 // Audio track 3, with no stream ids.
685 "m=audio 9 RTP/SAVPF 111 103 104\r\n"
686 "c=IN IP4 0.0.0.0\r\n"
687 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
688 "a=ice-ufrag:ufrag_voice_3\r\na=ice-pwd:pwd_voice_3\r\n"
689 "a=mid:audio_content_name_3\r\n"
Seth Hampson5b4f0752018-04-02 16:31:36 -0700690 "a=sendrecv\r\n"
Seth Hampson7fa6ee62018-10-17 10:25:28 -0700691 "a=msid:- audio_track_id_3\r\n"
Seth Hampson5b4f0752018-04-02 16:31:36 -0700692 "a=rtcp-mux\r\n"
693 "a=rtcp-rsize\r\n"
694 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
695 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
696 "dummy_session_params\r\n"
697 "a=rtpmap:111 opus/48000/2\r\n"
698 "a=rtpmap:103 ISAC/16000\r\n"
699 "a=rtpmap:104 ISAC/32000\r\n"
Seth Hampson7fa6ee62018-10-17 10:25:28 -0700700 "a=ssrc:7 cname:stream_2_cname\r\n"
701 "a=ssrc:7 msid:- audio_track_id_3\r\n"
702 "a=ssrc:7 mslabel:-\r\n"
703 "a=ssrc:7 label:audio_track_id_3\r\n";
Seth Hampson5b4f0752018-04-02 16:31:36 -0700704
Amit Hilbuchc57d5732018-12-11 15:30:11 -0800705// SDP string for unified plan without SSRCs
706static const char kUnifiedPlanSdpFullStringNoSsrc[] =
707 "v=0\r\n"
708 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
709 "s=-\r\n"
710 "t=0 0\r\n"
711 "a=msid-semantic: WMS local_stream_1\r\n"
712 // Audio track 1, stream 1 (with candidates).
713 "m=audio 2345 RTP/SAVPF 111 103 104\r\n"
714 "c=IN IP4 74.125.127.126\r\n"
715 "a=rtcp:2347 IN IP4 74.125.127.126\r\n"
716 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
717 "generation 2\r\n"
718 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1235 typ host "
719 "generation 2\r\n"
720 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1238 typ host "
721 "generation 2\r\n"
722 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1239 typ host "
723 "generation 2\r\n"
724 "a=candidate:a0+B/3 1 udp 2130706432 74.125.127.126 2345 typ srflx "
725 "raddr 192.168.1.5 rport 2346 "
726 "generation 2\r\n"
727 "a=candidate:a0+B/3 2 udp 2130706432 74.125.127.126 2347 typ srflx "
728 "raddr 192.168.1.5 rport 2348 "
729 "generation 2\r\n"
730 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
731 "a=mid:audio_content_name\r\n"
732 "a=msid:local_stream_1 audio_track_id_1\r\n"
733 "a=sendrecv\r\n"
734 "a=rtcp-mux\r\n"
735 "a=rtcp-rsize\r\n"
736 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
737 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
738 "dummy_session_params\r\n"
739 "a=rtpmap:111 opus/48000/2\r\n"
740 "a=rtpmap:103 ISAC/16000\r\n"
741 "a=rtpmap:104 ISAC/32000\r\n"
742 // Video track 1, stream 1 (with candidates).
743 "m=video 3457 RTP/SAVPF 120\r\n"
744 "c=IN IP4 74.125.224.39\r\n"
745 "a=rtcp:3456 IN IP4 74.125.224.39\r\n"
746 "a=candidate:a0+B/1 2 udp 2130706432 192.168.1.5 1236 typ host "
747 "generation 2\r\n"
748 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1237 typ host "
749 "generation 2\r\n"
750 "a=candidate:a0+B/2 2 udp 2130706432 ::1 1240 typ host "
751 "generation 2\r\n"
752 "a=candidate:a0+B/2 1 udp 2130706432 ::1 1241 typ host "
753 "generation 2\r\n"
754 "a=candidate:a0+B/4 2 udp 2130706432 74.125.224.39 3456 typ relay "
755 "generation 2\r\n"
756 "a=candidate:a0+B/4 1 udp 2130706432 74.125.224.39 3457 typ relay "
757 "generation 2\r\n"
758 "a=ice-ufrag:ufrag_video\r\na=ice-pwd:pwd_video\r\n"
759 "a=mid:video_content_name\r\n"
760 "a=msid:local_stream_1 video_track_id_1\r\n"
761 "a=sendrecv\r\n"
762 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
763 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
764 "a=rtpmap:120 VP8/90000\r\n"
765 // Audio track 2, stream 2.
766 "m=audio 9 RTP/SAVPF 111 103 104\r\n"
767 "c=IN IP4 0.0.0.0\r\n"
768 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
769 "a=ice-ufrag:ufrag_voice_2\r\na=ice-pwd:pwd_voice_2\r\n"
770 "a=mid:audio_content_name_2\r\n"
771 "a=msid:local_stream_2 audio_track_id_2\r\n"
772 "a=sendrecv\r\n"
773 "a=rtcp-mux\r\n"
774 "a=rtcp-rsize\r\n"
775 "a=crypto:1 AES_CM_128_HMAC_SHA1_32 "
776 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32 "
777 "dummy_session_params\r\n"
778 "a=rtpmap:111 opus/48000/2\r\n"
779 "a=rtpmap:103 ISAC/16000\r\n"
780 "a=rtpmap:104 ISAC/32000\r\n"
781 // Video track 2, stream 2.
782 "m=video 9 RTP/SAVPF 120\r\n"
783 "c=IN IP4 0.0.0.0\r\n"
784 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
785 "a=ice-ufrag:ufrag_video_2\r\na=ice-pwd:pwd_video_2\r\n"
786 "a=mid:video_content_name_2\r\n"
787 "a=msid:local_stream_2 video_track_id_2\r\n"
788 "a=sendrecv\r\n"
789 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
790 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
791 "a=rtpmap:120 VP8/90000\r\n"
792 // Video track 3, stream 2.
793 "m=video 9 RTP/SAVPF 120\r\n"
794 "c=IN IP4 0.0.0.0\r\n"
795 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
796 "a=ice-ufrag:ufrag_video_3\r\na=ice-pwd:pwd_video_3\r\n"
797 "a=mid:video_content_name_3\r\n"
798 "a=msid:local_stream_2 video_track_id_3\r\n"
799 "a=sendrecv\r\n"
800 "a=crypto:1 AES_CM_128_HMAC_SHA1_80 "
801 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32\r\n"
802 "a=rtpmap:120 VP8/90000\r\n";
803
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000804// One candidate reference string as per W3c spec.
805// candidate:<blah> not a=candidate:<blah>CRLF
806static const char kRawCandidate[] =
807 "candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host generation 2";
808// One candidate reference string.
809static const char kSdpOneCandidate[] =
810 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
811 "generation 2\r\n";
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15 +0000812
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20 +0000813static const char kSdpTcpActiveCandidate[] =
814 "candidate:a0+B/1 1 tcp 2130706432 192.168.1.5 9 typ host "
815 "tcptype active generation 2";
816static const char kSdpTcpPassiveCandidate[] =
817 "candidate:a0+B/1 1 tcp 2130706432 192.168.1.5 9 typ host "
818 "tcptype passive generation 2";
819static const char kSdpTcpSOCandidate[] =
820 "candidate:a0+B/1 1 tcp 2130706432 192.168.1.5 9 typ host "
821 "tcptype so generation 2";
822static const char kSdpTcpInvalidCandidate[] =
823 "candidate:a0+B/1 1 tcp 2130706432 192.168.1.5 9 typ host "
824 "tcptype invalid generation 2";
825
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15 +0000826// One candidate reference string with IPV6 address.
827static const char kRawIPV6Candidate[] =
828 "candidate:a0+B/1 1 udp 2130706432 "
ehmaldonado121cabb2017-05-05 12:04:36 -0700829 "abcd:abcd:abcd:abcd:abcd:abcd:abcd:abcd 1234 typ host generation 2";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000830
831// One candidate reference string.
honghaiza54a0802015-12-16 18:37:23 -0800832static const char kSdpOneCandidateWithUfragPwd[] =
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000833 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host network_name"
honghaiza54a0802015-12-16 18:37:23 -0800834 " eth0 ufrag user_rtp pwd password_rtp generation 2\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000835
Zach Steinb336c272018-08-09 01:16:13 -0700836static const char kRawHostnameCandidate[] =
837 "candidate:a0+B/1 1 udp 2130706432 a.test 1234 typ host generation 2";
838
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000839// Session id and version
840static const char kSessionId[] = "18446744069414584320";
841static const char kSessionVersion[] = "18446462598732840960";
842
deadbeef9d3584c2016-02-16 17:54:10 -0800843// ICE options.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000844static const char kIceOption1[] = "iceoption1";
845static const char kIceOption2[] = "iceoption2";
846static const char kIceOption3[] = "iceoption3";
847
deadbeef9d3584c2016-02-16 17:54:10 -0800848// ICE ufrags/passwords.
849static const char kUfragVoice[] = "ufrag_voice";
850static const char kPwdVoice[] = "pwd_voice";
851static const char kUfragVideo[] = "ufrag_video";
852static const char kPwdVideo[] = "pwd_video";
853static const char kUfragData[] = "ufrag_data";
854static const char kPwdData[] = "pwd_data";
855
856// Extra ufrags/passwords for extra unified plan m= sections.
857static const char kUfragVoice2[] = "ufrag_voice_2";
858static const char kPwdVoice2[] = "pwd_voice_2";
Seth Hampson5b4f0752018-04-02 16:31:36 -0700859static const char kUfragVoice3[] = "ufrag_voice_3";
860static const char kPwdVoice3[] = "pwd_voice_3";
deadbeef9d3584c2016-02-16 17:54:10 -0800861static const char kUfragVideo2[] = "ufrag_video_2";
862static const char kPwdVideo2[] = "pwd_video_2";
863static const char kUfragVideo3[] = "ufrag_video_3";
864static const char kPwdVideo3[] = "pwd_video_3";
865
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000866// Content name
867static const char kAudioContentName[] = "audio_content_name";
868static const char kVideoContentName[] = "video_content_name";
869static const char kDataContentName[] = "data_content_name";
870
deadbeef9d3584c2016-02-16 17:54:10 -0800871// Extra content names for extra unified plan m= sections.
872static const char kAudioContentName2[] = "audio_content_name_2";
Seth Hampson5b4f0752018-04-02 16:31:36 -0700873static const char kAudioContentName3[] = "audio_content_name_3";
deadbeef9d3584c2016-02-16 17:54:10 -0800874static const char kVideoContentName2[] = "video_content_name_2";
875static const char kVideoContentName3[] = "video_content_name_3";
876
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000877// MediaStream 1
Seth Hampson845e8782018-03-02 11:34:10 -0800878static const char kStreamId1[] = "local_stream_1";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000879static const char kStream1Cname[] = "stream_1_cname";
880static const char kAudioTrackId1[] = "audio_track_id_1";
Peter Boström0c4e06b2015-10-07 12:23:21 +0200881static const uint32_t kAudioTrack1Ssrc = 1;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000882static const char kVideoTrackId1[] = "video_track_id_1";
deadbeef9d3584c2016-02-16 17:54:10 -0800883static const uint32_t kVideoTrack1Ssrc1 = 2;
884static const uint32_t kVideoTrack1Ssrc2 = 3;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000885
886// MediaStream 2
Seth Hampson845e8782018-03-02 11:34:10 -0800887static const char kStreamId2[] = "local_stream_2";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000888static const char kStream2Cname[] = "stream_2_cname";
889static const char kAudioTrackId2[] = "audio_track_id_2";
Peter Boström0c4e06b2015-10-07 12:23:21 +0200890static const uint32_t kAudioTrack2Ssrc = 4;
deadbeef9d3584c2016-02-16 17:54:10 -0800891static const char kVideoTrackId2[] = "video_track_id_2";
892static const uint32_t kVideoTrack2Ssrc = 5;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000893static const char kVideoTrackId3[] = "video_track_id_3";
deadbeef9d3584c2016-02-16 17:54:10 -0800894static const uint32_t kVideoTrack3Ssrc = 6;
Seth Hampson5b4f0752018-04-02 16:31:36 -0700895static const char kAudioTrackId3[] = "audio_track_id_3";
896static const uint32_t kAudioTrack3Ssrc = 7;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000897
898// DataChannel
899static const char kDataChannelLabel[] = "data_channel";
900static const char kDataChannelMsid[] = "data_channeld0";
901static const char kDataChannelCname[] = "data_channel_cname";
Peter Boström0c4e06b2015-10-07 12:23:21 +0200902static const uint32_t kDataChannelSsrc = 10;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000903
904// Candidate
905static const char kDummyMid[] = "dummy_mid";
906static const int kDummyIndex = 123;
907
908// Misc
Steve Antona3a92c22017-12-07 10:27:41 -0800909static SdpType kDummyType = SdpType::kOffer;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000910
911// Helper functions
912
913static bool SdpDeserialize(const std::string& message,
914 JsepSessionDescription* jdesc) {
915 return webrtc::SdpDeserialize(message, jdesc, NULL);
916}
917
918static bool SdpDeserializeCandidate(const std::string& message,
919 JsepIceCandidate* candidate) {
920 return webrtc::SdpDeserializeCandidate(message, candidate, NULL);
921}
922
923// Add some extra |newlines| to the |message| after |line|.
924static void InjectAfter(const std::string& line,
925 const std::string& newlines,
926 std::string* message) {
927 const std::string tmp = line + newlines;
Yves Gerey665174f2018-06-19 15:03:05 +0200928 rtc::replace_substrs(line.c_str(), line.length(), tmp.c_str(), tmp.length(),
929 message);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000930}
931
932static void Replace(const std::string& line,
933 const std::string& newlines,
934 std::string* message) {
Yves Gerey665174f2018-06-19 15:03:05 +0200935 rtc::replace_substrs(line.c_str(), line.length(), newlines.c_str(),
936 newlines.length(), message);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000937}
938
wu@webrtc.org5e760e72014-04-02 23:19:09 +0000939// Expect fail to parase |bad_sdp| and expect |bad_part| be part of the error
940// message.
941static void ExpectParseFailure(const std::string& bad_sdp,
942 const std::string& bad_part) {
Steve Antona3a92c22017-12-07 10:27:41 -0800943 JsepSessionDescription desc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000944 SdpParseError error;
wu@webrtc.org5e760e72014-04-02 23:19:09 +0000945 bool ret = webrtc::SdpDeserialize(bad_sdp, &desc, &error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000946 EXPECT_FALSE(ret);
wu@webrtc.org5e760e72014-04-02 23:19:09 +0000947 EXPECT_NE(std::string::npos, error.line.find(bad_part.c_str()));
948}
949
950// Expect fail to parse kSdpFullString if replace |good_part| with |bad_part|.
951static void ExpectParseFailure(const char* good_part, const char* bad_part) {
952 std::string bad_sdp = kSdpFullString;
953 Replace(good_part, bad_part, &bad_sdp);
954 ExpectParseFailure(bad_sdp, bad_part);
955}
956
957// Expect fail to parse kSdpFullString if add |newlines| after |injectpoint|.
958static void ExpectParseFailureWithNewLines(const std::string& injectpoint,
959 const std::string& newlines,
960 const std::string& bad_part) {
961 std::string bad_sdp = kSdpFullString;
962 InjectAfter(injectpoint, newlines, &bad_sdp);
963 ExpectParseFailure(bad_sdp, bad_part);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000964}
965
Steve Anton4e70a722017-11-28 14:57:10 -0800966static void ReplaceDirection(RtpTransceiverDirection direction,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000967 std::string* message) {
968 std::string new_direction;
969 switch (direction) {
Steve Anton4e70a722017-11-28 14:57:10 -0800970 case RtpTransceiverDirection::kInactive:
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000971 new_direction = "a=inactive";
972 break;
Steve Anton4e70a722017-11-28 14:57:10 -0800973 case RtpTransceiverDirection::kSendOnly:
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000974 new_direction = "a=sendonly";
975 break;
Steve Anton4e70a722017-11-28 14:57:10 -0800976 case RtpTransceiverDirection::kRecvOnly:
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000977 new_direction = "a=recvonly";
978 break;
Steve Anton4e70a722017-11-28 14:57:10 -0800979 case RtpTransceiverDirection::kSendRecv:
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000980 default:
981 new_direction = "a=sendrecv";
982 break;
983 }
984 Replace("a=sendrecv", new_direction, message);
985}
986
Yves Gerey665174f2018-06-19 15:03:05 +0200987static void ReplaceRejected(bool audio_rejected,
988 bool video_rejected,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000989 std::string* message) {
990 if (audio_rejected) {
deadbeef3f7219b2015-12-28 15:17:14 -0800991 Replace("m=audio 9", "m=audio 0", message);
992 Replace(kAttributeIceUfragVoice, "", message);
993 Replace(kAttributeIcePwdVoice, "", message);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000994 }
995 if (video_rejected) {
deadbeef3f7219b2015-12-28 15:17:14 -0800996 Replace("m=video 9", "m=video 0", message);
997 Replace(kAttributeIceUfragVideo, "", message);
998 Replace(kAttributeIcePwdVideo, "", message);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000999 }
1000}
1001
1002// WebRtcSdpTest
1003
1004class WebRtcSdpTest : public testing::Test {
1005 public:
Steve Antona3a92c22017-12-07 10:27:41 -08001006 WebRtcSdpTest() : jdesc_(kDummyType) {
phoglund37ebcf02016-01-08 05:04:57 -08001007#ifdef WEBRTC_ANDROID
1008 webrtc::InitializeAndroidObjects();
1009#endif
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001010 // AudioContentDescription
1011 audio_desc_ = CreateAudioContentDescription();
deadbeef9d3584c2016-02-16 17:54:10 -08001012 StreamParams audio_stream;
1013 audio_stream.id = kAudioTrackId1;
1014 audio_stream.cname = kStream1Cname;
Seth Hampson845e8782018-03-02 11:34:10 -08001015 audio_stream.set_stream_ids({kStreamId1});
deadbeef9d3584c2016-02-16 17:54:10 -08001016 audio_stream.ssrcs.push_back(kAudioTrack1Ssrc);
1017 audio_desc_->AddStream(audio_stream);
zhihuang38989e52017-03-21 11:04:53 -07001018 rtc::SocketAddress audio_addr("74.125.127.126", 2345);
1019 audio_desc_->set_connection_address(audio_addr);
Steve Anton5adfafd2017-12-20 16:34:00 -08001020 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, audio_desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001021
1022 // VideoContentDescription
deadbeef9d3584c2016-02-16 17:54:10 -08001023 video_desc_ = CreateVideoContentDescription();
1024 StreamParams video_stream;
1025 video_stream.id = kVideoTrackId1;
1026 video_stream.cname = kStream1Cname;
Seth Hampson845e8782018-03-02 11:34:10 -08001027 video_stream.set_stream_ids({kStreamId1});
deadbeef9d3584c2016-02-16 17:54:10 -08001028 video_stream.ssrcs.push_back(kVideoTrack1Ssrc1);
1029 video_stream.ssrcs.push_back(kVideoTrack1Ssrc2);
1030 cricket::SsrcGroup ssrc_group(kFecSsrcGroupSemantics, video_stream.ssrcs);
1031 video_stream.ssrc_groups.push_back(ssrc_group);
1032 video_desc_->AddStream(video_stream);
zhihuang38989e52017-03-21 11:04:53 -07001033 rtc::SocketAddress video_addr("74.125.224.39", 3457);
1034 video_desc_->set_connection_address(video_addr);
Steve Anton5adfafd2017-12-20 16:34:00 -08001035 desc_.AddContent(kVideoContentName, MediaProtocolType::kRtp, video_desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001036
1037 // TransportInfo
Steve Anton06817cd2018-12-18 15:55:30 -08001038 desc_.AddTransportInfo(TransportInfo(
1039 kAudioContentName, TransportDescription(kUfragVoice, kPwdVoice)));
1040 desc_.AddTransportInfo(TransportInfo(
1041 kVideoContentName, TransportDescription(kUfragVideo, kPwdVideo)));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001042
1043 // v4 host
1044 int port = 1234;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001045 rtc::SocketAddress address("192.168.1.5", port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001046 Candidate candidate1(ICE_CANDIDATE_COMPONENT_RTP, "udp", address,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001047 kCandidatePriority, "", "", LOCAL_PORT_TYPE,
1048 kCandidateGeneration, kCandidateFoundation1);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001049 address.SetPort(port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001050 Candidate candidate2(ICE_CANDIDATE_COMPONENT_RTCP, "udp", address,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001051 kCandidatePriority, "", "", LOCAL_PORT_TYPE,
1052 kCandidateGeneration, kCandidateFoundation1);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001053 address.SetPort(port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001054 Candidate candidate3(ICE_CANDIDATE_COMPONENT_RTCP, "udp", address,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001055 kCandidatePriority, "", "", LOCAL_PORT_TYPE,
1056 kCandidateGeneration, kCandidateFoundation1);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001057 address.SetPort(port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001058 Candidate candidate4(ICE_CANDIDATE_COMPONENT_RTP, "udp", address,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001059 kCandidatePriority, "", "", LOCAL_PORT_TYPE,
1060 kCandidateGeneration, kCandidateFoundation1);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001061
1062 // v6 host
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001063 rtc::SocketAddress v6_address("::1", port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001064 cricket::Candidate candidate5(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
1065 v6_address, kCandidatePriority, "", "",
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001066 cricket::LOCAL_PORT_TYPE,
1067 kCandidateGeneration, kCandidateFoundation2);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001068 v6_address.SetPort(port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001069 cricket::Candidate candidate6(cricket::ICE_CANDIDATE_COMPONENT_RTCP, "udp",
1070 v6_address, kCandidatePriority, "", "",
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001071 cricket::LOCAL_PORT_TYPE,
1072 kCandidateGeneration, kCandidateFoundation2);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001073 v6_address.SetPort(port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001074 cricket::Candidate candidate7(cricket::ICE_CANDIDATE_COMPONENT_RTCP, "udp",
1075 v6_address, kCandidatePriority, "", "",
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001076 cricket::LOCAL_PORT_TYPE,
1077 kCandidateGeneration, kCandidateFoundation2);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001078 v6_address.SetPort(port++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001079 cricket::Candidate candidate8(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
1080 v6_address, kCandidatePriority, "", "",
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001081 cricket::LOCAL_PORT_TYPE,
1082 kCandidateGeneration, kCandidateFoundation2);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001083
1084 // stun
1085 int port_stun = 2345;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001086 rtc::SocketAddress address_stun("74.125.127.126", port_stun++);
1087 rtc::SocketAddress rel_address_stun("192.168.1.5", port_stun++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001088 cricket::Candidate candidate9(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
1089 address_stun, kCandidatePriority, "", "",
1090 STUN_PORT_TYPE, kCandidateGeneration,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001091 kCandidateFoundation3);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001092 candidate9.set_related_address(rel_address_stun);
1093
1094 address_stun.SetPort(port_stun++);
1095 rel_address_stun.SetPort(port_stun++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001096 cricket::Candidate candidate10(cricket::ICE_CANDIDATE_COMPONENT_RTCP, "udp",
1097 address_stun, kCandidatePriority, "", "",
1098 STUN_PORT_TYPE, kCandidateGeneration,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001099 kCandidateFoundation3);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001100 candidate10.set_related_address(rel_address_stun);
1101
1102 // relay
1103 int port_relay = 3456;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001104 rtc::SocketAddress address_relay("74.125.224.39", port_relay++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001105 cricket::Candidate candidate11(cricket::ICE_CANDIDATE_COMPONENT_RTCP, "udp",
1106 address_relay, kCandidatePriority, "", "",
1107 cricket::RELAY_PORT_TYPE,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001108 kCandidateGeneration, kCandidateFoundation4);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001109 address_relay.SetPort(port_relay++);
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00001110 cricket::Candidate candidate12(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
1111 address_relay, kCandidatePriority, "", "",
1112 RELAY_PORT_TYPE, kCandidateGeneration,
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00001113 kCandidateFoundation4);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001114
1115 // voice
1116 candidates_.push_back(candidate1);
1117 candidates_.push_back(candidate2);
1118 candidates_.push_back(candidate5);
1119 candidates_.push_back(candidate6);
1120 candidates_.push_back(candidate9);
1121 candidates_.push_back(candidate10);
1122
1123 // video
1124 candidates_.push_back(candidate3);
1125 candidates_.push_back(candidate4);
1126 candidates_.push_back(candidate7);
1127 candidates_.push_back(candidate8);
1128 candidates_.push_back(candidate11);
1129 candidates_.push_back(candidate12);
1130
Yves Gerey665174f2018-06-19 15:03:05 +02001131 jcandidate_.reset(
1132 new JsepIceCandidate(std::string("audio_content_name"), 0, candidate1));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001133
1134 // Set up JsepSessionDescription.
1135 jdesc_.Initialize(desc_.Copy(), kSessionId, kSessionVersion);
1136 std::string mline_id;
1137 int mline_index = 0;
Yves Gerey665174f2018-06-19 15:03:05 +02001138 for (size_t i = 0; i < candidates_.size(); ++i) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001139 // In this test, the audio m line index will be 0, and the video m line
1140 // will be 1.
1141 bool is_video = (i > 5);
1142 mline_id = is_video ? "video_content_name" : "audio_content_name";
1143 mline_index = is_video ? 1 : 0;
Yves Gerey665174f2018-06-19 15:03:05 +02001144 JsepIceCandidate jice(mline_id, mline_index, candidates_.at(i));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001145 jdesc_.AddCandidate(&jice);
1146 }
1147 }
1148
Seth Hampson5b4f0752018-04-02 16:31:36 -07001149 void RemoveVideoCandidates() {
deadbeef25ed4352016-12-12 18:37:36 -08001150 const IceCandidateCollection* video_candidates_collection =
1151 jdesc_.candidates(1);
1152 ASSERT_NE(nullptr, video_candidates_collection);
1153 std::vector<cricket::Candidate> video_candidates;
1154 for (size_t i = 0; i < video_candidates_collection->count(); ++i) {
1155 cricket::Candidate c = video_candidates_collection->at(i)->candidate();
1156 c.set_transport_name("video_content_name");
1157 video_candidates.push_back(c);
1158 }
1159 jdesc_.RemoveCandidates(video_candidates);
Seth Hampson5b4f0752018-04-02 16:31:36 -07001160 }
1161
1162 // Turns the existing reference description into a description using
1163 // a=bundle-only. This means no transport attributes and a 0 port value on
1164 // the m= sections not associated with the BUNDLE-tag.
1165 void MakeBundleOnlyDescription() {
1166 RemoveVideoCandidates();
deadbeef25ed4352016-12-12 18:37:36 -08001167
1168 // And the rest of the transport attributes.
1169 desc_.transport_infos()[1].description.ice_ufrag.clear();
1170 desc_.transport_infos()[1].description.ice_pwd.clear();
1171 desc_.transport_infos()[1].description.connection_role =
1172 cricket::CONNECTIONROLE_NONE;
1173
1174 // Set bundle-only flag.
1175 desc_.contents()[1].bundle_only = true;
1176
1177 // Add BUNDLE group.
1178 ContentGroup group(cricket::GROUP_TYPE_BUNDLE);
1179 group.AddContentName(kAudioContentName);
1180 group.AddContentName(kVideoContentName);
1181 desc_.AddGroup(group);
1182
1183 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
1184 jdesc_.session_version()));
1185 }
1186
deadbeef9d3584c2016-02-16 17:54:10 -08001187 // Turns the existing reference description into a plan B description,
1188 // with 2 audio tracks and 3 video tracks.
1189 void MakePlanBDescription() {
Steve Antonb1c1de12017-12-21 15:14:30 -08001190 audio_desc_ = audio_desc_->Copy();
1191 video_desc_ = video_desc_->Copy();
deadbeef9d3584c2016-02-16 17:54:10 -08001192
1193 StreamParams audio_track_2;
1194 audio_track_2.id = kAudioTrackId2;
1195 audio_track_2.cname = kStream2Cname;
Seth Hampson845e8782018-03-02 11:34:10 -08001196 audio_track_2.set_stream_ids({kStreamId2});
deadbeef9d3584c2016-02-16 17:54:10 -08001197 audio_track_2.ssrcs.push_back(kAudioTrack2Ssrc);
1198 audio_desc_->AddStream(audio_track_2);
1199
1200 StreamParams video_track_2;
1201 video_track_2.id = kVideoTrackId2;
1202 video_track_2.cname = kStream2Cname;
Seth Hampson845e8782018-03-02 11:34:10 -08001203 video_track_2.set_stream_ids({kStreamId2});
deadbeef9d3584c2016-02-16 17:54:10 -08001204 video_track_2.ssrcs.push_back(kVideoTrack2Ssrc);
1205 video_desc_->AddStream(video_track_2);
1206
1207 StreamParams video_track_3;
1208 video_track_3.id = kVideoTrackId3;
1209 video_track_3.cname = kStream2Cname;
Seth Hampson845e8782018-03-02 11:34:10 -08001210 video_track_3.set_stream_ids({kStreamId2});
deadbeef9d3584c2016-02-16 17:54:10 -08001211 video_track_3.ssrcs.push_back(kVideoTrack3Ssrc);
1212 video_desc_->AddStream(video_track_3);
1213
1214 desc_.RemoveContentByName(kAudioContentName);
1215 desc_.RemoveContentByName(kVideoContentName);
Steve Anton5adfafd2017-12-20 16:34:00 -08001216 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, audio_desc_);
1217 desc_.AddContent(kVideoContentName, MediaProtocolType::kRtp, video_desc_);
deadbeef9d3584c2016-02-16 17:54:10 -08001218
1219 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
1220 jdesc_.session_version()));
1221 }
1222
1223 // Turns the existing reference description into a unified plan description,
1224 // with 2 audio tracks and 3 video tracks.
Amit Hilbuchc57d5732018-12-11 15:30:11 -08001225 void MakeUnifiedPlanDescription(bool use_ssrcs = true) {
deadbeef9d3584c2016-02-16 17:54:10 -08001226 // Audio track 2.
1227 AudioContentDescription* audio_desc_2 = CreateAudioContentDescription();
1228 StreamParams audio_track_2;
1229 audio_track_2.id = kAudioTrackId2;
Seth Hampson845e8782018-03-02 11:34:10 -08001230 audio_track_2.set_stream_ids({kStreamId2});
Amit Hilbuchc57d5732018-12-11 15:30:11 -08001231 if (use_ssrcs) {
1232 audio_track_2.cname = kStream2Cname;
1233 audio_track_2.ssrcs.push_back(kAudioTrack2Ssrc);
1234 }
deadbeef9d3584c2016-02-16 17:54:10 -08001235 audio_desc_2->AddStream(audio_track_2);
Steve Anton5adfafd2017-12-20 16:34:00 -08001236 desc_.AddContent(kAudioContentName2, MediaProtocolType::kRtp, audio_desc_2);
Steve Anton06817cd2018-12-18 15:55:30 -08001237 desc_.AddTransportInfo(TransportInfo(
1238 kAudioContentName2, TransportDescription(kUfragVoice2, kPwdVoice2)));
deadbeef9d3584c2016-02-16 17:54:10 -08001239 // Video track 2, in stream 2.
1240 VideoContentDescription* video_desc_2 = CreateVideoContentDescription();
1241 StreamParams video_track_2;
1242 video_track_2.id = kVideoTrackId2;
Seth Hampson845e8782018-03-02 11:34:10 -08001243 video_track_2.set_stream_ids({kStreamId2});
Amit Hilbuchc57d5732018-12-11 15:30:11 -08001244 if (use_ssrcs) {
1245 video_track_2.cname = kStream2Cname;
1246 video_track_2.ssrcs.push_back(kVideoTrack2Ssrc);
1247 }
deadbeef9d3584c2016-02-16 17:54:10 -08001248 video_desc_2->AddStream(video_track_2);
Steve Anton5adfafd2017-12-20 16:34:00 -08001249 desc_.AddContent(kVideoContentName2, MediaProtocolType::kRtp, video_desc_2);
Steve Anton06817cd2018-12-18 15:55:30 -08001250 desc_.AddTransportInfo(TransportInfo(
1251 kVideoContentName2, TransportDescription(kUfragVideo2, kPwdVideo2)));
deadbeef9d3584c2016-02-16 17:54:10 -08001252
1253 // Video track 3, in stream 2.
1254 VideoContentDescription* video_desc_3 = CreateVideoContentDescription();
1255 StreamParams video_track_3;
1256 video_track_3.id = kVideoTrackId3;
Seth Hampson845e8782018-03-02 11:34:10 -08001257 video_track_3.set_stream_ids({kStreamId2});
Amit Hilbuchc57d5732018-12-11 15:30:11 -08001258 if (use_ssrcs) {
1259 video_track_3.cname = kStream2Cname;
1260 video_track_3.ssrcs.push_back(kVideoTrack3Ssrc);
1261 }
deadbeef9d3584c2016-02-16 17:54:10 -08001262 video_desc_3->AddStream(video_track_3);
Steve Anton5adfafd2017-12-20 16:34:00 -08001263 desc_.AddContent(kVideoContentName3, MediaProtocolType::kRtp, video_desc_3);
Steve Anton06817cd2018-12-18 15:55:30 -08001264 desc_.AddTransportInfo(TransportInfo(
1265 kVideoContentName3, TransportDescription(kUfragVideo3, kPwdVideo3)));
Steve Antone831b8c2018-02-01 12:22:16 -08001266 desc_.set_msid_signaling(cricket::kMsidSignalingMediaSection);
deadbeef9d3584c2016-02-16 17:54:10 -08001267
1268 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
1269 jdesc_.session_version()));
1270 }
1271
1272 // Creates an audio content description with no streams, and some default
1273 // configuration.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001274 AudioContentDescription* CreateAudioContentDescription() {
1275 AudioContentDescription* audio = new AudioContentDescription();
1276 audio->set_rtcp_mux(true);
deadbeef13871492015-12-09 12:37:51 -08001277 audio->set_rtcp_reduced_size(true);
Yves Gerey665174f2018-06-19 15:03:05 +02001278 audio->AddCrypto(CryptoParams(
1279 1, "AES_CM_128_HMAC_SHA1_32",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001280 "inline:NzB4d1BINUAvLEw6UzF3WSJ+PSdFcGdUJShpX1Zj|2^20|1:32",
1281 "dummy_session_params"));
1282 audio->set_protocol(cricket::kMediaProtocolSavpf);
deadbeef67cf2c12016-04-13 10:07:16 -07001283 AudioCodec opus(111, "opus", 48000, 0, 2);
deadbeef9d3584c2016-02-16 17:54:10 -08001284 audio->AddCodec(opus);
ossue1405ad2017-01-23 08:55:48 -08001285 audio->AddCodec(AudioCodec(103, "ISAC", 16000, 0, 1));
1286 audio->AddCodec(AudioCodec(104, "ISAC", 32000, 0, 1));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001287 return audio;
1288 }
1289
Seth Hampson5b4f0752018-04-02 16:31:36 -07001290 // Turns the existing reference description into a unified plan description,
1291 // with 3 audio MediaContentDescriptions with special StreamParams that
1292 // contain 0 or multiple stream ids: - audio track 1 has 1 media stream id -
1293 // audio track 2 has 2 media stream ids - audio track 3 has 0 media stream ids
Seth Hampson7fa6ee62018-10-17 10:25:28 -07001294 void MakeUnifiedPlanDescriptionMultipleStreamIds(const int msid_signaling) {
Seth Hampson5b4f0752018-04-02 16:31:36 -07001295 desc_.RemoveContentByName(kVideoContentName);
1296 desc_.RemoveTransportInfoByName(kVideoContentName);
1297 RemoveVideoCandidates();
1298
1299 // Audio track 2 has 2 media stream ids.
1300 AudioContentDescription* audio_desc_2 = CreateAudioContentDescription();
1301 StreamParams audio_track_2;
1302 audio_track_2.id = kAudioTrackId2;
1303 audio_track_2.cname = kStream1Cname;
1304 audio_track_2.set_stream_ids({kStreamId1, kStreamId2});
1305 audio_track_2.ssrcs.push_back(kAudioTrack2Ssrc);
1306 audio_desc_2->AddStream(audio_track_2);
1307 desc_.AddContent(kAudioContentName2, MediaProtocolType::kRtp, audio_desc_2);
Steve Anton06817cd2018-12-18 15:55:30 -08001308 desc_.AddTransportInfo(TransportInfo(
1309 kAudioContentName2, TransportDescription(kUfragVoice2, kPwdVoice2)));
Seth Hampson5b4f0752018-04-02 16:31:36 -07001310
1311 // Audio track 3 has no stream ids.
1312 AudioContentDescription* audio_desc_3 = CreateAudioContentDescription();
1313 StreamParams audio_track_3;
1314 audio_track_3.id = kAudioTrackId3;
1315 audio_track_3.cname = kStream2Cname;
1316 audio_track_3.set_stream_ids({});
1317 audio_track_3.ssrcs.push_back(kAudioTrack3Ssrc);
1318 audio_desc_3->AddStream(audio_track_3);
1319 desc_.AddContent(kAudioContentName3, MediaProtocolType::kRtp, audio_desc_3);
Steve Anton06817cd2018-12-18 15:55:30 -08001320 desc_.AddTransportInfo(TransportInfo(
1321 kAudioContentName3, TransportDescription(kUfragVoice3, kPwdVoice3)));
Seth Hampson7fa6ee62018-10-17 10:25:28 -07001322 desc_.set_msid_signaling(msid_signaling);
Seth Hampson5b4f0752018-04-02 16:31:36 -07001323 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
1324 jdesc_.session_version()));
1325 }
1326
Seth Hampson5897a6e2018-04-03 11:16:33 -07001327 // Turns the existing reference description into a unified plan description
1328 // with one audio MediaContentDescription that contains one StreamParams with
1329 // 0 ssrcs.
1330 void MakeUnifiedPlanDescriptionNoSsrcSignaling() {
1331 desc_.RemoveContentByName(kVideoContentName);
1332 desc_.RemoveContentByName(kAudioContentName);
1333 desc_.RemoveTransportInfoByName(kVideoContentName);
1334 RemoveVideoCandidates();
1335
1336 AudioContentDescription* audio_desc = CreateAudioContentDescription();
1337 StreamParams audio_track;
1338 audio_track.id = kAudioTrackId1;
1339 audio_track.set_stream_ids({kStreamId1});
1340 audio_desc->AddStream(audio_track);
1341 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, audio_desc);
1342
1343 // Enable signaling a=msid lines.
1344 desc_.set_msid_signaling(cricket::kMsidSignalingMediaSection);
1345 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
1346 jdesc_.session_version()));
1347 }
1348
deadbeef9d3584c2016-02-16 17:54:10 -08001349 // Creates a video content description with no streams, and some default
1350 // configuration.
1351 VideoContentDescription* CreateVideoContentDescription() {
1352 VideoContentDescription* video = new VideoContentDescription();
1353 video->AddCrypto(CryptoParams(
1354 1, "AES_CM_128_HMAC_SHA1_80",
1355 "inline:d0RmdmcmVCspeEc3QGZiNWpVLFJhQX1cfHAwJSoj|2^20|1:32", ""));
1356 video->set_protocol(cricket::kMediaProtocolSavpf);
1357 video->AddCodec(
perkj26752742016-10-24 01:21:16 -07001358 VideoCodec(120, JsepSessionDescription::kDefaultVideoCodecName));
deadbeef9d3584c2016-02-16 17:54:10 -08001359 return video;
1360 }
1361
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001362 template <class MCD>
Yves Gerey665174f2018-06-19 15:03:05 +02001363 void CompareMediaContentDescription(const MCD* cd1, const MCD* cd2) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001364 // type
1365 EXPECT_EQ(cd1->type(), cd1->type());
1366
1367 // content direction
1368 EXPECT_EQ(cd1->direction(), cd2->direction());
1369
1370 // rtcp_mux
1371 EXPECT_EQ(cd1->rtcp_mux(), cd2->rtcp_mux());
1372
deadbeef13871492015-12-09 12:37:51 -08001373 // rtcp_reduced_size
1374 EXPECT_EQ(cd1->rtcp_reduced_size(), cd2->rtcp_reduced_size());
1375
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001376 // cryptos
1377 EXPECT_EQ(cd1->cryptos().size(), cd2->cryptos().size());
1378 if (cd1->cryptos().size() != cd2->cryptos().size()) {
1379 ADD_FAILURE();
1380 return;
1381 }
Yves Gerey665174f2018-06-19 15:03:05 +02001382 for (size_t i = 0; i < cd1->cryptos().size(); ++i) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001383 const CryptoParams c1 = cd1->cryptos().at(i);
1384 const CryptoParams c2 = cd2->cryptos().at(i);
1385 EXPECT_TRUE(c1.Matches(c2));
1386 EXPECT_EQ(c1.key_params, c2.key_params);
1387 EXPECT_EQ(c1.session_params, c2.session_params);
1388 }
lally@webrtc.orgd7b61652015-02-24 20:18:55 +00001389
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001390 // protocol
lally@webrtc.orgd7b61652015-02-24 20:18:55 +00001391 // Use an equivalence class here, for old and new versions of the
1392 // protocol description.
Yves Gerey665174f2018-06-19 15:03:05 +02001393 if (cd1->protocol() == cricket::kMediaProtocolDtlsSctp ||
1394 cd1->protocol() == cricket::kMediaProtocolUdpDtlsSctp ||
1395 cd1->protocol() == cricket::kMediaProtocolTcpDtlsSctp) {
lally@webrtc.org36300852015-02-24 20:19:35 +00001396 const bool cd2_is_also_dtls_sctp =
Yves Gerey665174f2018-06-19 15:03:05 +02001397 cd2->protocol() == cricket::kMediaProtocolDtlsSctp ||
1398 cd2->protocol() == cricket::kMediaProtocolUdpDtlsSctp ||
1399 cd2->protocol() == cricket::kMediaProtocolTcpDtlsSctp;
lally@webrtc.org36300852015-02-24 20:19:35 +00001400 EXPECT_TRUE(cd2_is_also_dtls_sctp);
lally@webrtc.orgd7b61652015-02-24 20:18:55 +00001401 } else {
1402 EXPECT_EQ(cd1->protocol(), cd2->protocol());
1403 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001404
1405 // codecs
1406 EXPECT_EQ(cd1->codecs(), cd2->codecs());
1407
1408 // bandwidth
1409 EXPECT_EQ(cd1->bandwidth(), cd2->bandwidth());
1410
1411 // streams
1412 EXPECT_EQ(cd1->streams(), cd2->streams());
Amit Hilbuchc57d5732018-12-11 15:30:11 -08001413 EXPECT_EQ(cd1->has_receive_stream(), cd2->has_receive_stream());
1414 if (cd1->has_receive_stream() && cd2->has_receive_stream()) {
1415 EXPECT_EQ(cd1->receive_stream(), cd2->receive_stream());
1416 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001417
Johannes Kron0854eb62018-10-10 22:33:20 +02001418 // extmap-allow-mixed
Johannes Kron9581bc42018-10-23 10:17:39 +02001419 EXPECT_EQ(cd1->extmap_allow_mixed_enum(), cd2->extmap_allow_mixed_enum());
Johannes Kron0854eb62018-10-10 22:33:20 +02001420
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001421 // extmap
1422 ASSERT_EQ(cd1->rtp_header_extensions().size(),
1423 cd2->rtp_header_extensions().size());
Yves Gerey665174f2018-06-19 15:03:05 +02001424 for (size_t i = 0; i < cd1->rtp_header_extensions().size(); ++i) {
isheriff6f8d6862016-05-26 11:24:55 -07001425 const RtpExtension ext1 = cd1->rtp_header_extensions().at(i);
1426 const RtpExtension ext2 = cd2->rtp_header_extensions().at(i);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001427 EXPECT_EQ(ext1.uri, ext2.uri);
1428 EXPECT_EQ(ext1.id, ext2.id);
jbauch5869f502017-06-29 12:31:36 -07001429 EXPECT_EQ(ext1.encrypt, ext2.encrypt);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001430 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001431 }
1432
Amit Hilbuchc57d5732018-12-11 15:30:11 -08001433 void CompareRidDescriptionIds(const std::vector<RidDescription>& rids,
1434 const std::vector<std::string>& ids) {
1435 // Order of elements does not matter, only equivalence of sets.
1436 EXPECT_EQ(rids.size(), ids.size());
1437 for (const std::string& id : ids) {
1438 EXPECT_EQ(1l, std::count_if(rids.begin(), rids.end(),
1439 [id](const RidDescription& rid) {
1440 return rid.rid == id;
1441 }));
1442 }
1443 }
1444
Amit Hilbucha2012042018-12-03 11:35:05 -08001445 void CompareSimulcastDescription(const SimulcastDescription& simulcast1,
1446 const SimulcastDescription& simulcast2) {
1447 EXPECT_EQ(simulcast1.send_layers().size(), simulcast2.send_layers().size());
1448 EXPECT_EQ(simulcast1.receive_layers().size(),
1449 simulcast2.receive_layers().size());
1450 }
1451
zstein4b2e0822017-02-17 19:48:38 -08001452 void CompareDataContentDescription(const DataContentDescription* dcd1,
1453 const DataContentDescription* dcd2) {
1454 EXPECT_EQ(dcd1->use_sctpmap(), dcd2->use_sctpmap());
1455 CompareMediaContentDescription<DataContentDescription>(dcd1, dcd2);
1456 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001457
1458 void CompareSessionDescription(const SessionDescription& desc1,
1459 const SessionDescription& desc2) {
1460 // Compare content descriptions.
1461 if (desc1.contents().size() != desc2.contents().size()) {
1462 ADD_FAILURE();
1463 return;
1464 }
Yves Gerey665174f2018-06-19 15:03:05 +02001465 for (size_t i = 0; i < desc1.contents().size(); ++i) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001466 const cricket::ContentInfo& c1 = desc1.contents().at(i);
1467 const cricket::ContentInfo& c2 = desc2.contents().at(i);
deadbeef25ed4352016-12-12 18:37:36 -08001468 // ContentInfo properties.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001469 EXPECT_EQ(c1.name, c2.name);
deadbeef25ed4352016-12-12 18:37:36 -08001470 EXPECT_EQ(c1.type, c2.type);
1471 EXPECT_EQ(c1.rejected, c2.rejected);
1472 EXPECT_EQ(c1.bundle_only, c2.bundle_only);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001473
1474 ASSERT_EQ(IsAudioContent(&c1), IsAudioContent(&c2));
1475 if (IsAudioContent(&c1)) {
1476 const AudioContentDescription* acd1 =
Steve Antonb1c1de12017-12-21 15:14:30 -08001477 c1.media_description()->as_audio();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001478 const AudioContentDescription* acd2 =
Steve Antonb1c1de12017-12-21 15:14:30 -08001479 c2.media_description()->as_audio();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001480 CompareMediaContentDescription<AudioContentDescription>(acd1, acd2);
1481 }
1482
1483 ASSERT_EQ(IsVideoContent(&c1), IsVideoContent(&c2));
1484 if (IsVideoContent(&c1)) {
1485 const VideoContentDescription* vcd1 =
Steve Antonb1c1de12017-12-21 15:14:30 -08001486 c1.media_description()->as_video();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001487 const VideoContentDescription* vcd2 =
Steve Antonb1c1de12017-12-21 15:14:30 -08001488 c2.media_description()->as_video();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001489 CompareMediaContentDescription<VideoContentDescription>(vcd1, vcd2);
1490 }
1491
1492 ASSERT_EQ(IsDataContent(&c1), IsDataContent(&c2));
1493 if (IsDataContent(&c1)) {
Steve Antonb1c1de12017-12-21 15:14:30 -08001494 const DataContentDescription* dcd1 = c1.media_description()->as_data();
1495 const DataContentDescription* dcd2 = c2.media_description()->as_data();
zstein4b2e0822017-02-17 19:48:38 -08001496 CompareDataContentDescription(dcd1, dcd2);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001497 }
Amit Hilbucha2012042018-12-03 11:35:05 -08001498
1499 CompareSimulcastDescription(
1500 c1.media_description()->simulcast_description(),
1501 c2.media_description()->simulcast_description());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001502 }
1503
1504 // group
1505 const cricket::ContentGroups groups1 = desc1.groups();
1506 const cricket::ContentGroups groups2 = desc2.groups();
1507 EXPECT_EQ(groups1.size(), groups1.size());
1508 if (groups1.size() != groups2.size()) {
1509 ADD_FAILURE();
1510 return;
1511 }
1512 for (size_t i = 0; i < groups1.size(); ++i) {
1513 const cricket::ContentGroup group1 = groups1.at(i);
1514 const cricket::ContentGroup group2 = groups2.at(i);
1515 EXPECT_EQ(group1.semantics(), group2.semantics());
1516 const cricket::ContentNames names1 = group1.content_names();
1517 const cricket::ContentNames names2 = group2.content_names();
1518 EXPECT_EQ(names1.size(), names2.size());
1519 if (names1.size() != names2.size()) {
1520 ADD_FAILURE();
1521 return;
1522 }
1523 cricket::ContentNames::const_iterator iter1 = names1.begin();
1524 cricket::ContentNames::const_iterator iter2 = names2.begin();
1525 while (iter1 != names1.end()) {
1526 EXPECT_EQ(*iter1++, *iter2++);
1527 }
1528 }
1529
1530 // transport info
1531 const cricket::TransportInfos transports1 = desc1.transport_infos();
1532 const cricket::TransportInfos transports2 = desc2.transport_infos();
1533 EXPECT_EQ(transports1.size(), transports2.size());
1534 if (transports1.size() != transports2.size()) {
1535 ADD_FAILURE();
1536 return;
1537 }
1538 for (size_t i = 0; i < transports1.size(); ++i) {
1539 const cricket::TransportInfo transport1 = transports1.at(i);
1540 const cricket::TransportInfo transport2 = transports2.at(i);
1541 EXPECT_EQ(transport1.content_name, transport2.content_name);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001542 EXPECT_EQ(transport1.description.ice_ufrag,
1543 transport2.description.ice_ufrag);
Yves Gerey665174f2018-06-19 15:03:05 +02001544 EXPECT_EQ(transport1.description.ice_pwd, transport2.description.ice_pwd);
Taylor Brandstetter2f65ec52018-05-24 11:37:28 -07001545 EXPECT_EQ(transport1.description.ice_mode,
1546 transport2.description.ice_mode);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001547 if (transport1.description.identity_fingerprint) {
1548 EXPECT_EQ(*transport1.description.identity_fingerprint,
1549 *transport2.description.identity_fingerprint);
1550 } else {
1551 EXPECT_EQ(transport1.description.identity_fingerprint.get(),
1552 transport2.description.identity_fingerprint.get());
1553 }
1554 EXPECT_EQ(transport1.description.transport_options,
1555 transport2.description.transport_options);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001556 }
deadbeefc80741f2015-10-22 13:14:45 -07001557
1558 // global attributes
1559 EXPECT_EQ(desc1.msid_supported(), desc2.msid_supported());
Johannes Kron9581bc42018-10-23 10:17:39 +02001560 EXPECT_EQ(desc1.extmap_allow_mixed(), desc2.extmap_allow_mixed());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001561 }
1562
Yves Gerey665174f2018-06-19 15:03:05 +02001563 bool CompareSessionDescription(const JsepSessionDescription& desc1,
1564 const JsepSessionDescription& desc2) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001565 EXPECT_EQ(desc1.session_id(), desc2.session_id());
1566 EXPECT_EQ(desc1.session_version(), desc2.session_version());
1567 CompareSessionDescription(*desc1.description(), *desc2.description());
1568 if (desc1.number_of_mediasections() != desc2.number_of_mediasections())
1569 return false;
1570 for (size_t i = 0; i < desc1.number_of_mediasections(); ++i) {
1571 const IceCandidateCollection* cc1 = desc1.candidates(i);
1572 const IceCandidateCollection* cc2 = desc2.candidates(i);
deadbeef25ed4352016-12-12 18:37:36 -08001573 if (cc1->count() != cc2->count()) {
1574 ADD_FAILURE();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001575 return false;
deadbeef25ed4352016-12-12 18:37:36 -08001576 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001577 for (size_t j = 0; j < cc1->count(); ++j) {
1578 const IceCandidateInterface* c1 = cc1->at(j);
1579 const IceCandidateInterface* c2 = cc2->at(j);
1580 EXPECT_EQ(c1->sdp_mid(), c2->sdp_mid());
1581 EXPECT_EQ(c1->sdp_mline_index(), c2->sdp_mline_index());
1582 EXPECT_TRUE(c1->candidate().IsEquivalent(c2->candidate()));
1583 }
1584 }
1585 return true;
1586 }
1587
1588 // Disable the ice-ufrag and ice-pwd in given |sdp| message by replacing
1589 // them with invalid keywords so that the parser will just ignore them.
1590 bool RemoveCandidateUfragPwd(std::string* sdp) {
1591 const char ice_ufrag[] = "a=ice-ufrag";
1592 const char ice_ufragx[] = "a=xice-ufrag";
1593 const char ice_pwd[] = "a=ice-pwd";
1594 const char ice_pwdx[] = "a=xice-pwd";
Yves Gerey665174f2018-06-19 15:03:05 +02001595 rtc::replace_substrs(ice_ufrag, strlen(ice_ufrag), ice_ufragx,
1596 strlen(ice_ufragx), sdp);
1597 rtc::replace_substrs(ice_pwd, strlen(ice_pwd), ice_pwdx, strlen(ice_pwdx),
1598 sdp);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001599 return true;
1600 }
1601
1602 // Update the candidates in |jdesc| to use the given |ufrag| and |pwd|.
Yves Gerey665174f2018-06-19 15:03:05 +02001603 bool UpdateCandidateUfragPwd(JsepSessionDescription* jdesc,
1604 int mline_index,
1605 const std::string& ufrag,
1606 const std::string& pwd) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001607 std::string content_name;
1608 if (mline_index == 0) {
1609 content_name = kAudioContentName;
1610 } else if (mline_index == 1) {
1611 content_name = kVideoContentName;
1612 } else {
nissec80e7412017-01-11 05:56:46 -08001613 RTC_NOTREACHED();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001614 }
Yves Gerey665174f2018-06-19 15:03:05 +02001615 TransportInfo transport_info(content_name,
1616 TransportDescription(ufrag, pwd));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001617 SessionDescription* desc =
1618 const_cast<SessionDescription*>(jdesc->description());
1619 desc->RemoveTransportInfoByName(content_name);
Steve Anton06817cd2018-12-18 15:55:30 -08001620 desc->AddTransportInfo(transport_info);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001621 for (size_t i = 0; i < jdesc_.number_of_mediasections(); ++i) {
1622 const IceCandidateCollection* cc = jdesc_.candidates(i);
1623 for (size_t j = 0; j < cc->count(); ++j) {
1624 if (cc->at(j)->sdp_mline_index() == mline_index) {
Yves Gerey665174f2018-06-19 15:03:05 +02001625 const_cast<Candidate&>(cc->at(j)->candidate()).set_username(ufrag);
1626 const_cast<Candidate&>(cc->at(j)->candidate()).set_password(pwd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001627 }
1628 }
1629 }
1630 return true;
1631 }
1632
1633 void AddIceOptions(const std::string& content_name,
1634 const std::vector<std::string>& transport_options) {
1635 ASSERT_TRUE(desc_.GetTransportInfoByName(content_name) != NULL);
1636 cricket::TransportInfo transport_info =
1637 *(desc_.GetTransportInfoByName(content_name));
1638 desc_.RemoveTransportInfoByName(content_name);
1639 transport_info.description.transport_options = transport_options;
1640 desc_.AddTransportInfo(transport_info);
1641 }
1642
deadbeef3f7219b2015-12-28 15:17:14 -08001643 void SetIceUfragPwd(const std::string& content_name,
1644 const std::string& ice_ufrag,
1645 const std::string& ice_pwd) {
1646 ASSERT_TRUE(desc_.GetTransportInfoByName(content_name) != NULL);
1647 cricket::TransportInfo transport_info =
1648 *(desc_.GetTransportInfoByName(content_name));
1649 desc_.RemoveTransportInfoByName(content_name);
1650 transport_info.description.ice_ufrag = ice_ufrag;
1651 transport_info.description.ice_pwd = ice_pwd;
1652 desc_.AddTransportInfo(transport_info);
1653 }
1654
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001655 void AddFingerprint() {
1656 desc_.RemoveTransportInfoByName(kAudioContentName);
1657 desc_.RemoveTransportInfoByName(kVideoContentName);
Steve Anton4905edb2018-10-15 19:27:44 -07001658 rtc::SSLFingerprint fingerprint(rtc::DIGEST_SHA_1, kIdentityDigest);
Steve Anton06817cd2018-12-18 15:55:30 -08001659 desc_.AddTransportInfo(TransportInfo(
deadbeef46eed762016-01-28 13:24:37 -08001660 kAudioContentName,
deadbeef9d3584c2016-02-16 17:54:10 -08001661 TransportDescription(std::vector<std::string>(), kUfragVoice, kPwdVoice,
1662 cricket::ICEMODE_FULL,
Steve Anton06817cd2018-12-18 15:55:30 -08001663 cricket::CONNECTIONROLE_NONE, &fingerprint)));
1664 desc_.AddTransportInfo(TransportInfo(
deadbeef46eed762016-01-28 13:24:37 -08001665 kVideoContentName,
deadbeef9d3584c2016-02-16 17:54:10 -08001666 TransportDescription(std::vector<std::string>(), kUfragVideo, kPwdVideo,
1667 cricket::ICEMODE_FULL,
Steve Anton06817cd2018-12-18 15:55:30 -08001668 cricket::CONNECTIONROLE_NONE, &fingerprint)));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001669 }
1670
jbauch5869f502017-06-29 12:31:36 -07001671 void AddExtmap(bool encrypted) {
Steve Antonb1c1de12017-12-21 15:14:30 -08001672 audio_desc_ = audio_desc_->Copy();
1673 video_desc_ = video_desc_->Copy();
jbauch5869f502017-06-29 12:31:36 -07001674 audio_desc_->AddRtpHeaderExtension(
1675 RtpExtension(kExtmapUri, kExtmapId, encrypted));
1676 video_desc_->AddRtpHeaderExtension(
1677 RtpExtension(kExtmapUri, kExtmapId, encrypted));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001678 desc_.RemoveContentByName(kAudioContentName);
1679 desc_.RemoveContentByName(kVideoContentName);
Steve Anton5adfafd2017-12-20 16:34:00 -08001680 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, audio_desc_);
1681 desc_.AddContent(kVideoContentName, MediaProtocolType::kRtp, video_desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001682 }
1683
1684 void RemoveCryptos() {
1685 audio_desc_->set_cryptos(std::vector<CryptoParams>());
1686 video_desc_->set_cryptos(std::vector<CryptoParams>());
1687 }
1688
Seth Hampson5897a6e2018-04-03 11:16:33 -07001689 // Removes everything in StreamParams from the session description that is
1690 // used for a=ssrc lines.
1691 void RemoveSsrcSignalingFromStreamParams() {
1692 for (cricket::ContentInfo content_info : jdesc_.description()->contents()) {
1693 // With Unified Plan there should be one StreamParams per m= section.
1694 StreamParams& stream =
1695 content_info.media_description()->mutable_streams()[0];
1696 stream.ssrcs.clear();
1697 stream.ssrc_groups.clear();
1698 stream.cname.clear();
1699 }
1700 }
1701
Seth Hampson7fa6ee62018-10-17 10:25:28 -07001702 // Removes all a=ssrc lines from the SDP string, except for the
1703 // "a=ssrc:... cname:..." lines.
1704 void RemoveSsrcMsidLinesFromSdpString(std::string* sdp_string) {
1705 const char kAttributeSsrc[] = "a=ssrc";
1706 const char kAttributeCname[] = "cname";
1707 size_t ssrc_line_pos = sdp_string->find(kAttributeSsrc);
1708 while (ssrc_line_pos != std::string::npos) {
1709 size_t beg_line_pos = sdp_string->rfind('\n', ssrc_line_pos);
1710 size_t end_line_pos = sdp_string->find('\n', ssrc_line_pos);
1711 size_t cname_pos = sdp_string->find(kAttributeCname, ssrc_line_pos);
1712 if (cname_pos == std::string::npos || cname_pos > end_line_pos) {
1713 // Only erase a=ssrc lines that don't contain "cname".
1714 sdp_string->erase(beg_line_pos, end_line_pos - beg_line_pos);
1715 ssrc_line_pos = sdp_string->find(kAttributeSsrc, beg_line_pos);
1716 } else {
1717 // Skip the "a=ssrc:... cname" line and find the next "a=ssrc" line.
1718 ssrc_line_pos = sdp_string->find(kAttributeSsrc, end_line_pos);
1719 }
1720 }
1721 }
1722
Seth Hampson5897a6e2018-04-03 11:16:33 -07001723 // Removes all a=ssrc lines from the SDP string.
1724 void RemoveSsrcLinesFromSdpString(std::string* sdp_string) {
1725 const char kAttributeSsrc[] = "a=ssrc";
1726 while (sdp_string->find(kAttributeSsrc) != std::string::npos) {
1727 size_t pos_ssrc_attribute = sdp_string->find(kAttributeSsrc);
1728 size_t beg_line_pos = sdp_string->rfind('\n', pos_ssrc_attribute);
1729 size_t end_line_pos = sdp_string->find('\n', pos_ssrc_attribute);
1730 sdp_string->erase(beg_line_pos, end_line_pos - beg_line_pos);
1731 }
1732 }
1733
Steve Anton4e70a722017-11-28 14:57:10 -08001734 bool TestSerializeDirection(RtpTransceiverDirection direction) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001735 audio_desc_->set_direction(direction);
1736 video_desc_->set_direction(direction);
1737 std::string new_sdp = kSdpFullString;
1738 ReplaceDirection(direction, &new_sdp);
1739
Yves Gerey665174f2018-06-19 15:03:05 +02001740 if (!jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001741 jdesc_.session_version())) {
1742 return false;
1743 }
Steve Antone831b8c2018-02-01 12:22:16 -08001744 std::string message = webrtc::SdpSerialize(jdesc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001745 EXPECT_EQ(new_sdp, message);
1746 return true;
1747 }
1748
1749 bool TestSerializeRejected(bool audio_rejected, bool video_rejected) {
Steve Antonb1c1de12017-12-21 15:14:30 -08001750 audio_desc_ = audio_desc_->Copy();
1751 video_desc_ = video_desc_->Copy();
zhihuang38989e52017-03-21 11:04:53 -07001752
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001753 desc_.RemoveContentByName(kAudioContentName);
1754 desc_.RemoveContentByName(kVideoContentName);
Steve Anton5adfafd2017-12-20 16:34:00 -08001755 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, audio_rejected,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001756 audio_desc_);
Steve Anton5adfafd2017-12-20 16:34:00 -08001757 desc_.AddContent(kVideoContentName, MediaProtocolType::kRtp, video_rejected,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001758 video_desc_);
deadbeef9d3584c2016-02-16 17:54:10 -08001759 SetIceUfragPwd(kAudioContentName, audio_rejected ? "" : kUfragVoice,
1760 audio_rejected ? "" : kPwdVoice);
1761 SetIceUfragPwd(kVideoContentName, video_rejected ? "" : kUfragVideo,
1762 video_rejected ? "" : kPwdVideo);
deadbeef3f7219b2015-12-28 15:17:14 -08001763
1764 std::string new_sdp = kSdpString;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001765 ReplaceRejected(audio_rejected, video_rejected, &new_sdp);
1766
Steve Antona3a92c22017-12-07 10:27:41 -08001767 JsepSessionDescription jdesc_no_candidates(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07001768 MakeDescriptionWithoutCandidates(&jdesc_no_candidates);
Steve Antone831b8c2018-02-01 12:22:16 -08001769 std::string message = webrtc::SdpSerialize(jdesc_no_candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001770 EXPECT_EQ(new_sdp, message);
1771 return true;
1772 }
1773
zstein4b2e0822017-02-17 19:48:38 -08001774 void AddSctpDataChannel(bool use_sctpmap) {
kwibergd1fe2812016-04-27 06:47:29 -07001775 std::unique_ptr<DataContentDescription> data(new DataContentDescription());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001776 data_desc_ = data.get();
zstein4b2e0822017-02-17 19:48:38 -08001777 data_desc_->set_use_sctpmap(use_sctpmap);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001778 data_desc_->set_protocol(cricket::kMediaProtocolDtlsSctp);
solenberg9fa49752016-10-08 13:02:44 -07001779 DataCodec codec(cricket::kGoogleSctpDataCodecPlType,
deadbeef67cf2c12016-04-13 10:07:16 -07001780 cricket::kGoogleSctpDataCodecName);
wu@webrtc.org78187522013-10-07 23:32:02 +00001781 codec.SetParam(cricket::kCodecParamPort, kDefaultSctpPort);
1782 data_desc_->AddCodec(codec);
Steve Anton5adfafd2017-12-20 16:34:00 -08001783 desc_.AddContent(kDataContentName, MediaProtocolType::kSctp,
1784 data.release());
Steve Anton06817cd2018-12-18 15:55:30 -08001785 desc_.AddTransportInfo(TransportInfo(
1786 kDataContentName, TransportDescription(kUfragData, kPwdData)));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001787 }
1788
1789 void AddRtpDataChannel() {
kwibergd1fe2812016-04-27 06:47:29 -07001790 std::unique_ptr<DataContentDescription> data(new DataContentDescription());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001791 data_desc_ = data.get();
1792
deadbeef67cf2c12016-04-13 10:07:16 -07001793 data_desc_->AddCodec(DataCodec(101, "google-data"));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001794 StreamParams data_stream;
1795 data_stream.id = kDataChannelMsid;
1796 data_stream.cname = kDataChannelCname;
Seth Hampson845e8782018-03-02 11:34:10 -08001797 data_stream.set_stream_ids({kDataChannelLabel});
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001798 data_stream.ssrcs.push_back(kDataChannelSsrc);
1799 data_desc_->AddStream(data_stream);
Yves Gerey665174f2018-06-19 15:03:05 +02001800 data_desc_->AddCrypto(
1801 CryptoParams(1, "AES_CM_128_HMAC_SHA1_80",
1802 "inline:FvLcvU2P3ZWmQxgPAgcDu7Zl9vftYElFOjEzhWs5", ""));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001803 data_desc_->set_protocol(cricket::kMediaProtocolSavpf);
Steve Anton5adfafd2017-12-20 16:34:00 -08001804 desc_.AddContent(kDataContentName, MediaProtocolType::kRtp, data.release());
Steve Anton06817cd2018-12-18 15:55:30 -08001805 desc_.AddTransportInfo(TransportInfo(
1806 kDataContentName, TransportDescription(kUfragData, kPwdData)));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001807 }
1808
Steve Anton4e70a722017-11-28 14:57:10 -08001809 bool TestDeserializeDirection(RtpTransceiverDirection direction) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001810 std::string new_sdp = kSdpFullString;
1811 ReplaceDirection(direction, &new_sdp);
Steve Antona3a92c22017-12-07 10:27:41 -08001812 JsepSessionDescription new_jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001813
1814 EXPECT_TRUE(SdpDeserialize(new_sdp, &new_jdesc));
1815
1816 audio_desc_->set_direction(direction);
1817 video_desc_->set_direction(direction);
Yves Gerey665174f2018-06-19 15:03:05 +02001818 if (!jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001819 jdesc_.session_version())) {
1820 return false;
1821 }
1822 EXPECT_TRUE(CompareSessionDescription(jdesc_, new_jdesc));
1823 return true;
1824 }
1825
1826 bool TestDeserializeRejected(bool audio_rejected, bool video_rejected) {
deadbeef3f7219b2015-12-28 15:17:14 -08001827 std::string new_sdp = kSdpString;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001828 ReplaceRejected(audio_rejected, video_rejected, &new_sdp);
Steve Antona3a92c22017-12-07 10:27:41 -08001829 JsepSessionDescription new_jdesc(SdpType::kOffer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001830 EXPECT_TRUE(SdpDeserialize(new_sdp, &new_jdesc));
deadbeef3f7219b2015-12-28 15:17:14 -08001831
Steve Antonb1c1de12017-12-21 15:14:30 -08001832 audio_desc_ = audio_desc_->Copy();
1833 video_desc_ = video_desc_->Copy();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001834 desc_.RemoveContentByName(kAudioContentName);
1835 desc_.RemoveContentByName(kVideoContentName);
Steve Anton5adfafd2017-12-20 16:34:00 -08001836 desc_.AddContent(kAudioContentName, MediaProtocolType::kRtp, audio_rejected,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001837 audio_desc_);
Steve Anton5adfafd2017-12-20 16:34:00 -08001838 desc_.AddContent(kVideoContentName, MediaProtocolType::kRtp, video_rejected,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001839 video_desc_);
deadbeef9d3584c2016-02-16 17:54:10 -08001840 SetIceUfragPwd(kAudioContentName, audio_rejected ? "" : kUfragVoice,
1841 audio_rejected ? "" : kPwdVoice);
1842 SetIceUfragPwd(kVideoContentName, video_rejected ? "" : kUfragVideo,
1843 video_rejected ? "" : kPwdVideo);
Steve Antona3a92c22017-12-07 10:27:41 -08001844 JsepSessionDescription jdesc_no_candidates(kDummyType);
deadbeef3f7219b2015-12-28 15:17:14 -08001845 if (!jdesc_no_candidates.Initialize(desc_.Copy(), jdesc_.session_id(),
1846 jdesc_.session_version())) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001847 return false;
1848 }
deadbeef3f7219b2015-12-28 15:17:14 -08001849 EXPECT_TRUE(CompareSessionDescription(jdesc_no_candidates, new_jdesc));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001850 return true;
1851 }
1852
Yves Gerey665174f2018-06-19 15:03:05 +02001853 void TestDeserializeExtmap(bool session_level,
1854 bool media_level,
1855 bool encrypted) {
jbauch5869f502017-06-29 12:31:36 -07001856 AddExtmap(encrypted);
Steve Antona3a92c22017-12-07 10:27:41 -08001857 JsepSessionDescription new_jdesc(SdpType::kOffer);
Yves Gerey665174f2018-06-19 15:03:05 +02001858 ASSERT_TRUE(new_jdesc.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001859 jdesc_.session_version()));
Steve Antona3a92c22017-12-07 10:27:41 -08001860 JsepSessionDescription jdesc_with_extmap(SdpType::kOffer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001861 std::string sdp_with_extmap = kSdpString;
1862 if (session_level) {
jbauch5869f502017-06-29 12:31:36 -07001863 InjectAfter(kSessionTime,
1864 encrypted ? kExtmapWithDirectionAndAttributeEncrypted
1865 : kExtmapWithDirectionAndAttribute,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001866 &sdp_with_extmap);
1867 }
1868 if (media_level) {
jbauch5869f502017-06-29 12:31:36 -07001869 InjectAfter(kAttributeIcePwdVoice,
1870 encrypted ? kExtmapWithDirectionAndAttributeEncrypted
1871 : kExtmapWithDirectionAndAttribute,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001872 &sdp_with_extmap);
jbauch5869f502017-06-29 12:31:36 -07001873 InjectAfter(kAttributeIcePwdVideo,
1874 encrypted ? kExtmapWithDirectionAndAttributeEncrypted
1875 : kExtmapWithDirectionAndAttribute,
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001876 &sdp_with_extmap);
1877 }
1878 // The extmap can't be present at the same time in both session level and
1879 // media level.
1880 if (session_level && media_level) {
1881 SdpParseError error;
Yves Gerey665174f2018-06-19 15:03:05 +02001882 EXPECT_FALSE(
1883 webrtc::SdpDeserialize(sdp_with_extmap, &jdesc_with_extmap, &error));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001884 EXPECT_NE(std::string::npos, error.description.find("a=extmap"));
1885 } else {
1886 EXPECT_TRUE(SdpDeserialize(sdp_with_extmap, &jdesc_with_extmap));
1887 EXPECT_TRUE(CompareSessionDescription(jdesc_with_extmap, new_jdesc));
1888 }
1889 }
1890
1891 void VerifyCodecParameter(const cricket::CodecParameterMap& params,
Yves Gerey665174f2018-06-19 15:03:05 +02001892 const std::string& name,
1893 int expected_value) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001894 cricket::CodecParameterMap::const_iterator found = params.find(name);
1895 ASSERT_TRUE(found != params.end());
Jonas Olsson6b1985d2018-07-05 11:59:48 +02001896 EXPECT_EQ(found->second, rtc::ToString(expected_value));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001897 }
1898
1899 void TestDeserializeCodecParams(const CodecParams& params,
1900 JsepSessionDescription* jdesc_output) {
1901 std::string sdp =
1902 "v=0\r\n"
1903 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
1904 "s=-\r\n"
1905 "t=0 0\r\n"
1906 // Include semantics for WebRTC Media Streams since it is supported by
1907 // this parser, and will be added to the SDP when serializing a session
1908 // description.
1909 "a=msid-semantic: WMS\r\n"
1910 // Pl type 111 preferred.
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +00001911 "m=audio 9 RTP/SAVPF 111 104 103\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001912 // Pltype 111 listed before 103 and 104 in the map.
1913 "a=rtpmap:111 opus/48000/2\r\n"
1914 // Pltype 103 listed before 104.
1915 "a=rtpmap:103 ISAC/16000\r\n"
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +00001916 "a=rtpmap:104 ISAC/32000\r\n"
mallinath@webrtc.orga5506692013-08-12 21:18:15 +00001917 "a=fmtp:111 0-15,66,70\r\n"
1918 "a=fmtp:111 ";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001919 std::ostringstream os;
Donald Curtis144d0182015-05-15 13:14:24 -07001920 os << "minptime=" << params.min_ptime << "; stereo=" << params.stereo
mallinath@webrtc.orga5506692013-08-12 21:18:15 +00001921 << "; sprop-stereo=" << params.sprop_stereo
1922 << "; useinbandfec=" << params.useinband
Donald Curtis0e07f922015-05-15 09:21:23 -07001923 << "; maxaveragebitrate=" << params.maxaveragebitrate << "\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001924 << "a=ptime:" << params.ptime << "\r\n"
1925 << "a=maxptime:" << params.max_ptime << "\r\n";
1926 sdp += os.str();
1927
stefan@webrtc.org85d27942014-06-09 12:51:39 +00001928 os.clear();
1929 os.str("");
1930 // Pl type 100 preferred.
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +00001931 os << "m=video 9 RTP/SAVPF 99 95\r\n"
stefan@webrtc.org85d27942014-06-09 12:51:39 +00001932 << "a=rtpmap:99 VP8/90000\r\n"
1933 << "a=rtpmap:95 RTX/90000\r\n"
Donald Curtis0e07f922015-05-15 09:21:23 -07001934 << "a=fmtp:95 apt=99;\r\n";
stefan@webrtc.org85d27942014-06-09 12:51:39 +00001935 sdp += os.str();
1936
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001937 // Deserialize
1938 SdpParseError error;
1939 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, jdesc_output, &error));
1940
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001941 const AudioContentDescription* acd =
Steve Antonb1c1de12017-12-21 15:14:30 -08001942 GetFirstAudioContentDescription(jdesc_output->description());
1943 ASSERT_TRUE(acd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001944 ASSERT_FALSE(acd->codecs().empty());
1945 cricket::AudioCodec opus = acd->codecs()[0];
1946 EXPECT_EQ("opus", opus.name);
1947 EXPECT_EQ(111, opus.id);
1948 VerifyCodecParameter(opus.params, "minptime", params.min_ptime);
1949 VerifyCodecParameter(opus.params, "stereo", params.stereo);
1950 VerifyCodecParameter(opus.params, "sprop-stereo", params.sprop_stereo);
1951 VerifyCodecParameter(opus.params, "useinbandfec", params.useinband);
henrike@webrtc.org1e09a712013-07-26 19:17:59 +00001952 VerifyCodecParameter(opus.params, "maxaveragebitrate",
1953 params.maxaveragebitrate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001954 for (size_t i = 0; i < acd->codecs().size(); ++i) {
1955 cricket::AudioCodec codec = acd->codecs()[i];
1956 VerifyCodecParameter(codec.params, "ptime", params.ptime);
1957 VerifyCodecParameter(codec.params, "maxptime", params.max_ptime);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001958 }
stefan@webrtc.org85d27942014-06-09 12:51:39 +00001959
stefan@webrtc.org85d27942014-06-09 12:51:39 +00001960 const VideoContentDescription* vcd =
Steve Antonb1c1de12017-12-21 15:14:30 -08001961 GetFirstVideoContentDescription(jdesc_output->description());
1962 ASSERT_TRUE(vcd);
stefan@webrtc.org85d27942014-06-09 12:51:39 +00001963 ASSERT_FALSE(vcd->codecs().empty());
1964 cricket::VideoCodec vp8 = vcd->codecs()[0];
1965 EXPECT_EQ("VP8", vp8.name);
1966 EXPECT_EQ(99, vp8.id);
1967 cricket::VideoCodec rtx = vcd->codecs()[1];
1968 EXPECT_EQ("RTX", rtx.name);
1969 EXPECT_EQ(95, rtx.id);
1970 VerifyCodecParameter(rtx.params, "apt", vp8.id);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001971 }
1972
1973 void TestDeserializeRtcpFb(JsepSessionDescription* jdesc_output,
1974 bool use_wildcard) {
jlmiller@webrtc.orga744a282015-02-18 21:37:46 +00001975 std::string sdp_session_and_audio =
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001976 "v=0\r\n"
1977 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
1978 "s=-\r\n"
1979 "t=0 0\r\n"
1980 // Include semantics for WebRTC Media Streams since it is supported by
1981 // this parser, and will be added to the SDP when serializing a session
1982 // description.
1983 "a=msid-semantic: WMS\r\n"
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +00001984 "m=audio 9 RTP/SAVPF 111\r\n"
jlmiller@webrtc.orga744a282015-02-18 21:37:46 +00001985 "a=rtpmap:111 opus/48000/2\r\n";
1986 std::string sdp_video =
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001987 "m=video 3457 RTP/SAVPF 101\r\n"
1988 "a=rtpmap:101 VP8/90000\r\n"
1989 "a=rtcp-fb:101 nack\r\n"
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00001990 "a=rtcp-fb:101 nack pli\r\n"
jlmiller@webrtc.orga744a282015-02-18 21:37:46 +00001991 "a=rtcp-fb:101 goog-remb\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001992 std::ostringstream os;
jlmiller@webrtc.orga744a282015-02-18 21:37:46 +00001993 os << sdp_session_and_audio;
Yves Gerey665174f2018-06-19 15:03:05 +02001994 os << "a=rtcp-fb:" << (use_wildcard ? "*" : "111") << " nack\r\n";
jlmiller@webrtc.orga744a282015-02-18 21:37:46 +00001995 os << sdp_video;
Yves Gerey665174f2018-06-19 15:03:05 +02001996 os << "a=rtcp-fb:" << (use_wildcard ? "*" : "101") << " ccm fir\r\n";
jlmiller@webrtc.orga744a282015-02-18 21:37:46 +00001997 std::string sdp = os.str();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001998 // Deserialize
1999 SdpParseError error;
2000 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, jdesc_output, &error));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002001 const AudioContentDescription* acd =
Steve Antonb1c1de12017-12-21 15:14:30 -08002002 GetFirstAudioContentDescription(jdesc_output->description());
2003 ASSERT_TRUE(acd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002004 ASSERT_FALSE(acd->codecs().empty());
2005 cricket::AudioCodec opus = acd->codecs()[0];
2006 EXPECT_EQ(111, opus.id);
Yves Gerey665174f2018-06-19 15:03:05 +02002007 EXPECT_TRUE(opus.HasFeedbackParam(cricket::FeedbackParam(
2008 cricket::kRtcpFbParamNack, cricket::kParamValueEmpty)));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002009
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002010 const VideoContentDescription* vcd =
Steve Antonb1c1de12017-12-21 15:14:30 -08002011 GetFirstVideoContentDescription(jdesc_output->description());
2012 ASSERT_TRUE(vcd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002013 ASSERT_FALSE(vcd->codecs().empty());
2014 cricket::VideoCodec vp8 = vcd->codecs()[0];
2015 EXPECT_STREQ(webrtc::JsepSessionDescription::kDefaultVideoCodecName,
2016 vp8.name.c_str());
2017 EXPECT_EQ(101, vp8.id);
Yves Gerey665174f2018-06-19 15:03:05 +02002018 EXPECT_TRUE(vp8.HasFeedbackParam(cricket::FeedbackParam(
2019 cricket::kRtcpFbParamNack, cricket::kParamValueEmpty)));
2020 EXPECT_TRUE(vp8.HasFeedbackParam(cricket::FeedbackParam(
2021 cricket::kRtcpFbParamNack, cricket::kRtcpFbNackParamPli)));
2022 EXPECT_TRUE(vp8.HasFeedbackParam(cricket::FeedbackParam(
2023 cricket::kRtcpFbParamRemb, cricket::kParamValueEmpty)));
2024 EXPECT_TRUE(vp8.HasFeedbackParam(cricket::FeedbackParam(
2025 cricket::kRtcpFbParamCcm, cricket::kRtcpFbCcmParamFir)));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002026 }
2027
2028 // Two SDP messages can mean the same thing but be different strings, e.g.
2029 // some of the lines can be serialized in different order.
2030 // However, a deserialized description can be compared field by field and has
2031 // no order. If deserializer has already been tested, serializing then
2032 // deserializing and comparing JsepSessionDescription will test
2033 // the serializer sufficiently.
Steve Antone831b8c2018-02-01 12:22:16 -08002034 void TestSerialize(const JsepSessionDescription& jdesc) {
2035 std::string message = webrtc::SdpSerialize(jdesc);
Steve Antona3a92c22017-12-07 10:27:41 -08002036 JsepSessionDescription jdesc_output_des(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002037 SdpParseError error;
2038 EXPECT_TRUE(webrtc::SdpDeserialize(message, &jdesc_output_des, &error));
2039 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output_des));
2040 }
2041
zhihuang38989e52017-03-21 11:04:53 -07002042 // Calling 'Initialize' with a copy of the inner SessionDescription will
2043 // create a copy of the JsepSessionDescription without candidates. The
2044 // 'connection address' field, previously set from the candidates, must also
2045 // be reset.
2046 void MakeDescriptionWithoutCandidates(JsepSessionDescription* jdesc) {
2047 rtc::SocketAddress audio_addr("0.0.0.0", 9);
2048 rtc::SocketAddress video_addr("0.0.0.0", 9);
2049 audio_desc_->set_connection_address(audio_addr);
2050 video_desc_->set_connection_address(video_addr);
2051 ASSERT_TRUE(jdesc->Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2052 }
2053
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002054 protected:
2055 SessionDescription desc_;
2056 AudioContentDescription* audio_desc_;
2057 VideoContentDescription* video_desc_;
2058 DataContentDescription* data_desc_;
2059 Candidates candidates_;
kwibergd1fe2812016-04-27 06:47:29 -07002060 std::unique_ptr<IceCandidateInterface> jcandidate_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002061 JsepSessionDescription jdesc_;
2062};
2063
2064void TestMismatch(const std::string& string1, const std::string& string2) {
2065 int position = 0;
2066 for (size_t i = 0; i < string1.length() && i < string2.length(); ++i) {
2067 if (string1.c_str()[i] != string2.c_str()[i]) {
henrike@webrtc.org28654cb2013-07-22 21:07:49 +00002068 position = static_cast<int>(i);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002069 break;
2070 }
2071 }
2072 EXPECT_EQ(0, position) << "Strings mismatch at the " << position
2073 << " character\n"
2074 << " 1: " << string1.substr(position, 20) << "\n"
2075 << " 2: " << string2.substr(position, 20) << "\n";
2076}
2077
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002078TEST_F(WebRtcSdpTest, SerializeSessionDescription) {
2079 // SessionDescription with desc and candidates.
Steve Antone831b8c2018-02-01 12:22:16 -08002080 std::string message = webrtc::SdpSerialize(jdesc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002081 TestMismatch(std::string(kSdpFullString), message);
2082}
2083
2084TEST_F(WebRtcSdpTest, SerializeSessionDescriptionEmpty) {
Steve Antona3a92c22017-12-07 10:27:41 -08002085 JsepSessionDescription jdesc_empty(kDummyType);
Steve Antone831b8c2018-02-01 12:22:16 -08002086 EXPECT_EQ("", webrtc::SdpSerialize(jdesc_empty));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002087}
2088
2089// This tests serialization of SDP with a=crypto and a=fingerprint, as would be
2090// the case in a DTLS offer.
2091TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithFingerprint) {
2092 AddFingerprint();
Steve Antona3a92c22017-12-07 10:27:41 -08002093 JsepSessionDescription jdesc_with_fingerprint(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07002094 MakeDescriptionWithoutCandidates(&jdesc_with_fingerprint);
Steve Antone831b8c2018-02-01 12:22:16 -08002095 std::string message = webrtc::SdpSerialize(jdesc_with_fingerprint);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002096
2097 std::string sdp_with_fingerprint = kSdpString;
Yves Gerey665174f2018-06-19 15:03:05 +02002098 InjectAfter(kAttributeIcePwdVoice, kFingerprint, &sdp_with_fingerprint);
2099 InjectAfter(kAttributeIcePwdVideo, kFingerprint, &sdp_with_fingerprint);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002100
2101 EXPECT_EQ(sdp_with_fingerprint, message);
2102}
2103
2104// This tests serialization of SDP with a=fingerprint with no a=crypto, as would
2105// be the case in a DTLS answer.
2106TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithFingerprintNoCryptos) {
2107 AddFingerprint();
2108 RemoveCryptos();
Steve Antona3a92c22017-12-07 10:27:41 -08002109 JsepSessionDescription jdesc_with_fingerprint(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07002110 MakeDescriptionWithoutCandidates(&jdesc_with_fingerprint);
Steve Antone831b8c2018-02-01 12:22:16 -08002111 std::string message = webrtc::SdpSerialize(jdesc_with_fingerprint);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002112
2113 std::string sdp_with_fingerprint = kSdpString;
2114 Replace(kAttributeCryptoVoice, "", &sdp_with_fingerprint);
2115 Replace(kAttributeCryptoVideo, "", &sdp_with_fingerprint);
Yves Gerey665174f2018-06-19 15:03:05 +02002116 InjectAfter(kAttributeIcePwdVoice, kFingerprint, &sdp_with_fingerprint);
2117 InjectAfter(kAttributeIcePwdVideo, kFingerprint, &sdp_with_fingerprint);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002118
2119 EXPECT_EQ(sdp_with_fingerprint, message);
2120}
2121
2122TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithoutCandidates) {
2123 // JsepSessionDescription with desc but without candidates.
Steve Antona3a92c22017-12-07 10:27:41 -08002124 JsepSessionDescription jdesc_no_candidates(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07002125 MakeDescriptionWithoutCandidates(&jdesc_no_candidates);
Steve Antone831b8c2018-02-01 12:22:16 -08002126 std::string message = webrtc::SdpSerialize(jdesc_no_candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002127 EXPECT_EQ(std::string(kSdpString), message);
2128}
2129
2130TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithBundle) {
2131 ContentGroup group(cricket::GROUP_TYPE_BUNDLE);
2132 group.AddContentName(kAudioContentName);
2133 group.AddContentName(kVideoContentName);
2134 desc_.AddGroup(group);
Yves Gerey665174f2018-06-19 15:03:05 +02002135 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002136 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08002137 std::string message = webrtc::SdpSerialize(jdesc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002138 std::string sdp_with_bundle = kSdpFullString;
2139 InjectAfter(kSessionTime,
2140 "a=group:BUNDLE audio_content_name video_content_name\r\n",
2141 &sdp_with_bundle);
2142 EXPECT_EQ(sdp_with_bundle, message);
2143}
2144
2145TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithBandwidth) {
Steve Antonb1c1de12017-12-21 15:14:30 -08002146 VideoContentDescription* vcd = GetFirstVideoContentDescription(&desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002147 vcd->set_bandwidth(100 * 1000);
Steve Antonb1c1de12017-12-21 15:14:30 -08002148 AudioContentDescription* acd = GetFirstAudioContentDescription(&desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002149 acd->set_bandwidth(50 * 1000);
Yves Gerey665174f2018-06-19 15:03:05 +02002150 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002151 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08002152 std::string message = webrtc::SdpSerialize(jdesc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002153 std::string sdp_with_bandwidth = kSdpFullString;
Yves Gerey665174f2018-06-19 15:03:05 +02002154 InjectAfter("c=IN IP4 74.125.224.39\r\n", "b=AS:100\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002155 &sdp_with_bandwidth);
Yves Gerey665174f2018-06-19 15:03:05 +02002156 InjectAfter("c=IN IP4 74.125.127.126\r\n", "b=AS:50\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002157 &sdp_with_bandwidth);
2158 EXPECT_EQ(sdp_with_bandwidth, message);
2159}
2160
2161TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithIceOptions) {
2162 std::vector<std::string> transport_options;
2163 transport_options.push_back(kIceOption1);
2164 transport_options.push_back(kIceOption3);
2165 AddIceOptions(kAudioContentName, transport_options);
2166 transport_options.clear();
2167 transport_options.push_back(kIceOption2);
2168 transport_options.push_back(kIceOption3);
2169 AddIceOptions(kVideoContentName, transport_options);
Yves Gerey665174f2018-06-19 15:03:05 +02002170 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002171 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08002172 std::string message = webrtc::SdpSerialize(jdesc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002173 std::string sdp_with_ice_options = kSdpFullString;
Yves Gerey665174f2018-06-19 15:03:05 +02002174 InjectAfter(kAttributeIcePwdVoice, "a=ice-options:iceoption1 iceoption3\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002175 &sdp_with_ice_options);
Yves Gerey665174f2018-06-19 15:03:05 +02002176 InjectAfter(kAttributeIcePwdVideo, "a=ice-options:iceoption2 iceoption3\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002177 &sdp_with_ice_options);
2178 EXPECT_EQ(sdp_with_ice_options, message);
2179}
2180
2181TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithRecvOnlyContent) {
Steve Anton4e70a722017-11-28 14:57:10 -08002182 EXPECT_TRUE(TestSerializeDirection(RtpTransceiverDirection::kRecvOnly));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002183}
2184
2185TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithSendOnlyContent) {
Steve Anton4e70a722017-11-28 14:57:10 -08002186 EXPECT_TRUE(TestSerializeDirection(RtpTransceiverDirection::kSendOnly));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002187}
2188
2189TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithInactiveContent) {
Steve Anton4e70a722017-11-28 14:57:10 -08002190 EXPECT_TRUE(TestSerializeDirection(RtpTransceiverDirection::kInactive));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002191}
2192
2193TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithAudioRejected) {
2194 EXPECT_TRUE(TestSerializeRejected(true, false));
2195}
2196
2197TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithVideoRejected) {
2198 EXPECT_TRUE(TestSerializeRejected(false, true));
2199}
2200
2201TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithAudioVideoRejected) {
2202 EXPECT_TRUE(TestSerializeRejected(true, true));
2203}
2204
2205TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithRtpDataChannel) {
2206 AddRtpDataChannel();
Steve Antona3a92c22017-12-07 10:27:41 -08002207 JsepSessionDescription jsep_desc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002208
zhihuang38989e52017-03-21 11:04:53 -07002209 MakeDescriptionWithoutCandidates(&jsep_desc);
Steve Antone831b8c2018-02-01 12:22:16 -08002210 std::string message = webrtc::SdpSerialize(jsep_desc);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002211
2212 std::string expected_sdp = kSdpString;
2213 expected_sdp.append(kSdpRtpDataChannelString);
2214 EXPECT_EQ(expected_sdp, message);
2215}
2216
2217TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithSctpDataChannel) {
zstein4b2e0822017-02-17 19:48:38 -08002218 bool use_sctpmap = true;
2219 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002220 JsepSessionDescription jsep_desc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002221
zhihuang38989e52017-03-21 11:04:53 -07002222 MakeDescriptionWithoutCandidates(&jsep_desc);
Steve Antone831b8c2018-02-01 12:22:16 -08002223 std::string message = webrtc::SdpSerialize(jsep_desc);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002224
2225 std::string expected_sdp = kSdpString;
2226 expected_sdp.append(kSdpSctpDataChannelString);
2227 EXPECT_EQ(message, expected_sdp);
2228}
2229
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002230TEST_F(WebRtcSdpTest, SerializeWithSctpDataChannelAndNewPort) {
zstein4b2e0822017-02-17 19:48:38 -08002231 bool use_sctpmap = true;
2232 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002233 JsepSessionDescription jsep_desc(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07002234 MakeDescriptionWithoutCandidates(&jsep_desc);
Steve Antonb1c1de12017-12-21 15:14:30 -08002235 DataContentDescription* dcdesc =
2236 jsep_desc.description()
2237 ->GetContentDescriptionByName(kDataContentName)
2238 ->as_data();
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002239
2240 const int kNewPort = 1234;
solenberg9fa49752016-10-08 13:02:44 -07002241 cricket::DataCodec codec(cricket::kGoogleSctpDataCodecPlType,
deadbeef67cf2c12016-04-13 10:07:16 -07002242 cricket::kGoogleSctpDataCodecName);
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002243 codec.SetParam(cricket::kCodecParamPort, kNewPort);
2244 dcdesc->AddOrReplaceCodec(codec);
2245
Steve Antone831b8c2018-02-01 12:22:16 -08002246 std::string message = webrtc::SdpSerialize(jsep_desc);
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002247
2248 std::string expected_sdp = kSdpString;
2249 expected_sdp.append(kSdpSctpDataChannelString);
2250
2251 char default_portstr[16];
2252 char new_portstr[16];
Niels Mölleraba06332018-10-16 15:14:15 +02002253 snprintf(default_portstr, sizeof(default_portstr), "%d", kDefaultSctpPort);
2254 snprintf(new_portstr, sizeof(new_portstr), "%d", kNewPort);
Yves Gerey665174f2018-06-19 15:03:05 +02002255 rtc::replace_substrs(default_portstr, strlen(default_portstr), new_portstr,
2256 strlen(new_portstr), &expected_sdp);
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002257
2258 EXPECT_EQ(expected_sdp, message);
2259}
2260
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002261TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithDataChannelAndBandwidth) {
Steve Antona3a92c22017-12-07 10:27:41 -08002262 JsepSessionDescription jsep_desc(kDummyType);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002263 AddRtpDataChannel();
Yves Gerey665174f2018-06-19 15:03:05 +02002264 data_desc_->set_bandwidth(100 * 1000);
zhihuang38989e52017-03-21 11:04:53 -07002265 MakeDescriptionWithoutCandidates(&jsep_desc);
Steve Antone831b8c2018-02-01 12:22:16 -08002266 std::string message = webrtc::SdpSerialize(jsep_desc);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002267
2268 std::string expected_sdp = kSdpString;
2269 expected_sdp.append(kSdpRtpDataChannelString);
Peter Thatcherc0c3a862015-06-24 15:31:25 -07002270 // Serializing data content shouldn't ignore bandwidth settings.
perkj@webrtc.orgd105cc82014-11-07 11:22:06 +00002271 InjectAfter("m=application 9 RTP/SAVPF 101\r\nc=IN IP4 0.0.0.0\r\n",
Yves Gerey665174f2018-06-19 15:03:05 +02002272 "b=AS:100\r\n", &expected_sdp);
sergeyu@chromium.orga59696b2013-09-13 23:48:58 +00002273 EXPECT_EQ(expected_sdp, message);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002274}
2275
Johannes Kron0854eb62018-10-10 22:33:20 +02002276TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithExtmapAllowMixed) {
Johannes Kron9581bc42018-10-23 10:17:39 +02002277 jdesc_.description()->set_extmap_allow_mixed(true);
Johannes Kron0854eb62018-10-10 22:33:20 +02002278 TestSerialize(jdesc_);
2279}
2280
2281TEST_F(WebRtcSdpTest, SerializeMediaContentDescriptionWithExtmapAllowMixed) {
2282 cricket::MediaContentDescription* video_desc =
2283 jdesc_.description()->GetContentDescriptionByName(kVideoContentName);
2284 ASSERT_TRUE(video_desc);
2285 cricket::MediaContentDescription* audio_desc =
2286 jdesc_.description()->GetContentDescriptionByName(kAudioContentName);
2287 ASSERT_TRUE(audio_desc);
Johannes Kron9581bc42018-10-23 10:17:39 +02002288 video_desc->set_extmap_allow_mixed_enum(
Johannes Kron0854eb62018-10-10 22:33:20 +02002289 cricket::MediaContentDescription::kMedia);
Johannes Kron9581bc42018-10-23 10:17:39 +02002290 audio_desc->set_extmap_allow_mixed_enum(
Johannes Kron0854eb62018-10-10 22:33:20 +02002291 cricket::MediaContentDescription::kMedia);
2292 TestSerialize(jdesc_);
2293}
2294
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002295TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithExtmap) {
jbauch5869f502017-06-29 12:31:36 -07002296 bool encrypted = false;
2297 AddExtmap(encrypted);
Steve Antona3a92c22017-12-07 10:27:41 -08002298 JsepSessionDescription desc_with_extmap(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07002299 MakeDescriptionWithoutCandidates(&desc_with_extmap);
Steve Antone831b8c2018-02-01 12:22:16 -08002300 std::string message = webrtc::SdpSerialize(desc_with_extmap);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002301
2302 std::string sdp_with_extmap = kSdpString;
Yves Gerey665174f2018-06-19 15:03:05 +02002303 InjectAfter("a=mid:audio_content_name\r\n", kExtmap, &sdp_with_extmap);
2304 InjectAfter("a=mid:video_content_name\r\n", kExtmap, &sdp_with_extmap);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002305
2306 EXPECT_EQ(sdp_with_extmap, message);
2307}
2308
jbauch5869f502017-06-29 12:31:36 -07002309TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithExtmapEncrypted) {
2310 bool encrypted = true;
2311 AddExtmap(encrypted);
Steve Antona3a92c22017-12-07 10:27:41 -08002312 JsepSessionDescription desc_with_extmap(kDummyType);
Yves Gerey665174f2018-06-19 15:03:05 +02002313 ASSERT_TRUE(
2314 desc_with_extmap.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
Steve Antone831b8c2018-02-01 12:22:16 -08002315 TestSerialize(desc_with_extmap);
jbauch5869f502017-06-29 12:31:36 -07002316}
2317
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002318TEST_F(WebRtcSdpTest, SerializeCandidates) {
2319 std::string message = webrtc::SdpSerializeCandidate(*jcandidate_);
wu@webrtc.orgec9f5fb2014-06-24 17:05:10 +00002320 EXPECT_EQ(std::string(kRawCandidate), message);
honghaiza54a0802015-12-16 18:37:23 -08002321
2322 Candidate candidate_with_ufrag(candidates_.front());
2323 candidate_with_ufrag.set_username("ABC");
2324 jcandidate_.reset(new JsepIceCandidate(std::string("audio_content_name"), 0,
2325 candidate_with_ufrag));
2326 message = webrtc::SdpSerializeCandidate(*jcandidate_);
2327 EXPECT_EQ(std::string(kRawCandidate) + " ufrag ABC", message);
honghaiza0c44ea2016-03-23 16:07:48 -07002328
2329 Candidate candidate_with_network_info(candidates_.front());
2330 candidate_with_network_info.set_network_id(1);
2331 jcandidate_.reset(new JsepIceCandidate(std::string("audio"), 0,
2332 candidate_with_network_info));
2333 message = webrtc::SdpSerializeCandidate(*jcandidate_);
2334 EXPECT_EQ(std::string(kRawCandidate) + " network-id 1", message);
2335 candidate_with_network_info.set_network_cost(999);
2336 jcandidate_.reset(new JsepIceCandidate(std::string("audio"), 0,
2337 candidate_with_network_info));
2338 message = webrtc::SdpSerializeCandidate(*jcandidate_);
2339 EXPECT_EQ(std::string(kRawCandidate) + " network-id 1 network-cost 999",
2340 message);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002341}
2342
Zach Steinb336c272018-08-09 01:16:13 -07002343TEST_F(WebRtcSdpTest, SerializeHostnameCandidate) {
2344 rtc::SocketAddress address("a.test", 1234);
2345 cricket::Candidate candidate(
2346 cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp", address, kCandidatePriority,
2347 "", "", LOCAL_PORT_TYPE, kCandidateGeneration, kCandidateFoundation1);
2348 JsepIceCandidate jcandidate(std::string("audio_content_name"), 0, candidate);
2349 std::string message = webrtc::SdpSerializeCandidate(jcandidate);
2350 EXPECT_EQ(std::string(kRawHostnameCandidate), message);
2351}
2352
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20 +00002353// TODO(mallinath) : Enable this test once WebRTCSdp capable of parsing
2354// RFC 6544.
mallinath@webrtc.orge999bd02014-08-13 06:05:55 +00002355TEST_F(WebRtcSdpTest, SerializeTcpCandidates) {
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00002356 Candidate candidate(ICE_CANDIDATE_COMPONENT_RTP, "tcp",
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00002357 rtc::SocketAddress("192.168.1.5", 9), kCandidatePriority,
2358 "", "", LOCAL_PORT_TYPE, kCandidateGeneration,
2359 kCandidateFoundation1);
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20 +00002360 candidate.set_tcptype(cricket::TCPTYPE_ACTIVE_STR);
kwibergd1fe2812016-04-27 06:47:29 -07002361 std::unique_ptr<IceCandidateInterface> jcandidate(
2362 new JsepIceCandidate(std::string("audio_content_name"), 0, candidate));
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20 +00002363
2364 std::string message = webrtc::SdpSerializeCandidate(*jcandidate);
2365 EXPECT_EQ(std::string(kSdpTcpActiveCandidate), message);
2366}
2367
htaa6b99442016-04-12 10:29:17 -07002368TEST_F(WebRtcSdpTest, SerializeSessionDescriptionWithH264) {
magjed509e4fe2016-11-18 01:34:11 -08002369 cricket::VideoCodec h264_codec("H264");
2370 h264_codec.SetParam("profile-level-id", "42e01f");
2371 h264_codec.SetParam("level-asymmetry-allowed", "1");
2372 h264_codec.SetParam("packetization-mode", "1");
2373 video_desc_->AddCodec(h264_codec);
2374
htaa6b99442016-04-12 10:29:17 -07002375 jdesc_.Initialize(desc_.Copy(), kSessionId, kSessionVersion);
2376
Steve Antone831b8c2018-02-01 12:22:16 -08002377 std::string message = webrtc::SdpSerialize(jdesc_);
htaa6b99442016-04-12 10:29:17 -07002378 size_t after_pt = message.find(" H264/90000");
2379 ASSERT_NE(after_pt, std::string::npos);
2380 size_t before_pt = message.rfind("a=rtpmap:", after_pt);
2381 ASSERT_NE(before_pt, std::string::npos);
2382 before_pt += strlen("a=rtpmap:");
2383 std::string pt = message.substr(before_pt, after_pt - before_pt);
2384 // TODO(hta): Check if payload type |pt| occurs in the m=video line.
2385 std::string to_find = "a=fmtp:" + pt + " ";
2386 size_t fmtp_pos = message.find(to_find);
2387 ASSERT_NE(std::string::npos, fmtp_pos) << "Failed to find " << to_find;
2388 size_t fmtp_endpos = message.find("\n", fmtp_pos);
2389 ASSERT_NE(std::string::npos, fmtp_endpos);
2390 std::string fmtp_value = message.substr(fmtp_pos, fmtp_endpos);
2391 EXPECT_NE(std::string::npos, fmtp_value.find("level-asymmetry-allowed=1"));
2392 EXPECT_NE(std::string::npos, fmtp_value.find("packetization-mode=1"));
2393 EXPECT_NE(std::string::npos, fmtp_value.find("profile-level-id=42e01f"));
hta62a216e2016-04-15 11:02:14 -07002394 // Check that there are no spaces after semicolons.
2395 // https://bugs.webrtc.org/5793
2396 EXPECT_EQ(std::string::npos, fmtp_value.find("; "));
htaa6b99442016-04-12 10:29:17 -07002397}
2398
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002399TEST_F(WebRtcSdpTest, DeserializeSessionDescription) {
Steve Antona3a92c22017-12-07 10:27:41 -08002400 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002401 // Deserialize
2402 EXPECT_TRUE(SdpDeserialize(kSdpFullString, &jdesc));
2403 // Verify
2404 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc));
2405}
2406
wu@webrtc.orgcecfd182013-10-30 05:18:12 +00002407TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutMline) {
Steve Antona3a92c22017-12-07 10:27:41 -08002408 JsepSessionDescription jdesc(kDummyType);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +00002409 const char kSdpWithoutMline[] =
Yves Gerey665174f2018-06-19 15:03:05 +02002410 "v=0\r\n"
2411 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
2412 "s=-\r\n"
2413 "t=0 0\r\n"
2414 "a=msid-semantic: WMS local_stream_1 local_stream_2\r\n";
wu@webrtc.orgcecfd182013-10-30 05:18:12 +00002415 // Deserialize
2416 EXPECT_TRUE(SdpDeserialize(kSdpWithoutMline, &jdesc));
2417 EXPECT_EQ(0u, jdesc.description()->contents().size());
2418}
2419
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002420TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutCarriageReturn) {
Steve Antona3a92c22017-12-07 10:27:41 -08002421 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002422 std::string sdp_without_carriage_return = kSdpFullString;
2423 Replace("\r\n", "\n", &sdp_without_carriage_return);
2424 // Deserialize
2425 EXPECT_TRUE(SdpDeserialize(sdp_without_carriage_return, &jdesc));
2426 // Verify
2427 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc));
2428}
2429
2430TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutCandidates) {
2431 // SessionDescription with desc but without candidates.
Steve Antona3a92c22017-12-07 10:27:41 -08002432 JsepSessionDescription jdesc_no_candidates(kDummyType);
Yves Gerey665174f2018-06-19 15:03:05 +02002433 ASSERT_TRUE(jdesc_no_candidates.Initialize(desc_.Copy(), kSessionId,
2434 kSessionVersion));
Steve Antona3a92c22017-12-07 10:27:41 -08002435 JsepSessionDescription new_jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002436 EXPECT_TRUE(SdpDeserialize(kSdpString, &new_jdesc));
2437 EXPECT_TRUE(CompareSessionDescription(jdesc_no_candidates, new_jdesc));
2438}
2439
2440TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutRtpmap) {
2441 static const char kSdpNoRtpmapString[] =
2442 "v=0\r\n"
2443 "o=- 11 22 IN IP4 127.0.0.1\r\n"
2444 "s=-\r\n"
2445 "t=0 0\r\n"
2446 "m=audio 49232 RTP/AVP 0 18 103\r\n"
2447 // Codec that doesn't appear in the m= line will be ignored.
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +00002448 "a=rtpmap:104 ISAC/32000\r\n"
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002449 // The rtpmap line for static payload codec is optional.
2450 "a=rtpmap:18 G729/16000\r\n"
2451 "a=rtpmap:103 ISAC/16000\r\n";
2452
Steve Antona3a92c22017-12-07 10:27:41 -08002453 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002454 EXPECT_TRUE(SdpDeserialize(kSdpNoRtpmapString, &jdesc));
2455 cricket::AudioContentDescription* audio =
Steve Anton06817cd2018-12-18 15:55:30 -08002456 cricket::GetFirstAudioContentDescription(jdesc.description());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002457 AudioCodecs ref_codecs;
deadbeef67cf2c12016-04-13 10:07:16 -07002458 // The codecs in the AudioContentDescription should be in the same order as
2459 // the payload types (<fmt>s) on the m= line.
2460 ref_codecs.push_back(AudioCodec(0, "PCMU", 8000, 0, 1));
2461 ref_codecs.push_back(AudioCodec(18, "G729", 16000, 0, 1));
ossue1405ad2017-01-23 08:55:48 -08002462 ref_codecs.push_back(AudioCodec(103, "ISAC", 16000, 0, 1));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002463 EXPECT_EQ(ref_codecs, audio->codecs());
2464}
2465
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002466TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutRtpmapButWithFmtp) {
2467 static const char kSdpNoRtpmapString[] =
2468 "v=0\r\n"
2469 "o=- 11 22 IN IP4 127.0.0.1\r\n"
2470 "s=-\r\n"
2471 "t=0 0\r\n"
2472 "m=audio 49232 RTP/AVP 18 103\r\n"
2473 "a=fmtp:18 annexb=yes\r\n"
2474 "a=rtpmap:103 ISAC/16000\r\n";
2475
Steve Antona3a92c22017-12-07 10:27:41 -08002476 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002477 EXPECT_TRUE(SdpDeserialize(kSdpNoRtpmapString, &jdesc));
2478 cricket::AudioContentDescription* audio =
Steve Anton06817cd2018-12-18 15:55:30 -08002479 cricket::GetFirstAudioContentDescription(jdesc.description());
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002480
2481 cricket::AudioCodec g729 = audio->codecs()[0];
2482 EXPECT_EQ("G729", g729.name);
2483 EXPECT_EQ(8000, g729.clockrate);
2484 EXPECT_EQ(18, g729.id);
Yves Gerey665174f2018-06-19 15:03:05 +02002485 cricket::CodecParameterMap::iterator found = g729.params.find("annexb");
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002486 ASSERT_TRUE(found != g729.params.end());
2487 EXPECT_EQ(found->second, "yes");
2488
2489 cricket::AudioCodec isac = audio->codecs()[1];
2490 EXPECT_EQ("ISAC", isac.name);
2491 EXPECT_EQ(103, isac.id);
2492 EXPECT_EQ(16000, isac.clockrate);
2493}
2494
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002495// Ensure that we can deserialize SDP with a=fingerprint properly.
2496TEST_F(WebRtcSdpTest, DeserializeJsepSessionDescriptionWithFingerprint) {
2497 // Add a DTLS a=fingerprint attribute to our session description.
2498 AddFingerprint();
Steve Antona3a92c22017-12-07 10:27:41 -08002499 JsepSessionDescription new_jdesc(kDummyType);
Yves Gerey665174f2018-06-19 15:03:05 +02002500 ASSERT_TRUE(new_jdesc.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002501 jdesc_.session_version()));
2502
Steve Antona3a92c22017-12-07 10:27:41 -08002503 JsepSessionDescription jdesc_with_fingerprint(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002504 std::string sdp_with_fingerprint = kSdpString;
2505 InjectAfter(kAttributeIcePwdVoice, kFingerprint, &sdp_with_fingerprint);
2506 InjectAfter(kAttributeIcePwdVideo, kFingerprint, &sdp_with_fingerprint);
2507 EXPECT_TRUE(SdpDeserialize(sdp_with_fingerprint, &jdesc_with_fingerprint));
2508 EXPECT_TRUE(CompareSessionDescription(jdesc_with_fingerprint, new_jdesc));
2509}
2510
2511TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithBundle) {
Steve Antona3a92c22017-12-07 10:27:41 -08002512 JsepSessionDescription jdesc_with_bundle(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002513 std::string sdp_with_bundle = kSdpFullString;
2514 InjectAfter(kSessionTime,
2515 "a=group:BUNDLE audio_content_name video_content_name\r\n",
2516 &sdp_with_bundle);
2517 EXPECT_TRUE(SdpDeserialize(sdp_with_bundle, &jdesc_with_bundle));
2518 ContentGroup group(cricket::GROUP_TYPE_BUNDLE);
2519 group.AddContentName(kAudioContentName);
2520 group.AddContentName(kVideoContentName);
2521 desc_.AddGroup(group);
Yves Gerey665174f2018-06-19 15:03:05 +02002522 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002523 jdesc_.session_version()));
2524 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_with_bundle));
2525}
2526
2527TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithBandwidth) {
Steve Antona3a92c22017-12-07 10:27:41 -08002528 JsepSessionDescription jdesc_with_bandwidth(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002529 std::string sdp_with_bandwidth = kSdpFullString;
Yves Gerey665174f2018-06-19 15:03:05 +02002530 InjectAfter("a=mid:video_content_name\r\na=sendrecv\r\n", "b=AS:100\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002531 &sdp_with_bandwidth);
Yves Gerey665174f2018-06-19 15:03:05 +02002532 InjectAfter("a=mid:audio_content_name\r\na=sendrecv\r\n", "b=AS:50\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002533 &sdp_with_bandwidth);
Yves Gerey665174f2018-06-19 15:03:05 +02002534 EXPECT_TRUE(SdpDeserialize(sdp_with_bandwidth, &jdesc_with_bandwidth));
Steve Antonb1c1de12017-12-21 15:14:30 -08002535 VideoContentDescription* vcd = GetFirstVideoContentDescription(&desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002536 vcd->set_bandwidth(100 * 1000);
Steve Antonb1c1de12017-12-21 15:14:30 -08002537 AudioContentDescription* acd = GetFirstAudioContentDescription(&desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002538 acd->set_bandwidth(50 * 1000);
Yves Gerey665174f2018-06-19 15:03:05 +02002539 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002540 jdesc_.session_version()));
2541 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_with_bandwidth));
2542}
2543
2544TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithIceOptions) {
Steve Antona3a92c22017-12-07 10:27:41 -08002545 JsepSessionDescription jdesc_with_ice_options(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002546 std::string sdp_with_ice_options = kSdpFullString;
Yves Gerey665174f2018-06-19 15:03:05 +02002547 InjectAfter(kSessionTime, "a=ice-options:iceoption3\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002548 &sdp_with_ice_options);
Yves Gerey665174f2018-06-19 15:03:05 +02002549 InjectAfter(kAttributeIcePwdVoice, "a=ice-options:iceoption1\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002550 &sdp_with_ice_options);
Yves Gerey665174f2018-06-19 15:03:05 +02002551 InjectAfter(kAttributeIcePwdVideo, "a=ice-options:iceoption2\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002552 &sdp_with_ice_options);
2553 EXPECT_TRUE(SdpDeserialize(sdp_with_ice_options, &jdesc_with_ice_options));
2554 std::vector<std::string> transport_options;
2555 transport_options.push_back(kIceOption3);
2556 transport_options.push_back(kIceOption1);
2557 AddIceOptions(kAudioContentName, transport_options);
2558 transport_options.clear();
2559 transport_options.push_back(kIceOption3);
2560 transport_options.push_back(kIceOption2);
2561 AddIceOptions(kVideoContentName, transport_options);
Yves Gerey665174f2018-06-19 15:03:05 +02002562 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002563 jdesc_.session_version()));
2564 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_with_ice_options));
2565}
2566
2567TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithUfragPwd) {
2568 // Remove the original ice-ufrag and ice-pwd
Steve Antona3a92c22017-12-07 10:27:41 -08002569 JsepSessionDescription jdesc_with_ufrag_pwd(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002570 std::string sdp_with_ufrag_pwd = kSdpFullString;
2571 EXPECT_TRUE(RemoveCandidateUfragPwd(&sdp_with_ufrag_pwd));
2572 // Add session level ufrag and pwd
2573 InjectAfter(kSessionTime,
Yves Gerey665174f2018-06-19 15:03:05 +02002574 "a=ice-pwd:session+level+icepwd\r\n"
2575 "a=ice-ufrag:session+level+iceufrag\r\n",
2576 &sdp_with_ufrag_pwd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002577 // Add media level ufrag and pwd for audio
Yves Gerey665174f2018-06-19 15:03:05 +02002578 InjectAfter(
2579 "a=mid:audio_content_name\r\n",
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002580 "a=ice-pwd:media+level+icepwd\r\na=ice-ufrag:media+level+iceufrag\r\n",
2581 &sdp_with_ufrag_pwd);
2582 // Update the candidate ufrag and pwd to the expected ones.
Yves Gerey665174f2018-06-19 15:03:05 +02002583 EXPECT_TRUE(UpdateCandidateUfragPwd(&jdesc_, 0, "media+level+iceufrag",
2584 "media+level+icepwd"));
2585 EXPECT_TRUE(UpdateCandidateUfragPwd(&jdesc_, 1, "session+level+iceufrag",
2586 "session+level+icepwd"));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002587 EXPECT_TRUE(SdpDeserialize(sdp_with_ufrag_pwd, &jdesc_with_ufrag_pwd));
2588 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_with_ufrag_pwd));
2589}
2590
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002591TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithRecvOnlyContent) {
Steve Anton4e70a722017-11-28 14:57:10 -08002592 EXPECT_TRUE(TestDeserializeDirection(RtpTransceiverDirection::kRecvOnly));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002593}
2594
2595TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithSendOnlyContent) {
Steve Anton4e70a722017-11-28 14:57:10 -08002596 EXPECT_TRUE(TestDeserializeDirection(RtpTransceiverDirection::kSendOnly));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002597}
2598
2599TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithInactiveContent) {
Steve Anton4e70a722017-11-28 14:57:10 -08002600 EXPECT_TRUE(TestDeserializeDirection(RtpTransceiverDirection::kInactive));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002601}
2602
2603TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithRejectedAudio) {
2604 EXPECT_TRUE(TestDeserializeRejected(true, false));
2605}
2606
2607TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithRejectedVideo) {
2608 EXPECT_TRUE(TestDeserializeRejected(false, true));
2609}
2610
2611TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithRejectedAudioVideo) {
2612 EXPECT_TRUE(TestDeserializeRejected(true, true));
2613}
2614
2615// Tests that we can still handle the sdp uses mslabel and label instead of
2616// msid for backward compatibility.
2617TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutMsid) {
deadbeefc80741f2015-10-22 13:14:45 -07002618 jdesc_.description()->set_msid_supported(false);
Steve Antona3a92c22017-12-07 10:27:41 -08002619 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002620 std::string sdp_without_msid = kSdpFullString;
2621 Replace("msid", "xmsid", &sdp_without_msid);
2622 // Deserialize
2623 EXPECT_TRUE(SdpDeserialize(sdp_without_msid, &jdesc));
2624 // Verify
2625 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc));
Henrik Boström5b147782018-12-04 11:25:05 +01002626 EXPECT_FALSE(jdesc.description()->msid_signaling() &
2627 ~cricket::kMsidSignalingSsrcAttribute);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002628}
2629
Johannes Kron0854eb62018-10-10 22:33:20 +02002630TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithExtmapAllowMixed) {
Johannes Kron9581bc42018-10-23 10:17:39 +02002631 jdesc_.description()->set_extmap_allow_mixed(true);
Johannes Kron0854eb62018-10-10 22:33:20 +02002632 std::string sdp_with_extmap_allow_mixed = kSdpFullString;
2633 InjectAfter("t=0 0\r\n", kExtmapAllowMixed, &sdp_with_extmap_allow_mixed);
2634 // Deserialize
2635 JsepSessionDescription jdesc_deserialized(kDummyType);
2636 EXPECT_TRUE(SdpDeserialize(sdp_with_extmap_allow_mixed, &jdesc_deserialized));
2637 // Verify
2638 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_deserialized));
2639}
2640
2641TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutExtmapAllowMixed) {
Johannes Kron9581bc42018-10-23 10:17:39 +02002642 jdesc_.description()->set_extmap_allow_mixed(false);
Johannes Kron0854eb62018-10-10 22:33:20 +02002643 std::string sdp_without_extmap_allow_mixed = kSdpFullString;
2644 // Deserialize
2645 JsepSessionDescription jdesc_deserialized(kDummyType);
2646 EXPECT_TRUE(
2647 SdpDeserialize(sdp_without_extmap_allow_mixed, &jdesc_deserialized));
2648 // Verify
2649 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_deserialized));
2650}
2651
2652TEST_F(WebRtcSdpTest, DeserializeMediaContentDescriptionWithExtmapAllowMixed) {
2653 cricket::MediaContentDescription* video_desc =
2654 jdesc_.description()->GetContentDescriptionByName(kVideoContentName);
2655 ASSERT_TRUE(video_desc);
2656 cricket::MediaContentDescription* audio_desc =
2657 jdesc_.description()->GetContentDescriptionByName(kAudioContentName);
2658 ASSERT_TRUE(audio_desc);
Johannes Kron9581bc42018-10-23 10:17:39 +02002659 video_desc->set_extmap_allow_mixed_enum(
Johannes Kron0854eb62018-10-10 22:33:20 +02002660 cricket::MediaContentDescription::kMedia);
Johannes Kron9581bc42018-10-23 10:17:39 +02002661 audio_desc->set_extmap_allow_mixed_enum(
Johannes Kron0854eb62018-10-10 22:33:20 +02002662 cricket::MediaContentDescription::kMedia);
2663
2664 std::string sdp_with_extmap_allow_mixed = kSdpFullString;
2665 InjectAfter("a=mid:audio_content_name\r\n", kExtmapAllowMixed,
2666 &sdp_with_extmap_allow_mixed);
2667 InjectAfter("a=mid:video_content_name\r\n", kExtmapAllowMixed,
2668 &sdp_with_extmap_allow_mixed);
2669
2670 // Deserialize
2671 JsepSessionDescription jdesc_deserialized(kDummyType);
2672 EXPECT_TRUE(SdpDeserialize(sdp_with_extmap_allow_mixed, &jdesc_deserialized));
2673 // Verify
2674 EXPECT_TRUE(CompareSessionDescription(jdesc_, jdesc_deserialized));
2675}
2676
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002677TEST_F(WebRtcSdpTest, DeserializeCandidate) {
2678 JsepIceCandidate jcandidate(kDummyMid, kDummyIndex);
2679
2680 std::string sdp = kSdpOneCandidate;
2681 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
2682 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
2683 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
2684 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(jcandidate_->candidate()));
honghaiza0c44ea2016-03-23 16:07:48 -07002685 EXPECT_EQ(0, jcandidate.candidate().network_cost());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002686
2687 // Candidate line without generation extension.
2688 sdp = kSdpOneCandidate;
2689 Replace(" generation 2", "", &sdp);
2690 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
2691 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
2692 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
2693 Candidate expected = jcandidate_->candidate();
2694 expected.set_generation(0);
2695 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(expected));
2696
honghaiza0c44ea2016-03-23 16:07:48 -07002697 // Candidate with network id and/or cost.
2698 sdp = kSdpOneCandidate;
2699 Replace(" generation 2", " generation 2 network-id 2", &sdp);
2700 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
2701 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
2702 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
2703 expected = jcandidate_->candidate();
2704 expected.set_network_id(2);
2705 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(expected));
2706 EXPECT_EQ(0, jcandidate.candidate().network_cost());
2707 // Add network cost
2708 Replace(" network-id 2", " network-id 2 network-cost 9", &sdp);
2709 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
2710 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(expected));
2711 EXPECT_EQ(9, jcandidate.candidate().network_cost());
2712
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20 +00002713 sdp = kSdpTcpActiveCandidate;
2714 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
2715 // Make a cricket::Candidate equivalent to kSdpTcpCandidate string.
guoweis@webrtc.org61c12472015-01-15 06:53:07 +00002716 Candidate candidate(ICE_CANDIDATE_COMPONENT_RTP, "tcp",
guoweis@webrtc.org950c5182014-12-16 23:01:31 +00002717 rtc::SocketAddress("192.168.1.5", 9), kCandidatePriority,
2718 "", "", LOCAL_PORT_TYPE, kCandidateGeneration,
2719 kCandidateFoundation1);
kwibergd1fe2812016-04-27 06:47:29 -07002720 std::unique_ptr<IceCandidateInterface> jcandidate_template(
2721 new JsepIceCandidate(std::string("audio_content_name"), 0, candidate));
Yves Gerey665174f2018-06-19 15:03:05 +02002722 EXPECT_TRUE(
2723 jcandidate.candidate().IsEquivalent(jcandidate_template->candidate()));
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20 +00002724 sdp = kSdpTcpPassiveCandidate;
2725 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
2726 sdp = kSdpTcpSOCandidate;
2727 EXPECT_TRUE(SdpDeserializeCandidate(sdp, &jcandidate));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002728}
2729
2730// This test verifies the deserialization of candidate-attribute
2731// as per RFC 5245. Candiate-attribute will be of the format
2732// candidate:<blah>. This format will be used when candidates
2733// are trickled.
2734TEST_F(WebRtcSdpTest, DeserializeRawCandidateAttribute) {
2735 JsepIceCandidate jcandidate(kDummyMid, kDummyIndex);
2736
2737 std::string candidate_attribute = kRawCandidate;
2738 EXPECT_TRUE(SdpDeserializeCandidate(candidate_attribute, &jcandidate));
2739 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
2740 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
2741 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(jcandidate_->candidate()));
2742 EXPECT_EQ(2u, jcandidate.candidate().generation());
2743
2744 // Candidate line without generation extension.
2745 candidate_attribute = kRawCandidate;
2746 Replace(" generation 2", "", &candidate_attribute);
2747 EXPECT_TRUE(SdpDeserializeCandidate(candidate_attribute, &jcandidate));
2748 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
2749 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
2750 Candidate expected = jcandidate_->candidate();
2751 expected.set_generation(0);
2752 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(expected));
2753
2754 // Candidate line without candidate:
2755 candidate_attribute = kRawCandidate;
2756 Replace("candidate:", "", &candidate_attribute);
2757 EXPECT_FALSE(SdpDeserializeCandidate(candidate_attribute, &jcandidate));
2758
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15 +00002759 // Candidate line with IPV6 address.
2760 EXPECT_TRUE(SdpDeserializeCandidate(kRawIPV6Candidate, &jcandidate));
Zach Steinb336c272018-08-09 01:16:13 -07002761
2762 // Candidate line with hostname address.
2763 EXPECT_TRUE(SdpDeserializeCandidate(kRawHostnameCandidate, &jcandidate));
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15 +00002764}
2765
2766// This test verifies that the deserialization of an invalid candidate string
2767// fails.
2768TEST_F(WebRtcSdpTest, DeserializeInvalidCandidiate) {
Yves Gerey665174f2018-06-19 15:03:05 +02002769 JsepIceCandidate jcandidate(kDummyMid, kDummyIndex);
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15 +00002770
2771 std::string candidate_attribute = kRawCandidate;
2772 candidate_attribute.replace(0, 1, "x");
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002773 EXPECT_FALSE(SdpDeserializeCandidate(candidate_attribute, &jcandidate));
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15 +00002774
2775 candidate_attribute = kSdpOneCandidate;
2776 candidate_attribute.replace(0, 1, "x");
2777 EXPECT_FALSE(SdpDeserializeCandidate(candidate_attribute, &jcandidate));
2778
2779 candidate_attribute = kRawCandidate;
2780 candidate_attribute.append("\r\n");
2781 candidate_attribute.append(kRawCandidate);
2782 EXPECT_FALSE(SdpDeserializeCandidate(candidate_attribute, &jcandidate));
2783
2784 EXPECT_FALSE(SdpDeserializeCandidate(kSdpTcpInvalidCandidate, &jcandidate));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002785}
2786
2787TEST_F(WebRtcSdpTest, DeserializeSdpWithRtpDataChannels) {
2788 AddRtpDataChannel();
Steve Antona3a92c22017-12-07 10:27:41 -08002789 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002790 ASSERT_TRUE(jdesc.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2791
2792 std::string sdp_with_data = kSdpString;
2793 sdp_with_data.append(kSdpRtpDataChannelString);
Steve Antona3a92c22017-12-07 10:27:41 -08002794 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002795
2796 // Deserialize
2797 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2798 // Verify
2799 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2800}
2801
2802TEST_F(WebRtcSdpTest, DeserializeSdpWithSctpDataChannels) {
zstein4b2e0822017-02-17 19:48:38 -08002803 bool use_sctpmap = true;
2804 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002805 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002806 ASSERT_TRUE(jdesc.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2807
2808 std::string sdp_with_data = kSdpString;
2809 sdp_with_data.append(kSdpSctpDataChannelString);
Steve Antona3a92c22017-12-07 10:27:41 -08002810 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002811
lally@webrtc.org36300852015-02-24 20:19:35 +00002812 // Verify with DTLS/SCTP (already in kSdpSctpDataChannelString).
2813 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2814 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2815
2816 // Verify with UDP/DTLS/SCTP.
Yves Gerey665174f2018-06-19 15:03:05 +02002817 sdp_with_data.replace(sdp_with_data.find(kDtlsSctp), strlen(kDtlsSctp),
2818 kUdpDtlsSctp);
lally@webrtc.org36300852015-02-24 20:19:35 +00002819 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2820 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2821
2822 // Verify with TCP/DTLS/SCTP.
Yves Gerey665174f2018-06-19 15:03:05 +02002823 sdp_with_data.replace(sdp_with_data.find(kUdpDtlsSctp), strlen(kUdpDtlsSctp),
2824 kTcpDtlsSctp);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002825 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2826 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2827}
2828
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002829TEST_F(WebRtcSdpTest, DeserializeSdpWithSctpDataChannelsWithSctpPort) {
zstein4b2e0822017-02-17 19:48:38 -08002830 bool use_sctpmap = false;
2831 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002832 JsepSessionDescription jdesc(kDummyType);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002833 ASSERT_TRUE(jdesc.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2834
2835 std::string sdp_with_data = kSdpString;
2836 sdp_with_data.append(kSdpSctpDataChannelStringWithSctpPort);
Steve Antona3a92c22017-12-07 10:27:41 -08002837 JsepSessionDescription jdesc_output(kDummyType);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002838
lally@webrtc.org36300852015-02-24 20:19:35 +00002839 // Verify with DTLS/SCTP (already in kSdpSctpDataChannelStringWithSctpPort).
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002840 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2841 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002842
lally@webrtc.org36300852015-02-24 20:19:35 +00002843 // Verify with UDP/DTLS/SCTP.
Yves Gerey665174f2018-06-19 15:03:05 +02002844 sdp_with_data.replace(sdp_with_data.find(kDtlsSctp), strlen(kDtlsSctp),
2845 kUdpDtlsSctp);
lally@webrtc.org36300852015-02-24 20:19:35 +00002846 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2847 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
lally@webrtc.orgc7848b72015-02-24 20:19:26 +00002848
lally@webrtc.org36300852015-02-24 20:19:35 +00002849 // Verify with TCP/DTLS/SCTP.
Yves Gerey665174f2018-06-19 15:03:05 +02002850 sdp_with_data.replace(sdp_with_data.find(kUdpDtlsSctp), strlen(kUdpDtlsSctp),
2851 kTcpDtlsSctp);
lally@webrtc.orgc7848b72015-02-24 20:19:26 +00002852 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2853 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2854}
2855
lally69f57602015-10-08 10:15:04 -07002856TEST_F(WebRtcSdpTest, DeserializeSdpWithSctpDataChannelsWithSctpColonPort) {
zstein4b2e0822017-02-17 19:48:38 -08002857 bool use_sctpmap = false;
2858 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002859 JsepSessionDescription jdesc(kDummyType);
lally69f57602015-10-08 10:15:04 -07002860 ASSERT_TRUE(jdesc.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2861
2862 std::string sdp_with_data = kSdpString;
2863 sdp_with_data.append(kSdpSctpDataChannelStringWithSctpColonPort);
Steve Antona3a92c22017-12-07 10:27:41 -08002864 JsepSessionDescription jdesc_output(kDummyType);
lally69f57602015-10-08 10:15:04 -07002865
2866 // Verify with DTLS/SCTP.
2867 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2868 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2869
2870 // Verify with UDP/DTLS/SCTP.
Yves Gerey665174f2018-06-19 15:03:05 +02002871 sdp_with_data.replace(sdp_with_data.find(kDtlsSctp), strlen(kDtlsSctp),
2872 kUdpDtlsSctp);
lally69f57602015-10-08 10:15:04 -07002873 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2874 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2875
2876 // Verify with TCP/DTLS/SCTP.
Yves Gerey665174f2018-06-19 15:03:05 +02002877 sdp_with_data.replace(sdp_with_data.find(kUdpDtlsSctp), strlen(kUdpDtlsSctp),
2878 kTcpDtlsSctp);
lally69f57602015-10-08 10:15:04 -07002879 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2880 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
2881}
2882
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002883// Test to check the behaviour if sctp-port is specified
2884// on the m= line and in a=sctp-port.
2885TEST_F(WebRtcSdpTest, DeserializeSdpWithMultiSctpPort) {
zstein4b2e0822017-02-17 19:48:38 -08002886 bool use_sctpmap = true;
2887 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002888 JsepSessionDescription jdesc(kDummyType);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002889 ASSERT_TRUE(jdesc.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2890
2891 std::string sdp_with_data = kSdpString;
2892 // Append m= attributes
2893 sdp_with_data.append(kSdpSctpDataChannelString);
2894 // Append a=sctp-port attribute
2895 sdp_with_data.append("a=sctp-port 5000\r\n");
Steve Antona3a92c22017-12-07 10:27:41 -08002896 JsepSessionDescription jdesc_output(kDummyType);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002897
2898 EXPECT_FALSE(SdpDeserialize(sdp_with_data, &jdesc_output));
2899}
2900
henrike@webrtc.org571df2d2014-02-19 23:04:26 +00002901// For crbug/344475.
2902TEST_F(WebRtcSdpTest, DeserializeSdpWithCorruptedSctpDataChannels) {
2903 std::string sdp_with_data = kSdpString;
2904 sdp_with_data.append(kSdpSctpDataChannelString);
2905 // Remove the "\n" at the end.
2906 sdp_with_data = sdp_with_data.substr(0, sdp_with_data.size() - 1);
Steve Antona3a92c22017-12-07 10:27:41 -08002907 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org571df2d2014-02-19 23:04:26 +00002908
2909 EXPECT_FALSE(SdpDeserialize(sdp_with_data, &jdesc_output));
2910 // No crash is a pass.
2911}
2912
Steve Anton36b29d12017-10-30 09:57:42 -07002913void MutateJsepSctpPort(JsepSessionDescription* jdesc,
zstein4b2e0822017-02-17 19:48:38 -08002914 const SessionDescription& desc) {
wu@webrtc.org78187522013-10-07 23:32:02 +00002915 // take our pre-built session description and change the SCTP port.
zstein4b2e0822017-02-17 19:48:38 -08002916 cricket::SessionDescription* mutant = desc.Copy();
Steve Antonb1c1de12017-12-21 15:14:30 -08002917 DataContentDescription* dcdesc =
2918 mutant->GetContentDescriptionByName(kDataContentName)->as_data();
wu@webrtc.org78187522013-10-07 23:32:02 +00002919 std::vector<cricket::DataCodec> codecs(dcdesc->codecs());
pkasting@chromium.orgd3245462015-02-23 21:28:22 +00002920 EXPECT_EQ(1U, codecs.size());
solenberg9fa49752016-10-08 13:02:44 -07002921 EXPECT_EQ(cricket::kGoogleSctpDataCodecPlType, codecs[0].id);
wu@webrtc.org78187522013-10-07 23:32:02 +00002922 codecs[0].SetParam(cricket::kCodecParamPort, kUnusualSctpPort);
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002923 dcdesc->set_codecs(codecs);
wu@webrtc.org78187522013-10-07 23:32:02 +00002924
2925 // note: mutant's owned by jdesc now.
Steve Anton36b29d12017-10-30 09:57:42 -07002926 ASSERT_TRUE(jdesc->Initialize(mutant, kSessionId, kSessionVersion));
wu@webrtc.org78187522013-10-07 23:32:02 +00002927 mutant = NULL;
zstein4b2e0822017-02-17 19:48:38 -08002928}
2929
2930TEST_F(WebRtcSdpTest, DeserializeSdpWithSctpDataChannelAndUnusualPort) {
2931 bool use_sctpmap = true;
2932 AddSctpDataChannel(use_sctpmap);
2933
2934 // First setup the expected JsepSessionDescription.
Steve Antona3a92c22017-12-07 10:27:41 -08002935 JsepSessionDescription jdesc(kDummyType);
Steve Anton36b29d12017-10-30 09:57:42 -07002936 MutateJsepSctpPort(&jdesc, desc_);
wu@webrtc.org78187522013-10-07 23:32:02 +00002937
jiayl@webrtc.org9c16c392014-05-01 18:30:30 +00002938 // Then get the deserialized JsepSessionDescription.
wu@webrtc.org78187522013-10-07 23:32:02 +00002939 std::string sdp_with_data = kSdpString;
2940 sdp_with_data.append(kSdpSctpDataChannelString);
zstein4b2e0822017-02-17 19:48:38 -08002941 rtc::replace_substrs(kDefaultSctpPortStr, strlen(kDefaultSctpPortStr),
2942 kUnusualSctpPortStr, strlen(kUnusualSctpPortStr),
2943 &sdp_with_data);
Steve Antona3a92c22017-12-07 10:27:41 -08002944 JsepSessionDescription jdesc_output(kDummyType);
wu@webrtc.org78187522013-10-07 23:32:02 +00002945
2946 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2947 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
zstein4b2e0822017-02-17 19:48:38 -08002948}
2949
2950TEST_F(WebRtcSdpTest,
2951 DeserializeSdpWithSctpDataChannelAndUnusualPortInAttribute) {
2952 bool use_sctpmap = false;
2953 AddSctpDataChannel(use_sctpmap);
2954
Steve Antona3a92c22017-12-07 10:27:41 -08002955 JsepSessionDescription jdesc(kDummyType);
Steve Anton36b29d12017-10-30 09:57:42 -07002956 MutateJsepSctpPort(&jdesc, desc_);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002957
2958 // We need to test the deserialized JsepSessionDescription from
2959 // kSdpSctpDataChannelStringWithSctpPort for
2960 // draft-ietf-mmusic-sctp-sdp-07
2961 // a=sctp-port
zstein4b2e0822017-02-17 19:48:38 -08002962 std::string sdp_with_data = kSdpString;
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002963 sdp_with_data.append(kSdpSctpDataChannelStringWithSctpPort);
zstein4b2e0822017-02-17 19:48:38 -08002964 rtc::replace_substrs(kDefaultSctpPortStr, strlen(kDefaultSctpPortStr),
2965 kUnusualSctpPortStr, strlen(kUnusualSctpPortStr),
2966 &sdp_with_data);
Steve Antona3a92c22017-12-07 10:27:41 -08002967 JsepSessionDescription jdesc_output(kDummyType);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56 +00002968
2969 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
2970 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_output));
wu@webrtc.org78187522013-10-07 23:32:02 +00002971}
2972
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002973TEST_F(WebRtcSdpTest, DeserializeSdpWithRtpDataChannelsAndBandwidth) {
Peter Thatcherc0c3a862015-06-24 15:31:25 -07002974 // We want to test that deserializing data content limits bandwidth
2975 // settings (it should never be greater than the default).
2976 // This should prevent someone from using unlimited data bandwidth through
2977 // JS and "breaking the Internet".
2978 // See: https://code.google.com/p/chromium/issues/detail?id=280726
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002979 std::string sdp_with_bandwidth = kSdpString;
2980 sdp_with_bandwidth.append(kSdpRtpDataChannelString);
Yves Gerey665174f2018-06-19 15:03:05 +02002981 InjectAfter("a=mid:data_content_name\r\n", "b=AS:100\r\n",
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002982 &sdp_with_bandwidth);
Steve Antona3a92c22017-12-07 10:27:41 -08002983 JsepSessionDescription jdesc_with_bandwidth(kDummyType);
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00002984
Peter Thatcherc0c3a862015-06-24 15:31:25 -07002985 EXPECT_FALSE(SdpDeserialize(sdp_with_bandwidth, &jdesc_with_bandwidth));
2986}
2987
2988TEST_F(WebRtcSdpTest, DeserializeSdpWithSctpDataChannelsAndBandwidth) {
zstein4b2e0822017-02-17 19:48:38 -08002989 bool use_sctpmap = true;
2990 AddSctpDataChannel(use_sctpmap);
Steve Antona3a92c22017-12-07 10:27:41 -08002991 JsepSessionDescription jdesc(kDummyType);
Steve Antonb1c1de12017-12-21 15:14:30 -08002992 DataContentDescription* dcd = GetFirstDataContentDescription(&desc_);
Peter Thatcherc0c3a862015-06-24 15:31:25 -07002993 dcd->set_bandwidth(100 * 1000);
2994 ASSERT_TRUE(jdesc.Initialize(desc_.Copy(), kSessionId, kSessionVersion));
2995
2996 std::string sdp_with_bandwidth = kSdpString;
2997 sdp_with_bandwidth.append(kSdpSctpDataChannelString);
Yves Gerey665174f2018-06-19 15:03:05 +02002998 InjectAfter("a=mid:data_content_name\r\n", "b=AS:100\r\n",
Peter Thatcherc0c3a862015-06-24 15:31:25 -07002999 &sdp_with_bandwidth);
Steve Antona3a92c22017-12-07 10:27:41 -08003000 JsepSessionDescription jdesc_with_bandwidth(kDummyType);
Peter Thatcherc0c3a862015-06-24 15:31:25 -07003001
3002 // SCTP has congestion control, so we shouldn't limit the bandwidth
3003 // as we do for RTP.
3004 EXPECT_TRUE(SdpDeserialize(sdp_with_bandwidth, &jdesc_with_bandwidth));
wu@webrtc.orgcadf9042013-08-30 21:24:16 +00003005 EXPECT_TRUE(CompareSessionDescription(jdesc, jdesc_with_bandwidth));
3006}
3007
Yves Gerey665174f2018-06-19 15:03:05 +02003008class WebRtcSdpExtmapTest : public WebRtcSdpTest,
3009 public testing::WithParamInterface<bool> {};
jbauch5869f502017-06-29 12:31:36 -07003010
3011TEST_P(WebRtcSdpExtmapTest,
Yves Gerey665174f2018-06-19 15:03:05 +02003012 DeserializeSessionDescriptionWithSessionLevelExtmap) {
jbauch5869f502017-06-29 12:31:36 -07003013 bool encrypted = GetParam();
3014 TestDeserializeExtmap(true, false, encrypted);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003015}
3016
Yves Gerey665174f2018-06-19 15:03:05 +02003017TEST_P(WebRtcSdpExtmapTest, DeserializeSessionDescriptionWithMediaLevelExtmap) {
jbauch5869f502017-06-29 12:31:36 -07003018 bool encrypted = GetParam();
3019 TestDeserializeExtmap(false, true, encrypted);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003020}
3021
Yves Gerey665174f2018-06-19 15:03:05 +02003022TEST_P(WebRtcSdpExtmapTest, DeserializeSessionDescriptionWithInvalidExtmap) {
jbauch5869f502017-06-29 12:31:36 -07003023 bool encrypted = GetParam();
3024 TestDeserializeExtmap(true, true, encrypted);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003025}
3026
jbauch5869f502017-06-29 12:31:36 -07003027INSTANTIATE_TEST_CASE_P(Encrypted,
3028 WebRtcSdpExtmapTest,
3029 ::testing::Values(false, true));
3030
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00003031TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionWithoutEndLineBreak) {
Steve Antona3a92c22017-12-07 10:27:41 -08003032 JsepSessionDescription jdesc(kDummyType);
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00003033 std::string sdp = kSdpFullString;
3034 sdp = sdp.substr(0, sdp.size() - 2); // Remove \r\n at the end.
3035 // Deserialize
3036 SdpParseError error;
3037 EXPECT_FALSE(webrtc::SdpDeserialize(sdp, &jdesc, &error));
deadbeef9d3584c2016-02-16 17:54:10 -08003038 const std::string lastline = "a=ssrc:3 label:video_track_id_1";
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00003039 EXPECT_EQ(lastline, error.line);
3040 EXPECT_EQ("Invalid SDP line.", error.description);
3041}
3042
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003043TEST_F(WebRtcSdpTest, DeserializeCandidateWithDifferentTransport) {
3044 JsepIceCandidate jcandidate(kDummyMid, kDummyIndex);
3045 std::string new_sdp = kSdpOneCandidate;
3046 Replace("udp", "unsupported_transport", &new_sdp);
3047 EXPECT_FALSE(SdpDeserializeCandidate(new_sdp, &jcandidate));
3048 new_sdp = kSdpOneCandidate;
3049 Replace("udp", "uDP", &new_sdp);
3050 EXPECT_TRUE(SdpDeserializeCandidate(new_sdp, &jcandidate));
3051 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
3052 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
3053 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(jcandidate_->candidate()));
3054}
3055
honghaiza54a0802015-12-16 18:37:23 -08003056TEST_F(WebRtcSdpTest, DeserializeCandidateWithUfragPwd) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003057 JsepIceCandidate jcandidate(kDummyMid, kDummyIndex);
honghaiza54a0802015-12-16 18:37:23 -08003058 EXPECT_TRUE(
3059 SdpDeserializeCandidate(kSdpOneCandidateWithUfragPwd, &jcandidate));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003060 EXPECT_EQ(kDummyMid, jcandidate.sdp_mid());
3061 EXPECT_EQ(kDummyIndex, jcandidate.sdp_mline_index());
3062 Candidate ref_candidate = jcandidate_->candidate();
3063 ref_candidate.set_username("user_rtp");
3064 ref_candidate.set_password("password_rtp");
3065 EXPECT_TRUE(jcandidate.candidate().IsEquivalent(ref_candidate));
3066}
3067
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00003068TEST_F(WebRtcSdpTest, DeserializeSdpWithConferenceFlag) {
Steve Antona3a92c22017-12-07 10:27:41 -08003069 JsepSessionDescription jdesc(kDummyType);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00003070
3071 // Deserialize
3072 EXPECT_TRUE(SdpDeserialize(kSdpConferenceString, &jdesc));
3073
3074 // Verify
3075 cricket::AudioContentDescription* audio =
Steve Anton06817cd2018-12-18 15:55:30 -08003076 cricket::GetFirstAudioContentDescription(jdesc.description());
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00003077 EXPECT_TRUE(audio->conference_mode());
3078
3079 cricket::VideoContentDescription* video =
Steve Anton06817cd2018-12-18 15:55:30 -08003080 cricket::GetFirstVideoContentDescription(jdesc.description());
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00003081 EXPECT_TRUE(video->conference_mode());
3082}
3083
deadbeefd45aea82017-09-16 01:24:29 -07003084TEST_F(WebRtcSdpTest, SerializeSdpWithConferenceFlag) {
Steve Antona3a92c22017-12-07 10:27:41 -08003085 JsepSessionDescription jdesc(kDummyType);
deadbeefd45aea82017-09-16 01:24:29 -07003086
3087 // We tested deserialization already above, so just test that if we serialize
3088 // and deserialize the flag doesn't disappear.
3089 EXPECT_TRUE(SdpDeserialize(kSdpConferenceString, &jdesc));
Steve Antone831b8c2018-02-01 12:22:16 -08003090 std::string reserialized = webrtc::SdpSerialize(jdesc);
deadbeefd45aea82017-09-16 01:24:29 -07003091 EXPECT_TRUE(SdpDeserialize(reserialized, &jdesc));
3092
3093 // Verify.
3094 cricket::AudioContentDescription* audio =
Steve Anton06817cd2018-12-18 15:55:30 -08003095 cricket::GetFirstAudioContentDescription(jdesc.description());
deadbeefd45aea82017-09-16 01:24:29 -07003096 EXPECT_TRUE(audio->conference_mode());
3097
3098 cricket::VideoContentDescription* video =
Steve Anton06817cd2018-12-18 15:55:30 -08003099 cricket::GetFirstVideoContentDescription(jdesc.description());
deadbeefd45aea82017-09-16 01:24:29 -07003100 EXPECT_TRUE(video->conference_mode());
3101}
3102
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003103TEST_F(WebRtcSdpTest, DeserializeBrokenSdp) {
3104 const char kSdpDestroyer[] = "!@#$%^&";
decurtis@webrtc.org8af11042015-01-07 19:15:51 +00003105 const char kSdpEmptyType[] = " =candidate";
3106 const char kSdpEqualAsPlus[] = "a+candidate";
3107 const char kSdpSpaceAfterEqual[] = "a= candidate";
3108 const char kSdpUpperType[] = "A=candidate";
3109 const char kSdpEmptyLine[] = "";
3110 const char kSdpMissingValue[] = "a=";
3111
Yves Gerey665174f2018-06-19 15:03:05 +02003112 const char kSdpBrokenFingerprint[] =
3113 "a=fingerprint:sha-1 "
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003114 "4AAD:B9:B1:3F:82:18:3B:54:02:12:DF:3E:5D:49:6B:19:E5:7C:AB";
Yves Gerey665174f2018-06-19 15:03:05 +02003115 const char kSdpExtraField[] =
3116 "a=fingerprint:sha-1 "
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003117 "4A:AD:B9:B1:3F:82:18:3B:54:02:12:DF:3E:5D:49:6B:19:E5:7C:AB XXX";
Yves Gerey665174f2018-06-19 15:03:05 +02003118 const char kSdpMissingSpace[] =
3119 "a=fingerprint:sha-1"
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003120 "4A:AD:B9:B1:3F:82:18:3B:54:02:12:DF:3E:5D:49:6B:19:E5:7C:AB";
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00003121 // MD5 is not allowed in fingerprints.
Yves Gerey665174f2018-06-19 15:03:05 +02003122 const char kSdpMd5[] =
3123 "a=fingerprint:md5 "
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00003124 "4A:AD:B9:B1:3F:82:18:3B:54:02:12:DF:3E:5D:49:6B";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003125
3126 // Broken session description
wu@webrtc.org5e760e72014-04-02 23:19:09 +00003127 ExpectParseFailure("v=", kSdpDestroyer);
3128 ExpectParseFailure("o=", kSdpDestroyer);
3129 ExpectParseFailure("s=-", kSdpDestroyer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003130 // Broken time description
wu@webrtc.org5e760e72014-04-02 23:19:09 +00003131 ExpectParseFailure("t=", kSdpDestroyer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003132
3133 // Broken media description
wu@webrtc.org5e760e72014-04-02 23:19:09 +00003134 ExpectParseFailure("m=audio", "c=IN IP4 74.125.224.39");
3135 ExpectParseFailure("m=video", kSdpDestroyer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003136
3137 // Invalid lines
decurtis@webrtc.org8af11042015-01-07 19:15:51 +00003138 ExpectParseFailure("a=candidate", kSdpEmptyType);
3139 ExpectParseFailure("a=candidate", kSdpEqualAsPlus);
3140 ExpectParseFailure("a=candidate", kSdpSpaceAfterEqual);
3141 ExpectParseFailure("a=candidate", kSdpUpperType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003142
3143 // Bogus fingerprint replacing a=sendrev. We selected this attribute
3144 // because it's orthogonal to what we are replacing and hence
3145 // safe.
decurtis@webrtc.org8af11042015-01-07 19:15:51 +00003146 ExpectParseFailure("a=sendrecv", kSdpBrokenFingerprint);
3147 ExpectParseFailure("a=sendrecv", kSdpExtraField);
3148 ExpectParseFailure("a=sendrecv", kSdpMissingSpace);
3149 ExpectParseFailure("a=sendrecv", kSdpMd5);
3150
3151 // Empty Line
3152 ExpectParseFailure("a=rtcp:2347 IN IP4 74.125.127.126", kSdpEmptyLine);
3153 ExpectParseFailure("a=rtcp:2347 IN IP4 74.125.127.126", kSdpMissingValue);
wu@webrtc.org5e760e72014-04-02 23:19:09 +00003154}
3155
3156TEST_F(WebRtcSdpTest, DeserializeSdpWithInvalidAttributeValue) {
3157 // ssrc
3158 ExpectParseFailure("a=ssrc:1", "a=ssrc:badvalue");
deadbeef9d3584c2016-02-16 17:54:10 -08003159 ExpectParseFailure("a=ssrc-group:FEC 2 3", "a=ssrc-group:FEC badvalue 3");
wu@webrtc.org5e760e72014-04-02 23:19:09 +00003160 // crypto
3161 ExpectParseFailure("a=crypto:1 ", "a=crypto:badvalue ");
3162 // rtpmap
3163 ExpectParseFailure("a=rtpmap:111 ", "a=rtpmap:badvalue ");
3164 ExpectParseFailure("opus/48000/2", "opus/badvalue/2");
3165 ExpectParseFailure("opus/48000/2", "opus/48000/badvalue");
3166 // candidate
3167 ExpectParseFailure("1 udp 2130706432", "badvalue udp 2130706432");
3168 ExpectParseFailure("1 udp 2130706432", "1 udp badvalue");
3169 ExpectParseFailure("192.168.1.5 1234", "192.168.1.5 badvalue");
3170 ExpectParseFailure("rport 2346", "rport badvalue");
3171 ExpectParseFailure("rport 2346 generation 2",
3172 "rport 2346 generation badvalue");
3173 // m line
3174 ExpectParseFailure("m=audio 2345 RTP/SAVPF 111 103 104",
3175 "m=audio 2345 RTP/SAVPF 111 badvalue 104");
3176
3177 // bandwidth
3178 ExpectParseFailureWithNewLines("a=mid:video_content_name\r\n",
Yves Gerey665174f2018-06-19 15:03:05 +02003179 "b=AS:badvalue\r\n", "b=AS:badvalue");
wu@webrtc.org5e760e72014-04-02 23:19:09 +00003180 // rtcp-fb
3181 ExpectParseFailureWithNewLines("a=mid:video_content_name\r\n",
3182 "a=rtcp-fb:badvalue nack\r\n",
3183 "a=rtcp-fb:badvalue nack");
3184 // extmap
3185 ExpectParseFailureWithNewLines("a=mid:video_content_name\r\n",
3186 "a=extmap:badvalue http://example.com\r\n",
3187 "a=extmap:badvalue http://example.com");
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003188}
3189
3190TEST_F(WebRtcSdpTest, DeserializeSdpWithReorderedPltypes) {
Steve Antona3a92c22017-12-07 10:27:41 -08003191 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003192
3193 const char kSdpWithReorderedPlTypesString[] =
3194 "v=0\r\n"
3195 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3196 "s=-\r\n"
3197 "t=0 0\r\n"
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22 +00003198 "m=audio 9 RTP/SAVPF 104 103\r\n" // Pl type 104 preferred.
Yves Gerey665174f2018-06-19 15:03:05 +02003199 "a=rtpmap:111 opus/48000/2\r\n" // Pltype 111 listed before 103 and 104
3200 // in the map.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003201 "a=rtpmap:103 ISAC/16000\r\n" // Pltype 103 listed before 104 in the map.
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +00003202 "a=rtpmap:104 ISAC/32000\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003203
3204 // Deserialize
3205 EXPECT_TRUE(SdpDeserialize(kSdpWithReorderedPlTypesString, &jdesc_output));
3206
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003207 const AudioContentDescription* acd =
Steve Antonb1c1de12017-12-21 15:14:30 -08003208 GetFirstAudioContentDescription(jdesc_output.description());
3209 ASSERT_TRUE(acd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003210 ASSERT_FALSE(acd->codecs().empty());
minyue@webrtc.orgf9b5c1b2015-02-17 12:36:41 +00003211 EXPECT_EQ("ISAC", acd->codecs()[0].name);
3212 EXPECT_EQ(32000, acd->codecs()[0].clockrate);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003213 EXPECT_EQ(104, acd->codecs()[0].id);
3214}
3215
3216TEST_F(WebRtcSdpTest, DeserializeSerializeCodecParams) {
Steve Antona3a92c22017-12-07 10:27:41 -08003217 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003218 CodecParams params;
3219 params.max_ptime = 40;
3220 params.ptime = 30;
3221 params.min_ptime = 10;
3222 params.sprop_stereo = 1;
3223 params.stereo = 1;
3224 params.useinband = 1;
henrike@webrtc.org1e09a712013-07-26 19:17:59 +00003225 params.maxaveragebitrate = 128000;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003226 TestDeserializeCodecParams(params, &jdesc_output);
Steve Antone831b8c2018-02-01 12:22:16 -08003227 TestSerialize(jdesc_output);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003228}
3229
3230TEST_F(WebRtcSdpTest, DeserializeSerializeRtcpFb) {
3231 const bool kUseWildcard = false;
Steve Antona3a92c22017-12-07 10:27:41 -08003232 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003233 TestDeserializeRtcpFb(&jdesc_output, kUseWildcard);
Steve Antone831b8c2018-02-01 12:22:16 -08003234 TestSerialize(jdesc_output);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003235}
3236
3237TEST_F(WebRtcSdpTest, DeserializeSerializeRtcpFbWildcard) {
3238 const bool kUseWildcard = true;
Steve Antona3a92c22017-12-07 10:27:41 -08003239 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003240 TestDeserializeRtcpFb(&jdesc_output, kUseWildcard);
Steve Antone831b8c2018-02-01 12:22:16 -08003241 TestSerialize(jdesc_output);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003242}
3243
3244TEST_F(WebRtcSdpTest, DeserializeVideoFmtp) {
Steve Antona3a92c22017-12-07 10:27:41 -08003245 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003246
3247 const char kSdpWithFmtpString[] =
3248 "v=0\r\n"
3249 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3250 "s=-\r\n"
3251 "t=0 0\r\n"
3252 "m=video 3457 RTP/SAVPF 120\r\n"
3253 "a=rtpmap:120 VP8/90000\r\n"
Donald Curtis0e07f922015-05-15 09:21:23 -07003254 "a=fmtp:120 x-google-min-bitrate=10;x-google-max-quantization=40\r\n";
3255
3256 // Deserialize
3257 SdpParseError error;
Donald Curtis144d0182015-05-15 13:14:24 -07003258 EXPECT_TRUE(
3259 webrtc::SdpDeserialize(kSdpWithFmtpString, &jdesc_output, &error));
Donald Curtis0e07f922015-05-15 09:21:23 -07003260
Donald Curtis0e07f922015-05-15 09:21:23 -07003261 const VideoContentDescription* vcd =
Steve Antonb1c1de12017-12-21 15:14:30 -08003262 GetFirstVideoContentDescription(jdesc_output.description());
3263 ASSERT_TRUE(vcd);
Donald Curtis0e07f922015-05-15 09:21:23 -07003264 ASSERT_FALSE(vcd->codecs().empty());
3265 cricket::VideoCodec vp8 = vcd->codecs()[0];
3266 EXPECT_EQ("VP8", vp8.name);
3267 EXPECT_EQ(120, vp8.id);
3268 cricket::CodecParameterMap::iterator found =
3269 vp8.params.find("x-google-min-bitrate");
3270 ASSERT_TRUE(found != vp8.params.end());
3271 EXPECT_EQ(found->second, "10");
3272 found = vp8.params.find("x-google-max-quantization");
3273 ASSERT_TRUE(found != vp8.params.end());
3274 EXPECT_EQ(found->second, "40");
3275}
3276
johan2d8d23e2016-06-03 01:22:42 -07003277TEST_F(WebRtcSdpTest, DeserializeVideoFmtpWithSprops) {
Steve Antona3a92c22017-12-07 10:27:41 -08003278 JsepSessionDescription jdesc_output(kDummyType);
johan2d8d23e2016-06-03 01:22:42 -07003279
3280 const char kSdpWithFmtpString[] =
3281 "v=0\r\n"
3282 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3283 "s=-\r\n"
3284 "t=0 0\r\n"
3285 "m=video 49170 RTP/AVP 98\r\n"
3286 "a=rtpmap:98 H264/90000\r\n"
3287 "a=fmtp:98 profile-level-id=42A01E; "
3288 "sprop-parameter-sets=Z0IACpZTBYmI,aMljiA==\r\n";
3289
3290 // Deserialize.
3291 SdpParseError error;
3292 EXPECT_TRUE(
3293 webrtc::SdpDeserialize(kSdpWithFmtpString, &jdesc_output, &error));
3294
johan2d8d23e2016-06-03 01:22:42 -07003295 const VideoContentDescription* vcd =
Steve Antonb1c1de12017-12-21 15:14:30 -08003296 GetFirstVideoContentDescription(jdesc_output.description());
3297 ASSERT_TRUE(vcd);
johan2d8d23e2016-06-03 01:22:42 -07003298 ASSERT_FALSE(vcd->codecs().empty());
3299 cricket::VideoCodec h264 = vcd->codecs()[0];
3300 EXPECT_EQ("H264", h264.name);
3301 EXPECT_EQ(98, h264.id);
3302 cricket::CodecParameterMap::const_iterator found =
3303 h264.params.find("profile-level-id");
3304 ASSERT_TRUE(found != h264.params.end());
3305 EXPECT_EQ(found->second, "42A01E");
3306 found = h264.params.find("sprop-parameter-sets");
3307 ASSERT_TRUE(found != h264.params.end());
3308 EXPECT_EQ(found->second, "Z0IACpZTBYmI,aMljiA==");
3309}
3310
Donald Curtis0e07f922015-05-15 09:21:23 -07003311TEST_F(WebRtcSdpTest, DeserializeVideoFmtpWithSpace) {
Steve Antona3a92c22017-12-07 10:27:41 -08003312 JsepSessionDescription jdesc_output(kDummyType);
Donald Curtis0e07f922015-05-15 09:21:23 -07003313
3314 const char kSdpWithFmtpString[] =
3315 "v=0\r\n"
3316 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3317 "s=-\r\n"
3318 "t=0 0\r\n"
3319 "m=video 3457 RTP/SAVPF 120\r\n"
3320 "a=rtpmap:120 VP8/90000\r\n"
3321 "a=fmtp:120 x-google-min-bitrate=10; x-google-max-quantization=40\r\n";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003322
3323 // Deserialize
3324 SdpParseError error;
Yves Gerey665174f2018-06-19 15:03:05 +02003325 EXPECT_TRUE(
3326 webrtc::SdpDeserialize(kSdpWithFmtpString, &jdesc_output, &error));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003327
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003328 const VideoContentDescription* vcd =
Steve Antonb1c1de12017-12-21 15:14:30 -08003329 GetFirstVideoContentDescription(jdesc_output.description());
3330 ASSERT_TRUE(vcd);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003331 ASSERT_FALSE(vcd->codecs().empty());
3332 cricket::VideoCodec vp8 = vcd->codecs()[0];
3333 EXPECT_EQ("VP8", vp8.name);
3334 EXPECT_EQ(120, vp8.id);
3335 cricket::CodecParameterMap::iterator found =
3336 vp8.params.find("x-google-min-bitrate");
3337 ASSERT_TRUE(found != vp8.params.end());
3338 EXPECT_EQ(found->second, "10");
3339 found = vp8.params.find("x-google-max-quantization");
3340 ASSERT_TRUE(found != vp8.params.end());
3341 EXPECT_EQ(found->second, "40");
3342}
3343
ossuaa4b0772017-01-30 07:41:18 -08003344TEST_F(WebRtcSdpTest, SerializeAudioFmtpWithUnknownParameter) {
Steve Antonb1c1de12017-12-21 15:14:30 -08003345 AudioContentDescription* acd = GetFirstAudioContentDescription(&desc_);
ossuaa4b0772017-01-30 07:41:18 -08003346
3347 cricket::AudioCodecs codecs = acd->codecs();
3348 codecs[0].params["unknown-future-parameter"] = "SomeFutureValue";
3349 acd->set_codecs(codecs);
3350
Yves Gerey665174f2018-06-19 15:03:05 +02003351 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
ossuaa4b0772017-01-30 07:41:18 -08003352 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08003353 std::string message = webrtc::SdpSerialize(jdesc_);
ossuaa4b0772017-01-30 07:41:18 -08003354 std::string sdp_with_fmtp = kSdpFullString;
3355 InjectAfter("a=rtpmap:111 opus/48000/2\r\n",
3356 "a=fmtp:111 unknown-future-parameter=SomeFutureValue\r\n",
3357 &sdp_with_fmtp);
3358 EXPECT_EQ(sdp_with_fmtp, message);
3359}
3360
3361TEST_F(WebRtcSdpTest, SerializeAudioFmtpWithKnownFmtpParameter) {
Steve Antonb1c1de12017-12-21 15:14:30 -08003362 AudioContentDescription* acd = GetFirstAudioContentDescription(&desc_);
ossuaa4b0772017-01-30 07:41:18 -08003363
3364 cricket::AudioCodecs codecs = acd->codecs();
3365 codecs[0].params["stereo"] = "1";
3366 acd->set_codecs(codecs);
3367
Yves Gerey665174f2018-06-19 15:03:05 +02003368 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
ossuaa4b0772017-01-30 07:41:18 -08003369 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08003370 std::string message = webrtc::SdpSerialize(jdesc_);
ossuaa4b0772017-01-30 07:41:18 -08003371 std::string sdp_with_fmtp = kSdpFullString;
Yves Gerey665174f2018-06-19 15:03:05 +02003372 InjectAfter("a=rtpmap:111 opus/48000/2\r\n", "a=fmtp:111 stereo=1\r\n",
ossuaa4b0772017-01-30 07:41:18 -08003373 &sdp_with_fmtp);
3374 EXPECT_EQ(sdp_with_fmtp, message);
3375}
3376
3377TEST_F(WebRtcSdpTest, SerializeAudioFmtpWithPTimeAndMaxPTime) {
Steve Antonb1c1de12017-12-21 15:14:30 -08003378 AudioContentDescription* acd = GetFirstAudioContentDescription(&desc_);
ossuaa4b0772017-01-30 07:41:18 -08003379
3380 cricket::AudioCodecs codecs = acd->codecs();
3381 codecs[0].params["ptime"] = "20";
3382 codecs[0].params["maxptime"] = "120";
3383 acd->set_codecs(codecs);
3384
Yves Gerey665174f2018-06-19 15:03:05 +02003385 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
ossuaa4b0772017-01-30 07:41:18 -08003386 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08003387 std::string message = webrtc::SdpSerialize(jdesc_);
ossuaa4b0772017-01-30 07:41:18 -08003388 std::string sdp_with_fmtp = kSdpFullString;
3389 InjectAfter("a=rtpmap:104 ISAC/32000\r\n",
3390 "a=maxptime:120\r\n" // No comma here. String merging!
3391 "a=ptime:20\r\n",
3392 &sdp_with_fmtp);
3393 EXPECT_EQ(sdp_with_fmtp, message);
3394}
3395
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003396TEST_F(WebRtcSdpTest, SerializeVideoFmtp) {
Steve Antonb1c1de12017-12-21 15:14:30 -08003397 VideoContentDescription* vcd = GetFirstVideoContentDescription(&desc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003398
3399 cricket::VideoCodecs codecs = vcd->codecs();
3400 codecs[0].params["x-google-min-bitrate"] = "10";
3401 vcd->set_codecs(codecs);
3402
Yves Gerey665174f2018-06-19 15:03:05 +02003403 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003404 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08003405 std::string message = webrtc::SdpSerialize(jdesc_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003406 std::string sdp_with_fmtp = kSdpFullString;
3407 InjectAfter("a=rtpmap:120 VP8/90000\r\n",
Yves Gerey665174f2018-06-19 15:03:05 +02003408 "a=fmtp:120 x-google-min-bitrate=10\r\n", &sdp_with_fmtp);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003409 EXPECT_EQ(sdp_with_fmtp, message);
3410}
3411
Taylor Brandstetter2f65ec52018-05-24 11:37:28 -07003412TEST_F(WebRtcSdpTest, DeserializeAndSerializeSdpWithIceLite) {
3413 // Deserialize the baseline description, making sure it's ICE full.
Steve Antona3a92c22017-12-07 10:27:41 -08003414 JsepSessionDescription jdesc_with_icelite(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003415 std::string sdp_with_icelite = kSdpFullString;
3416 EXPECT_TRUE(SdpDeserialize(sdp_with_icelite, &jdesc_with_icelite));
3417 cricket::SessionDescription* desc = jdesc_with_icelite.description();
3418 const cricket::TransportInfo* tinfo1 =
3419 desc->GetTransportInfoByName("audio_content_name");
3420 EXPECT_EQ(cricket::ICEMODE_FULL, tinfo1->description.ice_mode);
3421 const cricket::TransportInfo* tinfo2 =
3422 desc->GetTransportInfoByName("video_content_name");
3423 EXPECT_EQ(cricket::ICEMODE_FULL, tinfo2->description.ice_mode);
Taylor Brandstetter2f65ec52018-05-24 11:37:28 -07003424
3425 // Add "a=ice-lite" and deserialize, making sure it's ICE lite.
Yves Gerey665174f2018-06-19 15:03:05 +02003426 InjectAfter(kSessionTime, "a=ice-lite\r\n", &sdp_with_icelite);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003427 EXPECT_TRUE(SdpDeserialize(sdp_with_icelite, &jdesc_with_icelite));
3428 desc = jdesc_with_icelite.description();
3429 const cricket::TransportInfo* atinfo =
3430 desc->GetTransportInfoByName("audio_content_name");
3431 EXPECT_EQ(cricket::ICEMODE_LITE, atinfo->description.ice_mode);
3432 const cricket::TransportInfo* vtinfo =
Yves Gerey665174f2018-06-19 15:03:05 +02003433 desc->GetTransportInfoByName("video_content_name");
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003434 EXPECT_EQ(cricket::ICEMODE_LITE, vtinfo->description.ice_mode);
Taylor Brandstetter2f65ec52018-05-24 11:37:28 -07003435
3436 // Now that we know deserialization works, we can use TestSerialize to test
3437 // serialization.
3438 TestSerialize(jdesc_with_icelite);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003439}
3440
3441// Verifies that the candidates in the input SDP are parsed and serialized
3442// correctly in the output SDP.
3443TEST_F(WebRtcSdpTest, RoundTripSdpWithSctpDataChannelsWithCandidates) {
3444 std::string sdp_with_data = kSdpString;
3445 sdp_with_data.append(kSdpSctpDataChannelWithCandidatesString);
Steve Antona3a92c22017-12-07 10:27:41 -08003446 JsepSessionDescription jdesc_output(kDummyType);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003447
3448 EXPECT_TRUE(SdpDeserialize(sdp_with_data, &jdesc_output));
Steve Antone831b8c2018-02-01 12:22:16 -08003449 EXPECT_EQ(sdp_with_data, webrtc::SdpSerialize(jdesc_output));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003450}
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003451
3452TEST_F(WebRtcSdpTest, SerializeDtlsSetupAttribute) {
3453 AddFingerprint();
3454 TransportInfo audio_transport_info =
3455 *(desc_.GetTransportInfoByName(kAudioContentName));
3456 EXPECT_EQ(cricket::CONNECTIONROLE_NONE,
3457 audio_transport_info.description.connection_role);
3458 audio_transport_info.description.connection_role =
Yves Gerey665174f2018-06-19 15:03:05 +02003459 cricket::CONNECTIONROLE_ACTIVE;
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003460
3461 TransportInfo video_transport_info =
3462 *(desc_.GetTransportInfoByName(kVideoContentName));
3463 EXPECT_EQ(cricket::CONNECTIONROLE_NONE,
3464 video_transport_info.description.connection_role);
3465 video_transport_info.description.connection_role =
Yves Gerey665174f2018-06-19 15:03:05 +02003466 cricket::CONNECTIONROLE_ACTIVE;
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003467
3468 desc_.RemoveTransportInfoByName(kAudioContentName);
3469 desc_.RemoveTransportInfoByName(kVideoContentName);
3470
3471 desc_.AddTransportInfo(audio_transport_info);
3472 desc_.AddTransportInfo(video_transport_info);
3473
Yves Gerey665174f2018-06-19 15:03:05 +02003474 ASSERT_TRUE(jdesc_.Initialize(desc_.Copy(), jdesc_.session_id(),
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003475 jdesc_.session_version()));
Steve Antone831b8c2018-02-01 12:22:16 -08003476 std::string message = webrtc::SdpSerialize(jdesc_);
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003477 std::string sdp_with_dtlssetup = kSdpFullString;
3478
3479 // Fingerprint attribute is necessary to add DTLS setup attribute.
Yves Gerey665174f2018-06-19 15:03:05 +02003480 InjectAfter(kAttributeIcePwdVoice, kFingerprint, &sdp_with_dtlssetup);
3481 InjectAfter(kAttributeIcePwdVideo, kFingerprint, &sdp_with_dtlssetup);
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003482 // Now adding |setup| attribute.
Yves Gerey665174f2018-06-19 15:03:05 +02003483 InjectAfter(kFingerprint, "a=setup:active\r\n", &sdp_with_dtlssetup);
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003484 EXPECT_EQ(sdp_with_dtlssetup, message);
3485}
3486
3487TEST_F(WebRtcSdpTest, DeserializeDtlsSetupAttribute) {
Steve Antona3a92c22017-12-07 10:27:41 -08003488 JsepSessionDescription jdesc_with_dtlssetup(kDummyType);
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003489 std::string sdp_with_dtlssetup = kSdpFullString;
Yves Gerey665174f2018-06-19 15:03:05 +02003490 InjectAfter(kSessionTime, "a=setup:actpass\r\n", &sdp_with_dtlssetup);
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003491 EXPECT_TRUE(SdpDeserialize(sdp_with_dtlssetup, &jdesc_with_dtlssetup));
3492 cricket::SessionDescription* desc = jdesc_with_dtlssetup.description();
3493 const cricket::TransportInfo* atinfo =
3494 desc->GetTransportInfoByName("audio_content_name");
3495 EXPECT_EQ(cricket::CONNECTIONROLE_ACTPASS,
3496 atinfo->description.connection_role);
3497 const cricket::TransportInfo* vtinfo =
Yves Gerey665174f2018-06-19 15:03:05 +02003498 desc->GetTransportInfoByName("video_content_name");
sergeyu@chromium.org0be6aa02013-08-23 23:21:25 +00003499 EXPECT_EQ(cricket::CONNECTIONROLE_ACTPASS,
3500 vtinfo->description.connection_role);
3501}
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +00003502
3503// Verifies that the order of the serialized m-lines follows the order of the
3504// ContentInfo in SessionDescription, and vise versa for deserialization.
3505TEST_F(WebRtcSdpTest, MediaContentOrderMaintainedRoundTrip) {
Steve Antona3a92c22017-12-07 10:27:41 -08003506 JsepSessionDescription jdesc(kDummyType);
Yves Gerey665174f2018-06-19 15:03:05 +02003507 const std::string media_content_sdps[3] = {kSdpAudioString, kSdpVideoString,
3508 kSdpSctpDataChannelString};
3509 const cricket::MediaType media_types[3] = {cricket::MEDIA_TYPE_AUDIO,
3510 cricket::MEDIA_TYPE_VIDEO,
3511 cricket::MEDIA_TYPE_DATA};
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +00003512
3513 // Verifies all 6 permutations.
3514 for (size_t i = 0; i < 6; ++i) {
3515 size_t media_content_in_sdp[3];
3516 // The index of the first media content.
3517 media_content_in_sdp[0] = i / 2;
3518 // The index of the second media content.
3519 media_content_in_sdp[1] = (media_content_in_sdp[0] + i % 2 + 1) % 3;
3520 // The index of the third media content.
3521 media_content_in_sdp[2] = (media_content_in_sdp[0] + (i + 1) % 2 + 1) % 3;
3522
3523 std::string sdp_string = kSdpSessionString;
3524 for (size_t i = 0; i < 3; ++i)
3525 sdp_string += media_content_sdps[media_content_in_sdp[i]];
3526
3527 EXPECT_TRUE(SdpDeserialize(sdp_string, &jdesc));
3528 cricket::SessionDescription* desc = jdesc.description();
3529 EXPECT_EQ(3u, desc->contents().size());
3530
3531 for (size_t i = 0; i < 3; ++i) {
3532 const cricket::MediaContentDescription* mdesc =
Steve Antonb1c1de12017-12-21 15:14:30 -08003533 desc->contents()[i].media_description();
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +00003534 EXPECT_EQ(media_types[media_content_in_sdp[i]], mdesc->type());
3535 }
3536
Steve Antone831b8c2018-02-01 12:22:16 -08003537 std::string serialized_sdp = webrtc::SdpSerialize(jdesc);
jiayl@webrtc.orge7d47a12014-08-05 19:19:05 +00003538 EXPECT_EQ(sdp_string, serialized_sdp);
3539 }
3540}
deadbeef9d3584c2016-02-16 17:54:10 -08003541
deadbeef25ed4352016-12-12 18:37:36 -08003542TEST_F(WebRtcSdpTest, DeserializeBundleOnlyAttribute) {
3543 MakeBundleOnlyDescription();
Steve Antona3a92c22017-12-07 10:27:41 -08003544 JsepSessionDescription deserialized_description(kDummyType);
deadbeef12771a12017-01-03 13:53:47 -08003545 ASSERT_TRUE(
deadbeef25ed4352016-12-12 18:37:36 -08003546 SdpDeserialize(kBundleOnlySdpFullString, &deserialized_description));
3547 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
3548}
3549
deadbeef12771a12017-01-03 13:53:47 -08003550// The semantics of "a=bundle-only" are only defined when it's used in
3551// combination with a 0 port on the m= line. We should ignore it if used with a
3552// nonzero port.
3553TEST_F(WebRtcSdpTest, IgnoreBundleOnlyWithNonzeroPort) {
3554 // Make the base bundle-only description but unset the bundle-only flag.
3555 MakeBundleOnlyDescription();
3556 jdesc_.description()->contents()[1].bundle_only = false;
3557
3558 std::string modified_sdp = kBundleOnlySdpFullString;
3559 Replace("m=video 0", "m=video 9", &modified_sdp);
Steve Antona3a92c22017-12-07 10:27:41 -08003560 JsepSessionDescription deserialized_description(kDummyType);
deadbeef12771a12017-01-03 13:53:47 -08003561 ASSERT_TRUE(SdpDeserialize(modified_sdp, &deserialized_description));
3562 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
deadbeef25ed4352016-12-12 18:37:36 -08003563}
3564
3565TEST_F(WebRtcSdpTest, SerializeBundleOnlyAttribute) {
3566 MakeBundleOnlyDescription();
Steve Antone831b8c2018-02-01 12:22:16 -08003567 TestSerialize(jdesc_);
deadbeef25ed4352016-12-12 18:37:36 -08003568}
3569
deadbeef9d3584c2016-02-16 17:54:10 -08003570TEST_F(WebRtcSdpTest, DeserializePlanBSessionDescription) {
3571 MakePlanBDescription();
3572
Steve Antona3a92c22017-12-07 10:27:41 -08003573 JsepSessionDescription deserialized_description(kDummyType);
deadbeef9d3584c2016-02-16 17:54:10 -08003574 EXPECT_TRUE(SdpDeserialize(kPlanBSdpFullString, &deserialized_description));
3575
3576 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
3577}
3578
3579TEST_F(WebRtcSdpTest, SerializePlanBSessionDescription) {
3580 MakePlanBDescription();
Steve Antone831b8c2018-02-01 12:22:16 -08003581 TestSerialize(jdesc_);
deadbeef9d3584c2016-02-16 17:54:10 -08003582}
3583
3584TEST_F(WebRtcSdpTest, DeserializeUnifiedPlanSessionDescription) {
3585 MakeUnifiedPlanDescription();
3586
Steve Antona3a92c22017-12-07 10:27:41 -08003587 JsepSessionDescription deserialized_description(kDummyType);
deadbeef9d3584c2016-02-16 17:54:10 -08003588 EXPECT_TRUE(
3589 SdpDeserialize(kUnifiedPlanSdpFullString, &deserialized_description));
3590
3591 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
3592}
3593
3594TEST_F(WebRtcSdpTest, SerializeUnifiedPlanSessionDescription) {
3595 MakeUnifiedPlanDescription();
Steve Antone831b8c2018-02-01 12:22:16 -08003596 TestSerialize(jdesc_);
3597}
3598
Seth Hampson5b4f0752018-04-02 16:31:36 -07003599// This tests deserializing a Unified Plan SDP that is compatible with both
Seth Hampson7fa6ee62018-10-17 10:25:28 -07003600// Unified Plan and Plan B style SDP, meaning that it contains both "a=ssrc
3601// msid" lines and "a=msid " lines. It tests the case for audio/video tracks
Seth Hampson5b4f0752018-04-02 16:31:36 -07003602// with no stream ids and multiple stream ids. For parsing this, the Unified
3603// Plan a=msid lines should take priority, because the Plan B style a=ssrc msid
3604// lines do not support multiple stream ids and no stream ids.
Seth Hampson7fa6ee62018-10-17 10:25:28 -07003605TEST_F(WebRtcSdpTest, DeserializeSessionDescriptionSpecialMsid) {
3606 // Create both msid lines for Plan B and Unified Plan support.
3607 MakeUnifiedPlanDescriptionMultipleStreamIds(
3608 cricket::kMsidSignalingMediaSection |
3609 cricket::kMsidSignalingSsrcAttribute);
Seth Hampson5b4f0752018-04-02 16:31:36 -07003610
3611 JsepSessionDescription deserialized_description(kDummyType);
3612 EXPECT_TRUE(SdpDeserialize(kUnifiedPlanSdpFullStringWithSpecialMsid,
3613 &deserialized_description));
3614
3615 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
Henrik Boström5b147782018-12-04 11:25:05 +01003616 EXPECT_EQ(cricket::kMsidSignalingMediaSection |
3617 cricket::kMsidSignalingSsrcAttribute,
3618 deserialized_description.description()->msid_signaling());
Seth Hampson5b4f0752018-04-02 16:31:36 -07003619}
3620
Seth Hampson7fa6ee62018-10-17 10:25:28 -07003621// Tests the serialization of a Unified Plan SDP that is compatible for both
3622// Unified Plan and Plan B style SDPs, meaning that it contains both "a=ssrc
3623// msid" lines and "a=msid " lines. It tests the case for no stream ids and
3624// multiple stream ids.
3625TEST_F(WebRtcSdpTest, SerializeSessionDescriptionSpecialMsid) {
3626 // Create both msid lines for Plan B and Unified Plan support.
3627 MakeUnifiedPlanDescriptionMultipleStreamIds(
3628 cricket::kMsidSignalingMediaSection |
3629 cricket::kMsidSignalingSsrcAttribute);
3630 std::string serialized_sdp = webrtc::SdpSerialize(jdesc_);
3631 // We explicitly test that the serialized SDP string is equal to the hard
3632 // coded SDP string. This is necessary, because in the parser "a=msid" lines
3633 // take priority over "a=ssrc msid" lines. This means if we just used
3634 // TestSerialize(), it could serialize an SDP that omits "a=ssrc msid" lines,
3635 // and still pass, because the deserialized version would be the same.
3636 EXPECT_EQ(kUnifiedPlanSdpFullStringWithSpecialMsid, serialized_sdp);
3637}
3638
3639// Tests that a Unified Plan style SDP (does not contain "a=ssrc msid" lines
3640// that signal stream IDs) is deserialized appropriately. It tests the case for
3641// no stream ids and multiple stream ids.
3642TEST_F(WebRtcSdpTest, UnifiedPlanDeserializeSessionDescriptionSpecialMsid) {
3643 // Only create a=msid lines for strictly Unified Plan stream ID support.
3644 MakeUnifiedPlanDescriptionMultipleStreamIds(
3645 cricket::kMsidSignalingMediaSection);
3646
3647 JsepSessionDescription deserialized_description(kDummyType);
3648 std::string unified_plan_sdp_string =
3649 kUnifiedPlanSdpFullStringWithSpecialMsid;
3650 RemoveSsrcMsidLinesFromSdpString(&unified_plan_sdp_string);
3651 EXPECT_TRUE(
3652 SdpDeserialize(unified_plan_sdp_string, &deserialized_description));
3653
3654 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
3655}
3656
3657// Tests that a Unified Plan style SDP (does not contain "a=ssrc msid" lines
3658// that signal stream IDs) is serialized appropriately. It tests the case for no
3659// stream ids and multiple stream ids.
3660TEST_F(WebRtcSdpTest, UnifiedPlanSerializeSessionDescriptionSpecialMsid) {
3661 // Only create a=msid lines for strictly Unified Plan stream ID support.
3662 MakeUnifiedPlanDescriptionMultipleStreamIds(
3663 cricket::kMsidSignalingMediaSection);
3664
Seth Hampson5b4f0752018-04-02 16:31:36 -07003665 TestSerialize(jdesc_);
3666}
3667
Seth Hampson5897a6e2018-04-03 11:16:33 -07003668// This tests that a Unified Plan SDP with no a=ssrc lines is
3669// serialized/deserialized appropriately. In this case the
3670// MediaContentDescription will contain a StreamParams object that doesn't have
3671// any SSRCs. Vice versa, this will be created upon deserializing an SDP with no
3672// SSRC lines.
3673TEST_F(WebRtcSdpTest, DeserializeUnifiedPlanSessionDescriptionNoSsrcSignaling) {
3674 MakeUnifiedPlanDescription();
3675 RemoveSsrcSignalingFromStreamParams();
3676 std::string unified_plan_sdp_string = kUnifiedPlanSdpFullString;
3677 RemoveSsrcLinesFromSdpString(&unified_plan_sdp_string);
3678
3679 JsepSessionDescription deserialized_description(kDummyType);
3680 EXPECT_TRUE(
3681 SdpDeserialize(unified_plan_sdp_string, &deserialized_description));
3682 EXPECT_TRUE(CompareSessionDescription(jdesc_, deserialized_description));
3683}
3684
3685TEST_F(WebRtcSdpTest, SerializeUnifiedPlanSessionDescriptionNoSsrcSignaling) {
3686 MakeUnifiedPlanDescription();
3687 RemoveSsrcSignalingFromStreamParams();
3688
3689 TestSerialize(jdesc_);
3690}
3691
Steve Antone831b8c2018-02-01 12:22:16 -08003692TEST_F(WebRtcSdpTest, EmptyDescriptionHasNoMsidSignaling) {
3693 JsepSessionDescription jsep_desc(kDummyType);
3694 ASSERT_TRUE(SdpDeserialize(kSdpSessionString, &jsep_desc));
3695 EXPECT_EQ(0, jsep_desc.description()->msid_signaling());
3696}
3697
3698TEST_F(WebRtcSdpTest, DataChannelOnlyHasNoMsidSignaling) {
3699 JsepSessionDescription jsep_desc(kDummyType);
3700 std::string sdp = kSdpSessionString;
3701 sdp += kSdpSctpDataChannelString;
3702 ASSERT_TRUE(SdpDeserialize(sdp, &jsep_desc));
3703 EXPECT_EQ(0, jsep_desc.description()->msid_signaling());
3704}
3705
3706TEST_F(WebRtcSdpTest, PlanBHasSsrcAttributeMsidSignaling) {
3707 JsepSessionDescription jsep_desc(kDummyType);
3708 ASSERT_TRUE(SdpDeserialize(kPlanBSdpFullString, &jsep_desc));
3709 EXPECT_EQ(cricket::kMsidSignalingSsrcAttribute,
3710 jsep_desc.description()->msid_signaling());
3711}
3712
3713TEST_F(WebRtcSdpTest, UnifiedPlanHasMediaSectionMsidSignaling) {
3714 JsepSessionDescription jsep_desc(kDummyType);
3715 ASSERT_TRUE(SdpDeserialize(kUnifiedPlanSdpFullString, &jsep_desc));
3716 EXPECT_EQ(cricket::kMsidSignalingMediaSection,
3717 jsep_desc.description()->msid_signaling());
3718}
3719
3720const char kMediaSectionMsidLine[] = "a=msid:local_stream_1 audio_track_id_1";
3721const char kSsrcAttributeMsidLine[] =
3722 "a=ssrc:1 msid:local_stream_1 audio_track_id_1";
3723
3724TEST_F(WebRtcSdpTest, SerializeOnlyMediaSectionMsid) {
3725 jdesc_.description()->set_msid_signaling(cricket::kMsidSignalingMediaSection);
3726 std::string sdp = webrtc::SdpSerialize(jdesc_);
3727
3728 EXPECT_NE(std::string::npos, sdp.find(kMediaSectionMsidLine));
3729 EXPECT_EQ(std::string::npos, sdp.find(kSsrcAttributeMsidLine));
3730}
3731
3732TEST_F(WebRtcSdpTest, SerializeOnlySsrcAttributeMsid) {
3733 jdesc_.description()->set_msid_signaling(
3734 cricket::kMsidSignalingSsrcAttribute);
3735 std::string sdp = webrtc::SdpSerialize(jdesc_);
3736
3737 EXPECT_EQ(std::string::npos, sdp.find(kMediaSectionMsidLine));
3738 EXPECT_NE(std::string::npos, sdp.find(kSsrcAttributeMsidLine));
3739}
3740
3741TEST_F(WebRtcSdpTest, SerializeBothMediaSectionAndSsrcAttributeMsid) {
3742 jdesc_.description()->set_msid_signaling(
3743 cricket::kMsidSignalingMediaSection |
3744 cricket::kMsidSignalingSsrcAttribute);
3745 std::string sdp = webrtc::SdpSerialize(jdesc_);
3746
3747 EXPECT_NE(std::string::npos, sdp.find(kMediaSectionMsidLine));
3748 EXPECT_NE(std::string::npos, sdp.find(kSsrcAttributeMsidLine));
deadbeef9d3584c2016-02-16 17:54:10 -08003749}
deadbeef7e146cb2016-09-28 10:04:34 -07003750
3751// Regression test for heap overflow bug:
3752// https://bugs.chromium.org/p/chromium/issues/detail?id=647916
3753TEST_F(WebRtcSdpTest, DeserializeSctpPortInVideoDescription) {
deadbeef7e146cb2016-09-28 10:04:34 -07003754 // The issue occurs when the sctp-port attribute is found in a video
3755 // description. The actual heap overflow occurs when parsing the fmtp line.
deadbeef7bcdb692017-01-20 12:43:58 -08003756 static const char kSdpWithSctpPortInVideoDescription[] =
deadbeef7e146cb2016-09-28 10:04:34 -07003757 "v=0\r\n"
3758 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3759 "s=-\r\n"
3760 "t=0 0\r\n"
3761 "m=video 9 UDP/DTLS/SCTP 120\r\n"
3762 "a=sctp-port 5000\r\n"
3763 "a=fmtp:108 foo=10\r\n";
3764
3765 ExpectParseFailure(std::string(kSdpWithSctpPortInVideoDescription),
3766 "sctp-port");
3767}
deadbeefb2362572016-12-13 16:37:06 -08003768
3769// Regression test for integer overflow bug:
3770// https://bugs.chromium.org/p/chromium/issues/detail?id=648071
3771TEST_F(WebRtcSdpTest, DeserializeLargeBandwidthLimit) {
deadbeefb2362572016-12-13 16:37:06 -08003772 // Bandwidth attribute is the max signed 32-bit int, which will get
3773 // multiplied by 1000 and cause int overflow if not careful.
deadbeef7bcdb692017-01-20 12:43:58 -08003774 static const char kSdpWithLargeBandwidth[] =
deadbeefb2362572016-12-13 16:37:06 -08003775 "v=0\r\n"
3776 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3777 "s=-\r\n"
3778 "t=0 0\r\n"
3779 "m=video 3457 RTP/SAVPF 120\r\n"
3780 "b=AS:2147483647\r\n"
3781 "foo=fail\r\n";
3782
3783 ExpectParseFailure(std::string(kSdpWithLargeBandwidth), "foo=fail");
3784}
deadbeef7bcdb692017-01-20 12:43:58 -08003785
deadbeefbc88c6b2017-08-02 11:26:34 -07003786// Similar to the above, except that negative values are illegal, not just
3787// error-prone as large values are.
3788// https://bugs.chromium.org/p/chromium/issues/detail?id=675361
3789TEST_F(WebRtcSdpTest, DeserializingNegativeBandwidthLimitFails) {
3790 static const char kSdpWithNegativeBandwidth[] =
3791 "v=0\r\n"
3792 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3793 "s=-\r\n"
3794 "t=0 0\r\n"
3795 "m=video 3457 RTP/SAVPF 120\r\n"
3796 "b=AS:-1000\r\n";
3797
3798 ExpectParseFailure(std::string(kSdpWithNegativeBandwidth), "b=AS:-1000");
3799}
3800
deadbeef3e8016e2017-08-03 17:49:30 -07003801// An exception to the above rule: a value of -1 for b=AS should just be
3802// ignored, resulting in "kAutoBandwidth" in the deserialized object.
3803// Applications historically may be using "b=AS:-1" to mean "no bandwidth
3804// limit", but this is now what ommitting the attribute entirely will do, so
3805// ignoring it will have the intended effect.
3806TEST_F(WebRtcSdpTest, BandwidthLimitOfNegativeOneIgnored) {
3807 static const char kSdpWithBandwidthOfNegativeOne[] =
3808 "v=0\r\n"
3809 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3810 "s=-\r\n"
3811 "t=0 0\r\n"
3812 "m=video 3457 RTP/SAVPF 120\r\n"
3813 "b=AS:-1\r\n";
3814
Steve Antona3a92c22017-12-07 10:27:41 -08003815 JsepSessionDescription jdesc_output(kDummyType);
deadbeef3e8016e2017-08-03 17:49:30 -07003816 EXPECT_TRUE(SdpDeserialize(kSdpWithBandwidthOfNegativeOne, &jdesc_output));
deadbeef3e8016e2017-08-03 17:49:30 -07003817 const VideoContentDescription* vcd =
Steve Antonb1c1de12017-12-21 15:14:30 -08003818 GetFirstVideoContentDescription(jdesc_output.description());
3819 ASSERT_TRUE(vcd);
deadbeef3e8016e2017-08-03 17:49:30 -07003820 EXPECT_EQ(cricket::kAutoBandwidth, vcd->bandwidth());
3821}
3822
deadbeef7bcdb692017-01-20 12:43:58 -08003823// Test that "ufrag"/"pwd" in the candidate line itself are ignored, and only
3824// the "a=ice-ufrag"/"a=ice-pwd" attributes are used.
3825// Regression test for:
3826// https://bugs.chromium.org/p/chromium/issues/detail?id=681286
3827TEST_F(WebRtcSdpTest, IceCredentialsInCandidateStringIgnored) {
3828 // Important piece is "ufrag foo pwd bar".
3829 static const char kSdpWithIceCredentialsInCandidateString[] =
3830 "v=0\r\n"
3831 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3832 "s=-\r\n"
3833 "t=0 0\r\n"
3834 "m=audio 9 RTP/SAVPF 111\r\n"
3835 "c=IN IP4 0.0.0.0\r\n"
3836 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
3837 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
3838 "a=rtpmap:111 opus/48000/2\r\n"
3839 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
3840 "generation 2 ufrag foo pwd bar\r\n";
3841
Steve Antona3a92c22017-12-07 10:27:41 -08003842 JsepSessionDescription jdesc_output(kDummyType);
deadbeef7bcdb692017-01-20 12:43:58 -08003843 EXPECT_TRUE(
3844 SdpDeserialize(kSdpWithIceCredentialsInCandidateString, &jdesc_output));
3845 const IceCandidateCollection* candidates = jdesc_output.candidates(0);
3846 ASSERT_NE(nullptr, candidates);
Mirko Bonadeie12c1fe2018-07-03 12:53:23 +02003847 ASSERT_EQ(1U, candidates->count());
deadbeef7bcdb692017-01-20 12:43:58 -08003848 cricket::Candidate c = candidates->at(0)->candidate();
3849 EXPECT_EQ("ufrag_voice", c.username());
3850 EXPECT_EQ("pwd_voice", c.password());
3851}
deadbeef90f1e1e2017-02-10 12:35:05 -08003852
Johannes Kron211856b2018-09-06 12:12:28 +02003853// Test that attribute lines "a=ice-ufrag-something"/"a=ice-pwd-something" are
3854// ignored, and only the "a=ice-ufrag"/"a=ice-pwd" attributes are used.
3855// Regression test for:
3856// https://bugs.chromium.org/p/webrtc/issues/detail?id=9712
3857TEST_F(WebRtcSdpTest, AttributeWithPartialMatchingNameIsIgnored) {
3858 static const char kSdpWithFooIceCredentials[] =
3859 "v=0\r\n"
3860 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3861 "s=-\r\n"
3862 "t=0 0\r\n"
3863 "m=audio 9 RTP/SAVPF 111\r\n"
3864 "c=IN IP4 0.0.0.0\r\n"
3865 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
3866 "a=ice-ufrag-something:foo\r\na=ice-pwd-something:bar\r\n"
3867 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
3868 "a=rtpmap:111 opus/48000/2\r\n"
3869 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 1234 typ host "
3870 "generation 2\r\n";
3871
3872 JsepSessionDescription jdesc_output(kDummyType);
3873 EXPECT_TRUE(SdpDeserialize(kSdpWithFooIceCredentials, &jdesc_output));
3874 const IceCandidateCollection* candidates = jdesc_output.candidates(0);
3875 ASSERT_NE(nullptr, candidates);
3876 ASSERT_EQ(1U, candidates->count());
3877 cricket::Candidate c = candidates->at(0)->candidate();
3878 EXPECT_EQ("ufrag_voice", c.username());
3879 EXPECT_EQ("pwd_voice", c.password());
3880}
3881
deadbeef90f1e1e2017-02-10 12:35:05 -08003882// Test that SDP with an invalid port number in "a=candidate" lines is
3883// rejected, without crashing.
3884// Regression test for:
3885// https://bugs.chromium.org/p/chromium/issues/detail?id=677029
3886TEST_F(WebRtcSdpTest, DeserializeInvalidPortInCandidateAttribute) {
3887 static const char kSdpWithInvalidCandidatePort[] =
3888 "v=0\r\n"
3889 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3890 "s=-\r\n"
3891 "t=0 0\r\n"
3892 "m=audio 9 RTP/SAVPF 111\r\n"
3893 "c=IN IP4 0.0.0.0\r\n"
3894 "a=rtcp:9 IN IP4 0.0.0.0\r\n"
3895 "a=ice-ufrag:ufrag_voice\r\na=ice-pwd:pwd_voice\r\n"
3896 "a=rtpmap:111 opus/48000/2\r\n"
3897 "a=candidate:a0+B/1 1 udp 2130706432 192.168.1.5 12345678 typ host "
3898 "generation 2 raddr 192.168.1.1 rport 87654321\r\n";
3899
Steve Antona3a92c22017-12-07 10:27:41 -08003900 JsepSessionDescription jdesc_output(kDummyType);
deadbeef90f1e1e2017-02-10 12:35:05 -08003901 EXPECT_FALSE(SdpDeserialize(kSdpWithInvalidCandidatePort, &jdesc_output));
3902}
deadbeefa4549d62017-02-10 17:26:22 -08003903
3904// Test that "a=msid" with a missing track ID is rejected and doesn't crash.
3905// Regression test for:
3906// https://bugs.chromium.org/p/chromium/issues/detail?id=686405
3907TEST_F(WebRtcSdpTest, DeserializeMsidAttributeWithMissingTrackId) {
3908 static const char kSdpWithMissingTrackId[] =
3909 "v=0\r\n"
3910 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3911 "s=-\r\n"
3912 "t=0 0\r\n"
3913 "m=audio 9 RTP/SAVPF 111\r\n"
3914 "c=IN IP4 0.0.0.0\r\n"
3915 "a=rtpmap:111 opus/48000/2\r\n"
3916 "a=msid:stream_id \r\n";
3917
Steve Antona3a92c22017-12-07 10:27:41 -08003918 JsepSessionDescription jdesc_output(kDummyType);
deadbeefa4549d62017-02-10 17:26:22 -08003919 EXPECT_FALSE(SdpDeserialize(kSdpWithMissingTrackId, &jdesc_output));
3920}
3921
3922TEST_F(WebRtcSdpTest, DeserializeMsidAttributeWithMissingStreamId) {
3923 static const char kSdpWithMissingStreamId[] =
3924 "v=0\r\n"
3925 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n"
3926 "s=-\r\n"
3927 "t=0 0\r\n"
3928 "m=audio 9 RTP/SAVPF 111\r\n"
3929 "c=IN IP4 0.0.0.0\r\n"
3930 "a=rtpmap:111 opus/48000/2\r\n"
3931 "a=msid: track_id\r\n";
3932
Steve Antona3a92c22017-12-07 10:27:41 -08003933 JsepSessionDescription jdesc_output(kDummyType);
deadbeefa4549d62017-02-10 17:26:22 -08003934 EXPECT_FALSE(SdpDeserialize(kSdpWithMissingStreamId, &jdesc_output));
3935}
zhihuang38989e52017-03-21 11:04:53 -07003936
3937// Tests that if both session-level address and media-level address exist, use
3938// the media-level address.
3939TEST_F(WebRtcSdpTest, ParseConnectionData) {
Steve Antona3a92c22017-12-07 10:27:41 -08003940 JsepSessionDescription jsep_desc(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07003941
3942 // Sesssion-level address.
3943 std::string sdp = kSdpFullString;
3944 InjectAfter("s=-\r\n", "c=IN IP4 192.168.0.3\r\n", &sdp);
3945 EXPECT_TRUE(SdpDeserialize(sdp, &jsep_desc));
3946
3947 const auto& content1 = jsep_desc.description()->contents()[0];
3948 EXPECT_EQ("74.125.127.126:2345",
Steve Antonb1c1de12017-12-21 15:14:30 -08003949 content1.media_description()->connection_address().ToString());
zhihuang38989e52017-03-21 11:04:53 -07003950 const auto& content2 = jsep_desc.description()->contents()[1];
3951 EXPECT_EQ("74.125.224.39:3457",
Steve Antonb1c1de12017-12-21 15:14:30 -08003952 content2.media_description()->connection_address().ToString());
zhihuang38989e52017-03-21 11:04:53 -07003953}
3954
3955// Tests that the session-level connection address will be used if the media
3956// level-addresses are not specified.
3957TEST_F(WebRtcSdpTest, ParseConnectionDataSessionLevelOnly) {
Steve Antona3a92c22017-12-07 10:27:41 -08003958 JsepSessionDescription jsep_desc(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07003959
3960 // Sesssion-level address.
3961 std::string sdp = kSdpString;
3962 InjectAfter("s=-\r\n", "c=IN IP4 192.168.0.3\r\n", &sdp);
3963 // Remove the media level addresses.
3964 Replace("c=IN IP4 0.0.0.0\r\n", "", &sdp);
3965 Replace("c=IN IP4 0.0.0.0\r\n", "", &sdp);
3966 EXPECT_TRUE(SdpDeserialize(sdp, &jsep_desc));
3967
3968 const auto& content1 = jsep_desc.description()->contents()[0];
3969 EXPECT_EQ("192.168.0.3:9",
Steve Antonb1c1de12017-12-21 15:14:30 -08003970 content1.media_description()->connection_address().ToString());
zhihuang38989e52017-03-21 11:04:53 -07003971 const auto& content2 = jsep_desc.description()->contents()[1];
3972 EXPECT_EQ("192.168.0.3:9",
Steve Antonb1c1de12017-12-21 15:14:30 -08003973 content2.media_description()->connection_address().ToString());
zhihuang38989e52017-03-21 11:04:53 -07003974}
3975
3976TEST_F(WebRtcSdpTest, ParseConnectionDataIPv6) {
Steve Antona3a92c22017-12-07 10:27:41 -08003977 JsepSessionDescription jsep_desc(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07003978
3979 std::string sdp = kSdpString;
3980 EXPECT_TRUE(SdpDeserialize(sdp, &jsep_desc));
3981 Replace("m=audio 9 RTP/SAVPF 111 103 104\r\nc=IN IP4 0.0.0.0\r\n",
3982 "m=audio 9 RTP/SAVPF 111 103 104\r\nc=IN IP6 "
3983 "2001:0db8:85a3:0000:0000:8a2e:0370:7335\r\n",
3984 &sdp);
3985 Replace("m=video 9 RTP/SAVPF 120\r\nc=IN IP4 0.0.0.0\r\n",
3986 "m=video 9 RTP/SAVPF 120\r\nc=IN IP6 "
3987 "2001:0db8:85a3:0000:0000:8a2e:0370:7336\r\n",
3988 &sdp);
3989 EXPECT_TRUE(SdpDeserialize(sdp, &jsep_desc));
3990 const auto& content1 = jsep_desc.description()->contents()[0];
3991 EXPECT_EQ("[2001:db8:85a3::8a2e:370:7335]:9",
Steve Antonb1c1de12017-12-21 15:14:30 -08003992 content1.media_description()->connection_address().ToString());
zhihuang38989e52017-03-21 11:04:53 -07003993 const auto& content2 = jsep_desc.description()->contents()[1];
3994 EXPECT_EQ("[2001:db8:85a3::8a2e:370:7336]:9",
Steve Antonb1c1de12017-12-21 15:14:30 -08003995 content2.media_description()->connection_address().ToString());
zhihuang38989e52017-03-21 11:04:53 -07003996}
3997
3998// Test that the invalid or unsupprted connection data cannot be parsed.
3999TEST_F(WebRtcSdpTest, ParseConnectionDataFailure) {
Steve Antona3a92c22017-12-07 10:27:41 -08004000 JsepSessionDescription jsep_desc(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07004001 std::string sdp = kSdpString;
4002 EXPECT_TRUE(SdpDeserialize(sdp, &jsep_desc));
4003
4004 // Unsupported multicast IPv4 address.
4005 sdp = kSdpFullString;
4006 Replace("c=IN IP4 74.125.224.39\r\n", "c=IN IP4 74.125.224.39/127\r\n", &sdp);
4007 EXPECT_FALSE(SdpDeserialize(sdp, &jsep_desc));
4008
4009 // Unsupported multicast IPv6 address.
4010 sdp = kSdpFullString;
4011 Replace("c=IN IP4 74.125.224.39\r\n", "c=IN IP6 ::1/3\r\n", &sdp);
4012 EXPECT_FALSE(SdpDeserialize(sdp, &jsep_desc));
4013
4014 // Mismatched address type.
4015 sdp = kSdpFullString;
4016 Replace("c=IN IP4 74.125.224.39\r\n", "c=IN IP6 74.125.224.39\r\n", &sdp);
4017 EXPECT_FALSE(SdpDeserialize(sdp, &jsep_desc));
4018
4019 sdp = kSdpFullString;
4020 Replace("c=IN IP4 74.125.224.39\r\n",
4021 "c=IN IP4 2001:0db8:85a3:0000:0000:8a2e:0370:7334\r\n", &sdp);
4022 EXPECT_FALSE(SdpDeserialize(sdp, &jsep_desc));
4023}
4024
4025TEST_F(WebRtcSdpTest, SerializeAndDeserializeWithConnectionAddress) {
Steve Antona3a92c22017-12-07 10:27:41 -08004026 JsepSessionDescription expected_jsep(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07004027 MakeDescriptionWithoutCandidates(&expected_jsep);
4028 // Serialization.
Steve Antone831b8c2018-02-01 12:22:16 -08004029 std::string message = webrtc::SdpSerialize(expected_jsep);
zhihuang38989e52017-03-21 11:04:53 -07004030 // Deserialization.
Steve Antona3a92c22017-12-07 10:27:41 -08004031 JsepSessionDescription jdesc(kDummyType);
zhihuang38989e52017-03-21 11:04:53 -07004032 EXPECT_TRUE(SdpDeserialize(message, &jdesc));
Steve Antonb1c1de12017-12-21 15:14:30 -08004033 auto audio_desc = jdesc.description()
4034 ->GetContentByName(kAudioContentName)
4035 ->media_description();
4036 auto video_desc = jdesc.description()
4037 ->GetContentByName(kVideoContentName)
4038 ->media_description();
zhihuang38989e52017-03-21 11:04:53 -07004039 EXPECT_EQ(audio_desc_->connection_address().ToString(),
4040 audio_desc->connection_address().ToString());
4041 EXPECT_EQ(video_desc_->connection_address().ToString(),
4042 video_desc->connection_address().ToString());
4043}
Taylor Brandstetter93a7b242018-04-16 10:45:24 -07004044
4045// RFC4566 says "If a session has no meaningful name, the value "s= " SHOULD be
4046// used (i.e., a single space as the session name)." So we should accept that.
4047TEST_F(WebRtcSdpTest, DeserializeEmptySessionName) {
4048 JsepSessionDescription jsep_desc(kDummyType);
4049 std::string sdp = kSdpString;
4050 Replace("s=-\r\n", "s= \r\n", &sdp);
4051 EXPECT_TRUE(SdpDeserialize(sdp, &jsep_desc));
4052}
Amit Hilbucha2012042018-12-03 11:35:05 -08004053
4054// Simulcast malformed input test for invalid format.
4055TEST_F(WebRtcSdpTest, DeserializeSimulcastNegative_EmptyAttribute) {
4056 ExpectParseFailureWithNewLines("a=ssrc:3 label:video_track_id_1\r\n",
4057 "a=simulcast:\r\n", "a=simulcast:");
4058}
4059
4060// Tests that duplicate simulcast entries in the SDP triggers a parse failure.
4061TEST_F(WebRtcSdpTest, DeserializeSimulcastNegative_DuplicateAttribute) {
4062 ExpectParseFailureWithNewLines("a=ssrc:3 label:video_track_id_1\r\n",
4063 "a=simulcast:send 1\r\na=simulcast:recv 2\r\n",
4064 "a=simulcast:");
4065}
4066
4067// Validates that deserialization uses the a=simulcast: attribute
4068TEST_F(WebRtcSdpTest, TestDeserializeSimulcastAttribute) {
Amit Hilbuchc57d5732018-12-11 15:30:11 -08004069 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4070 sdp += "a=rid:1 send\r\n";
4071 sdp += "a=rid:2 send\r\n";
4072 sdp += "a=rid:3 send\r\n";
4073 sdp += "a=rid:4 recv\r\n";
4074 sdp += "a=rid:5 recv\r\n";
4075 sdp += "a=rid:6 recv\r\n";
Amit Hilbucha2012042018-12-03 11:35:05 -08004076 sdp += "a=simulcast:send 1,2;3 recv 4;5;6\r\n";
4077 JsepSessionDescription output(kDummyType);
4078 SdpParseError error;
4079 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4080 const cricket::ContentInfos& contents = output.description()->contents();
4081 const cricket::MediaContentDescription* media =
4082 contents.back().media_description();
4083 EXPECT_TRUE(media->HasSimulcast());
4084 EXPECT_EQ(2ul, media->simulcast_description().send_layers().size());
4085 EXPECT_EQ(3ul, media->simulcast_description().receive_layers().size());
Amit Hilbuchc57d5732018-12-11 15:30:11 -08004086 EXPECT_FALSE(media->streams().empty());
4087 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4088 CompareRidDescriptionIds(rids, {"1", "2", "3"});
4089 ASSERT_TRUE(media->has_receive_stream());
4090 CompareRidDescriptionIds(media->receive_stream().rids(), {"4", "5", "6"});
4091}
4092
4093// Validates that deserialization removes rids that do not appear in SDP
4094TEST_F(WebRtcSdpTest, TestDeserializeSimulcastAttributeRemovesUnknownRids) {
4095 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4096 sdp += "a=rid:1 send\r\n";
4097 sdp += "a=rid:3 send\r\n";
4098 sdp += "a=rid:4 recv\r\n";
4099 sdp += "a=simulcast:send 1,2;3 recv 4;5,6\r\n";
4100 JsepSessionDescription output(kDummyType);
4101 SdpParseError error;
4102 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4103 const cricket::ContentInfos& contents = output.description()->contents();
4104 const cricket::MediaContentDescription* media =
4105 contents.back().media_description();
4106 EXPECT_TRUE(media->HasSimulcast());
4107 const SimulcastDescription& simulcast = media->simulcast_description();
4108 EXPECT_EQ(2ul, simulcast.send_layers().size());
4109 EXPECT_EQ(1ul, simulcast.receive_layers().size());
4110
4111 std::vector<SimulcastLayer> all_send_layers =
4112 simulcast.send_layers().GetAllLayers();
4113 EXPECT_EQ(2ul, all_send_layers.size());
4114 EXPECT_EQ(0, std::count_if(all_send_layers.begin(), all_send_layers.end(),
4115 [](const SimulcastLayer& layer) {
4116 return layer.rid == "2";
4117 }));
4118
4119 std::vector<SimulcastLayer> all_receive_layers =
4120 simulcast.receive_layers().GetAllLayers();
4121 ASSERT_EQ(1ul, all_receive_layers.size());
4122 EXPECT_EQ("4", all_receive_layers[0].rid);
4123
4124 EXPECT_FALSE(media->streams().empty());
4125 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4126 CompareRidDescriptionIds(rids, {"1", "3"});
4127 ASSERT_TRUE(media->has_receive_stream());
4128 CompareRidDescriptionIds(media->receive_stream().rids(), {"4"});
4129}
4130
4131// Validates that Simulcast removes rids that appear in both send and receive.
4132TEST_F(WebRtcSdpTest,
4133 TestDeserializeSimulcastAttributeRemovesDuplicateSendReceive) {
4134 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4135 sdp += "a=rid:1 send\r\n";
4136 sdp += "a=rid:2 send\r\n";
4137 sdp += "a=rid:3 send\r\n";
4138 sdp += "a=rid:4 recv\r\n";
4139 sdp += "a=simulcast:send 1;2;3 recv 2;4\r\n";
4140 JsepSessionDescription output(kDummyType);
4141 SdpParseError error;
4142 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4143 const cricket::ContentInfos& contents = output.description()->contents();
4144 const cricket::MediaContentDescription* media =
4145 contents.back().media_description();
4146 EXPECT_TRUE(media->HasSimulcast());
4147 const SimulcastDescription& simulcast = media->simulcast_description();
4148 EXPECT_EQ(2ul, simulcast.send_layers().size());
4149 EXPECT_EQ(1ul, simulcast.receive_layers().size());
4150 EXPECT_EQ(2ul, simulcast.send_layers().GetAllLayers().size());
4151 EXPECT_EQ(1ul, simulcast.receive_layers().GetAllLayers().size());
4152
4153 EXPECT_FALSE(media->streams().empty());
4154 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4155 CompareRidDescriptionIds(rids, {"1", "3"});
4156 ASSERT_TRUE(media->has_receive_stream());
4157 CompareRidDescriptionIds(media->receive_stream().rids(), {"4"});
4158}
4159
4160// Ignores empty rid line.
4161TEST_F(WebRtcSdpTest, TestDeserializeIgnoresEmptyRidLines) {
4162 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4163 sdp += "a=rid:1 send\r\n";
4164 sdp += "a=rid:2 send\r\n";
4165 sdp += "a=rid\r\n"; // Should ignore this line.
4166 sdp += "a=rid:\r\n"; // Should ignore this line.
4167 sdp += "a=simulcast:send 1;2\r\n";
4168 JsepSessionDescription output(kDummyType);
4169 SdpParseError error;
4170 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4171 const cricket::ContentInfos& contents = output.description()->contents();
4172 const cricket::MediaContentDescription* media =
4173 contents.back().media_description();
4174 EXPECT_TRUE(media->HasSimulcast());
4175 const SimulcastDescription& simulcast = media->simulcast_description();
4176 EXPECT_TRUE(simulcast.receive_layers().empty());
4177 EXPECT_EQ(2ul, simulcast.send_layers().size());
4178 EXPECT_EQ(2ul, simulcast.send_layers().GetAllLayers().size());
4179
4180 EXPECT_FALSE(media->streams().empty());
4181 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4182 CompareRidDescriptionIds(rids, {"1", "2"});
4183 ASSERT_FALSE(media->has_receive_stream());
4184}
4185
4186// Ignores malformed rid lines.
4187TEST_F(WebRtcSdpTest, TestDeserializeIgnoresMalformedRidLines) {
4188 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4189 sdp += "a=rid:1 send pt=\r\n"; // Should ignore this line.
4190 sdp += "a=rid:2 receive\r\n"; // Should ignore this line.
4191 sdp += "a=rid:3 max-width=720;pt=120\r\n"; // Should ignore this line.
4192 sdp += "a=rid:4\r\n"; // Should ignore this line.
4193 sdp += "a=rid:5 send\r\n";
4194 sdp += "a=simulcast:send 1,2,3;4,5\r\n";
4195 JsepSessionDescription output(kDummyType);
4196 SdpParseError error;
4197 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4198 const cricket::ContentInfos& contents = output.description()->contents();
4199 const cricket::MediaContentDescription* media =
4200 contents.back().media_description();
4201 EXPECT_TRUE(media->HasSimulcast());
4202 const SimulcastDescription& simulcast = media->simulcast_description();
4203 EXPECT_TRUE(simulcast.receive_layers().empty());
4204 EXPECT_EQ(1ul, simulcast.send_layers().size());
4205 EXPECT_EQ(1ul, simulcast.send_layers().GetAllLayers().size());
4206
4207 EXPECT_FALSE(media->streams().empty());
4208 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4209 CompareRidDescriptionIds(rids, {"5"});
4210 ASSERT_FALSE(media->has_receive_stream());
4211}
4212
4213// Removes RIDs that specify a different format than the m= section.
4214TEST_F(WebRtcSdpTest, TestDeserializeRemovesRidsWithInvalidCodec) {
4215 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4216 sdp += "a=rid:1 send pt=121,120\r\n"; // Should remove 121 and keep RID.
4217 sdp += "a=rid:2 send pt=121\r\n"; // Should remove RID altogether.
4218 sdp += "a=simulcast:send 1;2\r\n";
4219 JsepSessionDescription output(kDummyType);
4220 SdpParseError error;
4221 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4222 const cricket::ContentInfos& contents = output.description()->contents();
4223 const cricket::MediaContentDescription* media =
4224 contents.back().media_description();
4225 EXPECT_TRUE(media->HasSimulcast());
4226 const SimulcastDescription& simulcast = media->simulcast_description();
4227 EXPECT_TRUE(simulcast.receive_layers().empty());
4228 EXPECT_EQ(1ul, simulcast.send_layers().size());
4229 EXPECT_EQ(1ul, simulcast.send_layers().GetAllLayers().size());
4230 EXPECT_EQ("1", simulcast.send_layers()[0][0].rid);
4231 EXPECT_EQ(1ul, media->streams().size());
4232 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4233 EXPECT_EQ(1ul, rids.size());
4234 EXPECT_EQ("1", rids[0].rid);
4235 EXPECT_EQ(1ul, rids[0].payload_types.size());
4236 EXPECT_EQ(120, rids[0].payload_types[0]);
4237
4238 ASSERT_FALSE(media->has_receive_stream());
4239}
4240
4241// Ignores duplicate rid lines
4242TEST_F(WebRtcSdpTest, TestDeserializeIgnoresDuplicateRidLines) {
4243 std::string sdp = kUnifiedPlanSdpFullStringNoSsrc;
4244 sdp += "a=rid:1 send\r\n";
4245 sdp += "a=rid:2 send\r\n";
4246 sdp += "a=rid:2 send\r\n";
4247 sdp += "a=rid:3 send\r\n";
4248 sdp += "a=rid:4 recv\r\n";
4249 sdp += "a=simulcast:send 1,2;3 recv 4\r\n";
4250 JsepSessionDescription output(kDummyType);
4251 SdpParseError error;
4252 EXPECT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4253 const cricket::ContentInfos& contents = output.description()->contents();
4254 const cricket::MediaContentDescription* media =
4255 contents.back().media_description();
4256 EXPECT_TRUE(media->HasSimulcast());
4257 const SimulcastDescription& simulcast = media->simulcast_description();
4258 EXPECT_EQ(2ul, simulcast.send_layers().size());
4259 EXPECT_EQ(1ul, simulcast.receive_layers().size());
4260 EXPECT_EQ(2ul, simulcast.send_layers().GetAllLayers().size());
4261 EXPECT_EQ(1ul, simulcast.receive_layers().GetAllLayers().size());
4262
4263 EXPECT_FALSE(media->streams().empty());
4264 const std::vector<RidDescription>& rids = media->streams()[0].rids();
4265 CompareRidDescriptionIds(rids, {"1", "3"});
4266 ASSERT_TRUE(media->has_receive_stream());
4267 CompareRidDescriptionIds(media->receive_stream().rids(), {"4"});
Amit Hilbucha2012042018-12-03 11:35:05 -08004268}
4269
4270// Simulcast serialization integration test.
4271// This test will serialize and deserialize the description and compare.
4272// More detailed tests for parsing simulcast can be found in
4273// unit tests for SdpSerializer.
4274TEST_F(WebRtcSdpTest, SerializeSimulcast_ComplexSerialization) {
Amit Hilbuchc57d5732018-12-11 15:30:11 -08004275 MakeUnifiedPlanDescription(/* use_ssrcs = */ false);
Amit Hilbucha2012042018-12-03 11:35:05 -08004276 auto description = jdesc_.description();
4277 auto media = description->GetContentDescriptionByName(kVideoContentName3);
Amit Hilbuchc57d5732018-12-11 15:30:11 -08004278 ASSERT_EQ(media->streams().size(), 1ul);
4279 StreamParams& send_stream = media->mutable_streams()[0];
4280 std::vector<RidDescription> send_rids;
4281 send_rids.push_back(RidDescription("1", RidDirection::kSend));
4282 send_rids.push_back(RidDescription("2", RidDirection::kSend));
4283 send_rids.push_back(RidDescription("3", RidDirection::kSend));
4284 send_rids.push_back(RidDescription("4", RidDirection::kSend));
4285 send_stream.set_rids(send_rids);
4286 StreamParams recv_stream;
4287 std::vector<RidDescription> recv_rids;
4288 recv_rids.push_back(RidDescription("6", RidDirection::kReceive));
4289 recv_rids.push_back(RidDescription("7", RidDirection::kReceive));
4290 recv_rids.push_back(RidDescription("8", RidDirection::kReceive));
4291 recv_rids.push_back(RidDescription("9", RidDirection::kReceive));
4292 recv_rids.push_back(RidDescription("10", RidDirection::kReceive));
4293 recv_rids.push_back(RidDescription("11", RidDirection::kReceive));
4294 recv_stream.set_rids(recv_rids);
4295 media->set_receive_stream(recv_stream);
4296
Amit Hilbucha2012042018-12-03 11:35:05 -08004297 SimulcastDescription& simulcast = media->simulcast_description();
4298 simulcast.send_layers().AddLayerWithAlternatives(
4299 {SimulcastLayer("2", false), SimulcastLayer("1", true)});
4300 simulcast.send_layers().AddLayerWithAlternatives(
4301 {SimulcastLayer("4", false), SimulcastLayer("3", false)});
4302
4303 simulcast.receive_layers().AddLayerWithAlternatives(
4304 {SimulcastLayer("6", false), SimulcastLayer("7", false)});
4305 simulcast.receive_layers().AddLayer(SimulcastLayer("8", true));
4306 simulcast.receive_layers().AddLayerWithAlternatives(
4307 {SimulcastLayer("9", false), SimulcastLayer("10", true),
4308 SimulcastLayer("11", false)});
4309
4310 TestSerialize(jdesc_);
4311}
Steve Anton06817cd2018-12-18 15:55:30 -08004312
4313// Test that the content name is empty if the media section does not have an
4314// a=mid line.
4315TEST_F(WebRtcSdpTest, ParseNoMid) {
4316 std::string sdp = kSdpString;
4317 Replace("a=mid:audio_content_name\r\n", "", &sdp);
4318 Replace("a=mid:video_content_name\r\n", "", &sdp);
4319
4320 JsepSessionDescription output(kDummyType);
4321 SdpParseError error;
4322 ASSERT_TRUE(webrtc::SdpDeserialize(sdp, &output, &error));
4323
4324 EXPECT_THAT(output.description()->contents(),
4325 ElementsAre(Field("name", &cricket::ContentInfo::name, ""),
4326 Field("name", &cricket::ContentInfo::name, "")));
4327}