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" |
36 #include "public/platform/WebURLLoaderMockFactory.h" | 37 #include "public/platform/WebURLLoaderMockFactory.h" |
37 #include "public/web/WebCache.h" | |
38 #include "public/web/WebDocument.h" | 38 #include "public/web/WebDocument.h" |
39 #include "public/web/WebFrame.h" | 39 #include "public/web/WebFrame.h" |
40 #include "testing/gmock/include/gmock/gmock.h" | 40 #include "testing/gmock/include/gmock/gmock.h" |
41 #include "testing/gtest/include/gtest/gtest.h" | 41 #include "testing/gtest/include/gtest/gtest.h" |
42 #include "web/tests/FrameTestHelpers.h" | 42 #include "web/tests/FrameTestHelpers.h" |
43 | 43 |
44 namespace blink { | 44 namespace blink { |
45 | 45 |
46 namespace { | 46 namespace { |
47 | 47 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |