| 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" |
| 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/fake_profile_oauth2_token_service.h" | 13 #include "chrome/browser/signin/fake_profile_oauth2_token_service.h" |
| 13 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" | 14 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" |
| 14 #include "chrome/browser/signin/fake_signin_manager.h" | 15 #include "chrome/browser/signin/fake_signin_manager.h" |
| 15 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" | 16 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" |
| 16 #include "chrome/browser/signin/signin_manager_factory.h" | 17 #include "chrome/browser/signin/signin_manager_factory.h" |
| 17 #include "chrome/browser/signin/signin_tracker_factory.h" | 18 #include "chrome/browser/signin/signin_tracker_factory.h" |
| 18 #include "chrome/browser/sync/profile_sync_service_factory.h" | 19 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 19 #include "chrome/browser/sync/profile_sync_service_mock.h" | 20 #include "chrome/browser/sync/profile_sync_service_mock.h" |
| 20 #include "chrome/test/base/testing_profile.h" | 21 #include "chrome/test/base/testing_profile.h" |
| 22 #include "components/signin/core/browser/account_tracker_service.h" |
| 21 #include "components/signin/core/browser/fake_auth_status_provider.h" | 23 #include "components/signin/core/browser/fake_auth_status_provider.h" |
| 22 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 24 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 23 #include "components/signin/core/browser/signin_manager.h" | 25 #include "components/signin/core/browser/signin_manager.h" |
| 24 #include "content/public/test/test_browser_thread_bundle.h" | 26 #include "content/public/test/test_browser_thread_bundle.h" |
| 25 #include "google_apis/gaia/gaia_constants.h" | 27 #include "google_apis/gaia/gaia_constants.h" |
| 26 #include "google_apis/gaia/google_service_auth_error.h" | 28 #include "google_apis/gaia/google_service_auth_error.h" |
| 27 | 29 |
| 28 #include "testing/gmock/include/gmock/gmock.h" | 30 #include "testing/gmock/include/gmock/gmock.h" |
| 29 #include "testing/gtest/include/gtest/gtest.h" | 31 #include "testing/gtest/include/gtest/gtest.h" |
| 30 | 32 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 fake_oauth2_token_service_ = | 64 fake_oauth2_token_service_ = |
| 63 static_cast<FakeProfileOAuth2TokenService*>( | 65 static_cast<FakeProfileOAuth2TokenService*>( |
| 64 ProfileOAuth2TokenServiceFactory::GetForProfile(profile_.get())); | 66 ProfileOAuth2TokenServiceFactory::GetForProfile(profile_.get())); |
| 65 | 67 |
| 66 mock_signin_manager_ = static_cast<FakeSigninManagerForTesting*>( | 68 mock_signin_manager_ = static_cast<FakeSigninManagerForTesting*>( |
| 67 SigninManagerFactory::GetForProfile(profile_.get())); | 69 SigninManagerFactory::GetForProfile(profile_.get())); |
| 68 | 70 |
| 69 tracker_ = | 71 tracker_ = |
| 70 SigninTrackerFactory::CreateForProfile(profile_.get(), &observer_); | 72 SigninTrackerFactory::CreateForProfile(profile_.get(), &observer_); |
| 71 } | 73 } |
| 74 |
| 72 void TearDown() override { | 75 void TearDown() override { |
| 73 tracker_.reset(); | 76 tracker_.reset(); |
| 74 profile_.reset(); | 77 profile_.reset(); |
| 75 } | 78 } |
| 76 | 79 |
| 80 // Seed the account tracker with information from logged in user. Normally |
| 81 // this is done by UI code before calling SigninManager. Returns the string |
| 82 // to use as the account_id. |
| 83 std::string AddToAccountTracker(const std::string& gaia_id, |
| 84 const std::string& email) { |
| 85 AccountTrackerService* service = |
| 86 AccountTrackerServiceFactory::GetForProfile(profile_.get()); |
| 87 return service->SeedAccountInfo(gaia_id, email); |
| 88 } |
| 89 |
| 77 content::TestBrowserThreadBundle thread_bundle_; | 90 content::TestBrowserThreadBundle thread_bundle_; |
| 78 scoped_ptr<SigninTracker> tracker_; | 91 scoped_ptr<SigninTracker> tracker_; |
| 79 scoped_ptr<TestingProfile> profile_; | 92 scoped_ptr<TestingProfile> profile_; |
| 80 FakeSigninManagerForTesting* mock_signin_manager_; | 93 FakeSigninManagerForTesting* mock_signin_manager_; |
| 81 FakeProfileOAuth2TokenService* fake_oauth2_token_service_; | 94 FakeProfileOAuth2TokenService* fake_oauth2_token_service_; |
| 82 MockObserver observer_; | 95 MockObserver observer_; |
| 83 }; | 96 }; |
| 84 | 97 |
| 85 #if !defined(OS_CHROMEOS) | 98 #if !defined(OS_CHROMEOS) |
| 86 TEST_F(SigninTrackerTest, SignInFails) { | 99 TEST_F(SigninTrackerTest, SignInFails) { |
| 87 const GoogleServiceAuthError error( | 100 const GoogleServiceAuthError error( |
| 88 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); | 101 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS); |
| 89 | 102 |
| 90 // Signin failure should result in a SigninFailed callback. | 103 // Signin failure should result in a SigninFailed callback. |
| 91 EXPECT_CALL(observer_, SigninSuccess()).Times(0); | 104 EXPECT_CALL(observer_, SigninSuccess()).Times(0); |
| 92 EXPECT_CALL(observer_, SigninFailed(error)); | 105 EXPECT_CALL(observer_, SigninFailed(error)); |
| 93 | 106 |
| 94 mock_signin_manager_->FailSignin(error); | 107 mock_signin_manager_->FailSignin(error); |
| 95 } | 108 } |
| 96 #endif // !defined(OS_CHROMEOS) | 109 #endif // !defined(OS_CHROMEOS) |
| 97 | 110 |
| 98 TEST_F(SigninTrackerTest, SignInSucceeds) { | 111 TEST_F(SigninTrackerTest, SignInSucceeds) { |
| 99 EXPECT_CALL(observer_, SigninSuccess()); | 112 EXPECT_CALL(observer_, SigninSuccess()); |
| 100 EXPECT_CALL(observer_, SigninFailed(_)).Times(0); | 113 EXPECT_CALL(observer_, SigninFailed(_)).Times(0); |
| 101 | 114 |
| 102 mock_signin_manager_->SetAuthenticatedUsername("user@gmail.com"); | 115 AccountTrackerService* service = |
| 103 fake_oauth2_token_service_->IssueRefreshTokenForUser( | 116 AccountTrackerServiceFactory::GetForProfile(profile_.get()); |
| 104 "user@gmail.com", "refresh_token"); | 117 std::string gaia_id = "gaia_id"; |
| 118 std::string email = "user@gmail.com"; |
| 119 std::string account_id = service->SeedAccountInfo(gaia_id, email); |
| 120 |
| 121 mock_signin_manager_->SetAuthenticatedAccountInfo(gaia_id, email); |
| 122 fake_oauth2_token_service_->IssueRefreshTokenForUser(account_id, |
| 123 "refresh_token"); |
| 105 } | 124 } |
| OLD | NEW |