| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 #include "base/scoped_nsobject.h" | 7 #include "base/scoped_nsobject.h" |
| 8 #import "chrome/browser/cocoa/clickhold_button_cell.h" | 8 #import "chrome/browser/cocoa/clickhold_button_cell.h" |
| 9 #import "chrome/browser/cocoa/cocoa_test_helper.h" | 9 #import "chrome/browser/cocoa/cocoa_test_helper.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "testing/platform_test.h" | 11 #include "testing/platform_test.h" |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 class ClickHoldButtonCellTest : public PlatformTest { | 15 class ClickHoldButtonCellTest : public CocoaTest { |
| 16 public: | 16 public: |
| 17 ClickHoldButtonCellTest() { | 17 ClickHoldButtonCellTest() { |
| 18 NSRect frame = NSMakeRect(0, 0, 50, 30); | 18 NSRect frame = NSMakeRect(0, 0, 50, 30); |
| 19 view_.reset([[NSButton alloc] initWithFrame:frame]); | 19 scoped_nsobject<NSButton> view([[NSButton alloc] initWithFrame:frame]); |
| 20 view_ = view.get(); |
| 20 scoped_nsobject<ClickHoldButtonCell> cell( | 21 scoped_nsobject<ClickHoldButtonCell> cell( |
| 21 [[ClickHoldButtonCell alloc] initTextCell:@"Testing"]); | 22 [[ClickHoldButtonCell alloc] initTextCell:@"Testing"]); |
| 22 [view_ setCell:cell.get()]; | 23 [view_ setCell:cell.get()]; |
| 23 [cocoa_helper_.contentView() addSubview:view_.get()]; | 24 [[test_window() contentView] addSubview:view_]; |
| 24 } | 25 } |
| 25 | 26 |
| 26 CocoaTestHelper cocoa_helper_; // Inits Cocoa, creates window, etc. | 27 NSButton* view_; |
| 27 scoped_nsobject<NSButton> view_; | |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 // Test adding/removing from the view hierarchy, mostly to ensure nothing leaks | 30 TEST_VIEW(ClickHoldButtonCellTest, view_) |
| 31 // or crashes. | |
| 32 TEST_F(ClickHoldButtonCellTest, AddRemove) { | |
| 33 EXPECT_EQ(cocoa_helper_.contentView(), [view_ superview]); | |
| 34 [view_.get() removeFromSuperview]; | |
| 35 EXPECT_FALSE([view_ superview]); | |
| 36 } | |
| 37 | |
| 38 // Test drawing, mostly to ensure nothing leaks or crashes. | |
| 39 TEST_F(ClickHoldButtonCellTest, Display) { | |
| 40 [view_ display]; | |
| 41 } | |
| 42 | 31 |
| 43 // Test default values; make sure they are what they should be. | 32 // Test default values; make sure they are what they should be. |
| 44 TEST_F(ClickHoldButtonCellTest, Defaults) { | 33 TEST_F(ClickHoldButtonCellTest, Defaults) { |
| 45 ClickHoldButtonCell* cell = static_cast<ClickHoldButtonCell*>([view_ cell]); | 34 ClickHoldButtonCell* cell = static_cast<ClickHoldButtonCell*>([view_ cell]); |
| 46 ASSERT_TRUE([cell isKindOfClass:[ClickHoldButtonCell class]]); | 35 ASSERT_TRUE([cell isKindOfClass:[ClickHoldButtonCell class]]); |
| 47 | 36 |
| 48 EXPECT_FALSE([cell enableClickHold]); | 37 EXPECT_FALSE([cell enableClickHold]); |
| 49 | 38 |
| 50 NSTimeInterval clickHoldTimeout = [cell clickHoldTimeout]; | 39 NSTimeInterval clickHoldTimeout = [cell clickHoldTimeout]; |
| 51 EXPECT_GE(clickHoldTimeout, 0.15); // Check for a "Cocoa-ish" value. | 40 EXPECT_GE(clickHoldTimeout, 0.15); // Check for a "Cocoa-ish" value. |
| 52 EXPECT_LE(clickHoldTimeout, 0.35); | 41 EXPECT_LE(clickHoldTimeout, 0.35); |
| 53 | 42 |
| 54 EXPECT_FALSE([cell trackOnlyInRect]); | 43 EXPECT_FALSE([cell trackOnlyInRect]); |
| 55 EXPECT_TRUE([cell activateOnDrag]); | 44 EXPECT_TRUE([cell activateOnDrag]); |
| 56 } | 45 } |
| 57 | 46 |
| 58 // TODO(viettrungluu): (1) Enable click-hold and figure out how to test the | 47 // TODO(viettrungluu): (1) Enable click-hold and figure out how to test the |
| 59 // tracking loop (i.e., |-trackMouse:...|), which is the nontrivial part. | 48 // tracking loop (i.e., |-trackMouse:...|), which is the nontrivial part. |
| 60 // (2) Test various initialization code paths (in particular, loading from nib). | 49 // (2) Test various initialization code paths (in particular, loading from nib). |
| 61 | 50 |
| 62 } // namespace | 51 } // namespace |
| OLD | NEW |