// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/message_loop.h" #include "base/utf_string_conversions.h" #include "chrome/browser/autocomplete/autocomplete_match.h" #include "chrome/browser/autocomplete/keyword_provider.h" #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/test/base/testing_browser_process.h" #include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" class KeywordProviderTest : public testing::Test { protected: template struct test_data { const string16 input; const size_t num_results; const ResultType output[3]; }; KeywordProviderTest() : kw_provider_(NULL) { } virtual ~KeywordProviderTest() { } virtual void SetUp(); virtual void TearDown(); template void RunTest(test_data* keyword_cases, int num_cases, ResultType AutocompleteMatch::* member); protected: scoped_refptr kw_provider_; scoped_ptr model_; }; void KeywordProviderTest::SetUp() { static const TemplateURLService::Initializer kTestKeywordData[] = { { "aa", "aa.com?foo=%s", "aa" }, { "aaaa", "http://aaaa/?aaaa=1&b=%s&c", "aaaa" }, { "aaaaa", "%s", "aaaaa" }, { "ab", "bogus URL %s", "ab" }, { "weasel", "weasel%sweasel", "weasel" }, { "www", " +%2B?=%sfoo ", "www" }, { "z", "%s=z", "z" }, }; model_.reset(new TemplateURLService(kTestKeywordData, arraysize(kTestKeywordData))); kw_provider_ = new KeywordProvider(NULL, model_.get()); } void KeywordProviderTest::TearDown() { model_.reset(); kw_provider_ = NULL; } template void KeywordProviderTest::RunTest( test_data* keyword_cases, int num_cases, ResultType AutocompleteMatch::* member) { ACMatches matches; for (int i = 0; i < num_cases; ++i) { AutocompleteInput input(keyword_cases[i].input, string16::npos, string16(), true, false, true, AutocompleteInput::ALL_MATCHES); kw_provider_->Start(input, false); EXPECT_TRUE(kw_provider_->done()); matches = kw_provider_->matches(); EXPECT_EQ(keyword_cases[i].num_results, matches.size()) << ASCIIToUTF16("Input was: ") + keyword_cases[i].input; if (matches.size() == keyword_cases[i].num_results) { for (size_t j = 0; j < keyword_cases[i].num_results; ++j) { EXPECT_EQ(keyword_cases[i].output[j], matches[j].*member); } } } } TEST_F(KeywordProviderTest, Edit) { test_data edit_cases[] = { // Searching for a nonexistent prefix should give nothing. {ASCIIToUTF16("Not Found"), 0, {}}, {ASCIIToUTF16("aaaaaNot Found"), 0, {}}, // Check that tokenization only collapses whitespace between first tokens, // no-query-input cases have a space appended, and action is not escaped. {ASCIIToUTF16("z"), 1, {ASCIIToUTF16("z ")}}, {ASCIIToUTF16("z \t"), 1, {ASCIIToUTF16("z ")}}, // Check that exact, substituting keywords with a verbatim search term // don't generate a result. (These are handled by SearchProvider.) {ASCIIToUTF16("z foo"), 0, {}}, {ASCIIToUTF16("z a b c++"), 0, {}}, // Matches should be limited to three, and sorted in quality order, not // alphabetical. {ASCIIToUTF16("aaa"), 2, {ASCIIToUTF16("aaaa "), ASCIIToUTF16("aaaaa ")}}, {ASCIIToUTF16("a 1 2 3"), 3, {ASCIIToUTF16("aa 1 2 3"), ASCIIToUTF16("ab 1 2 3"), ASCIIToUTF16("aaaa 1 2 3")}}, {ASCIIToUTF16("www.a"), 3, {ASCIIToUTF16("aa "), ASCIIToUTF16("ab "), ASCIIToUTF16("aaaa ")}}, // Exact matches should prevent returning inexact matches. Also, the // verbatim query for this keyword match should not be returned. (It's // returned by SearchProvider.) {ASCIIToUTF16("aaaa foo"), 0, {}}, {ASCIIToUTF16("www.aaaa foo"), 0, {}}, // Clean up keyword input properly. "http" and "https" are the only // allowed schemes. {ASCIIToUTF16("www"), 1, {ASCIIToUTF16("www ")}}, {ASCIIToUTF16("www."), 0, {}}, {ASCIIToUTF16("www.w w"), 2, {ASCIIToUTF16("www w"), ASCIIToUTF16("weasel w")}}, {ASCIIToUTF16("http://www"), 1, {ASCIIToUTF16("www ")}}, {ASCIIToUTF16("http://www."), 0, {}}, {ASCIIToUTF16("ftp: blah"), 0, {}}, {ASCIIToUTF16("mailto:z"), 0, {}}, {ASCIIToUTF16("ftp://z"), 0, {}}, {ASCIIToUTF16("https://z"), 1, {ASCIIToUTF16("z ")}}, }; RunTest(edit_cases, arraysize(edit_cases), &AutocompleteMatch::fill_into_edit); } TEST_F(KeywordProviderTest, URL) { test_data url_cases[] = { // No query input -> empty destination URL. {ASCIIToUTF16("z"), 1, {GURL()}}, {ASCIIToUTF16("z \t"), 1, {GURL()}}, // Check that tokenization only collapses whitespace between first tokens // and query input, but not rest of URL, is escaped. {ASCIIToUTF16("w bar +baz"), 2, {GURL(" +%2B?=bar+%2Bbazfoo "), GURL("bar+%2Bbaz=z")}}, // Substitution should work with various locations of the "%s". {ASCIIToUTF16("aaa 1a2b"), 2, {GURL("http://aaaa/?aaaa=1&b=1a2b&c"), GURL("1a2b")}}, {ASCIIToUTF16("a 1 2 3"), 3, {GURL("aa.com?foo=1+2+3"), GURL("bogus URL 1+2+3"), GURL("http://aaaa/?aaaa=1&b=1+2+3&c")}}, {ASCIIToUTF16("www.w w"), 2, {GURL(" +%2B?=wfoo "), GURL("weaselwweasel")}}, }; RunTest(url_cases, arraysize(url_cases), &AutocompleteMatch::destination_url); } TEST_F(KeywordProviderTest, Contents) { test_data contents_cases[] = { // No query input -> substitute "" into contents. {ASCIIToUTF16("z"), 1, {ASCIIToUTF16("Search z for ")}}, {ASCIIToUTF16("z \t"), 1, {ASCIIToUTF16("Search z for ")}}, // Exact keyword matches with remaining text should return nothing. {ASCIIToUTF16("www.www www"), 0, {}}, {ASCIIToUTF16("z a b c++"), 0, {}}, // Exact keyword matches with remaining text when the keyword is an // extension keyword should return something. This is tested in // chrome/browser/extensions/api/omnibox/omnibox_apitest.cc's // in OmniboxApiTest's Basic test. // Substitution should work with various locations of the "%s". {ASCIIToUTF16("aaa"), 2, {ASCIIToUTF16("Search aaaa for "), ASCIIToUTF16("Search aaaaa for ")}}, {ASCIIToUTF16("www.w w"), 2, {ASCIIToUTF16("Search www for w"), ASCIIToUTF16("Search weasel for w")}}, // Also, check that tokenization only collapses whitespace between first // tokens and contents are not escaped or unescaped. {ASCIIToUTF16("a 1 2+ 3"), 3, {ASCIIToUTF16("Search aa for 1 2+ 3"), ASCIIToUTF16("Search ab for 1 2+ 3"), ASCIIToUTF16("Search aaaa for 1 2+ 3")}}, }; RunTest(contents_cases, arraysize(contents_cases), &AutocompleteMatch::contents); } TEST_F(KeywordProviderTest, DISABLED_Description) { test_data description_cases[] = { // Whole keyword should be returned for both exact and inexact matches. {ASCIIToUTF16("z foo"), 1, {ASCIIToUTF16("(Keyword: z)")}}, {ASCIIToUTF16("a foo"), 3, {ASCIIToUTF16("(Keyword: aa)"), ASCIIToUTF16("(Keyword: ab)"), ASCIIToUTF16("(Keyword: aaaa)")}}, {ASCIIToUTF16("ftp://www.www w"), 0, {}}, {ASCIIToUTF16("http://www.ab w"), 1, {ASCIIToUTF16("(Keyword: ab)")}}, // Keyword should be returned regardless of query input. {ASCIIToUTF16("z"), 1, {ASCIIToUTF16("(Keyword: z)")}}, {ASCIIToUTF16("z \t"), 1, {ASCIIToUTF16("(Keyword: z)")}}, {ASCIIToUTF16("z a b c++"), 1, {ASCIIToUTF16("(Keyword: z)")}}, }; RunTest(description_cases, arraysize(description_cases), &AutocompleteMatch::description); } TEST_F(KeywordProviderTest, AddKeyword) { TemplateURLData data; data.short_name = ASCIIToUTF16("Test"); string16 keyword(ASCIIToUTF16("foo")); data.SetKeyword(keyword); data.SetURL("http://www.google.com/foo?q={searchTerms}"); TemplateURL* template_url = new TemplateURL(NULL, data); model_->Add(template_url); ASSERT_TRUE(template_url == model_->GetTemplateURLForKeyword(keyword)); } TEST_F(KeywordProviderTest, RemoveKeyword) { string16 url(ASCIIToUTF16("http://aaaa/?aaaa=1&b={searchTerms}&c")); model_->Remove(model_->GetTemplateURLForKeyword(ASCIIToUTF16("aaaa"))); ASSERT_TRUE(model_->GetTemplateURLForKeyword(ASCIIToUTF16("aaaa")) == NULL); } TEST_F(KeywordProviderTest, GetKeywordForInput) { EXPECT_EQ(ASCIIToUTF16("aa"), kw_provider_->GetKeywordForText(ASCIIToUTF16("aa"))); EXPECT_EQ(string16(), kw_provider_->GetKeywordForText(ASCIIToUTF16("aafoo"))); EXPECT_EQ(string16(), kw_provider_->GetKeywordForText(ASCIIToUTF16("aa foo"))); } TEST_F(KeywordProviderTest, GetSubstitutingTemplateURLForInput) { struct { const std::string text; const size_t cursor_position; const bool allow_exact_keyword_match; const std::string expected_url; const std::string updated_text; const size_t updated_cursor_position; } cases[] = { { "foo", string16::npos, true, "", "foo", string16::npos }, { "aa foo", string16::npos, true, "aa.com?foo={searchTerms}", "foo", string16::npos }, // Cursor adjustment. { "aa foo", string16::npos, true, "aa.com?foo={searchTerms}", "foo", string16::npos }, { "aa foo", 4u, true, "aa.com?foo={searchTerms}", "foo", 1u }, // Cursor at the end. { "aa foo", 6u, true, "aa.com?foo={searchTerms}", "foo", 3u }, // Cursor before the first character of the remaining text. { "aa foo", 3u, true, "aa.com?foo={searchTerms}", "foo", 0u }, // Trailing space. { "aa foo ", 7u, true, "aa.com?foo={searchTerms}", "foo", string16::npos }, // Trailing space without remaining text, cursor in the middle. { "aa ", 3u, true, "aa.com?foo={searchTerms}", "", string16::npos }, // Trailing space without remaining text, cursor at the end. { "aa ", 4u, true, "aa.com?foo={searchTerms}", "", string16::npos }, // Extra space after keyword, cursor at the end. { "aa foo ", 8u, true, "aa.com?foo={searchTerms}", "foo", string16::npos }, // Extra space after keyword, cursor in the middle. { "aa foo ", 3u, true, "aa.com?foo={searchTerms}", "foo", string16::npos }, // Extra space after keyword, no trailing space, cursor at the end. { "aa foo", 7u, true, "aa.com?foo={searchTerms}", "foo", 3u }, // Extra space after keyword, no trailing space, cursor in the middle. { "aa foo", 5u, true, "aa.com?foo={searchTerms}", "foo", 1u }, // Disallow exact keyword match. { "aa foo", string16::npos, false, "", "aa foo", string16::npos }, }; for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); i++) { AutocompleteInput input(ASCIIToUTF16(cases[i].text), cases[i].cursor_position, string16(), false, false, cases[i].allow_exact_keyword_match, AutocompleteInput::ALL_MATCHES); const TemplateURL* url = KeywordProvider::GetSubstitutingTemplateURLForInput(model_.get(), &input); if (cases[i].expected_url.empty()) EXPECT_FALSE(url); else EXPECT_EQ(cases[i].expected_url, url->url()); EXPECT_EQ(ASCIIToUTF16(cases[i].updated_text), input.text()); EXPECT_EQ(cases[i].updated_cursor_position, input.cursor_position()); } }