blob: 4ae10874f3af867ed8ca2f35cd9b40675bfd494c [file] [log] [blame]
// Copyright 2015 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 "third_party/blink/renderer/modules/animationworklet/animation_worklet_thread.h"
#include <memory>
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/public/platform/web_url_request.h"
#include "third_party/blink/renderer/bindings/core/v8/script_module.h"
#include "third_party/blink/renderer/bindings/core/v8/script_source_code.h"
#include "third_party/blink/renderer/bindings/core/v8/source_location.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_gc_controller.h"
#include "third_party/blink/renderer/bindings/core/v8/worker_or_worklet_script_controller.h"
#include "third_party/blink/renderer/core/dom/animation_worklet_proxy_client.h"
#include "third_party/blink/renderer/core/inspector/console_message.h"
#include "third_party/blink/renderer/core/origin_trials/origin_trial_context.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/core/workers/global_scope_creation_params.h"
#include "third_party/blink/renderer/core/workers/parent_execution_context_task_runners.h"
#include "third_party/blink/renderer/core/workers/worker_backing_thread.h"
#include "third_party/blink/renderer/core/workers/worker_inspector_proxy.h"
#include "third_party/blink/renderer/core/workers/worker_or_worklet_global_scope.h"
#include "third_party/blink/renderer/core/workers/worker_reporting_proxy.h"
#include "third_party/blink/renderer/core/workers/worklet_module_responses_map.h"
#include "third_party/blink/renderer/platform/cross_thread_functional.h"
#include "third_party/blink/renderer/platform/loader/fetch/access_control_status.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_loader_options.h"
#include "third_party/blink/renderer/platform/testing/testing_platform_support.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/blink/renderer/platform/waitable_event.h"
#include "third_party/blink/renderer/platform/web_thread_supporting_gc.h"
#include "third_party/blink/renderer/platform/wtf/text/text_position.h"
namespace blink {
namespace {
class AnimationWorkletTestPlatform : public TestingPlatformSupport {
public:
WebCompositorSupport* CompositorSupport() override {
return &compositor_support_;
}
// Need to override the thread creating support so we can actually run
// Animation Worklet code that would go on a backing thread in non-test
// code. i.e. most tests remove the extra threads, but we need this one.
std::unique_ptr<WebThread> CreateThread(
const blink::WebThreadCreationParams& params) override {
return old_platform_->CreateThread(params);
}
private:
TestingCompositorSupport compositor_support_;
};
class TestAnimationWorkletProxyClient
: public GarbageCollected<TestAnimationWorkletProxyClient>,
public AnimationWorkletProxyClient {
USING_GARBAGE_COLLECTED_MIXIN(TestAnimationWorkletProxyClient);
public:
TestAnimationWorkletProxyClient() = default;
void SetGlobalScope(WorkletGlobalScope*) override {}
void Dispose() override {}
};
} // namespace
class AnimationWorkletThreadTest : public PageTestBase {
public:
void SetUp() override {
AnimationWorkletThread::CreateSharedBackingThreadForTest();
PageTestBase::SetUp(IntSize());
Document* document = &GetDocument();
document->SetURL(KURL("https://example.com/"));
document->UpdateSecurityOrigin(SecurityOrigin::Create(document->Url()));
reporting_proxy_ = std::make_unique<WorkerReportingProxy>();
}
void TearDown() override {
AnimationWorkletThread::ClearSharedBackingThread();
}
std::unique_ptr<AnimationWorkletThread> CreateAnimationWorkletThread() {
WorkerClients* clients = WorkerClients::Create();
ProvideAnimationWorkletProxyClientTo(clients,
new TestAnimationWorkletProxyClient());
std::unique_ptr<AnimationWorkletThread> thread =
AnimationWorkletThread::Create(nullptr, *reporting_proxy_);
Document* document = &GetDocument();
thread->Start(
std::make_unique<GlobalScopeCreationParams>(
document->Url(), document->UserAgent(),
nullptr /* content_security_policy_parsed_headers */,
document->GetReferrerPolicy(), document->GetSecurityOrigin(),
document->IsSecureContext(), clients, document->AddressSpace(),
OriginTrialContext::GetTokens(document).get(),
base::UnguessableToken::Create(), nullptr /* worker_settings */,
kV8CacheOptionsDefault,
new WorkletModuleResponsesMap(document->Fetcher())),
WTF::nullopt, WorkerInspectorProxy::PauseOnWorkerStart::kDontPause,
ParentExecutionContextTaskRunners::Create());
return thread;
}
// Attempts to run some simple script for |thread|.
void CheckWorkletCanExecuteScript(WorkerThread* thread) {
std::unique_ptr<WaitableEvent> wait_event =
std::make_unique<WaitableEvent>();
thread->GetWorkerBackingThread().BackingThread().PostTask(
FROM_HERE,
CrossThreadBind(&AnimationWorkletThreadTest::ExecuteScriptInWorklet,
CrossThreadUnretained(this),
CrossThreadUnretained(thread),
CrossThreadUnretained(wait_event.get())));
wait_event->Wait();
}
private:
void ExecuteScriptInWorklet(WorkerThread* thread, WaitableEvent* wait_event) {
ScriptState* script_state =
thread->GlobalScope()->ScriptController()->GetScriptState();
EXPECT_TRUE(script_state);
ScriptState::Scope scope(script_state);
const KURL js_url("https://example.com/foo.js");
ScriptModule module = ScriptModule::Compile(
script_state->GetIsolate(), "var counter = 0; ++counter;", js_url,
js_url, ScriptFetchOptions(), kSharableCrossOrigin,
TextPosition::MinimumPosition(), ASSERT_NO_EXCEPTION);
EXPECT_FALSE(module.IsNull());
ScriptValue exception = module.Instantiate(script_state);
EXPECT_TRUE(exception.IsEmpty());
ScriptValue value = module.Evaluate(script_state);
EXPECT_TRUE(value.IsEmpty());
wait_event->Signal();
}
std::unique_ptr<WorkerReportingProxy> reporting_proxy_;
ScopedTestingPlatformSupport<AnimationWorkletTestPlatform> platform_;
};
TEST_F(AnimationWorkletThreadTest, Basic) {
std::unique_ptr<AnimationWorkletThread> worklet =
CreateAnimationWorkletThread();
CheckWorkletCanExecuteScript(worklet.get());
worklet->Terminate();
worklet->WaitForShutdownForTesting();
}
// Tests that the same WebThread is used for new worklets if the WebThread is
// still alive.
TEST_F(AnimationWorkletThreadTest, CreateSecondAndTerminateFirst) {
// Create the first worklet and wait until it is initialized.
std::unique_ptr<AnimationWorkletThread> first_worklet =
CreateAnimationWorkletThread();
WebThreadSupportingGC* first_thread =
&first_worklet->GetWorkerBackingThread().BackingThread();
CheckWorkletCanExecuteScript(first_worklet.get());
v8::Isolate* first_isolate = first_worklet->GetIsolate();
ASSERT_TRUE(first_isolate);
// Create the second worklet and immediately destroy the first worklet.
std::unique_ptr<AnimationWorkletThread> second_worklet =
CreateAnimationWorkletThread();
// We don't use terminateAndWait here to avoid forcible termination.
first_worklet->Terminate();
first_worklet->WaitForShutdownForTesting();
// Wait until the second worklet is initialized. Verify that the second
// worklet is using the same thread and Isolate as the first worklet.
WebThreadSupportingGC* second_thread =
&second_worklet->GetWorkerBackingThread().BackingThread();
ASSERT_EQ(first_thread, second_thread);
v8::Isolate* second_isolate = second_worklet->GetIsolate();
ASSERT_TRUE(second_isolate);
EXPECT_EQ(first_isolate, second_isolate);
// Verify that the worklet can still successfully execute script.
CheckWorkletCanExecuteScript(second_worklet.get());
second_worklet->Terminate();
second_worklet->WaitForShutdownForTesting();
}
// Tests that a new WebThread is created if all existing worklets are
// terminated before a new worklet is created.
TEST_F(AnimationWorkletThreadTest, TerminateFirstAndCreateSecond) {
// Create the first worklet, wait until it is initialized, and terminate it.
std::unique_ptr<AnimationWorkletThread> worklet =
CreateAnimationWorkletThread();
WebThreadSupportingGC* first_thread =
&worklet->GetWorkerBackingThread().BackingThread();
CheckWorkletCanExecuteScript(worklet.get());
// We don't use terminateAndWait here to avoid forcible termination.
worklet->Terminate();
worklet->WaitForShutdownForTesting();
// Create the second worklet. The backing thread is same.
worklet = CreateAnimationWorkletThread();
WebThreadSupportingGC* second_thread =
&worklet->GetWorkerBackingThread().BackingThread();
EXPECT_EQ(first_thread, second_thread);
CheckWorkletCanExecuteScript(worklet.get());
worklet->Terminate();
worklet->WaitForShutdownForTesting();
}
// Tests that v8::Isolate and WebThread are correctly set-up if a worklet is
// created while another is terminating.
TEST_F(AnimationWorkletThreadTest, CreatingSecondDuringTerminationOfFirst) {
std::unique_ptr<AnimationWorkletThread> first_worklet =
CreateAnimationWorkletThread();
CheckWorkletCanExecuteScript(first_worklet.get());
v8::Isolate* first_isolate = first_worklet->GetIsolate();
ASSERT_TRUE(first_isolate);
// Request termination of the first worklet and create the second worklet
// as soon as possible.
first_worklet->Terminate();
// We don't wait for its termination.
// Note: We rely on the assumption that the termination steps don't run
// on the worklet thread so quickly. This could be a source of flakiness.
std::unique_ptr<AnimationWorkletThread> second_worklet =
CreateAnimationWorkletThread();
v8::Isolate* second_isolate = second_worklet->GetIsolate();
ASSERT_TRUE(second_isolate);
EXPECT_EQ(first_isolate, second_isolate);
// Verify that the isolate can run some scripts correctly in the second
// worklet.
CheckWorkletCanExecuteScript(second_worklet.get());
second_worklet->Terminate();
second_worklet->WaitForShutdownForTesting();
}
} // namespace blink