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

Unified Diff: net/http/http_proxy_client_socket_pool_unittest.cc

Issue 358493002: Land recent SPDY changes (through 70021377) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on code-review-feedback updates. 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/http/http_network_transaction_unittest.cc ('k') | net/net.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_proxy_client_socket_pool_unittest.cc
diff --git a/net/http/http_proxy_client_socket_pool_unittest.cc b/net/http/http_proxy_client_socket_pool_unittest.cc
index d7955d2c058dfce711c060aee467f27dec76276b..0198b05b0c8ebf614b821af2be13703111e8c0dc 100644
--- a/net/http/http_proxy_client_socket_pool_unittest.cc
+++ b/net/http/http_proxy_client_socket_pool_unittest.cc
@@ -296,22 +296,12 @@ TEST_P(HttpProxyClientSocketPoolTest, NeedAuth) {
CreateMockWrite(*req, 0, ASYNC),
CreateMockWrite(*rst, 2, ASYNC),
};
- const char* const kAuthChallenge[] = {
- spdy_util_.GetStatusKey(), "407 Proxy Authentication Required",
- spdy_util_.GetVersionKey(), "HTTP/1.1",
- "proxy-authenticate", "Basic realm=\"MyRealm1\"",
- };
- scoped_ptr<SpdyFrame> resp(
- spdy_util_.ConstructSpdyControlFrame(NULL,
- 0,
- false,
- 1,
- LOW,
- SYN_REPLY,
- CONTROL_FLAG_NONE,
- kAuthChallenge,
- arraysize(kAuthChallenge),
- 0));
+ SpdyHeaderBlock resp_block;
+ resp_block[spdy_util_.GetStatusKey()] = "407";
+ resp_block["proxy-authenticate"] = "Basic realm=\"MyRealm1\"";
+ spdy_util_.MaybeAddVersionHeader(&resp_block);
+
+ scoped_ptr<SpdyFrame> resp(spdy_util_.ConstructSpdyReply(1, resp_block));
MockRead spdy_reads[] = {
CreateMockRead(*resp, 1, ASYNC),
MockRead(ASYNC, 0, 3)
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698