forked from qt-creator/qt-creator
Change-Id: Ic6c3e3beaba15e83c8524394ccc6a1953e76d59a Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
175 lines
5.4 KiB
C++
175 lines
5.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2014 Digia Plc
|
|
** All rights reserved.
|
|
** For any questions to Digia, please use contact form at http://qt.digia.com
|
|
**
|
|
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
|
|
**
|
|
** Licensees holding valid Qt Enterprise licenses may use this file in
|
|
** accordance with the Qt Enterprise License Agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Digia.
|
|
**
|
|
** If you have questions regarding the use of this file, please use
|
|
** contact form at http://qt.digia.com
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "testresult.h"
|
|
|
|
namespace Autotest {
|
|
namespace Internal {
|
|
|
|
FaultyTestResult::FaultyTestResult(Result::Type result, const QString &description)
|
|
: TestResult(QString(), QString(), QString(), result, description)
|
|
{
|
|
}
|
|
|
|
TestResult::TestResult(const QString &className, const QString &testCase, const QString &dataTag,
|
|
Result::Type result, const QString &description)
|
|
: m_class(className),
|
|
m_case(testCase),
|
|
m_dataTag(dataTag),
|
|
m_result(result),
|
|
m_description(description),
|
|
m_line(0)
|
|
{
|
|
}
|
|
|
|
Result::Type TestResult::resultFromString(const QString &resultString)
|
|
{
|
|
if (resultString == QLatin1String("pass"))
|
|
return Result::PASS;
|
|
if (resultString == QLatin1String("fail"))
|
|
return Result::FAIL;
|
|
if (resultString == QLatin1String("xfail"))
|
|
return Result::EXPECTED_FAIL;
|
|
if (resultString == QLatin1String("xpass"))
|
|
return Result::UNEXPECTED_PASS;
|
|
if (resultString == QLatin1String("skip"))
|
|
return Result::SKIP;
|
|
if (resultString == QLatin1String("qdebug"))
|
|
return Result::MESSAGE_DEBUG;
|
|
if (resultString == QLatin1String("warn") || resultString == QLatin1String("qwarn"))
|
|
return Result::MESSAGE_WARN;
|
|
if (resultString == QLatin1String("qfatal"))
|
|
return Result::MESSAGE_FATAL;
|
|
if (resultString == QLatin1String("bpass"))
|
|
return Result::BLACKLISTED_PASS;
|
|
if (resultString == QLatin1String("bfail"))
|
|
return Result::BLACKLISTED_FAIL;
|
|
qDebug(" unexpected testresult...");
|
|
qDebug(resultString.toLatin1());
|
|
return Result::UNKNOWN;
|
|
}
|
|
|
|
Result::Type TestResult::toResultType(int rt)
|
|
{
|
|
switch(rt) {
|
|
case Result::PASS:
|
|
return Result::PASS;
|
|
case Result::FAIL:
|
|
return Result::FAIL;
|
|
case Result::EXPECTED_FAIL:
|
|
return Result::EXPECTED_FAIL;
|
|
case Result::UNEXPECTED_PASS:
|
|
return Result::UNEXPECTED_PASS;
|
|
case Result::SKIP:
|
|
return Result::SKIP;
|
|
case Result::BLACKLISTED_PASS:
|
|
return Result::BLACKLISTED_PASS;
|
|
case Result::BLACKLISTED_FAIL:
|
|
return Result::BLACKLISTED_FAIL;
|
|
case Result::BENCHMARK:
|
|
return Result::BENCHMARK;
|
|
case Result::MESSAGE_DEBUG:
|
|
return Result::MESSAGE_DEBUG;
|
|
case Result::MESSAGE_WARN:
|
|
return Result::MESSAGE_WARN;
|
|
case Result::MESSAGE_FATAL:
|
|
return Result::MESSAGE_FATAL;
|
|
case Result::MESSAGE_INTERNAL:
|
|
return Result::MESSAGE_INTERNAL;
|
|
case Result::MESSAGE_CURRENT_TEST:
|
|
return Result::MESSAGE_CURRENT_TEST;
|
|
default:
|
|
return Result::UNKNOWN;
|
|
}
|
|
}
|
|
|
|
QString TestResult::resultToString(const Result::Type type)
|
|
{
|
|
switch(type) {
|
|
case Result::PASS:
|
|
return QLatin1String("PASS");
|
|
case Result::FAIL:
|
|
return QLatin1String("FAIL");
|
|
case Result::EXPECTED_FAIL:
|
|
return QLatin1String("XFAIL");
|
|
case Result::UNEXPECTED_PASS:
|
|
return QLatin1String("XPASS");
|
|
case Result::SKIP:
|
|
return QLatin1String("SKIP");
|
|
case Result::BENCHMARK:
|
|
return QLatin1String("BENCH");
|
|
case Result::MESSAGE_DEBUG:
|
|
return QLatin1String("DEBUG");
|
|
case Result::MESSAGE_WARN:
|
|
return QLatin1String("WARN");
|
|
case Result::MESSAGE_FATAL:
|
|
return QLatin1String("FATAL");
|
|
case Result::MESSAGE_INTERNAL:
|
|
case Result::MESSAGE_CURRENT_TEST:
|
|
return QString();
|
|
case Result::BLACKLISTED_PASS:
|
|
return QLatin1String("BPASS");
|
|
case Result::BLACKLISTED_FAIL:
|
|
return QLatin1String("BFAIL");
|
|
default:
|
|
return QLatin1String("UNKNOWN");
|
|
}
|
|
}
|
|
|
|
QColor TestResult::colorForType(const Result::Type type)
|
|
{
|
|
switch(type) {
|
|
case Result::PASS:
|
|
return QColor("#009900");
|
|
case Result::FAIL:
|
|
return QColor("#a00000");
|
|
case Result::EXPECTED_FAIL:
|
|
return QColor("#00ff00");
|
|
case Result::UNEXPECTED_PASS:
|
|
return QColor("#ff0000");
|
|
case Result::SKIP:
|
|
return QColor("#787878");
|
|
case Result::BLACKLISTED_PASS:
|
|
return QColor(0, 0, 0);
|
|
case Result::BLACKLISTED_FAIL:
|
|
return QColor(0, 0, 0);
|
|
case Result::MESSAGE_DEBUG:
|
|
return QColor("#329696");
|
|
case Result::MESSAGE_WARN:
|
|
return QColor("#d0bb00");
|
|
case Result::MESSAGE_FATAL:
|
|
return QColor("#640000");
|
|
case Result::MESSAGE_INTERNAL:
|
|
case Result::MESSAGE_CURRENT_TEST:
|
|
return QColor("transparent");
|
|
default:
|
|
return QColor("#000000");
|
|
}
|
|
}
|
|
|
|
bool operator==(const TestResult &t1, const TestResult &t2)
|
|
{
|
|
return t1.className() == t2.className()
|
|
&& t1.testCase() == t2.testCase()
|
|
&& t1.dataTag() == t2.dataTag()
|
|
&& t1.result() == t2.result();
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|