-
Notifications
You must be signed in to change notification settings - Fork 68
/
InteroperateTest.cc
144 lines (109 loc) · 4.62 KB
/
InteroperateTest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
* Tencent is pleased to support the open source community by making ScriptX available.
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "test.h"
namespace script::test {
DEFINE_ENGINE_TEST(InteroperateTest);
#ifdef SCRIPTX_BACKEND_JAVASCRIPTCORE
TEST_F(InteroperateTest, JavaScriptCore) {
EngineScope scope(engine);
auto jsc = EngineScope::currentEngineAs<jsc_backend::JscEngine>();
auto ctx = jsc_interop::getEngineContext(jsc);
auto obj = Object::newObject();
auto jobj = jsc_interop::toJsc(ctx, obj);
EXPECT_TRUE(JSValueIsObject(ctx, jobj));
auto jnum = JSValueMakeNumber(ctx, 3.14);
auto num = jsc_interop::makeLocal<Number>(jnum);
EXPECT_DOUBLE_EQ(num.toDouble(), 3.14);
auto jstr = JSStringCreateWithUTF8CString("hello world");
auto str = jsc_interop::makeLocal<String>(jstr);
EXPECT_STREQ(str.toString().c_str(), "hello world");
auto str2 = jsc_interop::makeLocal<String>(JSValueMakeString(ctx, jstr));
EXPECT_STREQ(str2.toString().c_str(), "hello world");
auto func = Function::newFunction([](const Arguments& args) -> Local<Value> {
auto data = jsc_interop::extractArguments(args);
auto ctx = jsc_interop::getEngineContext(data.engine);
auto a = JSValueToNumber(ctx, data.arguments[0], nullptr);
auto b = JSValueToNumber(ctx, data.arguments[1], nullptr);
auto ret = JSValueMakeNumber(ctx, a + b);
return jsc_interop::makeLocal<Number>(ret);
});
auto ret = func.call({}, 1, 2);
ASSERT_TRUE(ret.isNumber());
EXPECT_EQ(ret.asNumber().toInt32(), 3);
}
#endif
#ifdef SCRIPTX_BACKEND_V8
TEST_F(InteroperateTest, V8) {
EngineScope scope(engine);
auto v8eng = EngineScope::currentEngineAs<v8_backend::V8Engine>();
auto iso = v8_interop::getEngineIsolate(v8eng);
auto obj = Object::newObject();
auto jobj = v8_interop::toV8<Object>(iso, obj);
EXPECT_TRUE(jobj->IsObject());
auto jnum = v8::Number::New(iso, 3.14);
auto num = v8_interop::makeLocal<Number>(jnum);
EXPECT_DOUBLE_EQ(num.toDouble(), 3.14);
auto jstr =
v8::String::NewFromUtf8(iso, "hello world", v8::NewStringType::kNormal).ToLocalChecked();
auto str = v8_interop::makeLocal<String>(jstr);
EXPECT_STREQ(str.toString().c_str(), "hello world");
auto func = Function::newFunction([](const Arguments& args) -> Local<Value> {
auto data = v8_interop::extractArguments(args);
auto iso = v8_interop::getEngineIsolate(data.engine);
auto ctx = v8_interop::getEngineContext(data.engine);
auto a = data.args[0]->ToNumber(ctx).ToLocalChecked()->Value();
auto b = data.args[1]->ToNumber(ctx).ToLocalChecked()->Value();
auto ret = v8::Number::New(iso, a + b);
// use the function return value,don't use v8::FunctionCallbackInfo::GetReturnValue
return v8_interop::makeLocal<Number>(ret);
});
auto ret = func.call({}, 1, 2);
ASSERT_TRUE(ret.isNumber());
EXPECT_EQ(ret.asNumber().toInt32(), 3);
}
#endif
#ifdef SCRIPTX_BACKEND_LUA
TEST_F(InteroperateTest, Lua) {
EngineScope scope(engine);
auto luaEng = EngineScope::currentEngineAs<lua_backend::LuaEngine>();
auto lua = lua_interop::getEngineLua(luaEng);
auto obj = Object::newObject();
auto jobj = lua_interop::toLua<Object>(obj);
EXPECT_TRUE(lua_istable(lua, jobj));
lua_pushnumber(lua, 3.14);
auto lnum = lua_gettop(lua);
auto num = lua_interop::makeLocal<Number>(lnum);
EXPECT_DOUBLE_EQ(num.toDouble(), 3.14);
lua_pushstring(lua, "hello world");
auto lstr = lua_gettop(lua);
auto str = lua_interop::makeLocal<String>(lstr);
EXPECT_STREQ(str.toString().c_str(), "hello world");
auto func = Function::newFunction([](const Arguments& args) -> Local<Value> {
auto data = lua_interop::extractArguments(args);
auto lua = lua_interop::getEngineLua(data.engine);
auto a = lua_tonumber(lua, data.stackBase);
auto b = lua_tonumber(lua, data.stackBase + 1);
lua_pushnumber(lua, a + b);
auto ret = lua_gettop(lua);
return lua_interop::makeLocal<Number>(ret);
});
auto ret = func.call({}, 1, 2);
ASSERT_TRUE(ret.isNumber());
EXPECT_EQ(ret.asNumber().toInt32(), 3);
}
#endif
} // namespace script::test