���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/cctest/ |
#include "node_test_fixture.h" #include "node_internals.h" // RunBootstrapping() void InitializeBinding(v8::Local<v8::Object> exports, v8::Local<v8::Value> module, v8::Local<v8::Context> context, void* priv) { v8::Isolate* isolate = context->GetIsolate(); exports->Set( context, v8::String::NewFromOneByte(isolate, reinterpret_cast<const uint8_t*>("key"), v8::NewStringType::kNormal).ToLocalChecked(), v8::String::NewFromOneByte(isolate, reinterpret_cast<const uint8_t*>("value"), v8::NewStringType::kNormal).ToLocalChecked()) .FromJust(); } NODE_MODULE_LINKED(cctest_linkedbinding, InitializeBinding) class LinkedBindingTest : public EnvironmentTestFixture {}; TEST_F(LinkedBindingTest, SimpleTest) { const v8::HandleScope handle_scope(isolate_); const Argv argv; Env test_env {handle_scope, argv}; v8::Local<v8::Context> context = isolate_->GetCurrentContext(); const char* run_script = "process._linkedBinding('cctest_linkedbinding').key"; v8::Local<v8::Script> script = v8::Script::Compile( context, v8::String::NewFromOneByte(isolate_, reinterpret_cast<const uint8_t*>(run_script), v8::NewStringType::kNormal).ToLocalChecked()) .ToLocalChecked(); v8::Local<v8::Value> completion_value = script->Run(context).ToLocalChecked(); v8::String::Utf8Value utf8val(isolate_, completion_value); CHECK_NOT_NULL(*utf8val); CHECK_EQ(strcmp(*utf8val, "value"), 0); }