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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <Cocoa/Cocoa.h>
#include "base/bind_helpers.h"
#include "base/mac/scoped_nsautorelease_pool.h"
#include "chrome/browser/media/media_capture_devices_dispatcher.h"
#include "chrome/browser/media/media_stream_capture_indicator.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/cocoa/cocoa_profile_test.h"
#import "chrome/browser/ui/cocoa/new_tab_button.h"
#import "chrome/browser/ui/cocoa/tabs/tab_controller.h"
#import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h"
#import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h"
#import "chrome/browser/ui/cocoa/tabs/tab_view.h"
#include "chrome/browser/ui/tabs/tab_utils.h"
#include "chrome/browser/ui/tabs/test_tab_strip_model_delegate.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/browser/site_instance.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/media_stream_request.h"
#include "testing/gtest/include/gtest/gtest.h"
#import "testing/gtest_mac.h"
#include "testing/platform_test.h"
#include "ui/events/test/cocoa_test_event_utils.h"
using content::SiteInstance;
using content::WebContents;
@interface TestTabStripControllerDelegate
: NSObject<TabStripControllerDelegate> {
}
@end
@implementation TestTabStripControllerDelegate
- (void)onActivateTabWithContents:(WebContents*)contents {
}
- (void)onTabChanged:(TabStripModelObserver::TabChangeType)change
withContents:(WebContents*)contents {
}
- (void)onTabDetachedWithContents:(WebContents*)contents {
}
@end
// Helper class for invoking a base::Closure via
// -performSelector:withObject:afterDelay:.
@interface TestClosureRunner : NSObject {
@private
base::Closure closure_;
}
- (id)initWithClosure:(const base::Closure&)closure;
- (void)scheduleDelayedRun;
- (void)run;
@end
@implementation TestClosureRunner
- (id)initWithClosure:(const base::Closure&)closure {
if (self) {
closure_ = closure;
}
return self;
}
- (void)scheduleDelayedRun {
[self performSelector:@selector(run) withObject:nil afterDelay:0];
}
- (void)run {
closure_.Run();
}
@end
@interface TabStripController (Test)
- (void)mouseMoved:(NSEvent*)event;
@end
@implementation TabView (Test)
- (TabController*)controller {
return controller_;
}
@end
namespace {
class TabStripControllerTest : public CocoaProfileTest {
public:
void SetUp() override {
CocoaProfileTest::SetUp();
ASSERT_TRUE(browser());
NSWindow* window = browser()->window()->GetNativeWindow();
NSView* parent = [window contentView];
NSRect content_frame = [parent frame];
// Create the "switch view" (view that gets changed out when a tab
// switches).
NSRect switch_frame = NSMakeRect(0, 0, content_frame.size.width, 500);
base::scoped_nsobject<NSView> switch_view(
[[NSView alloc] initWithFrame:switch_frame]);
[parent addSubview:switch_view.get()];
// Create the tab strip view. It's expected to have a child button in it
// already as the "new tab" button so create that too.
NSRect strip_frame = NSMakeRect(0, NSMaxY(switch_frame),
content_frame.size.width, 30);
tab_strip_.reset(
[[TabStripView alloc] initWithFrame:strip_frame]);
[parent addSubview:tab_strip_.get()];
NSRect button_frame = NSMakeRect(0, 0, 15, 15);
base::scoped_nsobject<NewTabButton> new_tab_button(
[[NewTabButton alloc] initWithFrame:button_frame]);
[tab_strip_ addSubview:new_tab_button.get()];
[tab_strip_ setNewTabButton:new_tab_button.get()];
delegate_.reset(new TestTabStripModelDelegate());
model_ = browser()->tab_strip_model();
controller_delegate_.reset([TestTabStripControllerDelegate alloc]);
controller_.reset([[TabStripController alloc]
initWithView:static_cast<TabStripView*>(tab_strip_.get())
switchView:switch_view.get()
browser:browser()
delegate:controller_delegate_.get()]);
}
void TearDown() override {
// The call to CocoaTest::TearDown() deletes the Browser and TabStripModel
// objects, so we first have to delete the controller, which refers to them.
controller_.reset();
model_ = NULL;
CocoaProfileTest::TearDown();
}
TabView* CreateTab() {
SiteInstance* instance = SiteInstance::Create(profile());
WebContents* web_contents = WebContents::Create(
content::WebContents::CreateParams(profile(), instance));
model_->AppendWebContents(web_contents, true);
const NSUInteger tab_count = [controller_.get() viewsCount];
return static_cast<TabView*>([controller_.get() viewAtIndex:tab_count - 1]);
}
// Closes all tabs and unrefs the tabstrip and then posts a NSLeftMouseUp
// event which should end the nested drag event loop.
void CloseTabsAndEndDrag() {
// Simulate a close of the browser window.
model_->CloseAllTabs();
controller_.reset();
tab_strip_.reset();
// Schedule a NSLeftMouseUp to end the nested drag event loop.
NSEvent* event =
cocoa_test_event_utils::MouseEventWithType(NSLeftMouseUp, 0);
[NSApp postEvent:event atStart:NO];
}
scoped_ptr<TestTabStripModelDelegate> delegate_;
TabStripModel* model_;
base::scoped_nsobject<TestTabStripControllerDelegate> controller_delegate_;
base::scoped_nsobject<TabStripController> controller_;
base::scoped_nsobject<TabStripView> tab_strip_;
};
// Test adding and removing tabs and making sure that views get added to
// the tab strip.
TEST_F(TabStripControllerTest, AddRemoveTabs) {
EXPECT_TRUE(model_->empty());
CreateTab();
EXPECT_EQ(model_->count(), 1);
}
// Clicking a selected (but inactive) tab should activate it.
TEST_F(TabStripControllerTest, ActivateSelectedButInactiveTab) {
TabView* tab0 = CreateTab();
TabView* tab1 = CreateTab();
model_->ToggleSelectionAt(0);
EXPECT_TRUE([[tab0 controller] selected]);
EXPECT_TRUE([[tab1 controller] selected]);
[controller_ selectTab:tab1];
EXPECT_EQ(1, model_->active_index());
}
// Toggling (cmd-click) a selected (but inactive) tab should deselect it.
TEST_F(TabStripControllerTest, DeselectInactiveTab) {
TabView* tab0 = CreateTab();
TabView* tab1 = CreateTab();
model_->ToggleSelectionAt(0);
EXPECT_TRUE([[tab0 controller] selected]);
EXPECT_TRUE([[tab1 controller] selected]);
model_->ToggleSelectionAt(1);
EXPECT_TRUE([[tab0 controller] selected]);
EXPECT_FALSE([[tab1 controller] selected]);
}
TEST_F(TabStripControllerTest, SelectTab) {
// TODO(pinkerton): Implement http://crbug.com/10899
}
TEST_F(TabStripControllerTest, RearrangeTabs) {
// TODO(pinkerton): Implement http://crbug.com/10899
}
TEST_F(TabStripControllerTest, CorrectToolTipMouseHoverBehavior) {
// Set tab 1 tooltip.
TabView* tab1 = CreateTab();
[tab1 setToolTip:@"Tab1"];
// Set tab 2 tooltip.
TabView* tab2 = CreateTab();
[tab2 setToolTip:@"Tab2"];
EXPECT_FALSE([tab1 controller].selected);
EXPECT_TRUE([tab2 controller].selected);
// Check that there's no tooltip yet.
EXPECT_FALSE([controller_ view:nil
stringForToolTip:nil
point:NSZeroPoint
userData:nil]);
// Set up mouse event on overlap of tab1 + tab2.
const CGFloat min_y = NSMinY([tab_strip_.get() frame]) + 1;
// Hover over overlap between tab 1 and 2.
NSEvent* event =
cocoa_test_event_utils::MouseEventAtPoint(NSMakePoint(280, min_y),
NSMouseMoved, 0);
[controller_.get() mouseMoved:event];
EXPECT_STREQ("Tab2",
[[controller_ view:nil
stringForToolTip:nil
point:NSZeroPoint
userData:nil] cStringUsingEncoding:NSASCIIStringEncoding]);
// Hover over tab 1.
event = cocoa_test_event_utils::MouseEventAtPoint(NSMakePoint(260, min_y),
NSMouseMoved, 0);
[controller_.get() mouseMoved:event];
EXPECT_STREQ("Tab1",
[[controller_ view:nil
stringForToolTip:nil
point:NSZeroPoint
userData:nil] cStringUsingEncoding:NSASCIIStringEncoding]);
// Hover over tab 2.
event = cocoa_test_event_utils::MouseEventAtPoint(NSMakePoint(290, min_y),
NSMouseMoved, 0);
[controller_.get() mouseMoved:event];
EXPECT_STREQ("Tab2",
[[controller_ view:nil
stringForToolTip:nil
point:NSZeroPoint
userData:nil] cStringUsingEncoding:NSASCIIStringEncoding]);
}
TEST_F(TabStripControllerTest, CorrectTitleAndToolTipTextFromSetTabTitle) {
using content::MediaStreamDevice;
using content::MediaStreamDevices;
using content::MediaStreamUI;
TabView* const tab = CreateTab();
TabController* const tabController = [tab controller];
WebContents* const contents = model_->GetActiveWebContents();
// Initially, tab title and tooltip text are equivalent.
EXPECT_EQ(TAB_MEDIA_STATE_NONE,
chrome::GetTabMediaStateForContents(contents));
[controller_ setTabTitle:tabController withContents:contents];
NSString* const baseTitle = [tabController title];
EXPECT_NSEQ(baseTitle, [tabController toolTip]);
// Simulate the start of tab video capture. Tab title remains the same, but
// the tooltip text should include the following appended: 1) a line break;
// 2) a non-empty string with a localized description of the media state.
scoped_refptr<MediaStreamCaptureIndicator> indicator =
MediaCaptureDevicesDispatcher::GetInstance()->
GetMediaStreamCaptureIndicator();
const MediaStreamDevice dummyVideoCaptureDevice(
content::MEDIA_TAB_VIDEO_CAPTURE, "dummy_id", "dummy name");
scoped_ptr<MediaStreamUI> streamUi(indicator->RegisterMediaStream(
contents, MediaStreamDevices(1, dummyVideoCaptureDevice)));
streamUi->OnStarted(base::Bind(&base::DoNothing));
EXPECT_EQ(TAB_MEDIA_STATE_CAPTURING,
chrome::GetTabMediaStateForContents(contents));
[controller_ setTabTitle:tabController withContents:contents];
EXPECT_NSEQ(baseTitle, [tabController title]);
NSString* const toolTipText = [tabController toolTip];
if ([baseTitle length] > 0) {
EXPECT_TRUE(NSEqualRanges(NSMakeRange(0, [baseTitle length]),
[toolTipText rangeOfString:baseTitle]));
EXPECT_TRUE(NSEqualRanges(NSMakeRange([baseTitle length], 1),
[toolTipText rangeOfString:@"\n"]));
EXPECT_LT([baseTitle length] + 1, [toolTipText length]);
} else {
EXPECT_LT(0u, [toolTipText length]);
}
// Simulate the end of tab video capture. Tab title and tooltip should become
// equivalent again.
streamUi.reset();
EXPECT_EQ(TAB_MEDIA_STATE_NONE,
chrome::GetTabMediaStateForContents(contents));
[controller_ setTabTitle:tabController withContents:contents];
EXPECT_NSEQ(baseTitle, [tabController title]);
EXPECT_NSEQ(baseTitle, [tabController toolTip]);
}
TEST_F(TabStripControllerTest, TabCloseDuringDrag) {
TabController* tab;
// The TabController gets autoreleased when created, but is owned by the
// tab strip model. Use a ScopedNSAutoreleasePool to get a truly weak ref
// to it to test that -maybeStartDrag:forTab: can handle that properly.
{
base::mac::ScopedNSAutoreleasePool pool;
tab = [CreateTab() controller];
}
// Schedule a task to close all the tabs and stop the drag, before the call to
// -maybeStartDrag:forTab:, which starts a nested event loop. This task will
// run in that nested event loop, which shouldn't crash.
base::scoped_nsobject<TestClosureRunner> runner([[TestClosureRunner alloc]
initWithClosure:base::Bind(&TabStripControllerTest::CloseTabsAndEndDrag,
base::Unretained(this))]);
[runner scheduleDelayedRun];
NSEvent* event =
cocoa_test_event_utils::LeftMouseDownAtPoint(NSZeroPoint);
[[controller_ dragController] maybeStartDrag:event forTab:tab];
}
TEST_F(TabStripControllerTest, ViewAccessibility_Contents) {
NSArray* attrs = [tab_strip_ accessibilityAttributeNames];
ASSERT_TRUE([attrs containsObject:NSAccessibilityContentsAttribute]);
// Create two tabs and ensure they exist in the contents array.
TabView* tab1 = CreateTab();
TabView* tab2 = CreateTab();
NSObject* contents =
[tab_strip_ accessibilityAttributeValue:NSAccessibilityContentsAttribute];
DCHECK([contents isKindOfClass:[NSArray class]]);
NSArray* contentsArray = static_cast<NSArray*>(contents);
ASSERT_TRUE([contentsArray containsObject:tab1]);
ASSERT_TRUE([contentsArray containsObject:tab2]);
}
TEST_F(TabStripControllerTest, ViewAccessibility_Value) {
NSArray* attrs = [tab_strip_ accessibilityAttributeNames];
ASSERT_TRUE([attrs containsObject:NSAccessibilityValueAttribute]);
// Create two tabs and ensure the active one gets returned.
TabView* tab1 = CreateTab();
TabView* tab2 = CreateTab();
EXPECT_FALSE([tab1 controller].selected);
EXPECT_TRUE([tab2 controller].selected);
NSObject* value =
[tab_strip_ accessibilityAttributeValue:NSAccessibilityValueAttribute];
EXPECT_EQ(tab2, value);
model_->ActivateTabAt(0, false);
EXPECT_TRUE([tab1 controller].selected);
EXPECT_FALSE([tab2 controller].selected);
value =
[tab_strip_ accessibilityAttributeValue:NSAccessibilityValueAttribute];
EXPECT_EQ(tab1, value);
}
} // namespace
|