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" |
11 #include "base/prefs/testing_pref_service.h" | 11 #include "base/prefs/testing_pref_service.h" |
12 #include "base/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
13 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
14 #include "chrome/browser/prefs/browser_prefs.h" | 14 #include "chrome/browser/prefs/browser_prefs.h" |
15 #include "chrome/browser/signin/chrome_signin_manager_delegate.h" | 15 #include "chrome/browser/signin/chrome_signin_manager_delegate.h" |
16 #include "chrome/browser/signin/token_service.h" | 16 #include "chrome/browser/signin/token_service.h" |
17 #include "chrome/browser/signin/token_service_unittest.h" | 17 #include "chrome/browser/signin/token_service_unittest.h" |
18 #include "chrome/common/chrome_notification_types.h" | 18 #include "chrome/common/chrome_notification_types.h" |
19 #include "chrome/common/pref_names.h" | 19 #include "chrome/common/pref_names.h" |
20 #include "chrome/common/url_constants.h" | 20 #include "chrome/common/url_constants.h" |
21 #include "chrome/test/base/testing_browser_process.h" | 21 #include "chrome/test/base/testing_browser_process.h" |
22 #include "chrome/test/base/testing_profile.h" | 22 #include "chrome/test/base/testing_profile.h" |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 TEST_F(SigninManagerTest, ProhibitedAfterStartup) { | 651 TEST_F(SigninManagerTest, ProhibitedAfterStartup) { |
652 std::string user("monkey@invalid.com"); | 652 std::string user("monkey@invalid.com"); |
653 profile_->GetPrefs()->SetString(prefs::kGoogleServicesUsername, user); | 653 profile_->GetPrefs()->SetString(prefs::kGoogleServicesUsername, user); |
654 manager_->Initialize(profile_.get(), g_browser_process->local_state()); | 654 manager_->Initialize(profile_.get(), g_browser_process->local_state()); |
655 EXPECT_EQ(user, manager_->GetAuthenticatedUsername()); | 655 EXPECT_EQ(user, manager_->GetAuthenticatedUsername()); |
656 // Update the profile - user should be signed out. | 656 // Update the profile - user should be signed out. |
657 g_browser_process->local_state()->SetString( | 657 g_browser_process->local_state()->SetString( |
658 prefs::kGoogleServicesUsernamePattern, ".*@google.com"); | 658 prefs::kGoogleServicesUsernamePattern, ".*@google.com"); |
659 EXPECT_EQ("", manager_->GetAuthenticatedUsername()); | 659 EXPECT_EQ("", manager_->GetAuthenticatedUsername()); |
660 } | 660 } |
OLD | NEW |