| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/chrome_notification_types.h" | 8 #include "chrome/browser/chrome_notification_types.h" |
| 9 #include "chrome/browser/profiles/profile_manager.h" | 9 #include "chrome/browser/profiles/profile_manager.h" |
| 10 #include "chrome/browser/profiles/profiles_state.h" | 10 #include "chrome/browser/profiles/profiles_state.h" |
| 11 #include "chrome/browser/ui/browser_dialogs.h" | 11 #include "chrome/browser/ui/browser_dialogs.h" |
| 12 #include "chrome/browser/ui/browser_list.h" | 12 #include "chrome/browser/ui/browser_list.h" |
| 13 #include "chrome/browser/ui/views/frame/browser_view.h" | 13 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 14 #include "chrome/browser/ui/views/profiles/avatar_menu_button.h" | 14 #include "chrome/browser/ui/views/profiles/avatar_menu_button.h" |
| 15 #include "chrome/browser/ui/views/profiles/new_avatar_button.h" | 15 #include "chrome/browser/ui/views/profiles/new_avatar_button.h" |
| 16 #include "chrome/browser/ui/views/profiles/profile_chooser_view.h" | 16 #include "chrome/browser/ui/views/profiles/profile_chooser_view.h" |
| 17 #include "chrome/browser/ui/views/profiles/user_manager_view.h" | 17 #include "chrome/browser/ui/views/profiles/user_manager_view.h" |
| 18 #include "chrome/common/chrome_paths.h" | 18 #include "chrome/common/chrome_paths.h" |
| 19 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
| 20 #include "chrome/test/base/in_process_browser_test.h" | 20 #include "chrome/test/base/in_process_browser_test.h" |
| 21 #include "chrome/test/base/test_switches.h" | 21 #include "chrome/test/base/test_switches.h" |
| 22 #include "chrome/test/base/testing_browser_process.h" | 22 #include "chrome/test/base/testing_browser_process.h" |
| 23 #include "components/signin/core/common/profile_management_switches.h" | |
| 24 #include "content/public/test/test_utils.h" | 23 #include "content/public/test/test_utils.h" |
| 25 #include "grit/generated_resources.h" | 24 #include "grit/generated_resources.h" |
| 26 #include "ui/views/controls/button/label_button.h" | 25 #include "ui/views/controls/button/label_button.h" |
| 27 | 26 |
| 28 class NewAvatarMenuButtonTest : public InProcessBrowserTest { | 27 class NewAvatarMenuButtonTest : public InProcessBrowserTest { |
| 29 public: | 28 public: |
| 30 NewAvatarMenuButtonTest(); | 29 NewAvatarMenuButtonTest(); |
| 31 virtual ~NewAvatarMenuButtonTest(); | 30 virtual ~NewAvatarMenuButtonTest(); |
| 32 | 31 |
| 33 protected: | 32 protected: |
| 34 virtual void SetUp() OVERRIDE; | 33 virtual void SetUp() OVERRIDE; |
| 35 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; | 34 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
| 36 void CreateTestingProfile(); | 35 void CreateTestingProfile(); |
| 37 void StartAvatarMenu(); | 36 void StartAvatarMenu(); |
| 38 | 37 |
| 39 private: | 38 private: |
| 40 DISALLOW_COPY_AND_ASSIGN(NewAvatarMenuButtonTest); | 39 DISALLOW_COPY_AND_ASSIGN(NewAvatarMenuButtonTest); |
| 41 }; | 40 }; |
| 42 | 41 |
| 43 NewAvatarMenuButtonTest::NewAvatarMenuButtonTest() { | 42 NewAvatarMenuButtonTest::NewAvatarMenuButtonTest() { |
| 44 } | 43 } |
| 45 | 44 |
| 46 NewAvatarMenuButtonTest::~NewAvatarMenuButtonTest() { | 45 NewAvatarMenuButtonTest::~NewAvatarMenuButtonTest() { |
| 47 } | 46 } |
| 48 | 47 |
| 49 void NewAvatarMenuButtonTest::SetUp() { | 48 void NewAvatarMenuButtonTest::SetUp() { |
| 50 InProcessBrowserTest::SetUp(); | 49 InProcessBrowserTest::SetUp(); |
| 51 DCHECK(switches::IsNewProfileManagement()); | 50 DCHECK(CommandLine::ForCurrentProcess()->HasSwitch( |
| 51 switches::kNewProfileManagement)); |
| 52 } | 52 } |
| 53 | 53 |
| 54 void NewAvatarMenuButtonTest::SetUpCommandLine(CommandLine* command_line) { | 54 void NewAvatarMenuButtonTest::SetUpCommandLine(CommandLine* command_line) { |
| 55 switches::EnableNewProfileManagementForTesting(command_line); | 55 command_line->AppendSwitch(switches::kNewProfileManagement); |
| 56 } | 56 } |
| 57 | 57 |
| 58 void NewAvatarMenuButtonTest::CreateTestingProfile() { | 58 void NewAvatarMenuButtonTest::CreateTestingProfile() { |
| 59 ProfileManager* profile_manager = g_browser_process->profile_manager(); | 59 ProfileManager* profile_manager = g_browser_process->profile_manager(); |
| 60 EXPECT_EQ(1u, profile_manager->GetNumberOfProfiles()); | 60 EXPECT_EQ(1u, profile_manager->GetNumberOfProfiles()); |
| 61 | 61 |
| 62 // Sign in the default profile | 62 // Sign in the default profile |
| 63 ProfileInfoCache& cache = profile_manager->GetProfileInfoCache(); | 63 ProfileInfoCache& cache = profile_manager->GetProfileInfoCache(); |
| 64 cache.SetUserNameOfProfileAtIndex(0, base::UTF8ToUTF16("user_name")); | 64 cache.SetUserNameOfProfileAtIndex(0, base::UTF8ToUTF16("user_name")); |
| 65 | 65 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 window_close_observer.Wait(); // Rely on test timeout for failure indication. | 132 window_close_observer.Wait(); // Rely on test timeout for failure indication. |
| 133 EXPECT_TRUE(browser_list->empty()); | 133 EXPECT_TRUE(browser_list->empty()); |
| 134 | 134 |
| 135 // If the User Manager hasn't shown yet, wait for it to show up. | 135 // If the User Manager hasn't shown yet, wait for it to show up. |
| 136 if (!UserManagerView::IsShowing()) | 136 if (!UserManagerView::IsShowing()) |
| 137 base::MessageLoop::current()->RunUntilIdle(); | 137 base::MessageLoop::current()->RunUntilIdle(); |
| 138 | 138 |
| 139 // We need to hide the User Manager or else the process can't die. | 139 // We need to hide the User Manager or else the process can't die. |
| 140 chrome::HideUserManager(); | 140 chrome::HideUserManager(); |
| 141 } | 141 } |
| OLD | NEW |