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 "chrome/browser/ui/webui/sync_setup_handler.h" | 5 #include "chrome/browser/ui/webui/sync_setup_handler.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/json/json_writer.h" | 10 #include "base/json/json_writer.h" |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 virtual Profile* GetProfile() const OVERRIDE { return profile_; } | 334 virtual Profile* GetProfile() const OVERRIDE { return profile_; } |
335 | 335 |
336 private: | 336 private: |
337 // Weak pointer to parent profile. | 337 // Weak pointer to parent profile. |
338 Profile* profile_; | 338 Profile* profile_; |
339 DISALLOW_COPY_AND_ASSIGN(TestingSyncSetupHandler); | 339 DISALLOW_COPY_AND_ASSIGN(TestingSyncSetupHandler); |
340 }; | 340 }; |
341 | 341 |
342 class SigninManagerMock : public FakeSigninManager { | 342 class SigninManagerMock : public FakeSigninManager { |
343 public: | 343 public: |
344 SigninManagerMock() {} | 344 explicit SigninManagerMock(Profile* profile) : FakeSigninManager(profile) {} |
345 MOCK_CONST_METHOD1(IsAllowedUsername, bool(const std::string& username)); | 345 MOCK_CONST_METHOD1(IsAllowedUsername, bool(const std::string& username)); |
346 }; | 346 }; |
347 | 347 |
348 static ProfileKeyedService* BuildSigninManagerMock(Profile* profile) { | 348 static ProfileKeyedService* BuildSigninManagerMock(Profile* profile) { |
349 return new SigninManagerMock(); | 349 return new SigninManagerMock(profile); |
350 } | 350 } |
351 | 351 |
352 // The boolean parameter indicates whether the test is run with ClientOAuth | 352 // The boolean parameter indicates whether the test is run with ClientOAuth |
353 // or not. | 353 // or not. |
354 class SyncSetupHandlerTest : public testing::TestWithParam<bool> { | 354 class SyncSetupHandlerTest : public testing::TestWithParam<bool> { |
355 public: | 355 public: |
356 SyncSetupHandlerTest() : error_(GoogleServiceAuthError::NONE) {} | 356 SyncSetupHandlerTest() : error_(GoogleServiceAuthError::NONE) {} |
357 virtual void SetUp() OVERRIDE { | 357 virtual void SetUp() OVERRIDE { |
358 // If the parameter is true, then use ClientOAuth for the tests. Otherwise | 358 // If the parameter is true, then use ClientOAuth for the tests. Otherwise |
359 // use ClientLogin for the tests. | 359 // use ClientLogin for the tests. |
360 if (GetParam()) { | 360 if (GetParam()) { |
361 ASSERT_FALSE(CommandLine::ForCurrentProcess()->HasSwitch( | 361 ASSERT_FALSE(CommandLine::ForCurrentProcess()->HasSwitch( |
362 switches::kDisableClientOAuthSignin)); | 362 switches::kDisableClientOAuthSignin)); |
363 } else { | 363 } else { |
364 CommandLine::ForCurrentProcess()->AppendSwitch( | 364 CommandLine::ForCurrentProcess()->AppendSwitch( |
365 switches::kDisableClientOAuthSignin); | 365 switches::kDisableClientOAuthSignin); |
366 } | 366 } |
367 | 367 |
368 error_ = GoogleServiceAuthError::None(); | 368 error_ = GoogleServiceAuthError::None(); |
369 profile_.reset(ProfileSyncServiceMock::MakeSignedInTestingProfile()); | 369 profile_.reset(ProfileSyncServiceMock::MakeSignedInTestingProfile()); |
370 SyncPromoUI::RegisterUserPrefs(profile_->GetPrefs()); | |
371 mock_pss_ = static_cast<ProfileSyncServiceMock*>( | 370 mock_pss_ = static_cast<ProfileSyncServiceMock*>( |
372 ProfileSyncServiceFactory::GetInstance()->SetTestingFactoryAndUse( | 371 ProfileSyncServiceFactory::GetInstance()->SetTestingFactoryAndUse( |
373 profile_.get(), | 372 profile_.get(), |
374 ProfileSyncServiceMock::BuildMockProfileSyncService)); | 373 ProfileSyncServiceMock::BuildMockProfileSyncService)); |
375 mock_signin_ = static_cast<SigninManagerMock*>( | 374 mock_signin_ = static_cast<SigninManagerMock*>( |
376 SigninManagerFactory::GetInstance()->SetTestingFactoryAndUse( | 375 SigninManagerFactory::GetInstance()->SetTestingFactoryAndUse( |
377 profile_.get(), BuildSigninManagerMock)); | 376 profile_.get(), BuildSigninManagerMock)); |
378 handler_.reset(new TestingSyncSetupHandler(&web_ui_, profile_.get())); | 377 handler_.reset(new TestingSyncSetupHandler(&web_ui_, profile_.get())); |
379 } | 378 } |
380 | 379 |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1153 CheckShowSyncSetupArgs( | 1152 CheckShowSyncSetupArgs( |
1154 dictionary, err, false, GoogleServiceAuthError::NONE, "", true, ""); | 1153 dictionary, err, false, GoogleServiceAuthError::NONE, "", true, ""); |
1155 handler_->CloseSyncSetup(); | 1154 handler_->CloseSyncSetup(); |
1156 EXPECT_EQ(NULL, | 1155 EXPECT_EQ(NULL, |
1157 LoginUIServiceFactory::GetForProfile( | 1156 LoginUIServiceFactory::GetForProfile( |
1158 profile_.get())->current_login_ui()); | 1157 profile_.get())->current_login_ui()); |
1159 } | 1158 } |
1160 | 1159 |
1161 INSTANTIATE_TEST_CASE_P(SyncSetupHandlerTest, SyncSetupHandlerTest, | 1160 INSTANTIATE_TEST_CASE_P(SyncSetupHandlerTest, SyncSetupHandlerTest, |
1162 Values(true, false)); | 1161 Values(true, false)); |
OLD | NEW |