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

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

Issue 4935001: Allow a non-200 (or non-407) response for a CONNECT request from an HTTPS pro... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Cleaned up Created 10 years 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "net/spdy/spdy_proxy_client_socket.h" 5 #include "net/spdy/spdy_proxy_client_socket.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "net/base/address_list.h" 8 #include "net/base/address_list.h"
9 #include "net/base/net_log.h" 9 #include "net/base/net_log.h"
10 #include "net/base/net_log_unittest.h" 10 #include "net/base/net_log_unittest.h"
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 scoped_ptr<spdy::SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2)); 832 scoped_ptr<spdy::SpdyFrame> msg2(ConstructBodyFrame(kMsg2, kLen2));
833 MockRead reads[] = { 833 MockRead reads[] = {
834 CreateMockRead(*resp, 1, true), 834 CreateMockRead(*resp, 1, true),
835 CreateMockRead(*msg1, 2, true), 835 CreateMockRead(*msg1, 2, true),
836 CreateMockRead(*msg2, 3, true), 836 CreateMockRead(*msg2, 3, true),
837 MockRead(true, 0, 4), // EOF 837 MockRead(true, 0, 4), // EOF
838 }; 838 };
839 839
840 Initialize(reads, arraysize(reads), writes, arraysize(writes)); 840 Initialize(reads, arraysize(reads), writes, arraysize(writes));
841 841
842 AssertConnectFails(ERR_TUNNEL_CONNECTION_FAILED); 842 AssertConnectFails(ERR_HTTPS_PROXY_TUNNEL_CONNECTION_RESPONSE);
843 843
844 Run(2); // SpdySession consumes the next two reads and sends then to 844 Run(2); // SpdySession consumes the next two reads and sends then to
845 // sock_ to be buffered. 845 // sock_ to be buffered.
846 AssertSyncReadEquals(kMsg1, kLen1); 846 AssertSyncReadEquals(kMsg1, kLen1);
847 AssertSyncReadEquals(kMsg2, kLen2); 847 AssertSyncReadEquals(kMsg2, kLen2);
848 } 848 }
849 849
850 // ----------- Reads and Writes 850 // ----------- Reads and Writes
851 851
852 TEST_F(SpdyProxyClientSocketTest, AsyncReadAroundWrite) { 852 TEST_F(SpdyProxyClientSocketTest, AsyncReadAroundWrite) {
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 scoped_refptr<IOBuffer> buf(new IOBuffer(kLen1)); 1151 scoped_refptr<IOBuffer> buf(new IOBuffer(kLen1));
1152 ASSERT_EQ(ERR_IO_PENDING, sock_->Read(buf, kLen1, &read_callback_)); 1152 ASSERT_EQ(ERR_IO_PENDING, sock_->Read(buf, kLen1, &read_callback_));
1153 1153
1154 sock_->Disconnect(); 1154 sock_->Disconnect();
1155 1155
1156 EXPECT_FALSE(sock_->IsConnected()); 1156 EXPECT_FALSE(sock_->IsConnected());
1157 EXPECT_FALSE(read_callback_.have_result()); 1157 EXPECT_FALSE(read_callback_.have_result());
1158 } 1158 }
1159 1159
1160 } // namespace net 1160 } // namespace net
OLDNEW
« net/spdy/spdy_proxy_client_socket.cc ('K') | « net/spdy/spdy_proxy_client_socket.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698