From 3ca921293a99e2eb3e9b43b5ce1f3e472fc3e0fb Mon Sep 17 00:00:00 2001 From: David Skoland Date: Mon, 16 Nov 2020 12:38:42 +0100 Subject: Add test for qRound Add test for qRound that covers some edge cases for rounding. Note that as of right now, this test fails and the docs have been updated to warn that it should not be depended on for strict correctness. Change-Id: I1a61bca47abd77855fe7c13ded44e913cc7e8722 Reviewed-by: Volker Hilsheimer --- tests/auto/corelib/global/qglobal/tst_qglobal.cpp | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) (limited to 'tests/auto/corelib/global/qglobal/tst_qglobal.cpp') diff --git a/tests/auto/corelib/global/qglobal/tst_qglobal.cpp b/tests/auto/corelib/global/qglobal/tst_qglobal.cpp index 3c4bd3840e..032567cd39 100644 --- a/tests/auto/corelib/global/qglobal/tst_qglobal.cpp +++ b/tests/auto/corelib/global/qglobal/tst_qglobal.cpp @@ -33,6 +33,8 @@ #include #include +#include + class tst_QGlobal: public QObject { Q_OBJECT @@ -52,6 +54,10 @@ private slots: void buildAbiEndianness(); void testqOverload(); void testqMinMax(); + void qRoundFloats_data(); + void qRoundFloats(); + void qRoundDoubles_data(); + void qRoundDoubles(); }; extern "C" { // functions in qglobal.c @@ -602,6 +608,56 @@ void tst_QGlobal::testqMinMax() compare(qMax(quint64(1), ushort(2)), quint64(2)); } +void tst_QGlobal::qRoundFloats_data() +{ + QTest::addColumn("actual"); + QTest::addColumn("expected"); + + QTest::newRow("round half") << 0.5f << 1.0f; + QTest::newRow("round negative half") << -0.5f << -1.0f; + QTest::newRow("round negative") << -1.4f << -1.0f; + QTest::newRow("round largest representable float less than 0.5") << std::nextafter(0.5f, 0.0f) << 0.0f; +} + +void tst_QGlobal::qRoundFloats() { + QFETCH(float, actual); + QFETCH(float, expected); + + QEXPECT_FAIL("round largest representable float less than 0.5", + "We know qRound fails in this case, but decided that we value simplicity over correctness", + Continue); + QCOMPARE(qRound(actual), expected); + + QEXPECT_FAIL("round largest representable float less than 0.5", + "We know qRound fails in this case, but decided that we value simplicity over correctness", + Continue); + QCOMPARE(qRound64(actual), expected); +} + +void tst_QGlobal::qRoundDoubles_data() { + QTest::addColumn("actual"); + QTest::addColumn("expected"); + + QTest::newRow("round half") << 0.5 << 1.0; + QTest::newRow("round negative half") << -0.5 << -1.0; + QTest::newRow("round negative") << -1.4 << -1.0; + QTest::newRow("round largest representable double less than 0.5") << std::nextafter(0.5, 0.0) << 0.0; +} + +void tst_QGlobal::qRoundDoubles() { + QFETCH(double, actual); + QFETCH(double, expected); + + QEXPECT_FAIL("round largest representable double less than 0.5", + "We know qRound fails in this case, but decided that we value simplicity over correctness", + Continue); + QCOMPARE(qRound(actual), expected); + + QEXPECT_FAIL("round largest representable double less than 0.5", + "We know qRound fails in this case, but decided that we value simplicity over correctness", + Continue); + QCOMPARE(qRound64(actual), expected); +} QTEST_APPLESS_MAIN(tst_QGlobal) #include "tst_qglobal.moc" -- cgit v1.2.3