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

Unified Diff: third_party/WebKit/Source/web/tests/WebFrameTest.cpp

Issue 2454433002: [Extensions + Blink] Account for user gesture in v8 function calls (Closed)
Patch Set: whoops Created 4 years, 2 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/web/tests/WebFrameTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
index e2bd5d4a6407c6d12b671e65c867d13d18b8c337..358083a82126b06739573899f6fdeb0faed532f1 100644
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
@@ -335,23 +335,29 @@ TEST_P(ParameterizedWebFrameTest, FrameForEnteredContext) {
class ScriptExecutionCallbackHelper : public WebScriptExecutionCallback {
public:
explicit ScriptExecutionCallbackHelper(v8::Local<v8::Context> context)
- : m_didComplete(false), m_context(context) {}
+ : m_didComplete(false), m_boolValue(false), m_context(context) {}
~ScriptExecutionCallbackHelper() {}
bool didComplete() const { return m_didComplete; }
const String& stringValue() const { return m_stringValue; }
+ bool boolValue() { return m_boolValue; }
private:
void completed(const WebVector<v8::Local<v8::Value>>& values) override {
m_didComplete = true;
- if (!values.isEmpty() && values[0]->IsString()) {
- m_stringValue =
- toCoreString(values[0]->ToString(m_context).ToLocalChecked());
+ if (!values.isEmpty()) {
+ if (values[0]->IsString()) {
+ m_stringValue =
+ toCoreString(values[0]->ToString(m_context).ToLocalChecked());
+ } else if (values[0]->IsBoolean()) {
+ m_boolValue = values[0].As<v8::Boolean>()->Value();
+ }
}
}
bool m_didComplete;
String m_stringValue;
+ bool m_boolValue;
v8::Local<v8::Context> m_context;
};
@@ -374,6 +380,27 @@ TEST_P(ParameterizedWebFrameTest, RequestExecuteScript) {
EXPECT_EQ("hello", callbackHelper.stringValue());
}
+TEST_P(ParameterizedWebFrameTest, RequestExecuteScriptWithUserGesture) {
+ registerMockedHttpURLLoad("foo.html");
+
+ FrameTestHelpers::WebViewHelper webViewHelper;
+ webViewHelper.initializeAndLoad(m_baseURL + "foo.html", true);
+
+ v8::HandleScope scope(v8::Isolate::GetCurrent());
+ ScriptExecutionCallbackHelper callbackHelper(
+ webViewHelper.webView()->mainFrame()->mainWorldScriptContext());
+
+ WebLocalFrameImpl* mainFrame = webViewHelper.webView()->mainFrameImpl();
+ Document* document = mainFrame->frame()->document();
+ mainFrame->requestExecuteScriptAndReturnValue(
+ WebScriptSource(WebString("document.body.webkitRequestFullscreen();")),
+ true, &callbackHelper);
+ runPendingTasks();
+ EXPECT_TRUE(callbackHelper.didComplete());
+ EXPECT_EQ(document->body(),
Devlin 2016/10/27 23:33:28 I'd like to add this test (and a similar one for s
dcheng 2016/10/28 17:24:17 I think that's because there's no user gesture act
Devlin 2016/10/28 20:31:37 the "true" parameter in the requestExecuteScriptAn
Devlin 2016/10/31 17:00:46 FYI, I've removed this test since making it work w
+ Fullscreen::currentFullScreenElementFrom(*document));
+}
+
TEST_P(ParameterizedWebFrameTest, SuspendedRequestExecuteScript) {
registerMockedHttpURLLoad("foo.html");
registerMockedHttpURLLoad("bar.html");
@@ -404,6 +431,106 @@ TEST_P(ParameterizedWebFrameTest, SuspendedRequestExecuteScript) {
EXPECT_EQ(String(), callbackHelper.stringValue());
}
+TEST_P(ParameterizedWebFrameTest, RequestExecuteV8Function) {
+ registerMockedHttpURLLoad("foo.html");
+
+ FrameTestHelpers::WebViewHelper webViewHelper;
+ webViewHelper.initializeAndLoad(m_baseURL + "foo.html", true);
+
+ auto callback = [](const v8::FunctionCallbackInfo<v8::Value>& info) {
+ info.GetReturnValue().Set(v8String(info.GetIsolate(), "hello"));
+ };
+
+ v8::HandleScope scope(v8::Isolate::GetCurrent());
+ v8::Local<v8::Context> context =
+ webViewHelper.webView()->mainFrame()->mainWorldScriptContext();
+ ScriptExecutionCallbackHelper callbackHelper(context);
+ v8::Local<v8::Function> function =
+ v8::Function::New(context, callback).ToLocalChecked();
+ webViewHelper.webView()
+ ->mainFrame()
+ ->toWebLocalFrame()
+ ->requestExecuteV8Function(context, function,
+ v8::Undefined(context->GetIsolate()), 0,
+ nullptr, &callbackHelper);
+ runPendingTasks();
+ EXPECT_TRUE(callbackHelper.didComplete());
+ EXPECT_EQ("hello", callbackHelper.stringValue());
+}
+
+TEST_P(ParameterizedWebFrameTest, RequestExecuteV8FunctionWhileSuspended) {
+ registerMockedHttpURLLoad("foo.html");
+
+ FrameTestHelpers::WebViewHelper webViewHelper;
+ webViewHelper.initializeAndLoad(m_baseURL + "foo.html", true);
+
+ auto callback = [](const v8::FunctionCallbackInfo<v8::Value>& info) {
+ info.GetReturnValue().Set(v8String(info.GetIsolate(), "hello"));
+ };
+
+ v8::HandleScope scope(v8::Isolate::GetCurrent());
+ v8::Local<v8::Context> context =
+ webViewHelper.webView()->mainFrame()->mainWorldScriptContext();
+
+ // Suspend scheduled tasks so the script doesn't run.
+ WebLocalFrameImpl* mainFrame = webViewHelper.webView()->mainFrameImpl();
+ mainFrame->frame()->document()->suspendScheduledTasks();
+
+ ScriptExecutionCallbackHelper callbackHelper(context);
+ v8::Local<v8::Function> function =
+ v8::Function::New(context, callback).ToLocalChecked();
+ mainFrame->requestExecuteV8Function(context, function,
+ v8::Undefined(context->GetIsolate()), 0,
+ nullptr, &callbackHelper);
+ runPendingTasks();
+ EXPECT_FALSE(callbackHelper.didComplete());
+
+ mainFrame->frame()->document()->resumeScheduledTasks();
+ runPendingTasks();
+ EXPECT_TRUE(callbackHelper.didComplete());
+ EXPECT_EQ("hello", callbackHelper.stringValue());
+}
+
+TEST_P(ParameterizedWebFrameTest,
+ RequestExecuteV8FunctionWhileSuspendedWithUserGesture) {
+ registerMockedHttpURLLoad("foo.html");
+
+ FrameTestHelpers::WebViewHelper webViewHelper;
+ webViewHelper.initializeAndLoad(m_baseURL + "foo.html", true);
+
+ auto callback = [](const v8::FunctionCallbackInfo<v8::Value>& info) {
+ info.GetReturnValue().Set(v8::Boolean::New(
+ info.GetIsolate(), UserGestureIndicator::processingUserGesture()));
+ };
+
+ // Suspend scheduled tasks so the script doesn't run.
+ WebLocalFrameImpl* mainFrame = webViewHelper.webView()->mainFrameImpl();
+ Document* document = mainFrame->frame()->document();
+ document->suspendScheduledTasks();
+
+ v8::HandleScope scope(v8::Isolate::GetCurrent());
+ v8::Local<v8::Context> context =
+ webViewHelper.webView()->mainFrame()->mainWorldScriptContext();
+
+ std::unique_ptr<UserGestureIndicator> indicator =
+ wrapUnique(new UserGestureIndicator(DocumentUserGestureToken::create(
+ document, UserGestureToken::NewGesture)));
+ ScriptExecutionCallbackHelper callbackHelper(context);
+ v8::Local<v8::Function> function =
+ v8::Function::New(context, callback).ToLocalChecked();
+ mainFrame->requestExecuteV8Function(
+ mainFrame->mainWorldScriptContext(), function,
+ v8::Undefined(context->GetIsolate()), 0, nullptr, &callbackHelper);
+
+ runPendingTasks();
+ EXPECT_FALSE(callbackHelper.didComplete());
+
+ mainFrame->frame()->document()->resumeScheduledTasks();
+ runPendingTasks();
+ EXPECT_TRUE(callbackHelper.didComplete());
+ EXPECT_EQ(true, callbackHelper.boolValue());
+}
+
TEST_P(ParameterizedWebFrameTest, IframeScriptRemovesSelf) {
registerMockedHttpURLLoad("single_iframe.html");
registerMockedHttpURLLoad("visible_iframe.html");

Powered by Google App Engine
This is Rietveld 408576698