Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / profiles / profile_list_desktop_browsertest.cc
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/command_line.h"
6 #include "base/path_service.h"
7 #include "chrome/browser/chrome_notification_types.h"
8 #include "chrome/browser/profiles/avatar_menu.h"
9 #include "chrome/browser/profiles/profile_manager.h"
10 #include "chrome/browser/profiles/profile_window.h"
11 #include "chrome/browser/profiles/profiles_state.h"
12 #include "chrome/browser/ui/browser.h"
13 #include "chrome/browser/ui/browser_list.h"
14 #include "chrome/browser/ui/user_manager.h"
15 #include "chrome/common/chrome_paths.h"
16 #include "chrome/test/base/in_process_browser_test.h"
17 #include "chrome/test/base/test_switches.h"
18 #include "chrome/test/base/testing_browser_process.h"
19 #include "content/public/test/test_utils.h"
20
21 namespace {
22
23 // An observer that returns back to test code after a new profile is
24 // initialized.
25 void OnUnblockOnProfileCreation(Profile* profile,
26                                 Profile::CreateStatus status) {
27   if (status == Profile::CREATE_STATUS_INITIALIZED)
28     base::MessageLoop::current()->Quit();
29 }
30
31 }  // namespace
32
33 class ProfileListDesktopBrowserTest : public InProcessBrowserTest {
34  public:
35   ProfileListDesktopBrowserTest() {}
36
37   scoped_ptr<AvatarMenu> CreateAvatarMenu(ProfileInfoCache* cache) {
38     return scoped_ptr<AvatarMenu>(new AvatarMenu(cache, NULL, browser()));
39   }
40
41  private:
42   scoped_ptr<AvatarMenu> avatar_menu_;
43
44   DISALLOW_COPY_AND_ASSIGN(ProfileListDesktopBrowserTest);
45 };
46
47 #if defined(OS_WIN)
48 // SignOut is flaky. So far only observed on Windows. crbug.com/357329.
49 #define MAYBE_SignOut DISABLED_SignOut
50 #elif defined(OS_CHROMEOS)
51 // This test doesn't make sense for Chrome OS since it has a different
52 // multi-profiles menu in the system tray instead.
53 #define MAYBE_SignOut DISABLED_SignOut
54 #else
55 #define MAYBE_SignOut SignOut
56 #endif
57 IN_PROC_BROWSER_TEST_F(ProfileListDesktopBrowserTest, MAYBE_SignOut) {
58   if (!profiles::IsMultipleProfilesEnabled())
59     return;
60
61   ProfileManager* profile_manager = g_browser_process->profile_manager();
62   Profile* current_profile = browser()->profile();
63   ProfileInfoCache& cache = profile_manager->GetProfileInfoCache();
64   size_t index = cache.GetIndexOfProfileWithPath(current_profile->GetPath());
65
66   scoped_ptr<AvatarMenu> menu = CreateAvatarMenu(&cache);
67   menu->RebuildMenu();
68
69   BrowserList* browser_list =
70       BrowserList::GetInstance(chrome::GetActiveDesktop());
71   EXPECT_EQ(1U, browser_list->size());
72   content::WindowedNotificationObserver window_close_observer(
73       chrome::NOTIFICATION_BROWSER_CLOSED,
74       content::Source<Browser>(browser()));
75
76   EXPECT_FALSE(cache.ProfileIsSigninRequiredAtIndex(index));
77   profiles::LockProfile(current_profile);
78   window_close_observer.Wait();  // rely on test time-out for failure indication
79
80   EXPECT_TRUE(cache.ProfileIsSigninRequiredAtIndex(index));
81   EXPECT_EQ(0U, browser_list->size());
82
83   // Signing out brings up the User Manager which we should close before exit.
84   UserManager::Hide();
85 }
86
87 #if defined(OS_CHROMEOS)
88 // This test doesn't make sense for Chrome OS since it has a different
89 // multi-profiles menu in the system tray instead.
90 #define MAYBE_SwitchToProfile DISABLED_SwitchToProfile
91 #else
92 #define MAYBE_SwitchToProfile SwitchToProfile
93 #endif
94 IN_PROC_BROWSER_TEST_F(ProfileListDesktopBrowserTest, MAYBE_SwitchToProfile) {
95 #if defined(OS_WIN) && defined(USE_ASH)
96   // Disable this test in Metro+Ash for now (http://crbug.com/262796).
97   if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kAshBrowserTests))
98     return;
99 #endif
100
101   if (!profiles::IsMultipleProfilesEnabled())
102     return;
103
104   ProfileManager* profile_manager = g_browser_process->profile_manager();
105   Profile* current_profile = browser()->profile();
106   ProfileInfoCache& cache = profile_manager->GetProfileInfoCache();
107   base::FilePath path_profile1 = current_profile->GetPath();
108   base::FilePath user_dir = cache.GetUserDataDir();
109
110   // Create an additional profile.
111   base::FilePath path_profile2 = user_dir.Append(
112       FILE_PATH_LITERAL("New Profile 2"));
113   profile_manager->CreateProfileAsync(path_profile2,
114                                       base::Bind(&OnUnblockOnProfileCreation),
115                                       base::string16(), base::string16(),
116                                       std::string());
117
118   // Spin to allow profile creation to take place, loop is terminated
119   // by OnUnblockOnProfileCreation when the profile is created.
120   content::RunMessageLoop();
121   ASSERT_EQ(cache.GetNumberOfProfiles(), 2U);
122
123   scoped_ptr<AvatarMenu> menu = CreateAvatarMenu(&cache);
124   menu->RebuildMenu();
125   BrowserList* browser_list =
126       BrowserList::GetInstance(chrome::GetActiveDesktop());
127   EXPECT_EQ(1U, browser_list->size());
128   EXPECT_EQ(path_profile1, browser_list->get(0)->profile()->GetPath());
129
130   // Open a browser window for the first profile.
131   menu->SwitchToProfile(cache.GetIndexOfProfileWithPath(path_profile1),
132                         false, ProfileMetrics::SWITCH_PROFILE_ICON);
133   EXPECT_EQ(1U, browser_list->size());
134   EXPECT_EQ(path_profile1, browser_list->get(0)->profile()->GetPath());
135
136   // Open a browser window for the second profile.
137   menu->SwitchToProfile(cache.GetIndexOfProfileWithPath(path_profile2),
138                         false, ProfileMetrics::SWITCH_PROFILE_ICON);
139   EXPECT_EQ(2U, browser_list->size());
140
141   // Switch to the first profile without opening a new window.
142   menu->SwitchToProfile(cache.GetIndexOfProfileWithPath(path_profile1),
143                         false, ProfileMetrics::SWITCH_PROFILE_ICON);
144   EXPECT_EQ(2U, browser_list->size());
145   EXPECT_EQ(path_profile1, browser_list->get(0)->profile()->GetPath());
146   EXPECT_EQ(path_profile2, browser_list->get(1)->profile()->GetPath());
147 }