blob: 11bc2f8d59ee94de65d02056a5cfc0a2d2384758 [file] [log] [blame]
/*
* Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "platform/testing/TestingPlatformSupport.h"
#include <memory>
#include <string>
#include "base/command_line.h"
#include "base/memory/discardable_memory_allocator.h"
#include "base/run_loop.h"
#include "base/test/icu_test_util.h"
#include "base/test/test_discardable_memory_allocator.h"
#include "cc/blink/web_compositor_support_impl.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
#include "platform/Language.h"
#include "platform/font_family_names.h"
#include "platform/heap/Heap.h"
#include "platform/instrumentation/resource_coordinator/BlinkResourceCoordinatorBase.h"
#include "platform/instrumentation/resource_coordinator/RendererResourceCoordinator.h"
#include "platform/loader/fetch/fetch_initiator_type_names.h"
#include "platform/network/http_names.h"
#include "platform/network/mime/MockMimeRegistry.h"
#include "platform/scheduler/base/real_time_domain.h"
#include "platform/scheduler/base/task_queue_manager.h"
#include "platform/scheduler/main_thread/main_thread_scheduler.h"
#include "platform/wtf/CryptographicallyRandomNumber.h"
#include "platform/wtf/WTF.h"
#include "platform/wtf/allocator/Partitions.h"
#include "public/platform/InterfaceProvider.h"
#include "public/platform/WebContentLayer.h"
#include "public/platform/WebExternalTextureLayer.h"
#include "public/platform/WebImageLayer.h"
#include "public/platform/WebRuntimeFeatures.h"
#include "public/platform/WebScrollbarLayer.h"
namespace blink {
class TestingPlatformSupport::TestingInterfaceProvider
: public blink::InterfaceProvider {
public:
TestingInterfaceProvider() = default;
virtual ~TestingInterfaceProvider() = default;
void GetInterface(const char* name,
mojo::ScopedMessagePipeHandle handle) override {
if (std::string(name) == mojom::blink::MimeRegistry::Name_) {
mojo::MakeStrongBinding(
std::make_unique<MockMimeRegistry>(),
mojom::blink::MimeRegistryRequest(std::move(handle)));
return;
}
}
};
namespace {
class DummyThread final : public blink::WebThread {
public:
bool IsCurrentThread() const override { return true; }
blink::WebScheduler* Scheduler() const override { return nullptr; }
};
} // namespace
std::unique_ptr<WebLayer> TestingCompositorSupport::CreateLayer() {
return nullptr;
}
std::unique_ptr<WebLayer> TestingCompositorSupport::CreateLayerFromCCLayer(
cc::Layer*) {
return nullptr;
}
std::unique_ptr<WebContentLayer> TestingCompositorSupport::CreateContentLayer(
WebContentLayerClient*) {
return nullptr;
}
std::unique_ptr<WebExternalTextureLayer>
TestingCompositorSupport::CreateExternalTextureLayer(cc::TextureLayerClient*) {
return nullptr;
}
std::unique_ptr<WebImageLayer> TestingCompositorSupport::CreateImageLayer() {
return nullptr;
}
std::unique_ptr<WebScrollbarLayer>
TestingCompositorSupport::CreateScrollbarLayer(
std::unique_ptr<WebScrollbar>,
WebScrollbarThemePainter,
std::unique_ptr<WebScrollbarThemeGeometry>) {
return nullptr;
}
std::unique_ptr<WebScrollbarLayer>
TestingCompositorSupport::CreateOverlayScrollbarLayer(
std::unique_ptr<WebScrollbar>,
WebScrollbarThemePainter,
std::unique_ptr<WebScrollbarThemeGeometry>) {
return nullptr;
}
std::unique_ptr<WebScrollbarLayer>
TestingCompositorSupport::CreateSolidColorScrollbarLayer(
WebScrollbar::Orientation,
int thumb_thickness,
int track_start,
bool is_left_side_vertical_scrollbar) {
return nullptr;
}
TestingPlatformSupport::TestingPlatformSupport()
: TestingPlatformSupport(TestingPlatformSupport::Config()) {}
TestingPlatformSupport::TestingPlatformSupport(const Config& config)
: config_(config),
old_platform_(Platform::Current()),
interface_provider_(new TestingInterfaceProvider) {
DCHECK(old_platform_);
}
TestingPlatformSupport::~TestingPlatformSupport() {
DCHECK_EQ(this, Platform::Current());
}
WebString TestingPlatformSupport::DefaultLocale() {
return WebString::FromUTF8("en-US");
}
WebCompositorSupport* TestingPlatformSupport::CompositorSupport() {
if (config_.compositor_support)
return config_.compositor_support;
return old_platform_ ? old_platform_->CompositorSupport() : nullptr;
}
WebThread* TestingPlatformSupport::CurrentThread() {
return old_platform_ ? old_platform_->CurrentThread() : nullptr;
}
WebBlobRegistry* TestingPlatformSupport::GetBlobRegistry() {
return old_platform_ ? old_platform_->GetBlobRegistry() : nullptr;
}
WebClipboard* TestingPlatformSupport::Clipboard() {
return old_platform_ ? old_platform_->Clipboard() : nullptr;
}
WebFileUtilities* TestingPlatformSupport::GetFileUtilities() {
return old_platform_ ? old_platform_->GetFileUtilities() : nullptr;
}
WebIDBFactory* TestingPlatformSupport::IdbFactory() {
return old_platform_ ? old_platform_->IdbFactory() : nullptr;
}
WebURLLoaderMockFactory* TestingPlatformSupport::GetURLLoaderMockFactory() {
return old_platform_ ? old_platform_->GetURLLoaderMockFactory() : nullptr;
}
std::unique_ptr<WebURLLoaderFactory>
TestingPlatformSupport::CreateDefaultURLLoaderFactory() {
return old_platform_ ? old_platform_->CreateDefaultURLLoaderFactory()
: nullptr;
}
WebData TestingPlatformSupport::GetDataResource(const char* name) {
return old_platform_ ? old_platform_->GetDataResource(name) : WebData();
}
InterfaceProvider* TestingPlatformSupport::GetInterfaceProvider() {
return interface_provider_.get();
}
void TestingPlatformSupport::RunUntilIdle() {
base::RunLoop().RunUntilIdle();
}
class ScopedUnittestsEnvironmentSetup::DummyPlatform final
: public blink::Platform {
public:
DummyPlatform() = default;
blink::WebThread* CurrentThread() override {
static DummyThread dummy_thread;
return &dummy_thread;
};
};
class ScopedUnittestsEnvironmentSetup::DummyRendererResourceCoordinator final
: public blink::RendererResourceCoordinator {};
ScopedUnittestsEnvironmentSetup::ScopedUnittestsEnvironmentSetup(int argc,
char** argv) {
base::CommandLine::Init(argc, argv);
base::test::InitializeICUForTesting();
discardable_memory_allocator_ =
std::make_unique<base::TestDiscardableMemoryAllocator>();
base::DiscardableMemoryAllocator::SetInstance(
discardable_memory_allocator_.get());
dummy_platform_ = std::make_unique<DummyPlatform>();
Platform::SetCurrentPlatformForTesting(dummy_platform_.get());
WTF::Partitions::Initialize(nullptr);
WTF::Initialize(nullptr);
compositor_support_ = std::make_unique<cc_blink::WebCompositorSupportImpl>();
testing_platform_config_.compositor_support = compositor_support_.get();
testing_platform_support_ =
std::make_unique<TestingPlatformSupport>(testing_platform_config_);
Platform::SetCurrentPlatformForTesting(testing_platform_support_.get());
if (BlinkResourceCoordinatorBase::IsEnabled()) {
dummy_renderer_resource_coordinator_ =
std::make_unique<DummyRendererResourceCoordinator>();
RendererResourceCoordinator::
SetCurrentRendererResourceCoordinatorForTesting(
dummy_renderer_resource_coordinator_.get());
}
ProcessHeap::Init();
ThreadState::AttachMainThread();
ThreadState::Current()->RegisterTraceDOMWrappers(nullptr, nullptr, nullptr,
nullptr);
HTTPNames::init();
FetchInitiatorTypeNames::init();
InitializePlatformLanguage();
FontFamilyNames::init();
WebRuntimeFeatures::EnableExperimentalFeatures(true);
WebRuntimeFeatures::EnableTestOnlyFeatures(true);
}
ScopedUnittestsEnvironmentSetup::~ScopedUnittestsEnvironmentSetup() = default;
} // namespace blink