| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "public/web/WebSearchableFormData.h" | 31 #include "public/web/WebSearchableFormData.h" |
| 32 | 32 |
| 33 #include "platform/testing/URLTestHelpers.h" | 33 #include "platform/testing/URLTestHelpers.h" |
| 34 #include "platform/testing/UnitTestHelpers.h" | 34 #include "platform/testing/UnitTestHelpers.h" |
| 35 #include "public/platform/Platform.h" | 35 #include "public/platform/Platform.h" |
| 36 #include "public/platform/WebCache.h" | |
| 37 #include "public/platform/WebURLLoaderMockFactory.h" | 36 #include "public/platform/WebURLLoaderMockFactory.h" |
| 38 #include "public/web/WebDocument.h" | 37 #include "public/web/WebDocument.h" |
| 39 #include "public/web/WebFrame.h" | 38 #include "public/web/WebFrame.h" |
| 40 #include "testing/gmock/include/gmock/gmock.h" | 39 #include "testing/gmock/include/gmock/gmock.h" |
| 41 #include "testing/gtest/include/gtest/gtest.h" | 40 #include "testing/gtest/include/gtest/gtest.h" |
| 42 #include "web/tests/FrameTestHelpers.h" | 41 #include "web/tests/FrameTestHelpers.h" |
| 43 | 42 |
| 44 namespace blink { | 43 namespace blink { |
| 45 | 44 |
| 46 namespace { | 45 namespace { |
| 47 | 46 |
| 48 void registerMockedURLLoadFromBaseURL(const std::string& baseURL, | 47 void registerMockedURLLoadFromBaseURL(const std::string& baseURL, |
| 49 const std::string& fileName) { | 48 const std::string& fileName) { |
| 50 URLTestHelpers::registerMockedURLLoadFromBase(WebString::fromUTF8(baseURL), | 49 URLTestHelpers::registerMockedURLLoadFromBase(WebString::fromUTF8(baseURL), |
| 51 testing::webTestDataPath(), | 50 testing::webTestDataPath(), |
| 52 WebString::fromUTF8(fileName)); | 51 WebString::fromUTF8(fileName)); |
| 53 } | 52 } |
| 54 | 53 |
| 55 class WebSearchableFormDataTest : public ::testing::Test { | 54 class WebSearchableFormDataTest : public ::testing::Test { |
| 56 protected: | 55 protected: |
| 57 WebSearchableFormDataTest() {} | 56 WebSearchableFormDataTest() {} |
| 58 | 57 |
| 59 ~WebSearchableFormDataTest() override { | 58 ~WebSearchableFormDataTest() override { |
| 60 Platform::current()->getURLLoaderMockFactory()->unregisterAllURLs(); | 59 Platform::current() |
| 61 WebCache::clear(); | 60 ->getURLLoaderMockFactory() |
| 61 ->unregisterAllURLsAndClearMemoryCache(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 FrameTestHelpers::WebViewHelper m_webViewHelper; | 64 FrameTestHelpers::WebViewHelper m_webViewHelper; |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace | 67 } // namespace |
| 68 TEST_F(WebSearchableFormDataTest, HttpSearchString) { | 68 TEST_F(WebSearchableFormDataTest, HttpSearchString) { |
| 69 std::string baseURL("http://www.test.com/"); | 69 std::string baseURL("http://www.test.com/"); |
| 70 registerMockedURLLoadFromBaseURL(baseURL, "search_form_http.html"); | 70 registerMockedURLLoadFromBaseURL(baseURL, "search_form_http.html"); |
| 71 WebView* webView = | 71 WebView* webView = |
| (...skipping 20 matching lines...) Expand all Loading... |
| 92 | 92 |
| 93 EXPECT_EQ(forms.size(), 1U); | 93 EXPECT_EQ(forms.size(), 1U); |
| 94 | 94 |
| 95 WebSearchableFormData searchableFormData(forms[0]); | 95 WebSearchableFormData searchableFormData(forms[0]); |
| 96 EXPECT_EQ( | 96 EXPECT_EQ( |
| 97 "https://www.mock.url/search?hl=en&q={searchTerms}&btnM=Mock+Search", | 97 "https://www.mock.url/search?hl=en&q={searchTerms}&btnM=Mock+Search", |
| 98 searchableFormData.url().string()); | 98 searchableFormData.url().string()); |
| 99 } | 99 } |
| 100 | 100 |
| 101 } // namespace blink | 101 } // namespace blink |
| OLD | NEW |