TestLib: align the colons so the "actual" and "expected" align too
Before: FAIL! tst_testcase::testcase: Compared values are not the same Actual (actual): F0O Expected (expected): FOO Now: FAIL! tst_testcase::testcase: Compared values are not the same Actual (actual) : F0O Expected (expected): FOO Change-Id: I6f0768e4ef53e065b85a56879cecbad06fa34aef Reviewed-by: Jason McDonald <macadder1@gmail.com>bb10
parent
d5d07f26f6
commit
d040681b6f
|
|
@ -268,10 +268,12 @@ bool QTestResult::compare(bool success, const char *failureMsg,
|
|||
if (success && QTest::expectFailMode) {
|
||||
qsnprintf(msg, 1024, "QCOMPARE(%s, %s) returned TRUE unexpectedly.", actual, expected);
|
||||
} else if (val1 || val2) {
|
||||
qsnprintf(msg, 1024, "%s\n Actual (%s): %s\n Expected (%s): %s",
|
||||
size_t len1 = strlen(actual);
|
||||
size_t len2 = strlen(expected);
|
||||
qsnprintf(msg, 1024, "%s\n Actual (%s)%*s %s\n Expected (%s)%*s %s",
|
||||
failureMsg,
|
||||
actual, val1 ? val1 : "<null>",
|
||||
expected, val2 ? val2 : "<null>");
|
||||
actual, qMax(len1, len2) - len1 + 1, ":", val1 ? val1 : "<null>",
|
||||
expected, qMax(len1, len2) - len2 + 1, ":", val2 ? val2 : "<null>");
|
||||
} else
|
||||
qsnprintf(msg, 1024, "%s", failureMsg);
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[int, string]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(int,123)
|
||||
Actual (actual) : QVariant(int,123)
|
||||
Expected (expected): QVariant(QString,hi)]]></Description>
|
||||
</Incident>
|
||||
<Incident type="pass" file="" line="0">
|
||||
|
|
@ -24,19 +24,19 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[null hash, invalid]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(QVariantHash)
|
||||
Actual (actual) : QVariant(QVariantHash)
|
||||
Expected (expected): QVariant()]]></Description>
|
||||
</Incident>
|
||||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[string, null user type]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(QString,A simple string)
|
||||
Actual (actual) : QVariant(QString,A simple string)
|
||||
Expected (expected): QVariant(PhonyClass)]]></Description>
|
||||
</Incident>
|
||||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[both non-null user type]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(PhonyClass,<value not representable as string>)
|
||||
Actual (actual) : QVariant(PhonyClass,<value not representable as string>)
|
||||
Expected (expected): QVariant(PhonyClass,<value not representable as string>)]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
|
|
|
|||
|
|
@ -4,20 +4,20 @@ PASS : tst_Cmptest::initTestCase()
|
|||
PASS : tst_Cmptest::compare_boolfuncs()
|
||||
PASS : tst_Cmptest::compare_pointerfuncs()
|
||||
FAIL! : tst_Cmptest::compare_tostring(int, string) Compared values are not the same
|
||||
Actual (actual): QVariant(int,123)
|
||||
Actual (actual) : QVariant(int,123)
|
||||
Expected (expected): QVariant(QString,hi)
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp(214)]
|
||||
PASS : tst_Cmptest::compare_tostring(both invalid)
|
||||
FAIL! : tst_Cmptest::compare_tostring(null hash, invalid) Compared values are not the same
|
||||
Actual (actual): QVariant(QVariantHash)
|
||||
Actual (actual) : QVariant(QVariantHash)
|
||||
Expected (expected): QVariant()
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp(214)]
|
||||
FAIL! : tst_Cmptest::compare_tostring(string, null user type) Compared values are not the same
|
||||
Actual (actual): QVariant(QString,A simple string)
|
||||
Actual (actual) : QVariant(QString,A simple string)
|
||||
Expected (expected): QVariant(PhonyClass)
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp(214)]
|
||||
FAIL! : tst_Cmptest::compare_tostring(both non-null user type) Compared values are not the same
|
||||
Actual (actual): QVariant(PhonyClass,<value not representable as string>)
|
||||
Actual (actual) : QVariant(PhonyClass,<value not representable as string>)
|
||||
Expected (expected): QVariant(PhonyClass,<value not representable as string>)
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp(214)]
|
||||
PASS : tst_Cmptest::compareQStringLists(empty lists)
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[int, string]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(int,123)
|
||||
Actual (actual) : QVariant(int,123)
|
||||
Expected (expected): QVariant(QString,hi)]]></Description>
|
||||
</Incident>
|
||||
<Incident type="pass" file="" line="0">
|
||||
|
|
@ -26,19 +26,19 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[null hash, invalid]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(QVariantHash)
|
||||
Actual (actual) : QVariant(QVariantHash)
|
||||
Expected (expected): QVariant()]]></Description>
|
||||
</Incident>
|
||||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[string, null user type]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(QString,A simple string)
|
||||
Actual (actual) : QVariant(QString,A simple string)
|
||||
Expected (expected): QVariant(PhonyClass)]]></Description>
|
||||
</Incident>
|
||||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/cmptest/tst_cmptest.cpp" line="214">
|
||||
<DataTag><![CDATA[both non-null user type]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (actual): QVariant(PhonyClass,<value not representable as string>)
|
||||
Actual (actual) : QVariant(PhonyClass,<value not representable as string>)
|
||||
Expected (expected): QVariant(PhonyClass,<value not representable as string>)]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
|
|
|
|||
|
|
@ -9,16 +9,16 @@
|
|||
<testcase result="pass" name="compare_pointerfuncs"/>
|
||||
<testcase result="fail" name="compare_tostring">
|
||||
<failure tag="int, string" message="Compared values are not the same
|
||||
Actual (actual): QVariant(int,123)
|
||||
Actual (actual) : QVariant(int,123)
|
||||
Expected (expected): QVariant(QString,hi)" result="fail"/>
|
||||
<failure tag="null hash, invalid" message="Compared values are not the same
|
||||
Actual (actual): QVariant(QVariantHash)
|
||||
Actual (actual) : QVariant(QVariantHash)
|
||||
Expected (expected): QVariant()" result="fail"/>
|
||||
<failure tag="string, null user type" message="Compared values are not the same
|
||||
Actual (actual): QVariant(QString,A simple string)
|
||||
Actual (actual) : QVariant(QString,A simple string)
|
||||
Expected (expected): QVariant(PhonyClass)" result="fail"/>
|
||||
<failure tag="both non-null user type" message="Compared values are not the same
|
||||
Actual (actual): QVariant(PhonyClass,<value not representable as string>)
|
||||
Actual (actual) : QVariant(PhonyClass,<value not representable as string>)
|
||||
Expected (expected): QVariant(PhonyClass,<value not representable as string>)" result="fail"/>
|
||||
</testcase>
|
||||
<testcase result="fail" name="compareQStringLists">
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/datetime/tst_datetime.cpp" line="66">
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (local): 2000/05/03 04:03:04.000[local time]
|
||||
Expected (utc): 2000/05/03 04:03:04.000[UTC]]]></Description>
|
||||
Expected (utc) : 2000/05/03 04:03:04.000[UTC]]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
<TestFunction name="qurl">
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ Config: Using QtTest library @INSERT_QT_VERSION_HERE@, Qt @INSERT_QT_VERSION_HER
|
|||
PASS : tst_DateTime::initTestCase()
|
||||
FAIL! : tst_DateTime::dateTime() Compared values are not the same
|
||||
Actual (local): 2000/05/03 04:03:04.000[local time]
|
||||
Expected (utc): 2000/05/03 04:03:04.000[UTC]
|
||||
Expected (utc) : 2000/05/03 04:03:04.000[UTC]
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/datetime/tst_datetime.cpp(33)]
|
||||
PASS : tst_DateTime::qurl(empty urls)
|
||||
FAIL! : tst_DateTime::qurl(empty rhs) Compared values are not the same
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/datetime/tst_datetime.cpp" line="66">
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (local): 2000/05/03 04:03:04.000[local time]
|
||||
Expected (utc): 2000/05/03 04:03:04.000[UTC]]]></Description>
|
||||
Expected (utc) : 2000/05/03 04:03:04.000[UTC]]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
<TestFunction name="qurl">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<testcase result="fail" name="dateTime">
|
||||
<failure message="Compared values are not the same
|
||||
Actual (local): 2000/05/03 04:03:04.000[local time]
|
||||
Expected (utc): 2000/05/03 04:03:04.000[UTC]" result="fail"/>
|
||||
Expected (utc) : 2000/05/03 04:03:04.000[UTC]" result="fail"/>
|
||||
</testcase>
|
||||
<testcase result="fail" name="qurl">
|
||||
<failure tag="empty rhs" message="Compared values are not the same
|
||||
|
|
|
|||
|
|
@ -3,15 +3,15 @@ Config: Using QtTest library @INSERT_QT_VERSION_HERE@, Qt @INSERT_QT_VERSION_HER
|
|||
PASS : tst_float::initTestCase()
|
||||
PASS : tst_float::floatComparisons(should SUCCEED 1)
|
||||
FAIL! : tst_float::floatComparisons(should FAIL 1) Compared floats are not the same (fuzzy compare)
|
||||
Actual (operandLeft): 1
|
||||
Actual (operandLeft) : 1
|
||||
Expected (operandRight): 3
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/float/tst_float.cpp(61)]
|
||||
FAIL! : tst_float::floatComparisons(should FAIL 2) Compared floats are not the same (fuzzy compare)
|
||||
Actual (operandLeft): 1e-07
|
||||
Actual (operandLeft) : 1e-07
|
||||
Expected (operandRight): 3e-07
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/float/tst_float.cpp(61)]
|
||||
FAIL! : tst_float::floatComparisons(should FAIL 3) Compared floats are not the same (fuzzy compare)
|
||||
Actual (operandLeft): 99998
|
||||
Actual (operandLeft) : 99998
|
||||
Expected (operandRight): 99999
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/float/tst_float.cpp(61)]
|
||||
PASS : tst_float::floatComparisons(should SUCCEED 2)
|
||||
|
|
|
|||
|
|
@ -35,13 +35,13 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/strcmp/tst_strcmp.cpp" line="121">
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (QByteArray("foo")): 66 6F 6F
|
||||
Expected (QByteArray()): ]]></Description>
|
||||
Expected (QByteArray()) : ]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
<TestFunction name="failByteArrayEmpty">
|
||||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/strcmp/tst_strcmp.cpp" line="126">
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (QByteArray("")):
|
||||
Actual (QByteArray("")) :
|
||||
Expected (QByteArray("foo")): 66 6F 6F]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
|
|
|
|||
|
|
@ -18,10 +18,10 @@ FAIL! : tst_StrCmp::failByteArray() Compared values are not the same
|
|||
Loc: [./tst_strcmp.cpp(82)]
|
||||
FAIL! : tst_StrCmp::failByteArrayNull() Compared values are not the same
|
||||
Actual (QByteArray("foo")): 66 6F 6F
|
||||
Expected (QByteArray()):
|
||||
Expected (QByteArray()) :
|
||||
Loc: [./tst_strcmp.cpp(88)]
|
||||
FAIL! : tst_StrCmp::failByteArrayEmpty() Compared values are not the same
|
||||
Actual (QByteArray("")):
|
||||
Actual (QByteArray("")) :
|
||||
Expected (QByteArray("foo")): 66 6F 6F
|
||||
Loc: [./tst_strcmp.cpp(93)]
|
||||
FAIL! : tst_StrCmp::failByteArraySingleChars() Compared values are not the same
|
||||
|
|
|
|||
|
|
@ -37,13 +37,13 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/strcmp/tst_strcmp.cpp" line="121">
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (QByteArray("foo")): 66 6F 6F
|
||||
Expected (QByteArray()): ]]></Description>
|
||||
Expected (QByteArray()) : ]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
<TestFunction name="failByteArrayEmpty">
|
||||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/strcmp/tst_strcmp.cpp" line="126">
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (QByteArray("")):
|
||||
Actual (QByteArray("")) :
|
||||
Expected (QByteArray("foo")): 66 6F 6F]]></Description>
|
||||
</Incident>
|
||||
</TestFunction>
|
||||
|
|
|
|||
|
|
@ -22,11 +22,11 @@
|
|||
<testcase result="fail" name="failByteArrayNull">
|
||||
<failure message="Compared values are not the same
|
||||
Actual (QByteArray("foo")): 66 6F 6F
|
||||
Expected (QByteArray()): " result="fail"/>
|
||||
Expected (QByteArray()) : " result="fail"/>
|
||||
</testcase>
|
||||
<testcase result="fail" name="failByteArrayEmpty">
|
||||
<failure message="Compared values are not the same
|
||||
Actual (QByteArray("")):
|
||||
Actual (QByteArray("")) :
|
||||
Expected (QByteArray("foo")): 66 6F 6F" result="fail"/>
|
||||
</testcase>
|
||||
<testcase result="fail" name="failByteArraySingleChars">
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/subtest/tst_subtest.cpp" line="154">
|
||||
<DataTag><![CDATA[data1]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (str): hello1
|
||||
Actual (str) : hello1
|
||||
Expected (QString("hello0")): hello0]]></Description>
|
||||
</Incident>
|
||||
<Message type="qdebug" file="" line="0">
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/subtest/tst_subtest.cpp" line="154">
|
||||
<DataTag><![CDATA[data2]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (str): hello2
|
||||
Actual (str) : hello2
|
||||
Expected (QString("hello0")): hello0]]></Description>
|
||||
</Incident>
|
||||
<Message type="qdebug" file="" line="0">
|
||||
|
|
|
|||
|
|
@ -33,14 +33,14 @@ PASS : tst_Subtest::test3(data0)
|
|||
QDEBUG : tst_Subtest::test3(data1) init test3 data1
|
||||
QDEBUG : tst_Subtest::test3(data1) test2 test3 data1
|
||||
FAIL! : tst_Subtest::test3(data1) Compared values are not the same
|
||||
Actual (str): hello1
|
||||
Actual (str) : hello1
|
||||
Expected (QString("hello0")): hello0
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/subtest/tst_subtest.cpp(154)]
|
||||
QDEBUG : tst_Subtest::test3(data1) cleanup test3 data1
|
||||
QDEBUG : tst_Subtest::test3(data2) init test3 data2
|
||||
QDEBUG : tst_Subtest::test3(data2) test2 test3 data2
|
||||
FAIL! : tst_Subtest::test3(data2) Compared values are not the same
|
||||
Actual (str): hello2
|
||||
Actual (str) : hello2
|
||||
Expected (QString("hello0")): hello0
|
||||
Loc: [/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/subtest/tst_subtest.cpp(154)]
|
||||
QDEBUG : tst_Subtest::test3(data2) cleanup test3 data2
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/subtest/tst_subtest.cpp" line="154">
|
||||
<DataTag><![CDATA[data1]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (str): hello1
|
||||
Actual (str) : hello1
|
||||
Expected (QString("hello0")): hello0]]></Description>
|
||||
</Incident>
|
||||
<Message type="qdebug" file="" line="0">
|
||||
|
|
@ -142,7 +142,7 @@
|
|||
<Incident type="fail" file="/home/user/dev/qt5/qtbase/tests/auto/testlib/selftests/subtest/tst_subtest.cpp" line="154">
|
||||
<DataTag><![CDATA[data2]]></DataTag>
|
||||
<Description><![CDATA[Compared values are not the same
|
||||
Actual (str): hello2
|
||||
Actual (str) : hello2
|
||||
Expected (QString("hello0")): hello0]]></Description>
|
||||
</Incident>
|
||||
<Message type="qdebug" file="" line="0">
|
||||
|
|
|
|||
|
|
@ -38,13 +38,13 @@
|
|||
<!-- tag="data1" message="init test3 data1 " type="qdebug" -->
|
||||
<!-- tag="data1" message="test2 test3 data1 " type="qdebug" -->
|
||||
<failure tag="data1" message="Compared values are not the same
|
||||
Actual (str): hello1
|
||||
Actual (str) : hello1
|
||||
Expected (QString("hello0")): hello0" result="fail"/>
|
||||
<!-- tag="data1" message="cleanup test3 data1 " type="qdebug" -->
|
||||
<!-- tag="data2" message="init test3 data2 " type="qdebug" -->
|
||||
<!-- tag="data2" message="test2 test3 data2 " type="qdebug" -->
|
||||
<failure tag="data2" message="Compared values are not the same
|
||||
Actual (str): hello2
|
||||
Actual (str) : hello2
|
||||
Expected (QString("hello0")): hello0" result="fail"/>
|
||||
<!-- tag="data2" message="cleanup test3 data2 " type="qdebug" -->
|
||||
</testcase>
|
||||
|
|
|
|||
Loading…
Reference in New Issue