* Copyright (c) 2023 Huawei Device Co., Ltd.
* 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 "ecmascript/builtins/builtins_shared_object.h"
#include "ecmascript/ecma_vm.h"
#include "ecmascript/global_env.h"
#include "ecmascript/js_handle.h"
#include "ecmascript/js_tagged_value.h"
#include "ecmascript/tests/test_helper.h"
using namespace panda::ecmascript;
namespace panda::test {
using BuiltinsSharedObject = ecmascript::builtins::BuiltinsSharedObject;
class BuiltinsSharedObjectTest : public BaseTestWithScope<false> {
};
HWTEST_F_L0(BuiltinsSharedObjectTest, SharedObjectConstructor)
{
auto ecmaRuntimeCallInfo = TestHelper::CreateEcmaRuntimeCallInfo(thread, JSTaggedValue::Undefined(), 6);
JSTaggedValue result = BuiltinsSharedObject::SharedObjectConstructor(ecmaRuntimeCallInfo);
ASSERT_EQ(result.GetRawData(), JSTaggedValue::Exception().GetRawData());
}
HWTEST_F_L0(BuiltinsSharedObjectTest, SharedObject)
{
DISALLOW_GARBAGE_COLLECTION;
JSHandle<GlobalEnv> env = thread->GetEcmaVM()->GetGlobalEnv();
auto globalConst = thread->GlobalConstants();
auto sharedObjectPrototype = env->GetSObjectFunctionPrototype();
JSHClass *hclass = sharedObjectPrototype->GetTaggedObject()->GetClass();
ASSERT_FALSE(hclass->IsExtensible());
ASSERT_FALSE(hclass->IsConstructor());
ASSERT_FALSE(hclass->IsCallable());
ASSERT_TRUE(hclass->IsJSSharedObject());
ASSERT_TRUE(hclass->GetProto(thread).IsNull());
PropertyDescriptor desc(thread);
JSHandle<JSTaggedValue> constructorKey = globalConst->GetHandledConstructorString();
JSObject::GetOwnProperty(thread, JSHandle<JSObject>(sharedObjectPrototype), constructorKey, desc);
auto ctor = desc.GetValue();
ASSERT_EQ(ctor.GetTaggedValue(), env->GetSObjectFunction().GetTaggedValue());
JSHClass *ctorHClass = ctor->GetTaggedObject()->GetClass();
ASSERT_FALSE(ctorHClass->IsExtensible());
ASSERT_TRUE(ctorHClass->IsConstructor());
ASSERT_TRUE(ctorHClass->IsCallable());
ASSERT_TRUE(ctorHClass->IsJSSharedFunction());
auto proto = ctorHClass->GetProto(thread);
ASSERT_EQ(proto, env->GetSFunctionPrototype().GetTaggedValue());
ASSERT_TRUE(proto.IsJSSharedFunction());
JSHClass *protoHClass = proto.GetTaggedObject()->GetClass();
ASSERT_FALSE(protoHClass->IsExtensible());
ASSERT_FALSE(protoHClass->IsConstructor());
ASSERT_TRUE(protoHClass->IsCallable());
auto sObjProto = protoHClass->GetProto(thread);
ASSERT_EQ(sObjProto, sharedObjectPrototype.GetTaggedValue());
ASSERT_TRUE(sObjProto.IsJSSharedObject());
JSHClass *sObjProtoHClass = sObjProto.GetTaggedObject()->GetClass();
ASSERT_FALSE(sObjProtoHClass->IsExtensible());
ASSERT_FALSE(sObjProtoHClass->IsConstructor());
ASSERT_FALSE(sObjProtoHClass->IsCallable());
}
HWTEST_F_L0(BuiltinsSharedObjectTest, SharedFunction)
{
DISALLOW_GARBAGE_COLLECTION;
JSHandle<GlobalEnv> env = thread->GetEcmaVM()->GetGlobalEnv();
auto globalConst = thread->GlobalConstants();
auto sFunctionPrototype = env->GetSFunctionPrototype();
PropertyDescriptor desc(thread);
JSHandle<JSTaggedValue> constructorKey = globalConst->GetHandledConstructorString();
JSObject::GetOwnProperty(thread, JSHandle<JSObject>(sFunctionPrototype), constructorKey, desc);
auto ctor = desc.GetValue();
ASSERT_EQ(ctor.GetTaggedValue(), env->GetSFunctionFunction().GetTaggedValue());
JSHClass *ctorHClass = ctor->GetTaggedObject()->GetClass();
ASSERT_FALSE(ctorHClass->IsExtensible());
ASSERT_TRUE(ctorHClass->IsConstructor());
ASSERT_TRUE(ctorHClass->IsCallable());
ASSERT_TRUE(ctorHClass->IsJSSharedFunction());
JSHandle<JSHClass> normalFunctionClass(env->GetSFunctionClassWithoutProto());
ASSERT_FALSE(normalFunctionClass->IsExtensible());
ASSERT_FALSE(normalFunctionClass->IsConstructor());
ASSERT_TRUE(ctorHClass->IsCallable());
ASSERT_TRUE(ctorHClass->IsJSSharedFunction());
}
HWTEST_F_L0(BuiltinsSharedObjectTest, SharedBuiltinsMethod)
{
JSHandle<GlobalEnv> env = thread->GetEcmaVM()->GetGlobalEnv();
auto factory = thread->GetEcmaVM()->GetFactory();
auto sFunctionPrototype = env->GetSFunctionPrototype();
auto callStr = factory->NewFromASCII("call");
PropertyDescriptor desc(thread);
JSObject::GetOwnProperty(thread, JSHandle<JSObject>(sFunctionPrototype), JSHandle<JSTaggedValue>(callStr), desc);
auto method = desc.GetValue();
JSHClass *hclass = method->GetTaggedObject()->GetClass();
ASSERT_FALSE(hclass->IsExtensible());
ASSERT_TRUE(!hclass->IsConstructor());
ASSERT_TRUE(hclass->IsCallable());
ASSERT_TRUE(hclass->IsJSSharedFunction());
}
HWTEST_F_L0(BuiltinsSharedObjectTest, SendableMethod)
{
auto factory = thread->GetEcmaVM()->GetFactory();
JSHandle<GlobalEnv> env = thread->GetEcmaVM()->GetGlobalEnv();
uint32_t methodOffset = 100;
MethodLiteral *methodLiteral = new MethodLiteral(EntityId(methodOffset));
methodLiteral->SetIsShared(true);
JSHandle<Method> method = factory->NewSMethod(methodLiteral);
method->SetFunctionKind(FunctionKind::BASE_CONSTRUCTOR);
JSHandle<JSFunction> func = factory->NewJSSendableFunction(method);
ASSERT_TRUE(Method::Cast(func->GetMethod(thread))->IsSendableMethod());
uint32_t methodOffset1 = 101;
MethodLiteral *methodLiteral1 = new MethodLiteral(EntityId(methodOffset1));
JSHandle<Method> method1 = factory->NewSMethod(methodLiteral1);
method1->SetIsSendable(true);
JSHandle<JSFunction> func1 = factory->NewSFunctionByHClass(
method1, JSHandle<JSHClass>::Cast(env->GetSFunctionClassWithoutProto()));
ASSERT_TRUE(Method::Cast(func1->GetMethod(thread))->IsSendableMethod());
}
}