* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
*
* 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.
*/
#ifndef TEST_ST_CASES_SRC_BASE_UTILS_H
#define TEST_ST_CASES_SRC_BASE_UTILS_H
#include <string>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "yr/yr.h"
static void ErrorMsgCheck(std::string error_code, std::string error_msg, std::string excep_msg)
{
std::string::size_type code_idx = excep_msg.find(error_code);
std::string::size_type msg_idx = excep_msg.find(error_msg);
ASSERT_TRUE(code_idx != std::string::npos);
ASSERT_TRUE(msg_idx != std::string::npos);
}
static void SignalErrorMsgCheck(const std::string &error_code, const std::string &signal_msg,
const std::string &exit_code_msg, const std::string &excep_msg)
{
std::string::size_type code_idx = excep_msg.find(error_code);
std::string::size_type signal_idx = excep_msg.find(signal_msg);
std::string::size_type exit_code_idx = excep_msg.find(exit_code_msg);
std::string::size_type process_killed_idx = excep_msg.find("process may be killed for some reason");
ASSERT_TRUE(code_idx != std::string::npos);
ASSERT_TRUE(signal_idx != std::string::npos || exit_code_idx != std::string::npos ||
process_killed_idx != std::string::npos);
}
static void SignalErrorMsgCheck(const std::string &signal_msg, const std::string &exit_code_msg,
const std::string &excep_msg)
{
std::string::size_type signal_idx = excep_msg.find(signal_msg);
std::string::size_type exit_code_idx = excep_msg.find(exit_code_msg);
std::string::size_type process_killed_idx = excep_msg.find("process may be killed for some reason");
ASSERT_TRUE(signal_idx != std::string::npos || exit_code_idx != std::string::npos ||
process_killed_idx != std::string::npos);
}
#define EXPECT_THROW_WITH_CODE_AND_MSG(statement, code, msg) \
EXPECT_THROW({ \
try { \
(statement); \
} catch (const YR::Exception &e) { \
EXPECT_EQ(e.Code(), (code)); \
EXPECT_THAT(e.Msg(), testing::HasSubstr(msg)); \
throw; \
} \
}, YR::Exception)
#endif