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

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

Issue 2683033005: URLLoaderMockFactory: clear MemoryCache in unregisterAllURLs (Closed)
Patch Set: fix 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, Opera Software ASA. All rights reserved. 2 * Copyright (c) 2013, Opera Software ASA. 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 19 matching lines...) Expand all
30 30
31 #include "core/frame/FrameSerializer.h" 31 #include "core/frame/FrameSerializer.h"
32 32
33 #include <string> 33 #include <string>
34 #include "bindings/core/v8/V8Binding.h" 34 #include "bindings/core/v8/V8Binding.h"
35 #include "bindings/core/v8/V8BindingForTesting.h" 35 #include "bindings/core/v8/V8BindingForTesting.h"
36 #include "platform/SerializedResource.h" 36 #include "platform/SerializedResource.h"
37 #include "platform/testing/URLTestHelpers.h" 37 #include "platform/testing/URLTestHelpers.h"
38 #include "platform/testing/UnitTestHelpers.h" 38 #include "platform/testing/UnitTestHelpers.h"
39 #include "public/platform/Platform.h" 39 #include "public/platform/Platform.h"
40 #include "public/platform/WebCache.h"
41 #include "public/platform/WebString.h" 40 #include "public/platform/WebString.h"
42 #include "public/platform/WebThread.h" 41 #include "public/platform/WebThread.h"
43 #include "public/platform/WebURL.h" 42 #include "public/platform/WebURL.h"
44 #include "public/platform/WebURLLoaderMockFactory.h" 43 #include "public/platform/WebURLLoaderMockFactory.h"
45 #include "public/platform/WebURLRequest.h" 44 #include "public/platform/WebURLRequest.h"
46 #include "public/platform/WebURLResponse.h" 45 #include "public/platform/WebURLResponse.h"
47 #include "public/web/WebSettings.h" 46 #include "public/web/WebSettings.h"
48 #include "testing/gtest/include/gtest/gtest.h" 47 #include "testing/gtest/include/gtest/gtest.h"
49 #include "web/WebLocalFrameImpl.h" 48 #include "web/WebLocalFrameImpl.h"
50 #include "web/WebViewImpl.h" 49 #include "web/WebViewImpl.h"
(...skipping 14 matching lines...) Expand all
65 : m_folder("frameserializer/"), 64 : m_folder("frameserializer/"),
66 m_baseUrl(toKURL("http://www.test.com")) {} 65 m_baseUrl(toKURL("http://www.test.com")) {}
67 66
68 protected: 67 protected:
69 void SetUp() override { 68 void SetUp() override {
70 // We want the images to load and JavaScript to be on. 69 // We want the images to load and JavaScript to be on.
71 m_helper.initialize(true, nullptr, nullptr, nullptr, &configureSettings); 70 m_helper.initialize(true, nullptr, nullptr, nullptr, &configureSettings);
72 } 71 }
73 72
74 void TearDown() override { 73 void TearDown() override {
75 Platform::current()->getURLLoaderMockFactory()->unregisterAllURLs(); 74 Platform::current()
76 WebCache::clear(); 75 ->getURLLoaderMockFactory()
76 ->unregisterAllURLsAndClearMemoryCache();
77 } 77 }
78 78
79 void setBaseFolder(const char* folder) { m_folder = folder; } 79 void setBaseFolder(const char* folder) { m_folder = folder; }
80 80
81 void setRewriteURLFolder(const char* folder) { m_rewriteFolder = folder; } 81 void setRewriteURLFolder(const char* folder) { m_rewriteFolder = folder; }
82 82
83 void registerURL(const KURL& url, const char* file, const char* mimeType) { 83 void registerURL(const KURL& url, const char* file, const char* mimeType) {
84 registerMockedURLLoad( 84 registerMockedURLLoad(
85 url, testing::webTestDataPath(WebString::fromUTF8(m_folder + file)), 85 url, testing::webTestDataPath(WebString::fromUTF8(m_folder + file)),
86 WebString::fromUTF8(mimeType)); 86 WebString::fromUTF8(mimeType));
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 KURL(ParsedURLString, "http://foo.com?--"))); 554 KURL(ParsedURLString, "http://foo.com?--")));
555 EXPECT_EQ("saved from url=(0020)http://foo.com/#-%2D", 555 EXPECT_EQ("saved from url=(0020)http://foo.com/#-%2D",
556 FrameSerializer::markOfTheWebDeclaration( 556 FrameSerializer::markOfTheWebDeclaration(
557 KURL(ParsedURLString, "http://foo.com#--"))); 557 KURL(ParsedURLString, "http://foo.com#--")));
558 EXPECT_EQ("saved from url=(0026)http://foo.com/#bar-%2Dbaz", 558 EXPECT_EQ("saved from url=(0026)http://foo.com/#bar-%2Dbaz",
559 FrameSerializer::markOfTheWebDeclaration( 559 FrameSerializer::markOfTheWebDeclaration(
560 KURL(ParsedURLString, "http://foo.com#bar--baz"))); 560 KURL(ParsedURLString, "http://foo.com#bar--baz")));
561 } 561 }
562 562
563 } // namespace blink 563 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/DocumentLoaderTest.cpp ('k') | third_party/WebKit/Source/web/tests/ImeOnFocusTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698