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

Side by Side Diff: third_party/WebKit/Source/web/tests/WebSearchableFormDataTest.cpp

Issue 2683033005: URLLoaderMockFactory: clear MemoryCache in unregisterAllURLs (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
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
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()->getURLLoaderMockFactory()->unregisterAllURLs();
61 WebCache::clear();
62 } 60 }
63 61
64 FrameTestHelpers::WebViewHelper m_webViewHelper; 62 FrameTestHelpers::WebViewHelper m_webViewHelper;
65 }; 63 };
66 64
67 } // namespace 65 } // namespace
68 TEST_F(WebSearchableFormDataTest, HttpSearchString) { 66 TEST_F(WebSearchableFormDataTest, HttpSearchString) {
69 std::string baseURL("http://www.test.com/"); 67 std::string baseURL("http://www.test.com/");
70 registerMockedURLLoadFromBaseURL(baseURL, "search_form_http.html"); 68 registerMockedURLLoadFromBaseURL(baseURL, "search_form_http.html");
71 WebView* webView = 69 WebView* webView =
(...skipping 20 matching lines...) Expand all
92 90
93 EXPECT_EQ(forms.size(), 1U); 91 EXPECT_EQ(forms.size(), 1U);
94 92
95 WebSearchableFormData searchableFormData(forms[0]); 93 WebSearchableFormData searchableFormData(forms[0]);
96 EXPECT_EQ( 94 EXPECT_EQ(
97 "https://www.mock.url/search?hl=en&q={searchTerms}&btnM=Mock+Search", 95 "https://www.mock.url/search?hl=en&q={searchTerms}&btnM=Mock+Search",
98 searchableFormData.url().string()); 96 searchableFormData.url().string());
99 } 97 }
100 98
101 } // namespace blink 99 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698