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

Unified Diff: chrome/browser/cocoa/location_bar_view_mac_unittest.mm

Issue 50074: Initial implemention of Mac Omnibox. (Closed)
Patch Set: Disable LocationBarViewMacTest. Created 11 years, 8 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
« no previous file with comments | « chrome/browser/cocoa/location_bar_view_mac.mm ('k') | chrome/browser/cocoa/toolbar_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/location_bar_view_mac_unittest.mm
diff --git a/chrome/browser/cocoa/location_bar_view_mac_unittest.mm b/chrome/browser/cocoa/location_bar_view_mac_unittest.mm
index f84b15b1f6989cd7e120fd0c5761f39bdd8254a3..2f205f294174b25a2a2b195904393f837ec2fd2c 100644
--- a/chrome/browser/cocoa/location_bar_view_mac_unittest.mm
+++ b/chrome/browser/cocoa/location_bar_view_mac_unittest.mm
@@ -8,11 +8,18 @@
#include "chrome/browser/cocoa/location_bar_view_mac.h"
#include "testing/gtest/include/gtest/gtest.h"
+// TODO(shess): Figure out how to unittest this. The code below was
+// testing the hacked-up behavior so you didn't have to be pedantic
+// WRT http://. But that approach is completely and utterly wrong in
+// a world where omnibox is running.
+// http://code.google.com/p/chromium/issues/detail?id=9977
+
+#if 0
class LocationBarViewMacTest : public testing::Test {
public:
LocationBarViewMacTest()
: field_([[NSTextField alloc] init]),
- locationBarView_(new LocationBarViewMac(field_)) {
+ locationBarView_(new LocationBarViewMac(field_, NULL, NULL)) {
}
scoped_nsobject<NSTextField> field_;
@@ -32,11 +39,15 @@ TEST_F(LocationBarViewMacTest, GetInputString) {
EXPECT_EQ(locationBarView_->GetInputString(), ASCIIToWide("http://chost/"));
[field_ setStringValue:@"www.example.com"];
- EXPECT_EQ(locationBarView_->GetInputString(), ASCIIToWide("http://www.example.com/"));
+ EXPECT_EQ(locationBarView_->GetInputString(),
+ ASCIIToWide("http://www.example.com/"));
[field_ setStringValue:@"http://example.com"];
- EXPECT_EQ(locationBarView_->GetInputString(), ASCIIToWide("http://example.com/"));
+ EXPECT_EQ(locationBarView_->GetInputString(),
+ ASCIIToWide("http://example.com/"));
[field_ setStringValue:@"https://www.example.com"];
- EXPECT_EQ(locationBarView_->GetInputString(), ASCIIToWide("https://www.example.com/"));
+ EXPECT_EQ(locationBarView_->GetInputString(),
+ ASCIIToWide("https://www.example.com/"));
}
+#endif
« no previous file with comments | « chrome/browser/cocoa/location_bar_view_mac.mm ('k') | chrome/browser/cocoa/toolbar_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698