-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: verify
performance.timerify()
works w/ non-Node Contexts
PR-URL: #23784 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#include <node.h> | ||
#include <assert.h> | ||
|
||
namespace { | ||
|
||
using v8::Context; | ||
using v8::Function; | ||
using v8::FunctionTemplate; | ||
using v8::Isolate; | ||
using v8::Local; | ||
using v8::MaybeLocal; | ||
using v8::NewStringType; | ||
using v8::Object; | ||
using v8::Script; | ||
using v8::String; | ||
using v8::Value; | ||
|
||
inline void RunInNewContext( | ||
const v8::FunctionCallbackInfo<v8::Value>& args) { | ||
Isolate* isolate = args.GetIsolate(); | ||
Local<Context> context = Context::New(isolate); | ||
Context::Scope context_scope(context); | ||
|
||
context->Global()->Set( | ||
context, | ||
String::NewFromUtf8(isolate, "data", NewStringType::kNormal) | ||
.ToLocalChecked(), | ||
args[1]).FromJust(); | ||
|
||
assert(args[0]->IsString()); // source code | ||
Local<Script> script; | ||
Local<Value> ret; | ||
if (!Script::Compile(context, args[0].As<String>()).ToLocal(&script) || | ||
!script->Run(context).ToLocal(&ret)) { | ||
return; | ||
} | ||
|
||
args.GetReturnValue().Set(ret); | ||
} | ||
|
||
inline void Initialize(Local<Object> exports, | ||
Local<Value> module, | ||
Local<Context> context) { | ||
Isolate* isolate = context->GetIsolate(); | ||
Local<String> key = String::NewFromUtf8( | ||
isolate, "runInNewContext", NewStringType::kNormal).ToLocalChecked(); | ||
Local<Function> value = FunctionTemplate::New(isolate, RunInNewContext) | ||
->GetFunction(context) | ||
.ToLocalChecked(); | ||
assert(exports->Set(context, key, value).IsJust()); | ||
} | ||
|
||
} // anonymous namespace | ||
|
||
NODE_MODULE_CONTEXT_AWARE(NODE_GYP_MODULE_NAME, Initialize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'binding', | ||
'sources': ['binding.cc'] | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use strict'; | ||
|
||
const common = require('../../common'); | ||
const assert = require('assert'); | ||
const { runInNewContext } = require(`./build/${common.buildType}/binding`); | ||
const { performance } = require('perf_hooks'); | ||
|
||
// Check that performance.timerify() works when called from another context, | ||
// for a function created in another context. | ||
|
||
const check = runInNewContext(` | ||
const { performance, assert } = data; | ||
const timerified = performance.timerify(function() { return []; }); | ||
assert.strictEqual(timerified().constructor, Array); | ||
'success'; | ||
`, { performance, assert }); | ||
assert.strictEqual(check, 'success'); |