OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/autocomplete/shortcuts_backend.h" | 5 #include "chrome/browser/autocomplete/shortcuts_backend.h" |
6 | 6 |
7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST, | 192 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST, |
193 "0,1", "0,0", AutocompleteMatchType::SEARCH_HISTORY }, | 193 "0,1", "0,0", AutocompleteMatchType::SEARCH_HISTORY }, |
194 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_ENTITY, | 194 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_ENTITY, |
195 "", "", AutocompleteMatchType::SEARCH_HISTORY }, | 195 "", "", AutocompleteMatchType::SEARCH_HISTORY }, |
196 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_INFINITE, | 196 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_INFINITE, |
197 "", "", AutocompleteMatchType::SEARCH_HISTORY }, | 197 "", "", AutocompleteMatchType::SEARCH_HISTORY }, |
198 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_PERSONALIZED, | 198 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_PERSONALIZED, |
199 "", "", AutocompleteMatchType::SEARCH_HISTORY }, | 199 "", "", AutocompleteMatchType::SEARCH_HISTORY }, |
200 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_PROFILE, | 200 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_PROFILE, |
201 "", "", AutocompleteMatchType::SEARCH_HISTORY }, | 201 "", "", AutocompleteMatchType::SEARCH_HISTORY }, |
| 202 { "0,1", "0,0", AutocompleteMatchType::SEARCH_SUGGEST_ANSWER, |
| 203 "", "", AutocompleteMatchType::SEARCH_HISTORY }, |
202 }; | 204 }; |
203 | 205 |
204 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) { | 206 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) { |
205 history::ShortcutsDatabase::Shortcut::MatchCore match_core( | 207 history::ShortcutsDatabase::Shortcut::MatchCore match_core( |
206 MatchCoreForTesting(std::string(), cases[i].input_contents_class, | 208 MatchCoreForTesting(std::string(), cases[i].input_contents_class, |
207 cases[i].input_description_class, | 209 cases[i].input_description_class, |
208 cases[i].input_type)); | 210 cases[i].input_type)); |
209 EXPECT_EQ(cases[i].output_contents_class, match_core.contents_class) | 211 EXPECT_EQ(cases[i].output_contents_class, match_core.contents_class) |
210 << ":i:" << i << ":type:" << cases[i].input_type; | 212 << ":i:" << i << ":type:" << cases[i].input_type; |
211 EXPECT_EQ(cases[i].output_description_class, match_core.description_class) | 213 EXPECT_EQ(cases[i].output_description_class, match_core.description_class) |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 ASSERT_TRUE(shortcut4_iter != shortcuts_map().end()); | 313 ASSERT_TRUE(shortcut4_iter != shortcuts_map().end()); |
312 EXPECT_EQ(shortcut4.id, shortcut4_iter->second.id); | 314 EXPECT_EQ(shortcut4.id, shortcut4_iter->second.id); |
313 | 315 |
314 history::ShortcutsDatabase::ShortcutIDs deleted_ids; | 316 history::ShortcutsDatabase::ShortcutIDs deleted_ids; |
315 deleted_ids.push_back(shortcut3.id); | 317 deleted_ids.push_back(shortcut3.id); |
316 deleted_ids.push_back(shortcut4.id); | 318 deleted_ids.push_back(shortcut4.id); |
317 EXPECT_TRUE(DeleteShortcutsWithIDs(deleted_ids)); | 319 EXPECT_TRUE(DeleteShortcutsWithIDs(deleted_ids)); |
318 | 320 |
319 ASSERT_EQ(0U, shortcuts_map().size()); | 321 ASSERT_EQ(0U, shortcuts_map().size()); |
320 } | 322 } |
OLD | NEW |