1 // Copyright 2014 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 COMPONENTS_SIGNIN_CORE_BROWSER_TEST_SIGNIN_CLIENT_H_
6 #define COMPONENTS_SIGNIN_CORE_BROWSER_TEST_SIGNIN_CLIENT_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/files/scoped_temp_dir.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "components/signin/core/browser/signin_client.h"
14 #include "net/url_request/url_request_test_util.h"
17 #include "ios/public/test/fake_profile_oauth2_token_service_ios_provider.h"
22 // An implementation of SigninClient for use in unittests. Instantiates test
23 // versions of the various objects that SigninClient is required to provide as
24 // part of its interface.
25 class TestSigninClient
: public SigninClient
{
28 TestSigninClient(PrefService
* pref_service
);
29 virtual ~TestSigninClient();
31 // SigninClient implementation that is specialized for unit tests.
34 // NOTE: This should be changed to return a properly-initalized PrefService
35 // once there is a unit test that requires it.
36 virtual PrefService
* GetPrefs() OVERRIDE
;
38 // Returns a pointer to a loaded database.
39 virtual scoped_refptr
<TokenWebData
> GetDatabase() OVERRIDE
;
42 virtual bool CanRevokeCredentials() OVERRIDE
;
44 // Returns empty string.
45 virtual std::string
GetSigninScopedDeviceId() OVERRIDE
;
48 virtual void ClearSigninScopedDeviceId() OVERRIDE
;
50 // Returns the empty string.
51 virtual std::string
GetProductVersion() OVERRIDE
;
53 // Returns a TestURLRequestContextGetter or an manually provided
54 // URLRequestContextGetter.
55 virtual net::URLRequestContextGetter
* GetURLRequestContext() OVERRIDE
;
57 // For testing purposes, can override the TestURLRequestContextGetter created
58 // in the default constructor.
59 void SetURLRequestContext(net::URLRequestContextGetter
* request_context
);
62 virtual ios::ProfileOAuth2TokenServiceIOSProvider
* GetIOSProvider() OVERRIDE
;
66 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE
;
69 virtual scoped_ptr
<CookieChangedCallbackList::Subscription
>
70 AddCookieChangedCallback(const CookieChangedCallback
& callback
) OVERRIDE
;
73 ios::FakeProfileOAuth2TokenServiceIOSProvider
* GetIOSProviderAsFake();
76 // SigninClient overrides:
77 virtual void SetSigninProcess(int host_id
) OVERRIDE
;
78 virtual void ClearSigninProcess() OVERRIDE
;
79 virtual bool IsSigninProcess(int host_id
) const OVERRIDE
;
80 virtual bool HasSigninProcess() const OVERRIDE
;
81 virtual bool IsFirstRun() const OVERRIDE
;
82 virtual base::Time
GetInstallDate() OVERRIDE
;
85 // Loads the token database.
88 base::ScopedTempDir temp_dir_
;
89 scoped_refptr
<net::URLRequestContextGetter
> request_context_
;
90 scoped_refptr
<TokenWebData
> database_
;
92 CookieChangedCallbackList cookie_callbacks_
;
94 PrefService
* pref_service_
;
97 scoped_ptr
<ios::FakeProfileOAuth2TokenServiceIOSProvider
> iosProvider_
;
100 DISALLOW_COPY_AND_ASSIGN(TestSigninClient
);
103 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_TEST_SIGNIN_CLIENT_H_