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

Unified Diff: third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp

Issue 2680723002: Generalize ScopedRegisteredURL as ScoedMockedURL* (Closed)
Patch Set: append missed files 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp
diff --git a/third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp b/third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..08c30bdec2aec10f5ca55b0b0d367c2664c6c134
--- /dev/null
+++ b/third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp
@@ -0,0 +1,53 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "platform/testing/ScopedMockedURL.h"
+
+#include "platform/testing/URLTestHelpers.h"
+#include "public/platform/Platform.h"
+#include "public/platform/WebURLLoaderMockFactory.h"
+
+namespace blink {
+namespace testing {
+
+ScopedMockedURL::ScopedMockedURL(const WebURL& url) : m_url(url) {}
+
+ScopedMockedURL::~ScopedMockedURL() {
+ Platform::current()->getURLLoaderMockFactory()->unregisterURL(m_url);
+}
+
+ScopedMockedURLLoadFromBase::ScopedMockedURLLoadFromBase(
+ const WebString& baseURL,
+ const WebString& basePath,
+ const WebString& fileName,
+ const WebString& mimeType)
+ : ScopedMockedURL(URLTestHelpers::registerMockedURLLoadFromBase(baseURL,
+ basePath,
+ fileName,
+ mimeType)) {
+}
+
+ScopedMockedURLLoad::ScopedMockedURLLoad(const WebURL& fullURL,
+ const WebString& filePath,
+ const WebString& mimeType)
+ : ScopedMockedURL(fullURL) {
+ URLTestHelpers::registerMockedURLLoad(fullURL, filePath, mimeType);
+}
+
+ScopedMockedURLLoadWithCustomResponse::ScopedMockedURLLoadWithCustomResponse(
+ const WebURL& fullURL,
+ const WebString& filePath,
+ WebURLResponse response)
+ : ScopedMockedURL(fullURL) {
+ URLTestHelpers::registerMockedURLLoadWithCustomResponse(fullURL, filePath,
+ response);
+}
+
+ScopedMockedErrorURLLoad::ScopedMockedErrorURLLoad(const WebURL& fullURL)
+ : ScopedMockedURL(fullURL) {
+ URLTestHelpers::registerMockedErrorURLLoad(fullURL);
+}
+
+} // namespace testing
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698