Add a minor text member to ui::MenuModel.
[chromium-blink-merge.git] / chrome / browser / app_controller_mac_unittest.mm
blobed9c813deaed1d19c0dedaafa94b426c331eb560
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.
5 #import <Cocoa/Cocoa.h>
7 #include "base/files/file_path.h"
8 #include "base/mac/scoped_nsobject.h"
9 #include "chrome/app/chrome_command_ids.h"
10 #import "chrome/browser/app_controller_mac.h"
11 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h"
12 #include "chrome/browser/profiles/profile_manager.h"
13 #include "chrome/common/chrome_constants.h"
14 #include "chrome/common/pref_names.h"
15 #include "chrome/test/base/testing_profile_manager.h"
16 #include "chrome/test/base/ui_test_utils.h"
17 #include "testing/platform_test.h"
19 class AppControllerTest : public PlatformTest {
20  protected:
21   AppControllerTest()
22       : ui_thread_(content::BrowserThread::UI, &message_loop_),
23         db_thread_(content::BrowserThread::DB, &message_loop_),
24         file_thread_(content::BrowserThread::FILE, &message_loop_) {
25   }
27   virtual void TearDown() {
28     TestingBrowserProcess::GetGlobal()->SetProfileManager(NULL);
29     message_loop_.RunUntilIdle();
30   }
32   base::MessageLoopForUI message_loop_;
33   content::TestBrowserThread ui_thread_;
34   content::TestBrowserThread db_thread_;
35   content::TestBrowserThread file_thread_;
38 TEST_F(AppControllerTest, DockMenu) {
39   base::scoped_nsobject<AppController> ac([[AppController alloc] init]);
40   NSMenu* menu = [ac applicationDockMenu:NSApp];
41   NSMenuItem* item;
43   EXPECT_TRUE(menu);
44   EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_WINDOW]);
45   EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_INCOGNITO_WINDOW]);
46   for (item in [menu itemArray]) {
47     EXPECT_EQ(ac.get(), [item target]);
48     EXPECT_EQ(@selector(commandFromDock:), [item action]);
49   }
52 TEST_F(AppControllerTest, LastProfile) {
53   TestingProfileManager manager(TestingBrowserProcess::GetGlobal());
54   ASSERT_TRUE(manager.SetUp());
56   // Create two profiles.
57   base::FilePath dest_path1 =
58       manager.CreateTestingProfile("New Profile 1")->GetPath();
59   base::FilePath dest_path2 =
60       manager.CreateTestingProfile("New Profile 2")->GetPath();
61   ASSERT_EQ(2U, manager.profile_manager()->GetNumberOfProfiles());
62   ASSERT_EQ(2U, manager.profile_manager()->GetLoadedProfiles().size());
64   PrefService* local_state = g_browser_process->local_state();
65   local_state->SetString(prefs::kProfileLastUsed,
66                          dest_path1.BaseName().MaybeAsASCII());
68   base::scoped_nsobject<AppController> ac([[AppController alloc] init]);
70   // Delete the active profile.
71   manager.profile_manager()->ScheduleProfileForDeletion(
72       dest_path1, ProfileManager::CreateCallback());
74   message_loop_.RunUntilIdle();
76   EXPECT_EQ(dest_path2, [ac lastProfile]->GetPath());