我想做这样的事情:
TEST(MyTestFixture, printAfterExpectationFailure)
{
const string request("bring me tea");
const string&& response = sendRequestAndGetResponse(request);
checkResponseWithExpectarions1(response);
checkResponseWithExpectarions2(response);
checkResponseWithExpectarions3(response);
checkResponseWithExpectarions4(response);
if (anyOfExpectsFailed())
cout << "Request: " << request << "\nresponse: " << response << endl;
}
TEST(MyTestFixture, printAfterAssertionFailure)
{
const string request("bring me tea");
const string&& response = sendRequestAndGetResponse(request);
doWhenFailure([&request, &response]()
{
cout << "Request: " << request << "\nresponse: " << response << endl;
});
checkResponseWithAssertion1(response);
checkResponseWithAssertion2(response);
checkResponseWithAssertion3(response);
checkResponseWithAssertion4(response);
}
当且仅当期望/断言失败时,我想打印一些附加信息。
我知道我可以做这样的事情:
#define MY_ASSERT_EQ(lhr, rhs, message) if(lhs != rhs) ASSERT_EQ(lhs, rhs) << message
但是这种解决方案并不舒服,因为:
做自己想做的事情很难,实际上是一个测试代码味道。特别是,这两个测试(1)做得太多,(2)不可读,因为它们没有描述被测单元的功能。
我推荐两本读物:单元测试是第一和书现代 C++ 编程与测试驱动开发。
我建议不要尝试调用 4 个函数,每个函数都检查一些内容,然后想知道如何在失败时打印错误消息,而是建议如下:
在此过程结束时,您应该发现自己处于这样一种情况:打印有关测试失败的附加信息的目标只需通过以下操作即可实现:
ASSERT_THAT(Response, EQ("something")) << "Request: " << request;
注意:即使比起点更好,我也不认为上面的例子足够好。测试名称应该非常好,具有描述性,以至于您通过打印
request
的值可以获得零信息。
我意识到这是一种哲学答案;另一方面,它直接来自于我尝试编写良好的、可维护的测试的经验。编写好的测试需要像编写好的代码一样小心,并且会得到很多倍的回报:-)
一个非意识形态的答案(基于各地的信息):
QDebugTest.h
class QDebugTest : public ::testing::Test
{
public:
void SetUp() override;
void TearDown() override;
};
QDebugTest.cpp
static std::ostringstream qdebugString;
static void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) {
switch (type) {
case QtDebugMsg: qdebugString << "qDebug"; break;
case QtInfoMsg: qdebugString << "qInfo"; break;
case QtWarningMsg: qdebugString << "qWarning"; break;
case QtCriticalMsg: qdebugString << "qCritical"; break;
case QtFatalMsg: qdebugString << "qFatal"; break;
}
if (context.file) {
qdebugString << " (" << context.file << ":" << context.line ;
}
if (context.function) {
qdebugString << " " << context.function;
}
if(context.file || context.function) {
qdebugString << ")";
}
qdebugString << ": ";
qdebugString << msg.toLocal8Bit().constData();
qdebugString << "\n";
}
void QDebugTest::SetUp()
{
assert(qdebugString.str().empty());
qInstallMessageHandler(myMessageOutput);
}
void QDebugTest::TearDown()
{
qInstallMessageHandler(0);
if(!qdebugString.str().empty()) {
const ::testing::TestInfo* const test_info = ::testing::UnitTest::GetInstance()->current_test_info();
if (test_info->result()->Failed()) {
std::cout << std::endl << qdebugString.str();
}
qdebugString.clear();
}
}
现在从
QDebugTest
而不是 ::testing::Test
派生您的 Fixture 类。
如果您使用 TEST_F 并以 ::testing::Test 为基础实现测试类,则可以在 TearDown() 中检查测试是否有任何失败。
class TestsForFunctionX: public ::testing::Test
{
private:
void TearDown() override
{
if (HasFailure())
{
std::cerr << "My additional info";
}
}
}
TEST_F(TestsForFunctionX, BadInput)
{
ASSERT_TRUE(false);
}