3 Star 16 Fork 9

北京儒特科技有限公司/QingShuang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
per_context_data_unittest.cc 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
大愚 提交于 2年前 . # new
// Copyright 2014 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 "gin/per_context_data.h"
#include "gin/public/context_holder.h"
#include "gin/public/isolate_holder.h"
#include "gin/test/v8_test.h"
#include "v8/include/v8.h"
namespace gin {
typedef V8Test PerContextDataTest;
// Verifies PerContextData can be looked up by context and that it is not
// available once ContextHolder is destroyed.
TEST_F(PerContextDataTest, LookupAndDestruction)
{
v8::Isolate::Scope isolate_scope(instance_->isolate());
v8::HandleScope handle_scope(instance_->isolate());
v8::Local<v8::Context> context = v8::Context::New(
instance_->isolate(), NULL, v8::Local<v8::ObjectTemplate>());
{
ContextHolder context_holder(instance_->isolate());
context_holder.SetContext(context);
PerContextData* per_context_data = PerContextData::From(context);
EXPECT_TRUE(per_context_data != NULL);
EXPECT_EQ(&context_holder, per_context_data->context_holder());
}
PerContextData* per_context_data = PerContextData::From(context);
EXPECT_TRUE(per_context_data == NULL);
}
} // namespace gin
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/beijing-root/qingshuang.git
git@gitee.com:beijing-root/qingshuang.git
beijing-root
qingshuang
QingShuang
master

搜索帮助