blob: 806f9847b9eda169dc2f5d8fdff392a8b75df49f [file] [log] [blame]
// Copyright 2019 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_TESTING_TEST_LOADER_FACTORY_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_TESTING_TEST_LOADER_FACTORY_H_
#include <memory>
#include <utility>
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/public/platform/scheduler/web_resource_loading_task_runner_handle.h"
#include "third_party/blink/public/platform/web_back_forward_cache_loader_helper.h"
#include "third_party/blink/public/platform/web_url_loader_factory.h"
#include "third_party/blink/public/platform/web_url_loader_mock_factory.h"
#include "third_party/blink/renderer/platform/exported/wrapped_resource_request.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_fetcher.h"
#include "third_party/blink/renderer/platform/loader/testing/web_url_loader_factory_with_mock.h"
namespace blink {
// ResourceFetcher::LoaderFactory implementation for tests.
class TestLoaderFactory : public ResourceFetcher::LoaderFactory {
public:
TestLoaderFactory()
: TestLoaderFactory(WebURLLoaderMockFactory::GetSingletonInstance()) {}
explicit TestLoaderFactory(WebURLLoaderMockFactory* mock_factory)
: url_loader_factory_(
std::make_unique<WebURLLoaderFactoryWithMock>(mock_factory)) {}
// LoaderFactory implementations
std::unique_ptr<WebURLLoader> CreateURLLoader(
const ResourceRequest& request,
const ResourceLoaderOptions& options,
scoped_refptr<base::SingleThreadTaskRunner> freezable_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> unfreezable_task_runner,
WebBackForwardCacheLoaderHelper back_forward_cache_loader_helper)
override {
WrappedResourceRequest wrapped(request);
return url_loader_factory_->CreateURLLoader(
wrapped,
scheduler::WebResourceLoadingTaskRunnerHandle::CreateUnprioritized(
std::move(freezable_task_runner)),
scheduler::WebResourceLoadingTaskRunnerHandle::CreateUnprioritized(
std::move(unfreezable_task_runner)),
/*keep_alive_handle=*/mojo::NullRemote(),
back_forward_cache_loader_helper);
}
std::unique_ptr<WebCodeCacheLoader> CreateCodeCacheLoader() override {
return Platform::Current()->CreateCodeCacheLoader();
}
private:
std::unique_ptr<WebURLLoaderFactory> url_loader_factory_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_TESTING_TEST_LOADER_FACTORY_H_