| 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
| 10 #include "chrome/browser/signin/signin_manager.h" | 10 #include "chrome/browser/signin/signin_manager.h" |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 SigninManager* signin = SigninManagerFactory::GetForProfile(profile); | 144 SigninManager* signin = SigninManagerFactory::GetForProfile(profile); |
| 145 signin->SetAuthenticatedUsername("test_user"); | 145 signin->SetAuthenticatedUsername("test_user"); |
| 146 return new TestProfileSyncService( | 146 return new TestProfileSyncService( |
| 147 new ProfileSyncComponentsFactoryMock(), | 147 new ProfileSyncComponentsFactoryMock(), |
| 148 profile, | 148 profile, |
| 149 signin, | 149 signin, |
| 150 ProfileSyncService::AUTO_START, | 150 ProfileSyncService::AUTO_START, |
| 151 true); | 151 true); |
| 152 } | 152 } |
| 153 protected: | 153 protected: |
| 154 virtual void CreateSyncService() { | 154 virtual void CreateSyncService() OVERRIDE { |
| 155 sync_ = static_cast<TestProfileSyncService*>( | 155 sync_ = static_cast<TestProfileSyncService*>( |
| 156 ProfileSyncServiceFactory::GetInstance()->SetTestingFactoryAndUse( | 156 ProfileSyncServiceFactory::GetInstance()->SetTestingFactoryAndUse( |
| 157 profile_.get(), BuildCrosService)); | 157 profile_.get(), BuildCrosService)); |
| 158 } | 158 } |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 TEST_F(ProfileSyncServiceStartupTest, StartFirstTime) { | 161 TEST_F(ProfileSyncServiceStartupTest, StartFirstTime) { |
| 162 DataTypeManagerMock* data_type_manager = SetUpDataTypeManager(); | 162 DataTypeManagerMock* data_type_manager = SetUpDataTypeManager(); |
| 163 EXPECT_CALL(*data_type_manager, Configure(_, _)).Times(0); | 163 EXPECT_CALL(*data_type_manager, Configure(_, _)).Times(0); |
| 164 | 164 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 464 |
| 465 // Preload the tokens. | 465 // Preload the tokens. |
| 466 TokenServiceFactory::GetForProfile(profile_.get())->IssueAuthTokenForTest( | 466 TokenServiceFactory::GetForProfile(profile_.get())->IssueAuthTokenForTest( |
| 467 GaiaConstants::kSyncService, "sync_token"); | 467 GaiaConstants::kSyncService, "sync_token"); |
| 468 sync_->fail_initial_download(); | 468 sync_->fail_initial_download(); |
| 469 | 469 |
| 470 sync_->Initialize(); | 470 sync_->Initialize(); |
| 471 EXPECT_FALSE(sync_->sync_initialized()); | 471 EXPECT_FALSE(sync_->sync_initialized()); |
| 472 EXPECT_FALSE(sync_->GetBackendForTest()); | 472 EXPECT_FALSE(sync_->GetBackendForTest()); |
| 473 } | 473 } |
| OLD | NEW |