1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 #include "net/base/net_errors.h"
7 #include "remoting/base/rsa_key_pair.h"
8 #include "remoting/protocol/authenticator_test_base.h"
9 #include "remoting/protocol/channel_authenticator.h"
10 #include "remoting/protocol/connection_tester.h"
11 #include "remoting/protocol/fake_authenticator.h"
12 #include "remoting/protocol/third_party_authenticator_base.h"
13 #include "remoting/protocol/third_party_client_authenticator.h"
14 #include "remoting/protocol/third_party_host_authenticator.h"
15 #include "testing/gmock/include/gmock/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
20 using testing::DeleteArg
;
21 using testing::SaveArg
;
25 const int kMessageSize
= 100;
26 const int kMessages
= 1;
28 const char kTokenUrl
[] = "https://example.com/Issue";
29 const char kTokenScope
[] = "host:a@b.com/1 client:a@b.com/2";
30 const char kToken
[] = "abc123456xyz789";
31 const char kSharedSecret
[] = "1234-1234-5678";
32 const char kSharedSecretBad
[] = "0000-0000-0001";
39 class ThirdPartyAuthenticatorTest
: public AuthenticatorTestBase
{
40 class FakeTokenFetcher
: public ThirdPartyClientAuthenticator::TokenFetcher
{
42 virtual void FetchThirdPartyToken(
43 const GURL
& token_url
,
44 const std::string
& scope
,
45 const TokenFetchedCallback
& token_fetched_callback
) OVERRIDE
{
46 ASSERT_EQ(token_url
.spec(), kTokenUrl
);
47 ASSERT_EQ(scope
, kTokenScope
);
48 ASSERT_FALSE(token_fetched_callback
.is_null());
49 on_token_fetched_
= token_fetched_callback
;
52 void OnTokenFetched(const std::string
& token
,
53 const std::string
& shared_secret
) {
54 ASSERT_FALSE(on_token_fetched_
.is_null());
55 TokenFetchedCallback on_token_fetched
= on_token_fetched_
;
56 on_token_fetched_
.Reset();
57 on_token_fetched
.Run(token
, shared_secret
);
61 TokenFetchedCallback on_token_fetched_
;
64 class FakeTokenValidator
65 : public ThirdPartyHostAuthenticator::TokenValidator
{
68 : token_url_(kTokenUrl
),
69 token_scope_(kTokenScope
) {}
71 virtual ~FakeTokenValidator() {}
73 virtual void ValidateThirdPartyToken(
74 const std::string
& token
,
75 const TokenValidatedCallback
& token_validated_callback
) OVERRIDE
{
76 ASSERT_FALSE(token_validated_callback
.is_null());
77 on_token_validated_
= token_validated_callback
;
80 void OnTokenValidated(const std::string
& shared_secret
) {
81 ASSERT_FALSE(on_token_validated_
.is_null());
82 TokenValidatedCallback on_token_validated
= on_token_validated_
;
83 on_token_validated_
.Reset();
84 on_token_validated
.Run(shared_secret
);
87 virtual const GURL
& token_url() const OVERRIDE
{
91 virtual const std::string
& token_scope() const OVERRIDE
{
97 std::string token_scope_
;
98 base::Callback
<void(const std::string
& shared_secret
)> on_token_validated_
;
102 ThirdPartyAuthenticatorTest() {}
103 virtual ~ThirdPartyAuthenticatorTest() {}
106 void InitAuthenticators() {
107 scoped_ptr
<ThirdPartyHostAuthenticator::TokenValidator
>
108 token_validator(new FakeTokenValidator());
109 token_validator_
= static_cast<FakeTokenValidator
*>(token_validator
.get());
110 host_
.reset(new ThirdPartyHostAuthenticator(
111 host_cert_
, key_pair_
, token_validator
.Pass()));
112 scoped_ptr
<ThirdPartyClientAuthenticator::TokenFetcher
>
113 token_fetcher(new FakeTokenFetcher());
114 token_fetcher_
= static_cast<FakeTokenFetcher
*>(token_fetcher
.get());
115 client_
.reset(new ThirdPartyClientAuthenticator(token_fetcher
.Pass()));
118 FakeTokenFetcher
* token_fetcher_
;
119 FakeTokenValidator
* token_validator_
;
122 DISALLOW_COPY_AND_ASSIGN(ThirdPartyAuthenticatorTest
);
125 // These tests use net::SSLServerSocket which is not implemented for OpenSSL.
126 #if defined(USE_OPENSSL)
127 #define MAYBE(x) DISABLED_##x
132 TEST_F(ThirdPartyAuthenticatorTest
, MAYBE(SuccessfulAuth
)) {
133 ASSERT_NO_FATAL_FAILURE(InitAuthenticators());
134 ASSERT_NO_FATAL_FAILURE(RunHostInitiatedAuthExchange());
135 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, client_
->state());
136 ASSERT_NO_FATAL_FAILURE(token_fetcher_
->OnTokenFetched(
137 kToken
, kSharedSecret
));
138 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, host_
->state());
139 ASSERT_NO_FATAL_FAILURE(
140 token_validator_
->OnTokenValidated(kSharedSecret
));
142 // Both sides have finished.
143 ASSERT_EQ(Authenticator::ACCEPTED
, host_
->state());
144 ASSERT_EQ(Authenticator::ACCEPTED
, client_
->state());
146 // An authenticated channel can be created after the authentication.
147 client_auth_
= client_
->CreateChannelAuthenticator();
148 host_auth_
= host_
->CreateChannelAuthenticator();
149 RunChannelAuth(false);
151 StreamConnectionTester
tester(host_socket_
.get(), client_socket_
.get(),
152 kMessageSize
, kMessages
);
156 tester
.CheckResults();
159 TEST_F(ThirdPartyAuthenticatorTest
, MAYBE(ClientNoSecret
)) {
160 ASSERT_NO_FATAL_FAILURE(InitAuthenticators());
161 ASSERT_NO_FATAL_FAILURE(RunHostInitiatedAuthExchange());
162 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, client_
->state());
163 ASSERT_NO_FATAL_FAILURE(
164 token_fetcher_
->OnTokenFetched(kToken
, std::string()));
166 // The end result is that the client rejected the connection, since it
167 // couldn't fetch the secret.
168 ASSERT_EQ(Authenticator::REJECTED
, client_
->state());
171 TEST_F(ThirdPartyAuthenticatorTest
, MAYBE(InvalidToken
)) {
172 ASSERT_NO_FATAL_FAILURE(InitAuthenticators());
173 ASSERT_NO_FATAL_FAILURE(RunHostInitiatedAuthExchange());
174 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, client_
->state());
175 ASSERT_NO_FATAL_FAILURE(token_fetcher_
->OnTokenFetched(
176 kToken
, kSharedSecret
));
177 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, host_
->state());
178 ASSERT_NO_FATAL_FAILURE(token_validator_
->OnTokenValidated(std::string()));
180 // The end result is that the host rejected the token.
181 ASSERT_EQ(Authenticator::REJECTED
, host_
->state());
184 TEST_F(ThirdPartyAuthenticatorTest
, MAYBE(CannotFetchToken
)) {
185 ASSERT_NO_FATAL_FAILURE(InitAuthenticators());
186 ASSERT_NO_FATAL_FAILURE(RunHostInitiatedAuthExchange());
187 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, client_
->state());
188 ASSERT_NO_FATAL_FAILURE(
189 token_fetcher_
->OnTokenFetched(std::string(), std::string()));
191 // The end result is that the client rejected the connection, since it
192 // couldn't fetch the token.
193 ASSERT_EQ(Authenticator::REJECTED
, client_
->state());
196 // Test that negotiation stops when the fake authentication is rejected.
197 TEST_F(ThirdPartyAuthenticatorTest
, MAYBE(HostBadSecret
)) {
198 ASSERT_NO_FATAL_FAILURE(InitAuthenticators());
199 ASSERT_NO_FATAL_FAILURE(RunHostInitiatedAuthExchange());
200 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, client_
->state());
201 ASSERT_NO_FATAL_FAILURE(token_fetcher_
->OnTokenFetched(
202 kToken
, kSharedSecret
));
203 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, host_
->state());
204 ASSERT_NO_FATAL_FAILURE(
205 token_validator_
->OnTokenValidated(kSharedSecretBad
));
207 // The end result is that the host rejected the fake authentication.
208 ASSERT_EQ(Authenticator::REJECTED
, client_
->state());
211 TEST_F(ThirdPartyAuthenticatorTest
, MAYBE(ClientBadSecret
)) {
212 ASSERT_NO_FATAL_FAILURE(InitAuthenticators());
213 ASSERT_NO_FATAL_FAILURE(RunHostInitiatedAuthExchange());
214 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, client_
->state());
215 ASSERT_NO_FATAL_FAILURE(
216 token_fetcher_
->OnTokenFetched(kToken
, kSharedSecretBad
));
217 ASSERT_EQ(Authenticator::PROCESSING_MESSAGE
, host_
->state());
218 ASSERT_NO_FATAL_FAILURE(
219 token_validator_
->OnTokenValidated(kSharedSecret
));
221 // The end result is that the host rejected the fake authentication.
222 ASSERT_EQ(Authenticator::REJECTED
, client_
->state());
225 } // namespace protocol
226 } // namespace remoting