Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: chrome/browser/cocoa/location_bar/image_decoration_unittest.mm

Issue 2971004: [Mac] Star as a rhs-decoration in AutocompleteTextFieldCell. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Changes for rohit, unit-test tweaks. Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 #import "chrome/browser/cocoa/location_bar/image_decoration.h"
8
9 #import "chrome/browser/cocoa/cocoa_test_helper.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11
12 namespace {
13
14 class ImageDecorationTest : public CocoaTest {
15 public:
16 ImageDecoration decoration_;
17 };
18
19 TEST_F(ImageDecorationTest, SetGetImage) {
20 EXPECT_FALSE(decoration_.GetImage());
21
22 const NSSize kImageSize = NSMakeSize(20.0, 20.0);
23 scoped_nsobject<NSImage> image([[NSImage alloc] initWithSize:kImageSize]);
24
25 decoration_.SetImage(image);
26 EXPECT_EQ(decoration_.GetImage(), image);
27
28 decoration_.SetImage(nil);
29 EXPECT_FALSE(decoration_.GetImage());
30 }
31
32 TEST_F(ImageDecorationTest, GetWidthForSpace) {
33 const CGFloat kWide = 100.0;
34 const CGFloat kNarrow = 10.0;
35
36 // Decoration with no image is omitted.
37 EXPECT_EQ(decoration_.GetWidthForSpace(kWide),
38 LocationBarDecoration::kOmittedWidth);
39
40 const NSSize kImageSize = NSMakeSize(20.0, 20.0);
41 scoped_nsobject<NSImage> image([[NSImage alloc] initWithSize:kImageSize]);
42
43 // Decoration takes up the space of the image.
44 decoration_.SetImage(image);
45 EXPECT_EQ(decoration_.GetWidthForSpace(kWide), kImageSize.width);
46
47 // If the image doesn't fit, decoration is omitted.
48 EXPECT_EQ(decoration_.GetWidthForSpace(kNarrow),
49 LocationBarDecoration::kOmittedWidth);
50 }
51
52 // TODO(shess): It would be nice to test mouse clicks and dragging,
53 // but those are hard because they require a real |owner|.
54
55 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/location_bar/image_decoration.mm ('k') | chrome/browser/cocoa/location_bar/location_bar_view_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698