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

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

Issue 543077: The search terms are escaped using + or %20 for space depending on whether re... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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
« no previous file with comments | « chrome/browser/search_engines/template_url.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search_engines/template_url_unittest.cc
===================================================================
--- chrome/browser/search_engines/template_url_unittest.cc (revision 36339)
+++ chrome/browser/search_engines/template_url_unittest.cc (working copy)
@@ -38,15 +38,29 @@
}
TEST_F(TemplateURLTest, URLRefTestSearchTerms) {
- TemplateURL t_url;
- TemplateURLRef ref(L"http://foo{searchTerms}", 0, 0);
- ASSERT_TRUE(ref.IsValid());
+ struct SearchTermsCase {
+ const wchar_t* url;
+ const wchar_t* terms;
+ const char* output;
+ } search_term_cases[] = {
+ { L"http://foo{searchTerms}", L"sea rch", "http://foosea%20rch/" },
+ { L"http://foo{searchTerms}?boo=abc", L"sea rch",
+ "http://foosea%20rch/?boo=abc" },
+ { L"http://foo/?boo={searchTerms}", L"sea rch",
+ "http://foo/?boo=sea+rch" }
+ };
+ for (size_t i = 0; i < ARRAYSIZE_UNSAFE(search_term_cases); ++i) {
+ const SearchTermsCase& value = search_term_cases[i];
+ TemplateURL t_url;
+ TemplateURLRef ref(value.url, 0, 0);
+ ASSERT_TRUE(ref.IsValid());
- ASSERT_TRUE(ref.SupportsReplacement());
- GURL result = GURL(WideToUTF8(ref.ReplaceSearchTerms(t_url, L"search",
- TemplateURLRef::NO_SUGGESTIONS_AVAILABLE, std::wstring())));
- ASSERT_TRUE(result.is_valid());
- ASSERT_EQ("http://foosearch/", result.spec());
+ ASSERT_TRUE(ref.SupportsReplacement());
+ GURL result = GURL(WideToUTF8(ref.ReplaceSearchTerms(t_url, value.terms,
+ TemplateURLRef::NO_SUGGESTIONS_AVAILABLE, std::wstring())));
+ ASSERT_TRUE(result.is_valid());
+ ASSERT_EQ(value.output, result.spec());
+ }
}
TEST_F(TemplateURLTest, URLRefTestCount) {
« no previous file with comments | « chrome/browser/search_engines/template_url.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698