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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 352383002: Update SPDY4 settings ID to 16 bits (from 8). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Extract SpdyConstants::GetSettingSize() 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_framer.cc ('k') | net/spdy/spdy_protocol.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer_test.cc
diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
index 57626afe1d23e5e5c375b94e13f598941ab74fd5..db92bf45b4abb7d6244e7245704c0305fb5a74cb 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -2337,10 +2337,10 @@ TEST_P(SpdyFramerTest, CreateSettings) {
0x0a, 0x0b, 0x0c, 0x0d,
};
const unsigned char kV4FrameData[] = {
- 0x00, 0x05, 0x04, 0x00,
+ 0x00, 0x06, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00,
- 0x04, 0x0a, 0x0b, 0x0c,
- 0x0d,
+ 0x00, 0x04, 0x0a, 0x0b,
+ 0x0c, 0x0d,
};
uint32 kValue = 0x0a0b0c0d;
@@ -2400,15 +2400,15 @@ TEST_P(SpdyFramerTest, CreateSettings) {
// ordering for settings_ir works. HTTP2 has no requirement on ordering on
// the wire.
const unsigned char kV4FrameData[] = {
- 0x00, 0x14, 0x04, 0x00,
+ 0x00, 0x18, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00,
- 0x03, // 3rd Setting
+ 0x00, 0x03, // 3rd Setting
0x00, 0x00, 0x00, 0x07,
- 0x04, // 4th Setting
+ 0x00, 0x04, // 4th Setting
0x00, 0x00, 0x00, 0x08,
- 0x01, // 1st Setting
+ 0x00, 0x01, // 1st Setting
0x00, 0x00, 0x00, 0x05,
- 0x02, // 2nd Setting
+ 0x00, 0x02, // 2nd Setting
0x00, 0x00, 0x00, 0x06,
};
@@ -3465,13 +3465,13 @@ TEST_P(SpdyFramerTest, ReadDuplicateSettings) {
0x00, 0x00, 0x00, 0x03,
};
const unsigned char kV4FrameData[] = {
- 0x00, 0x0f, 0x04, 0x00,
+ 0x00, 0x12, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00,
- 0x01, // 1st Setting
+ 0x00, 0x01, // 1st Setting
0x00, 0x00, 0x00, 0x02,
- 0x01, // 2nd (duplicate) Setting
+ 0x00, 0x01, // 2nd (duplicate) Setting
0x00, 0x00, 0x00, 0x03,
- 0x03, // 3rd (unprocessed) Setting
+ 0x00, 0x03, // 3rd (unprocessed) Setting
0x00, 0x00, 0x00, 0x03,
};
@@ -3524,13 +3524,13 @@ TEST_P(SpdyFramerTest, ReadOutOfOrderSettings) {
0x00, 0x00, 0x00, 0x03,
};
const unsigned char kV4FrameData[] = {
- 0x00, 0x0f, 0x04, 0x00,
+ 0x00, 0x12, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00,
- 0x02, // 1st Setting
+ 0x00, 0x02, // 1st Setting
0x00, 0x00, 0x00, 0x02,
- 0x01, // 2nd (out of order) Setting
+ 0x00, 0x01, // 2nd (out of order) Setting
0x00, 0x00, 0x00, 0x03,
- 0x03, // 3rd (unprocessed) Setting
+ 0x00, 0x03, // 3rd (unprocessed) Setting
0x00, 0x00, 0x00, 0x03,
};
« no previous file with comments | « net/spdy/spdy_framer.cc ('k') | net/spdy/spdy_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698