Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: net/spdy/spdy_framer_test.cc

Issue 350213004: Remove "Accept SETTINGS_COMPRESS_DATA frames for HTTP2." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/spdy/spdy_protocol.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <algorithm> 5 #include <algorithm>
6 #include <iostream> 6 #include <iostream>
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 3480 matching lines...) Expand 10 before | Expand all | Expand 10 after
3491 EXPECT_EQ(1, visitor.error_count_); 3491 EXPECT_EQ(1, visitor.error_count_);
3492 } else { 3492 } else {
3493 // In SPDY 4+, duplicate settings are allowed; 3493 // In SPDY 4+, duplicate settings are allowed;
3494 // each setting replaces the previous value for that setting. 3494 // each setting replaces the previous value for that setting.
3495 EXPECT_EQ(3, visitor.setting_count_); 3495 EXPECT_EQ(3, visitor.setting_count_);
3496 EXPECT_EQ(0, visitor.error_count_); 3496 EXPECT_EQ(0, visitor.error_count_);
3497 EXPECT_EQ(1, visitor.settings_ack_sent_); 3497 EXPECT_EQ(1, visitor.settings_ack_sent_);
3498 } 3498 }
3499 } 3499 }
3500 3500
3501 // Tests handling of SETTINGS_COMPRESS_DATA.
3502 TEST_P(SpdyFramerTest, AcceptSettingsCompressData) {
3503 if (!IsSpdy4()) { return; }
3504 SpdyFramer framer(spdy_version_);
3505
3506 const unsigned char kFrameData[] = {
3507 0x00, 0x05, 0x04, 0x00,
3508 0x00, 0x00, 0x00, 0x00,
3509 0x05, 0x00, 0x00, 0x00,
3510 0x01,
3511 };
3512
3513 TestSpdyVisitor visitor(spdy_version_);
3514 visitor.use_compression_ = false;
3515 visitor.SimulateInFramer(kFrameData, sizeof(kFrameData));
3516 EXPECT_EQ(1, visitor.setting_count_);
3517 EXPECT_EQ(0, visitor.error_count_);
3518 }
3519
3520 // Tests handling of SETTINGS frame with entries out of order. 3501 // Tests handling of SETTINGS frame with entries out of order.
3521 TEST_P(SpdyFramerTest, ReadOutOfOrderSettings) { 3502 TEST_P(SpdyFramerTest, ReadOutOfOrderSettings) {
3522 SpdyFramer framer(spdy_version_); 3503 SpdyFramer framer(spdy_version_);
3523 3504
3524 const unsigned char kV2FrameData[] = { 3505 const unsigned char kV2FrameData[] = {
3525 0x80, spdy_version_ch_, 0x00, 0x04, 3506 0x80, spdy_version_ch_, 0x00, 0x04,
3526 0x00, 0x00, 0x00, 0x1C, 3507 0x00, 0x00, 0x00, 0x1C,
3527 0x00, 0x00, 0x00, 0x03, 3508 0x00, 0x00, 0x00, 0x03,
3528 0x02, 0x00, 0x00, 0x00, // 1st Setting 3509 0x02, 0x00, 0x00, 0x00, // 1st Setting
3529 0x00, 0x00, 0x00, 0x02, 3510 0x00, 0x00, 0x00, 0x02,
(...skipping 1880 matching lines...) Expand 10 before | Expand all | Expand 10 after
5410 EXPECT_EQ(4u, framer.MapWeightToPriority(109)); 5391 EXPECT_EQ(4u, framer.MapWeightToPriority(109));
5411 EXPECT_EQ(4u, framer.MapWeightToPriority(74)); 5392 EXPECT_EQ(4u, framer.MapWeightToPriority(74));
5412 EXPECT_EQ(5u, framer.MapWeightToPriority(73)); 5393 EXPECT_EQ(5u, framer.MapWeightToPriority(73));
5413 EXPECT_EQ(5u, framer.MapWeightToPriority(37)); 5394 EXPECT_EQ(5u, framer.MapWeightToPriority(37));
5414 EXPECT_EQ(6u, framer.MapWeightToPriority(36)); 5395 EXPECT_EQ(6u, framer.MapWeightToPriority(36));
5415 EXPECT_EQ(6u, framer.MapWeightToPriority(1)); 5396 EXPECT_EQ(6u, framer.MapWeightToPriority(1));
5416 EXPECT_EQ(7u, framer.MapWeightToPriority(0)); 5397 EXPECT_EQ(7u, framer.MapWeightToPriority(0));
5417 } 5398 }
5418 5399
5419 } // namespace net 5400 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | net/spdy/spdy_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698