From cba2adb1952db08202e3c7a633cfa3f62575fb99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Wed, 28 Jul 2021 13:49:12 +0200 Subject: testlib: Run test result expectation tests with stdout as output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For historical reasons a few of the subtests are skipped when running with anything but the plain text logger to stdout. To ensure we have as broad test coverage as possible for the expected output of the various loggers we run these tests in stdout-mode. Pick-to: 6.2 Change-Id: I856905d1543afe89710533657a55bd599c0305fd Reviewed-by: MÃ¥rten Nordheim --- tests/auto/testlib/selftests/tst_selftests.cpp | 36 ++++++++++++++------------ 1 file changed, 20 insertions(+), 16 deletions(-) (limited to 'tests/auto/testlib/selftests/tst_selftests.cpp') diff --git a/tests/auto/testlib/selftests/tst_selftests.cpp b/tests/auto/testlib/selftests/tst_selftests.cpp index 786a79a2f3..3643f4d4d3 100644 --- a/tests/auto/testlib/selftests/tst_selftests.cpp +++ b/tests/auto/testlib/selftests/tst_selftests.cpp @@ -602,10 +602,9 @@ struct TestLogger QString outputFileName(const QString &test) const { - if (outputMode == StdoutOutput) - return QString(); - - return testOutputDir.filePath("output_" + test + "." + shortName()); + return testOutputDir.filePath("output_" + test + + (outputMode == StdoutOutput ? ".stdout" : "") + + "." + shortName()); } QString expectationFileName(const QString &test, int version = 0) const @@ -619,16 +618,15 @@ struct TestLogger QStringList arguments(const QString &test) const { - auto fileName = outputFileName(test); - QStringList arguments; if (argumentStyle == NewStyleArgument) { - arguments << "-o" << (!fileName.isEmpty() ? fileName : QStringLiteral("-")) - + "," + shortName(); + arguments << "-o" << (outputMode == FileOutput + ? outputFileName(test) : QStringLiteral("-")) + + "," + shortName(); } else { arguments << "-" + shortName(); - if (!fileName.isEmpty()) - arguments << "-o" << fileName; + if (outputMode == FileOutput) + arguments << "-o" << outputFileName(test); } return arguments; @@ -636,9 +634,6 @@ struct TestLogger QByteArray testOutput(const QString &test) const { - if (outputMode == StdoutOutput) - return QByteArray(); - QFile outputFile(outputFileName(test)); REQUIRE(outputFile.exists()); REQUIRE(outputFile.open(QIODevice::ReadOnly)); @@ -788,6 +783,11 @@ void checkErrorOutput(const QString &test, const QByteArray &errorOutput) #endif return; +#ifdef Q_OS_WIN + if (test == "crashes") + return; // Complains about uncaught exception +#endif + #ifdef Q_OS_LINUX // QEMU outputs to stderr about uncaught signals if (QTestPrivate::isRunningArmOnX86() && @@ -1050,10 +1050,14 @@ void runTest(const QString &test, const TestLoggers &requestedLoggers) for (auto logger : loggers) { QByteArray testOutput; - if (logger.outputMode == StdoutOutput) + if (logger.outputMode == StdoutOutput) { testOutput = testProcess.standardOutput; - else + QFile file(logger.outputFileName(test)); + REQUIRE(file.open(QIODevice::WriteOnly)); + file.write(testOutput); + } else { testOutput = logger.testOutput(test); + } checkTestOutput(test, logger, testOutput); } @@ -1205,7 +1209,7 @@ SCENARIO("Test output of the loggers is as expected") GIVEN("The " << logger << " logger") { for (QString test : tests) { AND_GIVEN("The " << test << " subtest") { - runTest(test, TestLogger(logger)); + runTest(test, TestLogger(logger, StdoutOutput)); } } } -- cgit v1.2.3