1

在我的测试用例中,我想断言 qDebug() 的输出包含某个字符串。例如,这就是我的测试的样子。请注意 qdebug 的“绑定到 UDP 端口 34772”输出。我可以从我的测试函数中测试 qdebug 中是否存在子字符串 34772 吗?

********* Start testing of tst_NetSocket *********
Config: Using QTest library 4.8.6, Qt 4.8.6
PASS   : tst_NetSocket::initTestCase()
QDEBUG : tst_NetSocket::testBindToPortDefaultToMinAvailable() Bound to UDP port  34772 
FAIL!  : tst_NetSocket::testBindToPortDefaultToMinAvailable() 'socket->getCurrentPort() == port_should_be' returned FALSE. ()
   Loc: [test_net_socket.cpp(59)]
PASS   : tst_NetSocket::cleanupTestCase()
Totals: 5 passed, 1 failed, 0 skipped
********* Finished testing of tst_NetSocket *********

这是我的测试文件。我想QVERIFY()在我的测试函数中添加一条语句,检查 qDebug 的输出中是否有子字符串 34772。

#include <QObject>
#include <QtTest/QtTest>
#include <unistd.h>
#include "net_socket.hpp"

class tst_NetSocket: public QObject
{
    Q_OBJECT

private slots:
    // ....
    void testBindToPortDefaultToMinAvailable();
};

// ... other tests removed for example ...

void tst_NetSocket::testBindToPortDefaultToMinAvailable()
{
    NetSocket * socket = new NetSocket();

    int port_should_be = (32768 + (getuid() % 4096)*4);
    if (socket->bindToPort()) {
        QVERIFY(socket->getCurrentPort() == port_should_be);
    }
}

QTEST_MAIN(tst_NetSocket)
#include "test_net_socket.moc"
4

1 回答 1

2

使用QTest::ignoreMessage断言在被测代码中添加了某条消息:

// ...
int port_should_be = (32768 + (getuid() % 4096)*4);
QTest::ignoreMessage(QtDebugMsg, QString::fromLatin1("Bound to UDP port  %1").arg(port_should_be).toUtf8().constData());
// ...
于 2014-09-05T10:35:44.453 回答