* Copyright (c) Huawei Technologies Co., Ltd. 2025-2025. All rights reserved.
* ubs-engine is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
#include "test_ubse_plugin_module.h"
#include "ubse_error.h"
#include "ubse_plugin_manager.h"
#include "ubse_plugin_module.h"
#include "config.h"
namespace ubse {
namespace ut {
namespace plugin {
using namespace ubse::plugin;
void TestUbsePluginModule::SetUp()
{
Test::SetUp();
}
void TestUbsePluginModule::TearDown()
{
GlobalMockObject::verify();
Test::TearDown();
}
TEST_F(TestUbsePluginModule, PluginReady)
{
std::string pluginName = "test";
UbsePluginModule ubsePluginModule;
ubsePluginModule.NotifyPluginReadyStatus(pluginName, true);
EXPECT_TRUE(ubsePluginModule.GetPluginReadyStatus(pluginName));
}
TEST_F(TestUbsePluginModule, Initialize)
{
std::string pluginName = "test";
UbsePluginModule ubsePluginModule;
auto ret = ubsePluginModule.Initialize();
EXPECT_EQ(ret, UBSE_OK);
}
TEST_F(TestUbsePluginModule, TestStart)
{
MOCKER(&UbsePluginManager::Start).stubs().will(returnValue(UBSE_OK));
UbsePluginModule ubsePluginModule;
EXPECT_EQ(ubsePluginModule.Start(), UBSE_OK);
}
TEST_F(TestUbsePluginModule, TestStop)
{
MOCKER(&UbsePluginManager::Start).stubs().will(returnValue(UBSE_OK));
UbsePluginModule ubsePluginModule;
ubsePluginModule.Stop();
}
}
}
}