Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / app_controller_mac_unittest.mm
1 // Copyright (c) 2011 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 #import <Cocoa/Cocoa.h>
6
7 #include "base/files/file_path.h"
8 #include "base/mac/scoped_nsobject.h"
9 #include "base/run_loop.h"
10 #include "chrome/app/chrome_command_ids.h"
11 #import "chrome/browser/app_controller_mac.h"
12 #include "chrome/browser/browser_process.h"
13 #include "chrome/browser/profiles/profile_manager.h"
14 #include "chrome/common/chrome_constants.h"
15 #include "chrome/common/pref_names.h"
16 #include "chrome/test/base/testing_browser_process.h"
17 #include "chrome/test/base/testing_profile.h"
18 #include "chrome/test/base/testing_profile_manager.h"
19 #include "content/public/test/test_browser_thread_bundle.h"
20 #include "testing/platform_test.h"
21
22 class AppControllerTest : public PlatformTest {
23  protected:
24   AppControllerTest() {}
25
26   virtual void TearDown() {
27     TestingBrowserProcess::GetGlobal()->SetProfileManager(NULL);
28     base::RunLoop().RunUntilIdle();
29   }
30
31   content::TestBrowserThreadBundle thread_bundle_;
32 };
33
34 TEST_F(AppControllerTest, DockMenu) {
35   base::scoped_nsobject<AppController> ac([[AppController alloc] init]);
36   NSMenu* menu = [ac applicationDockMenu:NSApp];
37   NSMenuItem* item;
38
39   EXPECT_TRUE(menu);
40   EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_WINDOW]);
41   EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_INCOGNITO_WINDOW]);
42   for (item in [menu itemArray]) {
43     EXPECT_EQ(ac.get(), [item target]);
44     EXPECT_EQ(@selector(commandFromDock:), [item action]);
45   }
46 }
47
48 TEST_F(AppControllerTest, LastProfile) {
49   TestingProfileManager manager(TestingBrowserProcess::GetGlobal());
50   ASSERT_TRUE(manager.SetUp());
51
52   // Create two profiles.
53   base::FilePath dest_path1 =
54       manager.CreateTestingProfile("New Profile 1")->GetPath();
55   base::FilePath dest_path2 =
56       manager.CreateTestingProfile("New Profile 2")->GetPath();
57   ASSERT_EQ(2U, manager.profile_manager()->GetNumberOfProfiles());
58   ASSERT_EQ(2U, manager.profile_manager()->GetLoadedProfiles().size());
59
60   PrefService* local_state = g_browser_process->local_state();
61   local_state->SetString(prefs::kProfileLastUsed,
62                          dest_path1.BaseName().MaybeAsASCII());
63
64   base::scoped_nsobject<AppController> ac([[AppController alloc] init]);
65
66   // Delete the active profile.
67   manager.profile_manager()->ScheduleProfileForDeletion(
68       dest_path1, ProfileManager::CreateCallback());
69
70   base::RunLoop().RunUntilIdle();
71
72   EXPECT_EQ(dest_path2, [ac lastProfile]->GetPath());
73 }