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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/cocoa/location_bar/image_decoration_unittest.mm
diff --git a/chrome/browser/cocoa/location_bar/image_decoration_unittest.mm b/chrome/browser/cocoa/location_bar/image_decoration_unittest.mm
new file mode 100644
index 0000000000000000000000000000000000000000..29040e030d31d3d2e361bf6bee1bbc9b25f30836
--- /dev/null
+++ b/chrome/browser/cocoa/location_bar/image_decoration_unittest.mm
@@ -0,0 +1,55 @@
+// Copyright (c) 2010 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>
+
+#import "chrome/browser/cocoa/location_bar/image_decoration.h"
+
+#import "chrome/browser/cocoa/cocoa_test_helper.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+class ImageDecorationTest : public CocoaTest {
+ public:
+ ImageDecoration decoration_;
+};
+
+TEST_F(ImageDecorationTest, SetGetImage) {
+ EXPECT_FALSE(decoration_.GetImage());
+
+ const NSSize kImageSize = NSMakeSize(20.0, 20.0);
+ scoped_nsobject<NSImage> image([[NSImage alloc] initWithSize:kImageSize]);
+
+ decoration_.SetImage(image);
+ EXPECT_EQ(decoration_.GetImage(), image);
+
+ decoration_.SetImage(nil);
+ EXPECT_FALSE(decoration_.GetImage());
+}
+
+TEST_F(ImageDecorationTest, GetWidthForSpace) {
+ const CGFloat kWide = 100.0;
+ const CGFloat kNarrow = 10.0;
+
+ // Decoration with no image is omitted.
+ EXPECT_EQ(decoration_.GetWidthForSpace(kWide),
+ LocationBarDecoration::kOmittedWidth);
+
+ const NSSize kImageSize = NSMakeSize(20.0, 20.0);
+ scoped_nsobject<NSImage> image([[NSImage alloc] initWithSize:kImageSize]);
+
+ // Decoration takes up the space of the image.
+ decoration_.SetImage(image);
+ EXPECT_EQ(decoration_.GetWidthForSpace(kWide), kImageSize.width);
+
+ // If the image doesn't fit, decoration is omitted.
+ EXPECT_EQ(decoration_.GetWidthForSpace(kNarrow),
+ LocationBarDecoration::kOmittedWidth);
+}
+
+// TODO(shess): It would be nice to test mouse clicks and dragging,
+// but those are hard because they require a real |owner|.
+
+} // namespace
« 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