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/signin/signin_manager.h" | 5 #include "chrome/browser/signin/signin_manager.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 "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 | 647 |
648 manager_->ProvideOAuthChallengeResponse( | 648 manager_->ProvideOAuthChallengeResponse( |
649 GoogleServiceAuthError::CAPTCHA_REQUIRED, "token", "solution"); | 649 GoogleServiceAuthError::CAPTCHA_REQUIRED, "token", "solution"); |
650 | 650 |
651 SimulateProvideOAuthChallengeResponseValid(); | 651 SimulateProvideOAuthChallengeResponseValid(); |
652 EXPECT_EQ("user@gmail.com", manager_->GetAuthenticatedUsername()); | 652 EXPECT_EQ("user@gmail.com", manager_->GetAuthenticatedUsername()); |
653 | 653 |
654 EXPECT_EQ(1U, google_login_success_.size()); | 654 EXPECT_EQ(1U, google_login_success_.size()); |
655 EXPECT_EQ(1U, google_login_failure_.size()); | 655 EXPECT_EQ(1U, google_login_failure_.size()); |
656 } | 656 } |
| 657 |
| 658 TEST_F(SigninManagerTest, SignOutWhileProhibited) { |
| 659 manager_->Initialize(profile_.get()); |
| 660 EXPECT_TRUE(manager_->GetAuthenticatedUsername().empty()); |
| 661 |
| 662 manager_->SetAuthenticatedUsername("user@gmail.com"); |
| 663 manager_->ProhibitSignout(); |
| 664 manager_->SignOut(); |
| 665 EXPECT_FALSE(manager_->GetAuthenticatedUsername().empty()); |
| 666 } |
OLD | NEW |