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

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

Issue 341060: [Mac] Prevent search engines from disappearing in the preferences list (Closed)
Patch Set: Created 11 years, 2 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/search_engine_list_model_unittest.mm
diff --git a/chrome/browser/cocoa/search_engine_list_model_unittest.mm b/chrome/browser/cocoa/search_engine_list_model_unittest.mm
index 600d9bbf61ff55c175e985a66eb6f1ef556f4c3f..97e5c55730e32125711182b5bb3e38c891645351 100644
--- a/chrome/browser/cocoa/search_engine_list_model_unittest.mm
+++ b/chrome/browser/cocoa/search_engine_list_model_unittest.mm
@@ -30,13 +30,13 @@ class SearchEngineListModelTest : public PlatformTest {
// Build a fake set of template urls.
template_model_.reset(new TemplateURLModel(helper_.profile()));
TemplateURL* t_url = new TemplateURL();
- t_url->SetURL(L"http://www.google.com/foo/bar", 0, 0);
+ t_url->SetURL(L"http://www.google.com/?q={searchTerms}", 0, 0);
t_url->set_keyword(L"keyword");
t_url->set_short_name(L"google");
t_url->set_show_in_default_list(true);
template_model_->Add(t_url);
t_url = new TemplateURL();
- t_url->SetURL(L"http://www.google2.com/foo/bar", 0, 0);
+ t_url->SetURL(L"http://www.google2.com/?q={searchTerms}", 0, 0);
t_url->set_keyword(L"keyword2");
t_url->set_short_name(L"google2");
t_url->set_show_in_default_list(true);
@@ -70,9 +70,7 @@ TEST_F(SearchEngineListModelTest, Init) {
TEST_F(SearchEngineListModelTest, Engines) {
NSArray* engines = [model_ searchEngines];
- // TODO(pinkerton): because the templates we create aren't truly parsable,
- // they won't pass the "displayable" test and thus we don't get any results.
- EXPECT_EQ([engines count], /* 2U */ 0U);
+ EXPECT_EQ([engines count], 2U);
}
TEST_F(SearchEngineListModelTest, Default) {
@@ -80,6 +78,32 @@ TEST_F(SearchEngineListModelTest, Default) {
[model_ setDefaultIndex:1];
EXPECT_EQ([model_ defaultIndex], 1U);
+
+ // Add two more URLs, neither of which are shown in the default list.
+ TemplateURL* t_url = new TemplateURL();
+ t_url->SetURL(L"http://www.google3.com/?q={searchTerms}", 0, 0);
+ t_url->set_keyword(L"keyword3");
+ t_url->set_short_name(L"google3 not eligible");
+ t_url->set_show_in_default_list(false);
+ template_model_->Add(t_url);
+ t_url = new TemplateURL();
+ t_url->SetURL(L"http://www.google4.com/?q={searchTerms}", 0, 0);
+ t_url->set_keyword(L"keyword4");
+ t_url->set_short_name(L"google4");
+ t_url->set_show_in_default_list(false);
+ template_model_->Add(t_url);
+
+ // Still should only have 2 engines and not these newly added ones.
+ EXPECT_EQ([[model_ searchEngines] count], 2U);
+
+ // Since keyword3 is not in the default list, the 2nd index in the default
+ // key word list should be keyword4. Test for http://crbug.com/21898.
+ template_model_->SetDefaultSearchProvider(t_url);
+ EXPECT_EQ([[model_ searchEngines] count], 3U);
+ EXPECT_EQ([model_ defaultIndex], 2U);
+
+ NSString* defaultString = [[model_ searchEngines] objectAtIndex:2];
+ EXPECT_TRUE([@"google4" isEqualToString:defaultString]);
}
// Make sure that when the back-end model changes that we get a notification.

Powered by Google App Engine
This is Rietveld 408576698