| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/message_loop/message_loop.h" | 6 #include "base/message_loop/message_loop.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "components/metrics/proto/omnibox_event.pb.h" | 8 #include "components/metrics/proto/omnibox_event.pb.h" |
| 9 #include "components/omnibox/autocomplete_match.h" | 9 #include "components/omnibox/autocomplete_match.h" |
| 10 #include "components/omnibox/autocomplete_scheme_classifier.h" | 10 #include "components/omnibox/autocomplete_scheme_classifier.h" |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 else | 347 else |
| 348 EXPECT_EQ(cases[i].expected_url, url->url()); | 348 EXPECT_EQ(cases[i].expected_url, url->url()); |
| 349 EXPECT_EQ(ASCIIToUTF16(cases[i].updated_text), input.text()); | 349 EXPECT_EQ(ASCIIToUTF16(cases[i].updated_text), input.text()); |
| 350 EXPECT_EQ(cases[i].updated_cursor_position, input.cursor_position()); | 350 EXPECT_EQ(cases[i].updated_cursor_position, input.cursor_position()); |
| 351 } | 351 } |
| 352 } | 352 } |
| 353 | 353 |
| 354 // If extra query params are specified on the command line, they should be | 354 // If extra query params are specified on the command line, they should be |
| 355 // reflected (only) in the default search provider's destination URL. | 355 // reflected (only) in the default search provider's destination URL. |
| 356 TEST_F(KeywordProviderTest, ExtraQueryParams) { | 356 TEST_F(KeywordProviderTest, ExtraQueryParams) { |
| 357 CommandLine::ForCurrentProcess()->AppendSwitchASCII( | 357 base::CommandLine::ForCurrentProcess()->AppendSwitchASCII( |
| 358 switches::kExtraSearchQueryParams, "a=b"); | 358 switches::kExtraSearchQueryParams, "a=b"); |
| 359 | 359 |
| 360 TestData<GURL> url_cases[] = { | 360 TestData<GURL> url_cases[] = { |
| 361 { ASCIIToUTF16("a 1 2 3"), 3, | 361 { ASCIIToUTF16("a 1 2 3"), 3, |
| 362 { { GURL("aa.com?a=b&foo=1+2+3"), false }, | 362 { { GURL("aa.com?a=b&foo=1+2+3"), false }, |
| 363 { GURL("bogus URL 1+2+3"), false }, | 363 { GURL("bogus URL 1+2+3"), false }, |
| 364 { GURL("http://aaaa/?aaaa=1&b=1+2+3&c"), false } } }, | 364 { GURL("http://aaaa/?aaaa=1&b=1+2+3&c"), false } } }, |
| 365 }; | 365 }; |
| 366 | 366 |
| 367 RunTest<GURL>(url_cases, arraysize(url_cases), | 367 RunTest<GURL>(url_cases, arraysize(url_cases), |
| 368 &AutocompleteMatch::destination_url); | 368 &AutocompleteMatch::destination_url); |
| 369 } | 369 } |
| OLD | NEW |