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

Side by Side 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: Address comments 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/files/scoped_temp_dir.h"
6 #include "base/strings/string_split.h"
7 #include "base/strings/string_util.h"
8 #include "base/strings/utf_string_conversions.h"
9 #include "base/time/time.h"
10 #include "chrome/browser/search_engines/default_search_manager.h"
11 #include "chrome/browser/search_engines/template_url.h"
12 #include "chrome/test/base/testing_pref_service_syncable.h"
13 #include "components/user_prefs/pref_registry_syncable.h"
14 #include "testing/gtest/include/gtest/gtest.h"
15
16 namespace {
17
18 // Checks that the two TemplateURLs are similar. It does not check the id, the
19 // date_created or the last_modified time. Neither pointer should be NULL.
20 void ExpectSimilar(const TemplateURLData* expected,
21 const TemplateURLData* actual) {
22 ASSERT_TRUE(expected != NULL);
23 ASSERT_TRUE(actual != NULL);
24
25 EXPECT_EQ(expected->short_name, actual->short_name);
26 EXPECT_EQ(expected->keyword(), actual->keyword());
27 EXPECT_EQ(expected->url(), actual->url());
28 EXPECT_EQ(expected->suggestions_url, actual->suggestions_url);
29 EXPECT_EQ(expected->favicon_url, actual->favicon_url);
30 EXPECT_EQ(expected->alternate_urls, actual->alternate_urls);
31 EXPECT_EQ(expected->show_in_default_list, actual->show_in_default_list);
32 EXPECT_EQ(expected->safe_for_autoreplace, actual->safe_for_autoreplace);
33 EXPECT_EQ(expected->input_encodings, actual->input_encodings);
34 EXPECT_EQ(expected->search_terms_replacement_key,
35 actual->search_terms_replacement_key);
36 }
37
38 } // namespace
39
40 class DefaultSearchManagerTest : public testing::Test {
41 public:
42 DefaultSearchManagerTest() {};
43
44 virtual void SetUp() OVERRIDE {
45 pref_service_.reset(new TestingPrefServiceSyncable);
46 DefaultSearchManager::RegisterProfilePrefs(pref_service_->registry());
47 }
48
49 PrefService* pref_service() { return pref_service_.get(); }
50
51 private:
52 scoped_ptr<TestingPrefServiceSyncable> pref_service_;
53 DISALLOW_COPY_AND_ASSIGN(DefaultSearchManagerTest);
Peter Kasting 2014/04/23 23:36:30 Nit: We typically separate this from everything ab
Cait (Slow) 2014/04/24 14:53:39 Done.
54 };
55
56 // Test that a TemplateURLData object is properly written and read from Prefs.
57 TEST_F(DefaultSearchManagerTest, ReadAndWritePref) {
58 DefaultSearchManager manager(pref_service());
59 TemplateURLData data;
60 data.short_name = base::UTF8ToUTF16("name1");
61 data.SetKeyword(base::UTF8ToUTF16("key1"));
62 data.SetURL("http://foo1/{searchTerms}");
63 data.suggestions_url = "http://sugg1";
64 data.alternate_urls.push_back("http://foo1/alt");
65 data.favicon_url = GURL("http://icon1");
66 data.safe_for_autoreplace = true;
67 data.show_in_default_list = true;
68 base::SplitString("UTF-8;UTF-16", ';', &data.input_encodings);
69 data.date_created = base::Time();
70 data.last_modified = base::Time();
71
72 manager.SetUserSelectedDefaultSearchEngine(data);
73 TemplateURLData read_data;
74 manager.GetDefaultSearchEngine(&read_data);
75 ExpectSimilar(&data, &read_data);
76 }
77
78 // Test that there is no default value set in the pref.
79 TEST_F(DefaultSearchManagerTest, ReadDefaultPref) {
80 DefaultSearchManager manager(pref_service());
81 TemplateURLData read_data;
82 EXPECT_FALSE(manager.GetDefaultSearchEngine(&read_data));
83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698