| 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/files/scoped_temp_dir.h" | 6 #include "base/files/scoped_temp_dir.h" |
| 7 #include "base/memory/scoped_vector.h" | 7 #include "base/memory/scoped_vector.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "chrome/browser/search_engines/template_url_service.h" | |
| 10 #include "components/google/core/browser/google_switches.h" | 9 #include "components/google/core/browser/google_switches.h" |
| 11 #include "components/pref_registry/testing_pref_service_syncable.h" | 10 #include "components/pref_registry/testing_pref_service_syncable.h" |
| 12 #include "components/search_engines/prepopulated_engines.h" | 11 #include "components/search_engines/prepopulated_engines.h" |
| 13 #include "components/search_engines/search_engines_pref_names.h" | 12 #include "components/search_engines/search_engines_pref_names.h" |
| 14 #include "components/search_engines/search_terms_data.h" | 13 #include "components/search_engines/search_terms_data.h" |
| 15 #include "components/search_engines/template_url.h" | 14 #include "components/search_engines/template_url.h" |
| 16 #include "components/search_engines/template_url_prepopulate_data.h" | 15 #include "components/search_engines/template_url_prepopulate_data.h" |
| 16 #include "components/search_engines/template_url_service.h" |
| 17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
| 20 | 20 |
| 21 using base::ASCIIToUTF16; | 21 using base::ASCIIToUTF16; |
| 22 | 22 |
| 23 namespace { | 23 namespace { |
| 24 | 24 |
| 25 SearchEngineType GetEngineType(const std::string& url) { | 25 SearchEngineType GetEngineType(const std::string& url) { |
| 26 TemplateURLData data; | 26 TemplateURLData data; |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 EXPECT_EQ(SEARCH_ENGINE_OTHER, GetEngineType("invalid:search:url")); | 342 EXPECT_EQ(SEARCH_ENGINE_OTHER, GetEngineType("invalid:search:url")); |
| 343 | 343 |
| 344 // URL that doesn't look Google-related, but matches a Google base URL | 344 // URL that doesn't look Google-related, but matches a Google base URL |
| 345 // specified on the command line. | 345 // specified on the command line. |
| 346 const std::string foo_url("http://www.foo.com/search?q={searchTerms}"); | 346 const std::string foo_url("http://www.foo.com/search?q={searchTerms}"); |
| 347 EXPECT_EQ(SEARCH_ENGINE_OTHER, GetEngineType(foo_url)); | 347 EXPECT_EQ(SEARCH_ENGINE_OTHER, GetEngineType(foo_url)); |
| 348 CommandLine::ForCurrentProcess()->AppendSwitchASCII(switches::kGoogleBaseURL, | 348 CommandLine::ForCurrentProcess()->AppendSwitchASCII(switches::kGoogleBaseURL, |
| 349 "http://www.foo.com/"); | 349 "http://www.foo.com/"); |
| 350 EXPECT_EQ(SEARCH_ENGINE_GOOGLE, GetEngineType(foo_url)); | 350 EXPECT_EQ(SEARCH_ENGINE_GOOGLE, GetEngineType(foo_url)); |
| 351 } | 351 } |
| OLD | NEW |