blob: 9d063bf9834e4ebfc90c5c8a423b4cfef085ccf5 (
plain)
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
|
// Copyright (c) 2009 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 "app/resource_bundle.h"
#include "base/scoped_nsobject.h"
#import "chrome/browser/cocoa/cocoa_test_helper.h"
#import "chrome/browser/cocoa/hover_image_button.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
#include "grit/theme_resources.h"
namespace {
class HoverImageButtonTest : public CocoaTest {
public:
HoverImageButtonTest() {
NSRect content_frame = [[test_window() contentView] frame];
scoped_nsobject<HoverImageButton> button(
[[HoverImageButton alloc] initWithFrame:content_frame]);
NSRect frame = NSMakeRect(0, 0, 30, 30);
button_ = button.get();
[[test_window() contentView] addSubview:button_];
}
virtual void SetUp() {
CocoaTest::BootstrapCocoa();
}
HoverImageButton* button_;
};
// Test mouse events.
TEST_F(HoverImageButtonTest, ImageSwap) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
NSImage* image = rb.GetNSImageNamed(IDR_HOME);
NSImage* hover = rb.GetNSImageNamed(IDR_BACK);
[button_ setDefaultImage:image];
[button_ setHoverImage:hover];
[button_ mouseEntered:nil];
[button_ drawRect:[button_ frame]];
EXPECT_EQ([button_ image], hover);
[button_ mouseExited:nil];
[button_ drawRect:[button_ frame]];
EXPECT_EQ([button_ image], image);
}
// Test mouse events.
TEST_F(HoverImageButtonTest, Opacity) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
NSImage* image = rb.GetNSImageNamed(IDR_HOME);
[button_ setDefaultImage:image];
[button_ setDefaultOpacity:0.5];
[button_ setHoverImage:image];
[button_ setHoverOpacity:1.0];
[button_ mouseEntered:nil];
[button_ drawRect:[button_ frame]];
EXPECT_EQ([button_ alphaValue], 1.0);
[button_ mouseExited:nil];
[button_ drawRect:[button_ frame]];
EXPECT_EQ([button_ alphaValue], 0.5);
}
} // namespace
|