OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "jingle/notifier/base/fake_ssl_client_socket.h" | 5 #include "jingle/notifier/base/fake_ssl_client_socket.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 MOCK_CONST_METHOD0(IsConnectedAndIdle, bool()); | 58 MOCK_CONST_METHOD0(IsConnectedAndIdle, bool()); |
59 MOCK_CONST_METHOD1(GetPeerAddress, int(net::IPEndPoint*)); | 59 MOCK_CONST_METHOD1(GetPeerAddress, int(net::IPEndPoint*)); |
60 MOCK_CONST_METHOD1(GetLocalAddress, int(net::IPEndPoint*)); | 60 MOCK_CONST_METHOD1(GetLocalAddress, int(net::IPEndPoint*)); |
61 MOCK_CONST_METHOD0(NetLog, const net::BoundNetLog&()); | 61 MOCK_CONST_METHOD0(NetLog, const net::BoundNetLog&()); |
62 MOCK_METHOD0(SetSubresourceSpeculation, void()); | 62 MOCK_METHOD0(SetSubresourceSpeculation, void()); |
63 MOCK_METHOD0(SetOmniboxSpeculation, void()); | 63 MOCK_METHOD0(SetOmniboxSpeculation, void()); |
64 MOCK_CONST_METHOD0(WasEverUsed, bool()); | 64 MOCK_CONST_METHOD0(WasEverUsed, bool()); |
65 MOCK_CONST_METHOD0(UsingTCPFastOpen, bool()); | 65 MOCK_CONST_METHOD0(UsingTCPFastOpen, bool()); |
66 MOCK_CONST_METHOD0(NumBytesRead, int64()); | 66 MOCK_CONST_METHOD0(NumBytesRead, int64()); |
67 MOCK_CONST_METHOD0(GetConnectTimeMicros, base::TimeDelta()); | 67 MOCK_CONST_METHOD0(GetConnectTimeMicros, base::TimeDelta()); |
| 68 MOCK_CONST_METHOD0(WasNpnNegotiated, bool()); |
68 MOCK_CONST_METHOD0(GetNegotiatedProtocol, net::NextProto()); | 69 MOCK_CONST_METHOD0(GetNegotiatedProtocol, net::NextProto()); |
| 70 MOCK_METHOD1(GetSSLInfo, bool(net::SSLInfo*)); |
69 }; | 71 }; |
70 | 72 |
71 // Break up |data| into a bunch of chunked MockReads/Writes and push | 73 // Break up |data| into a bunch of chunked MockReads/Writes and push |
72 // them onto |ops|. | 74 // them onto |ops|. |
73 void AddChunkedOps(base::StringPiece data, size_t chunk_size, net::IoMode mode, | 75 void AddChunkedOps(base::StringPiece data, size_t chunk_size, net::IoMode mode, |
74 std::vector<net::MockRead>* ops) { | 76 std::vector<net::MockRead>* ops) { |
75 DCHECK_GT(chunk_size, 0U); | 77 DCHECK_GT(chunk_size, 0U); |
76 size_t offset = 0; | 78 size_t offset = 0; |
77 while (offset < data.size()) { | 79 while (offset < data.size()) { |
78 size_t bounded_chunk_size = std::min(data.size() - offset, chunk_size); | 80 size_t bounded_chunk_size = std::min(data.size() - offset, chunk_size); |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 } | 339 } |
338 | 340 |
339 TEST_F(FakeSSLClientSocketTest, MalformedServerHello) { | 341 TEST_F(FakeSSLClientSocketTest, MalformedServerHello) { |
340 RunUnsuccessfulHandshakeTest(ERR_MALFORMED_SERVER_HELLO, | 342 RunUnsuccessfulHandshakeTest(ERR_MALFORMED_SERVER_HELLO, |
341 VERIFY_SERVER_HELLO_ERROR); | 343 VERIFY_SERVER_HELLO_ERROR); |
342 } | 344 } |
343 | 345 |
344 } // namespace | 346 } // namespace |
345 | 347 |
346 } // namespace notifier | 348 } // namespace notifier |
OLD | NEW |