OLD | NEW |
| (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 | |
54 DISALLOW_COPY_AND_ASSIGN(DefaultSearchManagerTest); | |
55 }; | |
56 | |
57 // Test that a TemplateURLData object is properly written and read from Prefs. | |
58 TEST_F(DefaultSearchManagerTest, ReadAndWritePref) { | |
59 DefaultSearchManager manager(pref_service()); | |
60 TemplateURLData data; | |
61 data.short_name = base::UTF8ToUTF16("name1"); | |
62 data.SetKeyword(base::UTF8ToUTF16("key1")); | |
63 data.SetURL("http://foo1/{searchTerms}"); | |
64 data.suggestions_url = "http://sugg1"; | |
65 data.alternate_urls.push_back("http://foo1/alt"); | |
66 data.favicon_url = GURL("http://icon1"); | |
67 data.safe_for_autoreplace = true; | |
68 data.show_in_default_list = true; | |
69 base::SplitString("UTF-8;UTF-16", ';', &data.input_encodings); | |
70 data.date_created = base::Time(); | |
71 data.last_modified = base::Time(); | |
72 | |
73 manager.SetUserSelectedDefaultSearchEngine(data); | |
74 TemplateURLData read_data; | |
75 manager.GetDefaultSearchEngine(&read_data); | |
76 ExpectSimilar(&data, &read_data); | |
77 } | |
78 | |
79 // Test that there is no default value set in the pref. | |
80 TEST_F(DefaultSearchManagerTest, ReadDefaultPref) { | |
81 DefaultSearchManager manager(pref_service()); | |
82 TemplateURLData read_data; | |
83 EXPECT_FALSE(manager.GetDefaultSearchEngine(&read_data)); | |
84 } | |
OLD | NEW |