Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(798)

Side by Side Diff: chrome/browser/signin/signin_tracker_unittest.cc

Issue 1257623002: Componentize FakeSigninManager and SigninManager prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "components/signin/core/browser/signin_tracker.h" 5 #include "components/signin/core/browser/signin_tracker.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/chrome_notification_types.h" 10 #include "chrome/browser/chrome_notification_types.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/signin/account_tracker_service_factory.h" 12 #include "chrome/browser/signin/account_tracker_service_factory.h"
13 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" 13 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h"
14 #include "chrome/browser/signin/fake_signin_manager.h" 14 #include "chrome/browser/signin/fake_signin_manager_builder.h"
15 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 15 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
16 #include "chrome/browser/signin/signin_manager_factory.h" 16 #include "chrome/browser/signin/signin_manager_factory.h"
17 #include "chrome/browser/signin/signin_tracker_factory.h" 17 #include "chrome/browser/signin/signin_tracker_factory.h"
18 #include "chrome/browser/sync/profile_sync_service_factory.h" 18 #include "chrome/browser/sync/profile_sync_service_factory.h"
19 #include "chrome/browser/sync/profile_sync_service_mock.h" 19 #include "chrome/browser/sync/profile_sync_service_mock.h"
20 #include "chrome/test/base/testing_profile.h" 20 #include "chrome/test/base/testing_profile.h"
21 #include "components/signin/core/browser/account_tracker_service.h" 21 #include "components/signin/core/browser/account_tracker_service.h"
22 #include "components/signin/core/browser/fake_auth_status_provider.h" 22 #include "components/signin/core/browser/fake_auth_status_provider.h"
23 #include "components/signin/core/browser/fake_profile_oauth2_token_service.h" 23 #include "components/signin/core/browser/fake_profile_oauth2_token_service.h"
24 #include "components/signin/core/browser/profile_oauth2_token_service.h" 24 #include "components/signin/core/browser/profile_oauth2_token_service.h"
(...skipping 26 matching lines...) Expand all
51 } // namespace 51 } // namespace
52 52
53 class SigninTrackerTest : public testing::Test { 53 class SigninTrackerTest : public testing::Test {
54 public: 54 public:
55 SigninTrackerTest() {} 55 SigninTrackerTest() {}
56 void SetUp() override { 56 void SetUp() override {
57 TestingProfile::Builder builder; 57 TestingProfile::Builder builder;
58 builder.AddTestingFactory(ProfileOAuth2TokenServiceFactory::GetInstance(), 58 builder.AddTestingFactory(ProfileOAuth2TokenServiceFactory::GetInstance(),
59 BuildFakeProfileOAuth2TokenService); 59 BuildFakeProfileOAuth2TokenService);
60 builder.AddTestingFactory(SigninManagerFactory::GetInstance(), 60 builder.AddTestingFactory(SigninManagerFactory::GetInstance(),
61 FakeSigninManagerBase::Build); 61 BuildFakeSigninManagerBase);
62 profile_ = builder.Build(); 62 profile_ = builder.Build();
63 63
64 fake_oauth2_token_service_ = 64 fake_oauth2_token_service_ =
65 static_cast<FakeProfileOAuth2TokenService*>( 65 static_cast<FakeProfileOAuth2TokenService*>(
66 ProfileOAuth2TokenServiceFactory::GetForProfile(profile_.get())); 66 ProfileOAuth2TokenServiceFactory::GetForProfile(profile_.get()));
67 67
68 mock_signin_manager_ = static_cast<FakeSigninManagerForTesting*>( 68 mock_signin_manager_ = static_cast<FakeSigninManagerForTesting*>(
69 SigninManagerFactory::GetForProfile(profile_.get())); 69 SigninManagerFactory::GetForProfile(profile_.get()));
70 70
71 tracker_ = 71 tracker_ =
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 AccountTrackerService* service = 115 AccountTrackerService* service =
116 AccountTrackerServiceFactory::GetForProfile(profile_.get()); 116 AccountTrackerServiceFactory::GetForProfile(profile_.get());
117 std::string gaia_id = "gaia_id"; 117 std::string gaia_id = "gaia_id";
118 std::string email = "user@gmail.com"; 118 std::string email = "user@gmail.com";
119 std::string account_id = service->SeedAccountInfo(gaia_id, email); 119 std::string account_id = service->SeedAccountInfo(gaia_id, email);
120 120
121 mock_signin_manager_->SetAuthenticatedAccountInfo(gaia_id, email); 121 mock_signin_manager_->SetAuthenticatedAccountInfo(gaia_id, email);
122 fake_oauth2_token_service_->UpdateCredentials(account_id, "refresh_token"); 122 fake_oauth2_token_service_->UpdateCredentials(account_id, "refresh_token");
123 } 123 }
OLDNEW
« no previous file with comments | « chrome/browser/signin/signin_manager_factory.cc ('k') | chrome/browser/sync/profile_sync_service_startup_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698