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 REMOTING_PROTOCOL_AUTHENTICATOR_TEST_BASE_H_ | 5 #ifndef REMOTING_PROTOCOL_AUTHENTICATOR_TEST_BASE_H_ |
6 #define REMOTING_PROTOCOL_AUTHENTICATOR_TEST_BASE_H_ | 6 #define REMOTING_PROTOCOL_AUTHENTICATOR_TEST_BASE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 protected: | 35 protected: |
36 class MockChannelDoneCallback { | 36 class MockChannelDoneCallback { |
37 public: | 37 public: |
38 MockChannelDoneCallback(); | 38 MockChannelDoneCallback(); |
39 ~MockChannelDoneCallback(); | 39 ~MockChannelDoneCallback(); |
40 MOCK_METHOD1(OnDone, void(net::Error error)); | 40 MOCK_METHOD1(OnDone, void(net::Error error)); |
41 }; | 41 }; |
42 | 42 |
43 virtual void SetUp() OVERRIDE; | 43 virtual void SetUp() OVERRIDE; |
44 void RunAuthExchange(); | 44 void RunAuthExchange(); |
| 45 void RunAuthExchangeStep(Authenticator* sender, Authenticator* receiver); |
45 void RunChannelAuth(bool expected_fail); | 46 void RunChannelAuth(bool expected_fail); |
46 | 47 |
47 void OnHostConnected(net::Error error, | 48 void OnHostConnected(net::Error error, |
48 scoped_ptr<net::StreamSocket> socket); | 49 scoped_ptr<net::StreamSocket> socket); |
49 void OnClientConnected(net::Error error, | 50 void OnClientConnected(net::Error error, |
50 scoped_ptr<net::StreamSocket> socket); | 51 scoped_ptr<net::StreamSocket> socket); |
51 | 52 |
52 MessageLoop message_loop_; | 53 MessageLoop message_loop_; |
53 | 54 |
54 scoped_refptr<RsaKeyPair> key_pair_; | 55 scoped_refptr<RsaKeyPair> key_pair_; |
55 std::string host_cert_; | 56 std::string host_cert_; |
56 scoped_ptr<Authenticator> host_; | 57 scoped_ptr<Authenticator> host_; |
57 scoped_ptr<Authenticator> client_; | 58 scoped_ptr<Authenticator> client_; |
58 scoped_ptr<FakeSocket> client_fake_socket_; | 59 scoped_ptr<FakeSocket> client_fake_socket_; |
59 scoped_ptr<FakeSocket> host_fake_socket_; | 60 scoped_ptr<FakeSocket> host_fake_socket_; |
60 scoped_ptr<ChannelAuthenticator> client_auth_; | 61 scoped_ptr<ChannelAuthenticator> client_auth_; |
61 scoped_ptr<ChannelAuthenticator> host_auth_; | 62 scoped_ptr<ChannelAuthenticator> host_auth_; |
62 MockChannelDoneCallback client_callback_; | 63 MockChannelDoneCallback client_callback_; |
63 MockChannelDoneCallback host_callback_; | 64 MockChannelDoneCallback host_callback_; |
64 scoped_ptr<net::StreamSocket> client_socket_; | 65 scoped_ptr<net::StreamSocket> client_socket_; |
65 scoped_ptr<net::StreamSocket> host_socket_; | 66 scoped_ptr<net::StreamSocket> host_socket_; |
66 | 67 |
67 DISALLOW_COPY_AND_ASSIGN(AuthenticatorTestBase); | 68 DISALLOW_COPY_AND_ASSIGN(AuthenticatorTestBase); |
68 }; | 69 }; |
69 | 70 |
70 } // namespace protocol | 71 } // namespace protocol |
71 } // namespace remoting | 72 } // namespace remoting |
72 | 73 |
73 #endif // REMOTING_PROTOCOL_AUTHENTICATOR_TEST_BASE_H_ | 74 #endif // REMOTING_PROTOCOL_AUTHENTICATOR_TEST_BASE_H_ |
OLD | NEW |