/* * Copyright (c) 2021 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/ecma_string.h" #include "ecmascript/ecma_vm.h" #include "ecmascript/global_env.h" #include "ecmascript/js_function.h" #include "ecmascript/js_handle.h" #include "ecmascript/js_iterator.h" #include "ecmascript/js_object-inl.h" #include "ecmascript/js_set.h" #include "ecmascript/js_set_iterator.h" #include "ecmascript/js_tagged_value.h" #include "ecmascript/linked_hash_table.h" #include "ecmascript/object_factory.h" #include "ecmascript/tagged_hash_table.h" #include "ecmascript/tests/test_helper.h" using namespace panda; using namespace panda::ecmascript; namespace panda::test { class JSSetTest : public BaseTestWithScope { protected: JSSet *CreateSet() { ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); JSHandle constructor = thread->GetEcmaVM()->GetGlobalEnv()->GetBuiltinsSetFunction(); JSHandle set = JSHandle::Cast(factory->NewJSObjectByConstructor(JSHandle(constructor), constructor)); JSHandle hashSet = LinkedHashSet::Create(thread); set->SetLinkedSet(thread, hashSet); return JSSet::Cast(set.GetTaggedValue().GetTaggedObject()); } }; HWTEST_F_L0(JSSetTest, SetCreate) { JSSet *set = CreateSet(); EXPECT_TRUE(set != nullptr); } HWTEST_F_L0(JSSetTest, AddAndHas) { ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); // create jsSet JSHandle set(thread, CreateSet()); JSHandle key(factory->NewFromASCII("key")); JSSet::Add(thread, set, key); EXPECT_TRUE(set->Has(thread, key.GetTaggedValue())); } HWTEST_F_L0(JSSetTest, DeleteAndGet) { ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); // create jsSet JSHandle set(thread, CreateSet()); // add 40 keys char keyArray[] = "key0"; for (uint32_t i = 0; i < 40; i++) { keyArray[3] = '1' + i; JSHandle key(factory->NewFromASCII(keyArray)); JSSet::Add(thread, set, key); EXPECT_TRUE(set->Has(thread, key.GetTaggedValue())); } EXPECT_EQ(set->GetSize(), 40); // whether jsSet has delete key keyArray[3] = '1' + 8; JSHandle deleteKey(factory->NewFromASCII(keyArray)); JSSet::Delete(thread, set, deleteKey); EXPECT_FALSE(set->Has(thread, deleteKey.GetTaggedValue())); EXPECT_EQ(set->GetSize(), 39); } HWTEST_F_L0(JSSetTest, Iterator) { ObjectFactory *factory = thread->GetEcmaVM()->GetFactory(); JSHandle set(thread, CreateSet()); for (int i = 0; i < 5; i++) { JSHandle key(thread, JSTaggedValue(i)); JSSet::Add(thread, set, key); } JSHandle keyIter(factory->NewJSSetIterator(set, IterationKind::KEY)); JSHandle valueIter(factory->NewJSSetIterator(set, IterationKind::VALUE)); JSHandle keyResult0 = JSIterator::IteratorStep(thread, keyIter); JSHandle valueResult0 = JSIterator::IteratorStep(thread, valueIter); EXPECT_EQ(0, JSIterator::IteratorValue(thread, keyResult0)->GetInt()); EXPECT_EQ(0, JSIterator::IteratorValue(thread, valueResult0)->GetInt()); JSHandle keyResult1 = JSIterator::IteratorStep(thread, keyIter); EXPECT_EQ(1, JSIterator::IteratorValue(thread, keyResult1)->GetInt()); for (int i = 0; i < 3; i++) { JSHandle key(thread, JSTaggedValue(i)); JSSet::Delete(thread, set, key); } JSHandle keyResult2 = JSIterator::IteratorStep(thread, keyIter); EXPECT_EQ(3, JSIterator::IteratorValue(thread, keyResult2)->GetInt()); JSHandle keyResult3 = JSIterator::IteratorStep(thread, keyIter); EXPECT_EQ(4, JSIterator::IteratorValue(thread, keyResult3)->GetInt()); JSHandle key(thread, JSTaggedValue(5)); JSSet::Add(thread, set, key); JSHandle keyResult4 = JSIterator::IteratorStep(thread, keyIter); EXPECT_EQ(5, JSIterator::IteratorValue(thread, keyResult4)->GetInt()); JSHandle keyResult5 = JSIterator::IteratorStep(thread, keyIter); EXPECT_EQ(JSTaggedValue::False(), keyResult5.GetTaggedValue()); } } // namespace panda::test