blob: 83caeb2806ae3921c2edc9448276bda3d4975b82 [file] [log] [blame]
// Copyright 2016 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 "extensions/renderer/api_bindings_system.h"
#include "base/bind.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/stl_util.h"
#include "base/strings/stringprintf.h"
#include "base/values.h"
#include "extensions/common/extension_api.h"
#include "extensions/renderer/api_binding.h"
#include "extensions/renderer/api_binding_hooks.h"
#include "extensions/renderer/api_binding_test.h"
#include "extensions/renderer/api_binding_test_util.h"
#include "extensions/renderer/api_binding_types.h"
#include "gin/arguments.h"
#include "gin/converter.h"
#include "gin/try_catch.h"
namespace extensions {
namespace {
// Fake API for testing.
const char kAlphaAPIName[] = "alpha";
const char kAlphaAPISpec[] =
"{"
" 'types': [{"
" 'id': 'alpha.objRef',"
" 'type': 'object',"
" 'properties': {"
" 'prop1': {'type': 'string'},"
" 'prop2': {'type': 'integer', 'optional': true}"
" }"
" }, {"
" 'id': 'alpha.enumRef',"
" 'type': 'string',"
" 'enum': ['cat', 'dog']"
" }],"
" 'functions': [{"
" 'name': 'functionWithCallback',"
" 'parameters': [{"
" 'name': 'str',"
" 'type': 'string'"
" }, {"
" 'name': 'callback',"
" 'type': 'function'"
" }]"
" }, {"
" 'name': 'functionWithRefAndCallback',"
" 'parameters': [{"
" 'name': 'ref',"
" '$ref': 'alpha.objRef'"
" }, {"
" 'name': 'callback',"
" 'type': 'function'"
" }]"
" }, {"
" 'name': 'functionWithEnum',"
" 'parameters': [{'name': 'e', '$ref': 'alpha.enumRef'}]"
" }],"
" 'events': [{"
" 'name': 'alphaEvent'"
" }]"
"}";
// Another fake API for testing.
const char kBetaAPIName[] = "beta";
const char kBetaAPISpec[] =
"{"
" 'functions': [{"
" 'name': 'simpleFunc',"
" 'parameters': [{'name': 'int', 'type': 'integer'}]"
" }]"
"}";
const char kGammaAPIName[] = "gamma";
const char kGammaAPISpec[] =
"{"
" 'functions': [{"
" 'name': 'functionWithExternalRef',"
" 'parameters': [{ 'name': 'someRef', '$ref': 'alpha.objRef' }]"
" }]"
"}";
bool AllowAllAPIs(const std::string& name) {
return true;
}
} // namespace
// The base class to test the APIBindingsSystem. This allows subclasses to
// retrieve API schemas differently.
class APIBindingsSystemTest : public APIBindingTest {
public:
// Returns the DictionaryValue representing the schema with the given API
// name.
const base::DictionaryValue& GetAPISchema(const std::string& api_name) {
EXPECT_TRUE(base::ContainsKey(api_schemas_, api_name));
return *api_schemas_[api_name];
}
// Stores the request in |last_request_|.
void OnAPIRequest(std::unique_ptr<APIRequestHandler::Request> request,
v8::Local<v8::Context> context) {
ASSERT_FALSE(last_request_);
last_request_ = std::move(request);
}
void OnEventListenersChanged(const std::string& event_name,
binding::EventListenersChanged changed,
v8::Local<v8::Context> context) {}
protected:
APIBindingsSystemTest() {}
void SetUp() override {
APIBindingTest::SetUp();
// Create the fake API schemas.
{
struct APIData {
const char* name;
const char* spec;
} api_data[] = {
{kAlphaAPIName, kAlphaAPISpec},
{kBetaAPIName, kBetaAPISpec},
{kGammaAPIName, kGammaAPISpec},
};
for (const auto& api : api_data) {
std::unique_ptr<base::DictionaryValue> api_schema =
DictionaryValueFromString(api.spec);
ASSERT_TRUE(api_schema);
api_schemas_[api.name] = std::move(api_schema);
}
}
bindings_system_ = base::MakeUnique<APIBindingsSystem>(
base::Bind(&RunFunctionOnGlobalAndIgnoreResult),
base::Bind(&RunFunctionOnGlobalAndReturnHandle),
base::Bind(&APIBindingsSystemTest::GetAPISchema,
base::Unretained(this)),
base::Bind(&APIBindingsSystemTest::OnAPIRequest,
base::Unretained(this)),
base::Bind(&APIBindingsSystemTest::OnEventListenersChanged,
base::Unretained(this)),
APILastError(APILastError::GetParent()));
}
void TearDown() override {
// Dispose all contexts now so that we call WillReleaseContext().
DisposeAllContexts();
bindings_system_.reset();
APIBindingTest::TearDown();
}
void OnWillDisposeContext(v8::Local<v8::Context> context) override {
bindings_system_->WillReleaseContext(context);
}
// Checks that |last_request_| exists and was provided with the
// |expected_name| and |expected_arguments|.
void ValidateLastRequest(const std::string& expected_name,
const std::string& expected_arguments) {
ASSERT_TRUE(last_request());
// Note that even if no arguments are provided by the API call, we should
// have an empty list.
ASSERT_TRUE(last_request()->arguments);
EXPECT_EQ(expected_name, last_request()->method_name);
EXPECT_EQ(ReplaceSingleQuotes(expected_arguments),
ValueToString(*last_request()->arguments));
}
void CallFunctionOnObject(v8::Local<v8::Context> context,
v8::Local<v8::Object> object,
const std::string& script_source) {
std::string wrapped_script_source =
base::StringPrintf("(function(obj) { %s })", script_source.c_str());
v8::Local<v8::Function> func =
FunctionFromString(context, wrapped_script_source);
ASSERT_FALSE(func.IsEmpty());
v8::Local<v8::Value> argv[] = {object};
RunFunction(func, context, 1, argv);
}
const APIRequestHandler::Request* last_request() const {
return last_request_.get();
}
void reset_last_request() { last_request_.reset(); }
APIBindingsSystem* bindings_system() { return bindings_system_.get(); }
private:
// The API schemas for the fake APIs.
std::map<std::string, std::unique_ptr<base::DictionaryValue>> api_schemas_;
// The APIBindingsSystem associated with the test. Safe to use across multiple
// contexts.
std::unique_ptr<APIBindingsSystem> bindings_system_;
// The last request to be received from the APIBindingsSystem, or null if
// there is none.
std::unique_ptr<APIRequestHandler::Request> last_request_;
DISALLOW_COPY_AND_ASSIGN(APIBindingsSystemTest);
};
// Tests API object initialization, calling a method on the supplied APIs, and
// triggering the callback for the request.
TEST_F(APIBindingsSystemTest, TestInitializationAndCallbacks) {
v8::HandleScope handle_scope(isolate());
v8::Local<v8::Context> context = MainContext();
v8::Local<v8::Object> alpha_api = bindings_system()->CreateAPIInstance(
kAlphaAPIName, context, isolate(), base::Bind(&AllowAllAPIs), nullptr);
ASSERT_FALSE(alpha_api.IsEmpty());
v8::Local<v8::Object> beta_api = bindings_system()->CreateAPIInstance(
kBetaAPIName, context, isolate(), base::Bind(&AllowAllAPIs), nullptr);
ASSERT_FALSE(beta_api.IsEmpty());
{
// Test a simple call -> response.
const char kTestCall[] =
"obj.functionWithCallback('foo', function() {\n"
" this.callbackArguments = Array.from(arguments);\n"
"});";
CallFunctionOnObject(context, alpha_api, kTestCall);
ValidateLastRequest("alpha.functionWithCallback", "['foo']");
const char kResponseArgsJson[] = "['response',1,{'key':42}]";
std::unique_ptr<base::ListValue> expected_args =
ListValueFromString(kResponseArgsJson);
bindings_system()->CompleteRequest(last_request()->request_id,
*expected_args, std::string());
EXPECT_EQ(ReplaceSingleQuotes(kResponseArgsJson),
GetStringPropertyFromObject(context->Global(), context,
"callbackArguments"));
reset_last_request();
}
{
// Test a call with references -> response.
const char kTestCall[] =
"obj.functionWithRefAndCallback({prop1: 'alpha', prop2: 42},\n"
" function() {\n"
" this.callbackArguments = Array.from(arguments);\n"
"});";
CallFunctionOnObject(context, alpha_api, kTestCall);
ValidateLastRequest("alpha.functionWithRefAndCallback",
"[{'prop1':'alpha','prop2':42}]");
bindings_system()->CompleteRequest(last_request()->request_id,
base::ListValue(), std::string());
EXPECT_EQ("[]", GetStringPropertyFromObject(context->Global(), context,
"callbackArguments"));
reset_last_request();
}
{
// Test an invalid invocation -> throwing error.
const char kTestCall[] =
"(function(obj) { obj.functionWithEnum('mouse') })";
v8::Local<v8::Function> function = FunctionFromString(context, kTestCall);
v8::Local<v8::Value> args[] = {alpha_api};
RunFunctionAndExpectError(function, context, arraysize(args), args,
"Uncaught TypeError: Invalid invocation");
EXPECT_FALSE(last_request());
reset_last_request(); // Just to not pollute future results.
}
{
// Test an event registration -> event occurrence.
const char kTestCall[] =
"obj.alphaEvent.addListener(function() {\n"
" this.eventArguments = Array.from(arguments);\n"
"});\n";
CallFunctionOnObject(context, alpha_api, kTestCall);
const char kResponseArgsJson[] = "['response',1,{'key':42}]";
std::unique_ptr<base::ListValue> expected_args =
ListValueFromString(kResponseArgsJson);
bindings_system()->FireEventInContext("alpha.alphaEvent", context,
*expected_args);
EXPECT_EQ(ReplaceSingleQuotes(kResponseArgsJson),
GetStringPropertyFromObject(context->Global(), context,
"eventArguments"));
}
{
// Test a call -> response on the second API.
const char kTestCall[] = "obj.simpleFunc(2)";
CallFunctionOnObject(context, beta_api, kTestCall);
ValidateLastRequest("beta.simpleFunc", "[2]");
EXPECT_EQ(-1, last_request()->request_id);
reset_last_request();
}
}
// Tests adding a custom hook to an API.
TEST_F(APIBindingsSystemTest, TestCustomHooks) {
v8::HandleScope handle_scope(isolate());
v8::Local<v8::Context> context = MainContext();
bool did_call = false;
auto hook = [](bool* did_call, const APISignature* signature,
v8::Local<v8::Context> context,
std::vector<v8::Local<v8::Value>>* arguments,
const APITypeReferenceMap& type_refs) {
*did_call = true;
APIBindingHooks::RequestResult result(
APIBindingHooks::RequestResult::HANDLED);
if (arguments->size() != 2) { // ASSERT* messes with the return type.
EXPECT_EQ(2u, arguments->size());
return result;
}
std::string argument;
EXPECT_EQ("foo", gin::V8ToString(arguments->at(0)));
if (!arguments->at(1)->IsFunction()) {
EXPECT_TRUE(arguments->at(1)->IsFunction());
return result;
}
v8::Local<v8::String> response =
gin::StringToV8(context->GetIsolate(), "bar");
v8::Local<v8::Value> response_args[] = {response};
RunFunctionOnGlobal(arguments->at(1).As<v8::Function>(),
context, 1, response_args);
return result;
};
APIBindingHooks* hooks = bindings_system()->GetHooksForAPI(kAlphaAPIName);
ASSERT_TRUE(hooks);
hooks->RegisterHandleRequest(
"alpha.functionWithCallback",
base::Bind(hook, &did_call));
v8::Local<v8::Object> alpha_api = bindings_system()->CreateAPIInstance(
kAlphaAPIName, context, isolate(), base::Bind(&AllowAllAPIs), nullptr);
ASSERT_FALSE(alpha_api.IsEmpty());
{
// Test a simple call -> response.
const char kTestCall[] =
"obj.functionWithCallback('foo', function() {\n"
" this.callbackArguments = Array.from(arguments);\n"
"});";
CallFunctionOnObject(context, alpha_api, kTestCall);
EXPECT_TRUE(did_call);
EXPECT_EQ("[\"bar\"]",
GetStringPropertyFromObject(context->Global(), context,
"callbackArguments"));
}
}
// Tests the setCustomCallback hook.
TEST_F(APIBindingsSystemTest, TestSetCustomCallback) {
v8::HandleScope handle_scope(isolate());
v8::Local<v8::Context> context = MainContext();
const char kHook[] =
"(function(hooks) {\n"
" hooks.setCustomCallback(\n"
" 'functionWithCallback', (name, request, originalCallback,\n"
" firstResult, secondResult) => {\n"
" this.methodName = name;\n"
// TODO(devlin): Currently, we don't actually pass anything useful in for
// the |request| object. If/when we do, we should test it.
" this.results = [firstResult, secondResult];\n"
" originalCallback(secondResult);\n"
" });\n"
"})";
APIBindingHooks* hooks = bindings_system()->GetHooksForAPI(kAlphaAPIName);
ASSERT_TRUE(hooks);
v8::Local<v8::String> source_string = gin::StringToV8(isolate(), kHook);
v8::Local<v8::String> source_name = gin::StringToV8(isolate(), "custom_hook");
hooks->RegisterJsSource(v8::Global<v8::String>(isolate(), source_string),
v8::Global<v8::String>(isolate(), source_name));
v8::Local<v8::Object> alpha_api = bindings_system()->CreateAPIInstance(
kAlphaAPIName, context, isolate(), base::Bind(&AllowAllAPIs), nullptr);
ASSERT_FALSE(alpha_api.IsEmpty());
{
const char kTestCall[] =
"obj.functionWithCallback('foo', function() {\n"
" this.callbackArguments = Array.from(arguments);\n"
"});";
CallFunctionOnObject(context, alpha_api, kTestCall);
ValidateLastRequest("alpha.functionWithCallback", "['foo']");
std::unique_ptr<base::ListValue> response =
ListValueFromString("['alpha','beta']");
bindings_system()->CompleteRequest(last_request()->request_id, *response,
std::string());
EXPECT_EQ(
"\"alpha.functionWithCallback\"",
GetStringPropertyFromObject(context->Global(), context, "methodName"));
EXPECT_EQ(
"[\"alpha\",\"beta\"]",
GetStringPropertyFromObject(context->Global(), context, "results"));
EXPECT_EQ("[\"beta\"]",
GetStringPropertyFromObject(context->Global(), context,
"callbackArguments"));
}
}
// Test that references to other API's types works.
TEST_F(APIBindingsSystemTest, CrossAPIReferences) {
v8::HandleScope handle_scope(isolate());
v8::Local<v8::Context> context = MainContext();
// Instantiate gamma API. Note: It's important that we haven't instantiated
// alpha API yet, since this tests that we can lazily populate the type
// information.
v8::Local<v8::Object> gamma_api = bindings_system()->CreateAPIInstance(
kGammaAPIName, context, isolate(), base::Bind(&AllowAllAPIs), nullptr);
ASSERT_FALSE(gamma_api.IsEmpty());
{
// Test a simple call -> response.
const char kTestCall[] = "obj.functionWithExternalRef({prop1: 'foo'});";
CallFunctionOnObject(context, gamma_api, kTestCall);
ValidateLastRequest("gamma.functionWithExternalRef", "[{'prop1':'foo'}]");
reset_last_request();
}
}
} // namespace extensions