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

Unified Diff: chrome/browser/search_engines/template_url_prepopulate_data_unittest.cc

Issue 2974001: Allow the default search providers to be specified by the preferences files,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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
« no previous file with comments | « chrome/browser/search_engines/template_url_prepopulate_data.cc ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search_engines/template_url_prepopulate_data_unittest.cc
===================================================================
--- chrome/browser/search_engines/template_url_prepopulate_data_unittest.cc (revision 52156)
+++ chrome/browser/search_engines/template_url_prepopulate_data_unittest.cc (working copy)
@@ -1,7 +1,7 @@
// 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.
-
+#include "base/scoped_temp_dir.h"
#include "base/scoped_vector.h"
#include "chrome/browser/search_engines/template_url.h"
#include "chrome/browser/search_engines/template_url_prepopulate_data.h"
@@ -78,3 +78,50 @@
}
}
}
+
+// Verifies that default search providers from the preferences file
+// override the built-in ones.
+TEST_F(TemplateURLPrepopulateDataTest, ProvidersFromPrefs) {
+ const char pref_data[] =
+ "{ "
+ " \"search_provider_overrides_version\":1,"
+ " \"search_provider_overrides\": ["
+ " { \"name\":\"foo\","
+ " \"keyword\":\"fook\","
+ " \"search_url\":\"http://foo.com/s?q={searchTerms}\","
+ " \"favicon_url\":\"http://foi.com/favicon.ico\","
+ " \"suggest_url\":\"\","
+ " \"encoding\":\"UTF-8\","
+ " \"id\":1001"
+ " }"
+ " ]"
+ "}";
+
+ ScopedTempDir temp_dir;
+ ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
+ FilePath preferences_file = temp_dir.path().AppendASCII("Preferences");
+ file_util::WriteFile(preferences_file, pref_data, sizeof(pref_data));
+
+ scoped_ptr<PrefService> prefs(new PrefService(new PrefValueStore(
+ NULL, new JsonPrefStore(preferences_file,
+ ChromeThread::GetMessageLoopProxyForThread(ChromeThread::FILE)),
+ NULL, NULL)));
+
+ TemplateURLPrepopulateData::RegisterUserPrefs(prefs.get());
+
+ int version = TemplateURLPrepopulateData::GetDataVersion(prefs.get());
+ EXPECT_EQ(1, version);
+
+ std::vector<TemplateURL*> t_urls;
+ size_t default_index;
+ TemplateURLPrepopulateData::GetPrepopulatedEngines(
+ prefs.get(), &t_urls, &default_index);
+
+ ASSERT_EQ(1u, t_urls.size());
+ EXPECT_EQ(L"foo", t_urls[0]->short_name());
+ EXPECT_EQ(L"fook", t_urls[0]->keyword());
+ EXPECT_EQ("foo.com", t_urls[0]->url()->GetHost());
+ EXPECT_EQ("foi.com", t_urls[0]->GetFavIconURL().host());
+ EXPECT_EQ(1u, t_urls[0]->input_encodings().size());
+ EXPECT_EQ(1001, t_urls[0]->prepopulate_id());
+}
« no previous file with comments | « chrome/browser/search_engines/template_url_prepopulate_data.cc ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698