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

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

Issue 229763005: Store default search provider data in dictionary pref. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Eriks comments and clean up Created 6 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
Index: chrome/browser/search_engines/default_search_manager_unittest.cc
diff --git a/chrome/browser/search_engines/default_search_manager_unittest.cc b/chrome/browser/search_engines/default_search_manager_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ac9f0ed32ac6f65445a9a31525d5897d8166ef9a
--- /dev/null
+++ b/chrome/browser/search_engines/default_search_manager_unittest.cc
@@ -0,0 +1,80 @@
+// Copyright 2014 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/files/scoped_temp_dir.h"
+#include "base/strings/string_split.h"
+#include "base/strings/string_util.h"
+#include "base/strings/utf_string_conversions.h"
+#include "base/time/time.h"
+#include "chrome/browser/search_engines/default_search_manager.h"
+#include "chrome/browser/search_engines/template_url.h"
+#include "chrome/test/base/testing_pref_service_syncable.h"
+#include "components/user_prefs/pref_registry_syncable.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+// Checks that the two TemplateURLs are similar. It does not check the id, the
+// date_created or the last_modified time. Neither pointer should be NULL.
+void ExpectSimilar(const TemplateURLData* expected,
+ const TemplateURLData* actual) {
+ EXPECT_TRUE(expected != NULL);
+ EXPECT_TRUE(actual != NULL);
+
+ if (!actual || !expected)
+ return;
gab 2014/04/23 20:00:18 optional: You can just use ASSERT_TRUE for the NUL
Peter Kasting 2014/04/23 20:41:06 I would echo this except without the "optional" pr
erikwright (departed) 2014/04/23 20:48:53 I asked her not to. Many developers are not aware
Peter Kasting 2014/04/23 20:56:25 I'm confused by what this last sentence is saying.
erikwright (departed) 2014/04/23 21:11:49 It's not obvious that this is a return statement.
Peter Kasting 2014/04/23 21:15:47 This means the developer fundamentally does not kn
erikwright (departed) 2014/04/23 21:21:05 You're right that I'm conflating this with the sec
Cait (Slow) 2014/04/23 23:26:55 Erik had recommended against using ASSERTs in help
+
+ EXPECT_EQ(expected->short_name, actual->short_name);
+ EXPECT_EQ(expected->keyword(), actual->keyword());
+ EXPECT_EQ(expected->url(), actual->url());
+ EXPECT_EQ(expected->suggestions_url, actual->suggestions_url);
+ EXPECT_EQ(expected->favicon_url, actual->favicon_url);
+ EXPECT_EQ(expected->alternate_urls, actual->alternate_urls);
+ EXPECT_EQ(expected->show_in_default_list, actual->show_in_default_list);
+ EXPECT_EQ(expected->safe_for_autoreplace, actual->safe_for_autoreplace);
+ EXPECT_EQ(expected->input_encodings, actual->input_encodings);
+ EXPECT_EQ(expected->search_terms_replacement_key,
+ actual->search_terms_replacement_key);
+}
+
+} // namespace
+
+class DefaultSearchManagerTest : public testing::Test {
+ public:
+ DefaultSearchManagerTest() {};
+
+ virtual void SetUp() OVERRIDE {
+ pref_service_.reset(new TestingPrefServiceSyncable);
+ DefaultSearchManager::RegisterProfilePrefs(pref_service_->registry());
+ }
+
+ virtual void TearDown() { pref_service_.reset(); }
erikwright (departed) 2014/04/23 20:48:53 Not necessary. There is one test instance per test
Cait (Slow) 2014/04/23 23:26:55 Done.
+
+ PrefService* Prefs() const { return pref_service_.get(); }
Peter Kasting 2014/04/23 20:41:06 This must be non-const or else return a const poin
Cait (Slow) 2014/04/23 23:26:55 Done.
+
+ private:
+ scoped_ptr<TestingPrefServiceSyncable> pref_service_;
gab 2014/04/23 20:00:18 I think it's fine to leave this member in the prot
Peter Kasting 2014/04/23 20:41:06 That would violate the Google style guide, which b
+ DISALLOW_COPY_AND_ASSIGN(DefaultSearchManagerTest);
+};
+
+TEST_F(DefaultSearchManagerTest, PrefSaving) {
+ DefaultSearchManager manager(Prefs());
+ TemplateURLData data;
+ data.short_name = base::UTF8ToUTF16("name1");
+ data.SetKeyword(base::UTF8ToUTF16("key1"));
+ data.SetURL("http://foo1/{searchTerms}");
+ data.suggestions_url = "http://sugg1";
+ data.alternate_urls.push_back("http://foo1/alt");
+ data.favicon_url = GURL("http://icon1");
+ data.safe_for_autoreplace = true;
+ data.show_in_default_list = true;
+ base::SplitString("UTF-8;UTF-16", ';', &data.input_encodings);
+ data.date_created = base::Time();
+ data.last_modified = base::Time();
+
+ manager.SaveToPrefService(data);
+ TemplateURLData read_data;
+ manager.ReadFromPrefService(&read_data);
+ ExpectSimilar(&data, &read_data);
+}
gab 2014/04/23 20:00:18 Also test reading with no prior writes (i.e. readi
Cait (Slow) 2014/04/23 23:26:55 Done. For now this just amounts to an empty dictio

Powered by Google App Engine
This is Rietveld 408576698