OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 3325 matching lines...) Loading... |
3336 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n" | 3336 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n" |
3337 "s=-\r\n" | 3337 "s=-\r\n" |
3338 "t=0 0\r\n" | 3338 "t=0 0\r\n" |
3339 "m=video 3457 RTP/SAVPF 120\r\n" | 3339 "m=video 3457 RTP/SAVPF 120\r\n" |
3340 "b=AS:2147483647\r\n" | 3340 "b=AS:2147483647\r\n" |
3341 "foo=fail\r\n"; | 3341 "foo=fail\r\n"; |
3342 | 3342 |
3343 ExpectParseFailure(std::string(kSdpWithLargeBandwidth), "foo=fail"); | 3343 ExpectParseFailure(std::string(kSdpWithLargeBandwidth), "foo=fail"); |
3344 } | 3344 } |
3345 | 3345 |
3346 // Similar to the above, except that negative values are illegal, not just | 3346 // Negative values for b=AS should be ignored, resulting in "kAutoBandwidth" in |
3347 // error-prone as large values are. | 3347 // the deserialized object. Applications historically may be using "b=AS:-1" to |
3348 // https://bugs.chromium.org/p/chromium/issues/detail?id=675361 | 3348 // mean "no bandwidth limit", but this is now what ommitting the attribute |
3349 TEST_F(WebRtcSdpTest, DeserializingNegativeBandwidthLimitFails) { | 3349 // entirely will do, so ignoring it will have the intended effect. |
| 3350 TEST_F(WebRtcSdpTest, NegativeBandwidthLimitIgnored) { |
3350 static const char kSdpWithNegativeBandwidth[] = | 3351 static const char kSdpWithNegativeBandwidth[] = |
3351 "v=0\r\n" | 3352 "v=0\r\n" |
3352 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n" | 3353 "o=- 18446744069414584320 18446462598732840960 IN IP4 127.0.0.1\r\n" |
3353 "s=-\r\n" | 3354 "s=-\r\n" |
3354 "t=0 0\r\n" | 3355 "t=0 0\r\n" |
3355 "m=video 3457 RTP/SAVPF 120\r\n" | 3356 "m=video 3457 RTP/SAVPF 120\r\n" |
3356 "b=AS:-1000\r\n"; | 3357 "b=AS:-1234\r\n"; |
3357 | 3358 |
3358 ExpectParseFailure(std::string(kSdpWithNegativeBandwidth), "b=AS:-1000"); | 3359 JsepSessionDescription jdesc_output(kDummyString); |
| 3360 EXPECT_TRUE(SdpDeserialize(kSdpWithNegativeBandwidth, &jdesc_output)); |
| 3361 const ContentInfo* vc = GetFirstVideoContent(jdesc_output.description()); |
| 3362 ASSERT_NE(nullptr, vc); |
| 3363 const VideoContentDescription* vcd = |
| 3364 static_cast<const VideoContentDescription*>(vc->description); |
| 3365 EXPECT_EQ(cricket::kAutoBandwidth, vcd->bandwidth()); |
3359 } | 3366 } |
3360 | 3367 |
3361 // Test that "ufrag"/"pwd" in the candidate line itself are ignored, and only | 3368 // Test that "ufrag"/"pwd" in the candidate line itself are ignored, and only |
3362 // the "a=ice-ufrag"/"a=ice-pwd" attributes are used. | 3369 // the "a=ice-ufrag"/"a=ice-pwd" attributes are used. |
3363 // Regression test for: | 3370 // Regression test for: |
3364 // https://bugs.chromium.org/p/chromium/issues/detail?id=681286 | 3371 // https://bugs.chromium.org/p/chromium/issues/detail?id=681286 |
3365 TEST_F(WebRtcSdpTest, IceCredentialsInCandidateStringIgnored) { | 3372 TEST_F(WebRtcSdpTest, IceCredentialsInCandidateStringIgnored) { |
3366 // Important piece is "ufrag foo pwd bar". | 3373 // Important piece is "ufrag foo pwd bar". |
3367 static const char kSdpWithIceCredentialsInCandidateString[] = | 3374 static const char kSdpWithIceCredentialsInCandidateString[] = |
3368 "v=0\r\n" | 3375 "v=0\r\n" |
(...skipping 184 matching lines...) Loading... |
3553 EXPECT_TRUE(SdpDeserialize(message, &jdesc)); | 3560 EXPECT_TRUE(SdpDeserialize(message, &jdesc)); |
3554 auto audio_desc = static_cast<cricket::MediaContentDescription*>( | 3561 auto audio_desc = static_cast<cricket::MediaContentDescription*>( |
3555 jdesc.description()->GetContentByName(kAudioContentName)->description); | 3562 jdesc.description()->GetContentByName(kAudioContentName)->description); |
3556 auto video_desc = static_cast<cricket::MediaContentDescription*>( | 3563 auto video_desc = static_cast<cricket::MediaContentDescription*>( |
3557 jdesc.description()->GetContentByName(kVideoContentName)->description); | 3564 jdesc.description()->GetContentByName(kVideoContentName)->description); |
3558 EXPECT_EQ(audio_desc_->connection_address().ToString(), | 3565 EXPECT_EQ(audio_desc_->connection_address().ToString(), |
3559 audio_desc->connection_address().ToString()); | 3566 audio_desc->connection_address().ToString()); |
3560 EXPECT_EQ(video_desc_->connection_address().ToString(), | 3567 EXPECT_EQ(video_desc_->connection_address().ToString(), |
3561 video_desc->connection_address().ToString()); | 3568 video_desc->connection_address().ToString()); |
3562 } | 3569 } |
OLD | NEW |