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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SIGNIN_FAKE_SIGNIN_MANAGER_H_
6 #define CHROME_BROWSER_SIGNIN_FAKE_SIGNIN_MANAGER_H_
10 #include "base/compiler_specific.h"
11 #include "components/signin/core/browser/signin_manager.h"
12 #include "components/signin/core/browser/signin_metrics.h"
20 // SigninManager to use for testing. Tests should use the type
21 // SigninManagerForTesting to ensure that the right type for their platform is
24 // Overrides InitTokenService to do-nothing in tests.
25 class FakeSigninManagerBase
: public SigninManagerBase
{
27 explicit FakeSigninManagerBase(Profile
* profile
);
28 ~FakeSigninManagerBase() override
;
30 // Helper function to be used with
31 // KeyedService::SetTestingFactory(). In order to match
32 // the API of SigninManagerFactory::GetForProfile(), returns a
33 // FakeSigninManagerBase* on ChromeOS, and a FakeSigninManager* on all other
34 // platforms. The returned instance is initialized.
35 static KeyedService
* Build(content::BrowserContext
* context
);
38 #if !defined(OS_CHROMEOS)
40 // A signin manager that bypasses actual authentication routines with servers
41 // and accepts the credentials provided to StartSignIn.
42 class FakeSigninManager
: public SigninManager
{
44 explicit FakeSigninManager(Profile
* profile
);
45 ~FakeSigninManager() override
;
47 void set_auth_in_progress(const std::string
& account_id
) {
48 possibly_invalid_account_id_
= account_id
;
51 void set_password(const std::string
& password
) { password_
= password
; }
53 void SignIn(const std::string
& account_id
,
54 const std::string
& username
,
55 const std::string
& password
);
57 void FailSignin(const GoogleServiceAuthError
& error
);
59 void StartSignInWithRefreshToken(
60 const std::string
& refresh_token
,
61 const std::string
& gaia_id
,
62 const std::string
& username
,
63 const std::string
& password
,
64 const OAuthTokenFetchedCallback
& oauth_fetched_callback
) override
;
66 void SignOut(signin_metrics::ProfileSignout signout_source_metric
) override
;
68 void CompletePendingSignin() override
;
70 // Username specified in StartSignInWithRefreshToken() call.
71 std::string username_
;
74 #endif // !defined (OS_CHROMEOS)
76 #if defined(OS_CHROMEOS)
77 typedef FakeSigninManagerBase FakeSigninManagerForTesting
;
79 typedef FakeSigninManager FakeSigninManagerForTesting
;
82 #endif // CHROME_BROWSER_SIGNIN_FAKE_SIGNIN_MANAGER_H_