* Copyright (c) 2025 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 "ani_common.h"
#include "mmi_log.h"
using namespace testing;
using namespace testing::ext;
using namespace OHOS::MMI;
class AniCommonTest : public ::testing::Test {
protected:
void SetUp() override {
}
void TearDown() override {
}
};
* @tc.name: AniCommonTest_GetApiError_001
* @tc.desc: AniCommonTest_GetApiError_001
* @tc.type: FUNC
* @tc.require:
*/
HWTEST_F(AniCommonTest, AniCommonTest_GetApiError_001, TestSize.Level0) {
TaiheError codeMsg;
auto code = TaiheErrorCode::COMMON_PERMISSION_CHECK_ERROR;
bool result = TaiheConverter::GetApiError(code, codeMsg);
EXPECT_TRUE(result);
EXPECT_EQ(codeMsg.errorCode, TaiheErrorCode::COMMON_PERMISSION_CHECK_ERROR);
EXPECT_STREQ(codeMsg.msg.c_str(), "Permission denied. An attempt was made to %s forbidden by permission:%s.");
}
* @tc.name: AniCommonTest_GetApiError_002
* @tc.desc: AniCommonTest_GetApiError_002
* @tc.type: FUNC
* @tc.require:
*/
HWTEST_F(AniCommonTest, AniCommonTest_GetApiError_002, TestSize.Level0) {
TaiheError codeMsg;
auto code = TaiheErrorCode::OTHER_ERROR;
bool result = TaiheConverter::GetApiError(code, codeMsg);
EXPECT_FALSE(result);
EXPECT_EQ(codeMsg.errorCode, 0);
EXPECT_STREQ(codeMsg.msg.c_str(), "");
}