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

Side by Side Diff: net/quic/spdy_utils_test.cc

Issue 1660593004: Landing Recent QUIC changes until 01/28/2016 18:41 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0202
Patch Set: Created 4 years, 10 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
« no previous file with comments | « net/quic/quic_utils.cc ('k') | net/quic/test_tools/quic_packet_creator_peer.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "net/quic/spdy_utils.h" 4 #include "net/quic/spdy_utils.h"
5 5
6 #include "base/macros.h" 6 #include "base/macros.h"
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 #include "net/test/gtest_util.h" 8 #include "net/test/gtest_util.h"
9 9
10 using std::string; 10 using std::string;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 EXPECT_FALSE(SpdyUtils::UrlIsValid(headers)); 130 EXPECT_FALSE(SpdyUtils::UrlIsValid(headers));
131 headers[":scheme"] = "https"; 131 headers[":scheme"] = "https";
132 EXPECT_FALSE(SpdyUtils::UrlIsValid(headers)); 132 EXPECT_FALSE(SpdyUtils::UrlIsValid(headers));
133 headers[":authority"] = "www.google.com"; 133 headers[":authority"] = "www.google.com";
134 EXPECT_FALSE(SpdyUtils::UrlIsValid(headers)); 134 EXPECT_FALSE(SpdyUtils::UrlIsValid(headers));
135 headers[":path"] = "/index.html"; 135 headers[":path"] = "/index.html";
136 EXPECT_TRUE(SpdyUtils::UrlIsValid(headers)); 136 EXPECT_TRUE(SpdyUtils::UrlIsValid(headers));
137 } 137 }
138 138
139 } // namespace test 139 } // namespace test
140 } // namespace net_quic 140 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_utils.cc ('k') | net/quic/test_tools/quic_packet_creator_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698