| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2009 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/scoped_nsobject.h" |
| 8 #import "chrome/browser/cocoa/hyperlink_button_cell.h" |
| 9 #import "chrome/browser/cocoa/cocoa_test_helper.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "testing/platform_test.h" |
| 12 |
| 13 namespace { |
| 14 |
| 15 class HyperlinkButtonCellTest : public PlatformTest { |
| 16 public: |
| 17 HyperlinkButtonCellTest() { |
| 18 NSRect frame = NSMakeRect(0, 0, 50, 30); |
| 19 view_.reset([[NSButton alloc] initWithFrame:frame]); |
| 20 cell_.reset([[HyperlinkButtonCell alloc] initTextCell:@"Testing"]); |
| 21 [view_ setCell:cell_.get()]; |
| 22 [cocoa_helper_.contentView() addSubview:view_.get()]; |
| 23 } |
| 24 |
| 25 void TestCellCustomization() { |
| 26 EXPECT_FALSE([cell_ isBordered]); |
| 27 EXPECT_EQ(NSNoCellMask, [cell_ highlightsBy]); |
| 28 EXPECT_TRUE([cell_ showsBorderOnlyWhileMouseInside]); |
| 29 EXPECT_TRUE([cell_ textColor]); |
| 30 } |
| 31 |
| 32 CocoaTestHelper cocoa_helper_; // Inits Cocoa, creates window, etc... |
| 33 scoped_nsobject<NSButton> view_; |
| 34 scoped_nsobject<HyperlinkButtonCell> cell_; |
| 35 }; |
| 36 |
| 37 // Test adding/removing from the view hierarchy, mostly to ensure nothing |
| 38 // leaks or crashes. |
| 39 TEST_F(HyperlinkButtonCellTest, AddRemove) { |
| 40 EXPECT_EQ(cocoa_helper_.contentView(), [view_ superview]); |
| 41 [view_.get() removeFromSuperview]; |
| 42 EXPECT_FALSE([view_ superview]); |
| 43 } |
| 44 |
| 45 // Test drawing, mostly to ensure nothing leaks or crashes. |
| 46 TEST_F(HyperlinkButtonCellTest, Display) { |
| 47 [view_ display]; |
| 48 } |
| 49 |
| 50 // Tests the three designated intializers. |
| 51 TEST_F(HyperlinkButtonCellTest, Initializers) { |
| 52 TestCellCustomization(); // |-initTextFrame:| |
| 53 |
| 54 cell_.reset([[HyperlinkButtonCell alloc] init]); |
| 55 TestCellCustomization(); |
| 56 |
| 57 // Need to create a dummy archiver to test |-initWithCoder:|. |
| 58 NSData* emptyData = [NSKeyedArchiver archivedDataWithRootObject:@""]; |
| 59 NSCoder* coder = |
| 60 [[[NSKeyedUnarchiver alloc] initForReadingWithData:emptyData] autorelease]; |
| 61 cell_.reset([[HyperlinkButtonCell alloc] initWithCoder:coder]); |
| 62 TestCellCustomization(); |
| 63 } |
| 64 |
| 65 // Test set color. |
| 66 TEST_F(HyperlinkButtonCellTest, SetTextColor) { |
| 67 NSColor* textColor = [NSColor redColor]; |
| 68 EXPECT_NE(textColor, [cell_ textColor]); |
| 69 [cell_ setTextColor:textColor]; |
| 70 EXPECT_EQ(textColor, [cell_ textColor]); |
| 71 } |
| 72 |
| 73 // Test mouse events. |
| 74 // TODO(rsesek): See if we can synthesize mouse events to more accurately |
| 75 // test this. |
| 76 TEST_F(HyperlinkButtonCellTest, MouseHover) { |
| 77 [[NSCursor disappearingItemCursor] push]; // Set a known state. |
| 78 [cell_ mouseEntered:nil]; |
| 79 EXPECT_EQ([NSCursor pointingHandCursor], [NSCursor currentCursor]); |
| 80 [cell_ mouseExited:nil]; |
| 81 EXPECT_EQ([NSCursor disappearingItemCursor], [NSCursor currentCursor]); |
| 82 [NSCursor pop]; |
| 83 } |
| 84 |
| 85 } // namespace |
| OLD | NEW |