Files
shuchengchao 0646c83d82 deal with issues
Signed-off-by: shuchengchao <shuchengchao@huawei.com>
2022-03-25 17:05:01 +08:00

151 lines
4.5 KiB
C++

/*
* 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 <gtest/gtest.h>
#include "singleton.h"
#include <algorithm>
#include <iostream>
#include <fstream>
using namespace testing::ext;
using namespace OHOS;
using namespace std;
class DelayedSingletonDeclearTest {
DECLARE_DELAYED_SINGLETON(DelayedSingletonDeclearTest);
public:
void* GetObjAddr() { return (void*)this; }
};
DelayedSingletonDeclearTest::~DelayedSingletonDeclearTest() {};
DelayedSingletonDeclearTest::DelayedSingletonDeclearTest() {};
class SingletonDeclearTest {
DECLARE_SINGLETON(SingletonDeclearTest);
public:
void* GetObjAddr() { return (void*)this; }
};
SingletonDeclearTest::~SingletonDeclearTest() {};
SingletonDeclearTest::SingletonDeclearTest() {};
class SingletonTest: public Singleton<SingletonTest> {
public:
void* GetObjAddr() { return (void*)this; }
};
class DelayedSingletonTest: public DelayedSingleton<DelayedSingletonTest> {
public:
void* GetObjAddr() { return (void*)this; }
};
class DelayedRefSingletonDeclearTest {
DECLARE_DELAYED_REF_SINGLETON(DelayedRefSingletonDeclearTest);
public:
void* GetObjAddr() { return (void*)this; }
};
DelayedRefSingletonDeclearTest::DelayedRefSingletonDeclearTest() {};
DelayedRefSingletonDeclearTest::~DelayedRefSingletonDeclearTest() {};
class DelayedRefSingletonTest: public DelayedRefSingleton<DelayedRefSingletonTest> {
public:
void* GetObjAddr() { return (void*)this; }
};
class UtilsSingletonTest : public testing::Test
{
public :
static void SetUpTestCase(void);
static void TearDownTestCase(void);
void SetUp();
void TearDown();
};
void UtilsSingletonTest::SetUpTestCase(void)
{
// step 2: input testsuit setup step
}
void UtilsSingletonTest::TearDownTestCase(void)
{
// step 2: input testsuit teardown step
}
void UtilsSingletonTest::SetUp(void)
{
// step 3: input testcase setup step
}
void UtilsSingletonTest::TearDown(void)
{
// step 3: input testcase teardown step
}
HWTEST_F(UtilsSingletonTest, test_DelayedSingletonDeclearTest, TestSize.Level0)
{
shared_ptr<DelayedSingletonDeclearTest> sp1 = DelayedSingleton<DelayedSingletonDeclearTest>::GetInstance();
EXPECT_EQ(sp1.use_count(), 2);
shared_ptr<DelayedSingletonDeclearTest> sp2 = DelayedSingleton<DelayedSingletonDeclearTest>::GetInstance();
EXPECT_EQ(sp1->GetObjAddr(), sp2->GetObjAddr());
EXPECT_EQ(sp1.get(), sp2.get());
EXPECT_EQ(sp2.use_count(), 3);
}
HWTEST_F(UtilsSingletonTest, test_SingletonDeclearTest, TestSize.Level0)
{
SingletonDeclearTest &st1 = Singleton<SingletonDeclearTest>::GetInstance();
SingletonDeclearTest &st2 = Singleton<SingletonDeclearTest>::GetInstance();
EXPECT_EQ(st1.GetObjAddr(), st2.GetObjAddr());
}
HWTEST_F(UtilsSingletonTest, test_SingletonTest, TestSize.Level0)
{
SingletonTest &st1 = SingletonTest::GetInstance();
SingletonTest &st2 = SingletonTest::GetInstance();
EXPECT_EQ(st1.GetObjAddr(), st2.GetObjAddr());
}
HWTEST_F(UtilsSingletonTest, test_DelayedSingletonTest, TestSize.Level0)
{
shared_ptr<DelayedSingletonTest> sp1 = DelayedSingletonTest::GetInstance();
EXPECT_EQ(sp1.use_count(), 2);
shared_ptr<DelayedSingletonTest> sp2 = DelayedSingletonTest::GetInstance();
EXPECT_EQ(sp1->GetObjAddr(), sp2->GetObjAddr());
EXPECT_EQ(sp1.get(), sp2.get());
EXPECT_EQ(sp2.use_count(), 3);
}
HWTEST_F(UtilsSingletonTest, test_DelayedRefSingletonTest, TestSize.Level0)
{
DelayedRefSingletonTest& p1 = DelayedRefSingletonTest::GetInstance();
DelayedRefSingletonTest& p2 = DelayedRefSingletonTest::GetInstance();
EXPECT_EQ(p1.GetObjAddr(), p2.GetObjAddr());
}
HWTEST_F(UtilsSingletonTest, test_DelayedRefSingletonDeclearTest, TestSize.Level0)
{
DelayedRefSingletonDeclearTest& p1 = DelayedRefSingleton<DelayedRefSingletonDeclearTest>::GetInstance();
DelayedRefSingletonDeclearTest& p2 = DelayedRefSingleton<DelayedRefSingletonDeclearTest>::GetInstance();
EXPECT_EQ(p1.GetObjAddr(), p2.GetObjAddr());
}