1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/ui/cocoa/applescript/window_applescript.h"
#import <Foundation/Foundation.h>
#import "base/apple/foundation_util.h"
#include "base/strings/sys_string_conversions.h"
#import "chrome/browser/app_controller_mac.h"
#import "chrome/browser/chrome_browser_application_mac.h"
#include "chrome/browser/profiles/profile.h"
#import "chrome/browser/ui/cocoa/applescript/constants_applescript.h"
#import "chrome/browser/ui/cocoa/applescript/error_applescript.h"
#import "chrome/browser/ui/cocoa/applescript/tab_applescript.h"
#include "chrome/browser/ui/cocoa/test/run_loop_testing.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/test/browser_test.h"
#include "testing/gtest/include/gtest/gtest.h"
#import "testing/gtest_mac.h"
#include "url/gurl.h"
using WindowAppleScriptTest = InProcessBrowserTest;
// Create a window in default/normal mode.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, DefaultCreation) {
WindowAppleScript* window = [[WindowAppleScript alloc] init];
EXPECT_TRUE(window);
NSString* mode = window.mode;
EXPECT_NSEQ(AppleScript::kNormalWindowMode, mode);
}
// Create a window with a |NULL profile|.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, CreationWithNoProfile) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithProfile:nullptr];
EXPECT_FALSE(window);
}
// Create a window with a particular profile.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, CreationWithProfile) {
Profile* lastProfile = AppController.sharedController.lastProfile;
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithProfile:lastProfile];
EXPECT_TRUE(window);
EXPECT_TRUE(window.uniqueID);
}
// Create a window with no |Browser*|.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, CreationWithNoBrowser) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:nullptr];
EXPECT_FALSE(window);
}
// Create a window with |Browser*| already present.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, CreationWithBrowser) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
EXPECT_TRUE(window);
EXPECT_TRUE(window.uniqueID);
}
// Tabs within the window.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, Tabs) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
NSArray* tabs = window.tabs;
EXPECT_EQ(1U, tabs.count);
TabAppleScript* tab1 = tabs[0];
EXPECT_EQ(tab1.container, window);
EXPECT_NSEQ(AppleScript::kTabsProperty, tab1.containerProperty);
}
// Insert a new tab.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, InsertTab) {
// Emulate what AppleScript would do when creating a new tab.
// Emulates a script like:
//
// set var to make new tab with properties {URL:"http://google.com"}
TabAppleScript* aTab = [[TabAppleScript alloc] init];
NSString* unique_id = [aTab.uniqueID copy];
aTab.URL = @"http://google.com";
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
[window insertInTabs:aTab];
// Represents the tab after it is inserted.
TabAppleScript* tab = window.tabs[1];
EXPECT_EQ(GURL("http://google.com"), GURL(base::SysNSStringToUTF8(tab.URL)));
EXPECT_EQ(tab.container, window);
EXPECT_NSEQ(AppleScript::kTabsProperty, tab.containerProperty);
EXPECT_NSEQ(unique_id, tab.uniqueID);
}
// Insert a new tab at a particular position
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, InsertTabAtPosition) {
// Emulate what AppleScript would do when creating a new tab.
// Emulates a script like:
//
// set var to make new tab with properties
// {URL:"http://google.com"} at before tab 1
TabAppleScript* aTab = [[TabAppleScript alloc] init];
NSString* unique_id = [aTab.uniqueID copy];
aTab.URL = @"http://google.com";
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
[window insertInTabs:aTab atIndex:0];
// Represents the tab after it is inserted.
TabAppleScript* tab = window.tabs[0];
EXPECT_EQ(GURL("http://google.com"), GURL(base::SysNSStringToUTF8(tab.URL)));
EXPECT_EQ(tab.container, window);
EXPECT_NSEQ(AppleScript::kTabsProperty, tab.containerProperty);
EXPECT_NSEQ(unique_id, tab.uniqueID);
}
// Inserting and deleting tabs.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, InsertAndDeleteTabs) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
NSUInteger count;
for (NSUInteger i = 0; i < 5; ++i) {
for (NSUInteger j = 0; j < 3; ++j) {
[window insertInTabs:[[TabAppleScript alloc] init]];
}
count = 3 * i + 4;
EXPECT_EQ(window.tabs.count, count);
}
count = window.tabs.count;
for (NSUInteger i = 0; i < 5; ++i) {
for (NSUInteger j = 0; j < 3; ++j) {
[window removeFromTabsAtIndex:0];
}
count = count - 3;
EXPECT_EQ(window.tabs.count, count);
}
}
// Getting and setting values from the NSWindow.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, NSWindowTest) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
[window setValue:@YES forKey:@"miniaturized"];
EXPECT_TRUE([[window valueForKey:@"miniaturized"] boolValue]);
[window setValue:@NO forKey:@"miniaturized"];
EXPECT_FALSE([[window valueForKey:@"miniaturized"] boolValue]);
}
// Getting and setting the active tab.
IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, ActiveTab) {
WindowAppleScript* window =
[[WindowAppleScript alloc] initWithBrowser:browser()];
[window insertInTabs:[[TabAppleScript alloc] init]];
[window setActiveTabIndex:@2];
EXPECT_EQ(2, window.activeTabIndex.intValue);
TabAppleScript* tab2 = window.tabs[1];
EXPECT_NSEQ(window.activeTab.uniqueID, tab2.uniqueID);
}
|