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 #ifndef NET_SOCKET_SOCKET_TEST_UTIL_H_ | 5 #ifndef NET_SOCKET_SOCKET_TEST_UTIL_H_ |
6 #define NET_SOCKET_SOCKET_TEST_UTIL_H_ | 6 #define NET_SOCKET_SOCKET_TEST_UTIL_H_ |
7 | 7 |
8 #include <cstring> | 8 #include <cstring> |
9 #include <deque> | 9 #include <deque> |
10 #include <string> | 10 #include <string> |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 std::string next_proto; | 328 std::string next_proto; |
329 std::string server_protos; | 329 std::string server_protos; |
330 bool was_npn_negotiated; | 330 bool was_npn_negotiated; |
331 NextProto protocol_negotiated; | 331 NextProto protocol_negotiated; |
332 bool client_cert_sent; | 332 bool client_cert_sent; |
333 SSLCertRequestInfo* cert_request_info; | 333 SSLCertRequestInfo* cert_request_info; |
334 scoped_refptr<X509Certificate> cert; | 334 scoped_refptr<X509Certificate> cert; |
335 bool channel_id_sent; | 335 bool channel_id_sent; |
336 ServerBoundCertService* server_bound_cert_service; | 336 ServerBoundCertService* server_bound_cert_service; |
337 int connection_status; | 337 int connection_status; |
| 338 // Indicates that the socket should block in the Connect method. |
| 339 bool should_block_on_connect; |
| 340 // Whether or not the Socket should behave like there is a pre-existing |
| 341 // session to resume. Whether or not such a session is reported as |
| 342 // resumed is controlled by |connection_status|. |
| 343 bool is_in_session_cache; |
338 }; | 344 }; |
339 | 345 |
340 // A DataProvider where the client must write a request before the reads (e.g. | 346 // A DataProvider where the client must write a request before the reads (e.g. |
341 // the response) will complete. | 347 // the response) will complete. |
342 class DelayedSocketData : public StaticSocketDataProvider { | 348 class DelayedSocketData : public StaticSocketDataProvider { |
343 public: | 349 public: |
344 // |write_delay| the number of MockWrites to complete before allowing | 350 // |write_delay| the number of MockWrites to complete before allowing |
345 // a MockRead to complete. | 351 // a MockRead to complete. |
346 // |reads| the list of MockRead completions. | 352 // |reads| the list of MockRead completions. |
347 // |writes| the list of MockWrite completions. | 353 // |writes| the list of MockWrite completions. |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 virtual ~MockClientSocketFactory(); | 637 virtual ~MockClientSocketFactory(); |
632 | 638 |
633 void AddSocketDataProvider(SocketDataProvider* socket); | 639 void AddSocketDataProvider(SocketDataProvider* socket); |
634 void AddSSLSocketDataProvider(SSLSocketDataProvider* socket); | 640 void AddSSLSocketDataProvider(SSLSocketDataProvider* socket); |
635 void ResetNextMockIndexes(); | 641 void ResetNextMockIndexes(); |
636 | 642 |
637 SocketDataProviderArray<SocketDataProvider>& mock_data() { | 643 SocketDataProviderArray<SocketDataProvider>& mock_data() { |
638 return mock_data_; | 644 return mock_data_; |
639 } | 645 } |
640 | 646 |
| 647 // Note: this method is unsafe; the elements of the returned vector |
| 648 // are not necessarily valid. |
| 649 const std::vector<MockSSLClientSocket*>& ssl_client_sockets() const { |
| 650 return ssl_client_sockets_; |
| 651 } |
| 652 |
641 // ClientSocketFactory | 653 // ClientSocketFactory |
642 virtual scoped_ptr<DatagramClientSocket> CreateDatagramClientSocket( | 654 virtual scoped_ptr<DatagramClientSocket> CreateDatagramClientSocket( |
643 DatagramSocket::BindType bind_type, | 655 DatagramSocket::BindType bind_type, |
644 const RandIntCallback& rand_int_cb, | 656 const RandIntCallback& rand_int_cb, |
645 NetLog* net_log, | 657 NetLog* net_log, |
646 const NetLog::Source& source) OVERRIDE; | 658 const NetLog::Source& source) OVERRIDE; |
647 virtual scoped_ptr<StreamSocket> CreateTransportClientSocket( | 659 virtual scoped_ptr<StreamSocket> CreateTransportClientSocket( |
648 const AddressList& addresses, | 660 const AddressList& addresses, |
649 NetLog* net_log, | 661 NetLog* net_log, |
650 const NetLog::Source& source) OVERRIDE; | 662 const NetLog::Source& source) OVERRIDE; |
651 virtual scoped_ptr<SSLClientSocket> CreateSSLClientSocket( | 663 virtual scoped_ptr<SSLClientSocket> CreateSSLClientSocket( |
652 scoped_ptr<ClientSocketHandle> transport_socket, | 664 scoped_ptr<ClientSocketHandle> transport_socket, |
653 const HostPortPair& host_and_port, | 665 const HostPortPair& host_and_port, |
654 const SSLConfig& ssl_config, | 666 const SSLConfig& ssl_config, |
655 const SSLClientSocketContext& context) OVERRIDE; | 667 const SSLClientSocketContext& context) OVERRIDE; |
656 virtual void ClearSSLSessionCache() OVERRIDE; | 668 virtual void ClearSSLSessionCache() OVERRIDE; |
657 | 669 |
658 private: | 670 private: |
659 SocketDataProviderArray<SocketDataProvider> mock_data_; | 671 SocketDataProviderArray<SocketDataProvider> mock_data_; |
660 SocketDataProviderArray<SSLSocketDataProvider> mock_ssl_data_; | 672 SocketDataProviderArray<SSLSocketDataProvider> mock_ssl_data_; |
| 673 std::vector<MockSSLClientSocket*> ssl_client_sockets_; |
661 }; | 674 }; |
662 | 675 |
663 class MockClientSocket : public SSLClientSocket { | 676 class MockClientSocket : public SSLClientSocket { |
664 public: | 677 public: |
665 // Value returned by GetTLSUniqueChannelBinding(). | 678 // Value returned by GetTLSUniqueChannelBinding(). |
666 static const char kTlsUnique[]; | 679 static const char kTlsUnique[]; |
667 | 680 |
668 // The BoundNetLog is needed to test LoadTimingInfo, which uses NetLog IDs as | 681 // The BoundNetLog is needed to test LoadTimingInfo, which uses NetLog IDs as |
669 // unique socket IDs. | 682 // unique socket IDs. |
670 explicit MockClientSocket(const BoundNetLog& net_log); | 683 explicit MockClientSocket(const BoundNetLog& net_log); |
(...skipping 13 matching lines...) Expand all Loading... |
684 virtual void Disconnect() OVERRIDE; | 697 virtual void Disconnect() OVERRIDE; |
685 virtual bool IsConnected() const OVERRIDE; | 698 virtual bool IsConnected() const OVERRIDE; |
686 virtual bool IsConnectedAndIdle() const OVERRIDE; | 699 virtual bool IsConnectedAndIdle() const OVERRIDE; |
687 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; | 700 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; |
688 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; | 701 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; |
689 virtual const BoundNetLog& NetLog() const OVERRIDE; | 702 virtual const BoundNetLog& NetLog() const OVERRIDE; |
690 virtual void SetSubresourceSpeculation() OVERRIDE {} | 703 virtual void SetSubresourceSpeculation() OVERRIDE {} |
691 virtual void SetOmniboxSpeculation() OVERRIDE {} | 704 virtual void SetOmniboxSpeculation() OVERRIDE {} |
692 | 705 |
693 // SSLClientSocket implementation. | 706 // SSLClientSocket implementation. |
| 707 virtual bool InSessionCache() const OVERRIDE; |
| 708 virtual void SetHandshakeCompletionCallback(const base::Closure& cb) OVERRIDE; |
694 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) | 709 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) |
695 OVERRIDE; | 710 OVERRIDE; |
696 virtual int ExportKeyingMaterial(const base::StringPiece& label, | 711 virtual int ExportKeyingMaterial(const base::StringPiece& label, |
697 bool has_context, | 712 bool has_context, |
698 const base::StringPiece& context, | 713 const base::StringPiece& context, |
699 unsigned char* out, | 714 unsigned char* out, |
700 unsigned int outlen) OVERRIDE; | 715 unsigned int outlen) OVERRIDE; |
701 virtual int GetTLSUniqueChannelBinding(std::string* out) OVERRIDE; | 716 virtual int GetTLSUniqueChannelBinding(std::string* out) OVERRIDE; |
702 virtual NextProtoStatus GetNextProto(std::string* proto, | 717 virtual NextProtoStatus GetNextProto(std::string* proto, |
703 std::string* server_protos) OVERRIDE; | 718 std::string* server_protos) OVERRIDE; |
704 virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE; | 719 virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE; |
705 | 720 |
706 protected: | 721 protected: |
707 virtual ~MockClientSocket(); | 722 virtual ~MockClientSocket(); |
708 void RunCallbackAsync(const CompletionCallback& callback, int result); | 723 void RunCallbackAsync(const CompletionCallback& callback, int result); |
709 void RunCallback(const CompletionCallback& callback, int result); | 724 void RunCallback(const CompletionCallback& callback, int result); |
710 | 725 |
711 // SSLClientSocket implementation. | 726 // SSLClientSocket implementation. |
712 virtual scoped_refptr<X509Certificate> GetUnverifiedServerCertificateChain() | 727 virtual scoped_refptr<X509Certificate> GetUnverifiedServerCertificateChain() |
713 const OVERRIDE; | 728 const OVERRIDE; |
714 | 729 |
715 // True if Connect completed successfully and Disconnect hasn't been called. | 730 // True if Connect completed successfully and Disconnect hasn't been called. |
716 bool connected_; | 731 bool connected_; |
717 | 732 |
718 // Address of the "remote" peer we're connected to. | 733 // Address of the "remote" peer we're connected to. |
719 IPEndPoint peer_addr_; | 734 IPEndPoint peer_addr_; |
720 | 735 |
721 BoundNetLog net_log_; | 736 BoundNetLog net_log_; |
722 | 737 |
| 738 private: |
723 base::WeakPtrFactory<MockClientSocket> weak_factory_; | 739 base::WeakPtrFactory<MockClientSocket> weak_factory_; |
724 | 740 |
725 DISALLOW_COPY_AND_ASSIGN(MockClientSocket); | 741 DISALLOW_COPY_AND_ASSIGN(MockClientSocket); |
726 }; | 742 }; |
727 | 743 |
728 class MockTCPClientSocket : public MockClientSocket, public AsyncSocket { | 744 class MockTCPClientSocket : public MockClientSocket, public AsyncSocket { |
729 public: | 745 public: |
730 MockTCPClientSocket(const AddressList& addresses, | 746 MockTCPClientSocket(const AddressList& addresses, |
731 net::NetLog* net_log, | 747 net::NetLog* net_log, |
732 SocketDataProvider* socket); | 748 SocketDataProvider* socket); |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 virtual int Connect(const CompletionCallback& callback) OVERRIDE; | 959 virtual int Connect(const CompletionCallback& callback) OVERRIDE; |
944 virtual void Disconnect() OVERRIDE; | 960 virtual void Disconnect() OVERRIDE; |
945 virtual bool IsConnected() const OVERRIDE; | 961 virtual bool IsConnected() const OVERRIDE; |
946 virtual bool WasEverUsed() const OVERRIDE; | 962 virtual bool WasEverUsed() const OVERRIDE; |
947 virtual bool UsingTCPFastOpen() const OVERRIDE; | 963 virtual bool UsingTCPFastOpen() const OVERRIDE; |
948 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; | 964 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; |
949 virtual bool WasNpnNegotiated() const OVERRIDE; | 965 virtual bool WasNpnNegotiated() const OVERRIDE; |
950 virtual bool GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; | 966 virtual bool GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; |
951 | 967 |
952 // SSLClientSocket implementation. | 968 // SSLClientSocket implementation. |
| 969 virtual bool InSessionCache() const OVERRIDE; |
| 970 virtual void SetHandshakeCompletionCallback(const base::Closure& cb) OVERRIDE; |
953 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) | 971 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) |
954 OVERRIDE; | 972 OVERRIDE; |
955 virtual NextProtoStatus GetNextProto(std::string* proto, | 973 virtual NextProtoStatus GetNextProto(std::string* proto, |
956 std::string* server_protos) OVERRIDE; | 974 std::string* server_protos) OVERRIDE; |
957 virtual bool set_was_npn_negotiated(bool negotiated) OVERRIDE; | 975 virtual bool set_was_npn_negotiated(bool negotiated) OVERRIDE; |
958 virtual void set_protocol_negotiated(NextProto protocol_negotiated) OVERRIDE; | 976 virtual void set_protocol_negotiated(NextProto protocol_negotiated) OVERRIDE; |
959 virtual NextProto GetNegotiatedProtocol() const OVERRIDE; | 977 virtual NextProto GetNegotiatedProtocol() const OVERRIDE; |
960 | 978 |
961 // This MockSocket does not implement the manual async IO feature. | 979 // This MockSocket does not implement the manual async IO feature. |
962 virtual void OnReadComplete(const MockRead& data) OVERRIDE; | 980 virtual void OnReadComplete(const MockRead& data) OVERRIDE; |
963 virtual void OnConnectComplete(const MockConnect& data) OVERRIDE; | 981 virtual void OnConnectComplete(const MockConnect& data) OVERRIDE; |
964 | 982 |
965 virtual bool WasChannelIDSent() const OVERRIDE; | 983 virtual bool WasChannelIDSent() const OVERRIDE; |
966 virtual void set_channel_id_sent(bool channel_id_sent) OVERRIDE; | 984 virtual void set_channel_id_sent(bool channel_id_sent) OVERRIDE; |
967 virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE; | 985 virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE; |
968 | 986 |
| 987 // Resumes the connection of a socket that was paused for testing. |
| 988 // |connect_callback_| should be set before invoking this method. |
| 989 void RestartPausedConnect(); |
| 990 |
969 private: | 991 private: |
970 static void ConnectCallback(MockSSLClientSocket* ssl_client_socket, | 992 enum ConnectState { |
971 const CompletionCallback& callback, | 993 STATE_NONE, |
972 int rv); | 994 STATE_TRANSPORT_CONNECT, |
| 995 STATE_TRANSPORT_CONNECT_COMPLETE, |
| 996 STATE_SSL_CONNECT, |
| 997 STATE_SSL_CONNECT_COMPLETE, |
| 998 }; |
| 999 |
| 1000 void OnIOComplete(int result); |
| 1001 |
| 1002 // Runs the state transistion loop. |
| 1003 int DoConnectLoop(int result); |
| 1004 |
| 1005 int DoTransportConnect(); |
| 1006 int DoTransportConnectComplete(int result); |
| 1007 int DoSSLConnect(); |
| 1008 int DoSSLConnectComplete(int result); |
973 | 1009 |
974 scoped_ptr<ClientSocketHandle> transport_; | 1010 scoped_ptr<ClientSocketHandle> transport_; |
975 SSLSocketDataProvider* data_; | 1011 SSLSocketDataProvider* data_; |
976 bool is_npn_state_set_; | 1012 bool is_npn_state_set_; |
977 bool new_npn_value_; | 1013 bool new_npn_value_; |
978 bool is_protocol_negotiated_set_; | 1014 bool is_protocol_negotiated_set_; |
979 NextProto protocol_negotiated_; | 1015 NextProto protocol_negotiated_; |
980 | 1016 |
| 1017 CompletionCallback connect_callback_; |
| 1018 // Indicates what state of Connect the socket should enter. |
| 1019 ConnectState next_connect_state_; |
| 1020 |
| 1021 base::Closure handshake_completion_callback_; |
| 1022 |
| 1023 base::WeakPtrFactory<MockSSLClientSocket> weak_factory_; |
| 1024 |
981 DISALLOW_COPY_AND_ASSIGN(MockSSLClientSocket); | 1025 DISALLOW_COPY_AND_ASSIGN(MockSSLClientSocket); |
982 }; | 1026 }; |
983 | 1027 |
984 class MockUDPClientSocket : public DatagramClientSocket, public AsyncSocket { | 1028 class MockUDPClientSocket : public DatagramClientSocket, public AsyncSocket { |
985 public: | 1029 public: |
986 MockUDPClientSocket(SocketDataProvider* data, net::NetLog* net_log); | 1030 MockUDPClientSocket(SocketDataProvider* data, net::NetLog* net_log); |
987 virtual ~MockUDPClientSocket(); | 1031 virtual ~MockUDPClientSocket(); |
988 | 1032 |
989 // Socket implementation. | 1033 // Socket implementation. |
990 virtual int Read(IOBuffer* buf, | 1034 virtual int Read(IOBuffer* buf, |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 | 1329 |
1286 extern const char kSOCKS5OkRequest[]; | 1330 extern const char kSOCKS5OkRequest[]; |
1287 extern const int kSOCKS5OkRequestLength; | 1331 extern const int kSOCKS5OkRequestLength; |
1288 | 1332 |
1289 extern const char kSOCKS5OkResponse[]; | 1333 extern const char kSOCKS5OkResponse[]; |
1290 extern const int kSOCKS5OkResponseLength; | 1334 extern const int kSOCKS5OkResponseLength; |
1291 | 1335 |
1292 } // namespace net | 1336 } // namespace net |
1293 | 1337 |
1294 #endif // NET_SOCKET_SOCKET_TEST_UTIL_H_ | 1338 #endif // NET_SOCKET_SOCKET_TEST_UTIL_H_ |
OLD | NEW |