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 #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" |
(...skipping 27 matching lines...) Expand all Loading... |
38 | 38 |
39 namespace { | 39 namespace { |
40 | 40 |
41 class MockObserver : public SigninTracker::Observer { | 41 class MockObserver : public SigninTracker::Observer { |
42 public: | 42 public: |
43 MockObserver() {} | 43 MockObserver() {} |
44 ~MockObserver() {} | 44 ~MockObserver() {} |
45 | 45 |
46 MOCK_METHOD1(SigninFailed, void(const GoogleServiceAuthError&)); | 46 MOCK_METHOD1(SigninFailed, void(const GoogleServiceAuthError&)); |
47 MOCK_METHOD0(SigninSuccess, void(void)); | 47 MOCK_METHOD0(SigninSuccess, void(void)); |
48 MOCK_METHOD1(MergeSessionComplete, void(const GoogleServiceAuthError&)); | 48 MOCK_METHOD1(AccountAddedToCookie, void(const GoogleServiceAuthError&)); |
49 }; | 49 }; |
50 | 50 |
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(), |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_->IssueRefreshTokenForUser(account_id, | 122 fake_oauth2_token_service_->IssueRefreshTokenForUser(account_id, |
123 "refresh_token"); | 123 "refresh_token"); |
124 } | 124 } |
OLD | NEW |