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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 344253008: Stop using SpdySynReplyIR for SPDY 4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Additional test fix & SpdyTestUtil cleanup. 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_network_transaction_unittest.cc » ('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 b6c5041934d9c17f3c15205aa4ee40659c9d3a26..ae703ed751a0e0c1e1f7bb0a81875e09402e5038 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -691,6 +691,9 @@ TEST_P(SpdyFramerTest, UndersizedHeaderBlockInBuffer) {
// Test that if we receive a SYN_REPLY with stream ID zero, we signal an error
// (but don't crash).
TEST_P(SpdyFramerTest, SynReplyWithStreamIdZero) {
+ if (spdy_version_ > SPDY3) {
+ return;
+ }
testing::StrictMock<test::MockSpdyFramerVisitor> visitor;
SpdyFramer framer(spdy_version_);
framer.set_visitor(&visitor);
@@ -2079,6 +2082,9 @@ TEST_P(SpdyFramerTest, CreateSynStreamCompressed) {
#endif // !defined(USE_SYSTEM_ZLIB)
TEST_P(SpdyFramerTest, CreateSynReplyUncompressed) {
+ if (spdy_version_ > SPDY3) {
+ return;
+ }
SpdyFramer framer(spdy_version_);
framer.set_enable_compression(false);
@@ -2236,6 +2242,9 @@ TEST_P(SpdyFramerTest, CreateSynReplyUncompressed) {
// to workaround http://crbug.com/139744.
#if !defined(USE_SYSTEM_ZLIB)
TEST_P(SpdyFramerTest, CreateSynReplyCompressed) {
+ if (spdy_version_ > SPDY3) {
+ return;
+ }
SpdyFramer framer(spdy_version_);
framer.set_enable_compression(true);
@@ -3020,6 +3029,9 @@ TEST_P(SpdyFramerTest, ReadCompressedSynStreamHeaderBlock) {
}
TEST_P(SpdyFramerTest, ReadCompressedSynReplyHeaderBlock) {
+ if (spdy_version_ > SPDY3) {
+ return;
+ }
SpdyFramer framer(spdy_version_);
SpdySynReplyIR syn_reply(1);
syn_reply.SetHeader("alpha", "beta");
« no previous file with comments | « net/spdy/spdy_framer.cc ('k') | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698