| 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
|
|
|