blob: 2f8ca666e55a458d2a8fb48e12be29a00f9be61f (
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
69
70
|
// 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/memory/scoped_nsobject.h"
#import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
#import "chrome/browser/ui/cocoa/hover_image_button.h"
#include "grit/theme_resources.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/image/image.h"
namespace {
class HoverImageButtonTest : public CocoaTest {
public:
HoverImageButtonTest() {
NSRect content_frame = [[test_window() contentView] frame];
scoped_nsobject<HoverImageButton> button(
[[HoverImageButton alloc] initWithFrame:content_frame]);
button_ = button.get();
[[test_window() contentView] addSubview:button_];
}
void DrawRect() {
[button_ lockFocus];
[button_ drawRect:[button_ bounds]];
[button_ unlockFocus];
}
HoverImageButton* button_;
};
// Test mouse events.
TEST_F(HoverImageButtonTest, ImageSwap) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
NSImage* image = rb.GetNativeImageNamed(IDR_HOME);
NSImage* hover = rb.GetNativeImageNamed(IDR_BACK);
[button_ setDefaultImage:image];
[button_ setHoverImage:hover];
[button_ mouseEntered:nil];
DrawRect();
EXPECT_EQ([button_ image], hover);
[button_ mouseExited:nil];
DrawRect();
EXPECT_NE([button_ image], hover);
EXPECT_EQ([button_ image], image);
}
// Test mouse events.
TEST_F(HoverImageButtonTest, Opacity) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
NSImage* image = rb.GetNativeImageNamed(IDR_HOME);
[button_ setDefaultImage:image];
[button_ setDefaultOpacity:0.5];
[button_ setHoverImage:image];
[button_ setHoverOpacity:1.0];
[button_ mouseEntered:nil];
DrawRect();
EXPECT_EQ([button_ alphaValue], 1.0);
[button_ mouseExited:nil];
DrawRect();
EXPECT_EQ([button_ alphaValue], 0.5);
}
} // namespace
|