summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/global')
-rw-r--r--tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp89
1 files changed, 83 insertions, 6 deletions
diff --git a/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp b/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp
index 0c453cd0e5..9f4abb367a 100644
--- a/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp
+++ b/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp
@@ -102,6 +102,10 @@ private slots:
void bounded();
void boundedQuality_data() { generate32_data(); }
void boundedQuality();
+ void bounded64_data();
+ void bounded64();
+ void bounded64Quality_data() { generate32_data(); }
+ void bounded64Quality();
void generateReal_data() { generate32_data(); }
void generateReal();
@@ -567,7 +571,7 @@ void tst_QRandomGenerator::bounded()
QVERIFY(value < sup);
QCOMPARE(value, expected);
- int ivalue = rng.bounded(sup);
+ int ivalue = rng.bounded(int(sup));
QVERIFY(ivalue < int(sup));
QCOMPARE(ivalue, int(expected));
@@ -590,10 +594,11 @@ void tst_QRandomGenerator::bounded()
QVERIFY(ivalue < 0);
}
-void tst_QRandomGenerator::boundedQuality()
+template <typename UInt> static void boundedQuality_template()
{
- enum { Bound = 283 }; // a prime number
- enum {
+ using Int = std::make_signed_t<UInt>;
+ constexpr Int Bound = 283; // a prime number
+ enum : Int {
BufferCount = Bound * 32,
// if the distribution were perfect, each byte in the buffer would
@@ -625,10 +630,13 @@ void tst_QRandomGenerator::boundedQuality()
{
// test the quality of the generator
- QList<quint32> buffer(BufferCount, 0xcdcdcdcd);
+ UInt filler = 0xcdcdcdcd;
+ if (sizeof(filler) > sizeof(quint32))
+ filler |= filler << (std::numeric_limits<UInt>::digits / 2);
+ QVector<UInt> buffer(BufferCount, filler);
generate(buffer.begin(), buffer.end(), [&] { return rng.bounded(Bound); });
- for (quint32 value : qAsConst(buffer)) {
+ for (UInt value : qAsConst(buffer)) {
QVERIFY(value < Bound);
histogram[value]++;
}
@@ -649,6 +657,75 @@ void tst_QRandomGenerator::boundedQuality()
<< "at" << std::min_element(begin(histogram), end(histogram)) - histogram;
}
+void tst_QRandomGenerator::boundedQuality()
+{
+ boundedQuality_template<quint32>();
+}
+
+void tst_QRandomGenerator::bounded64Quality()
+{
+ boundedQuality_template<quint64>();
+}
+
+void tst_QRandomGenerator::bounded64_data()
+{
+#ifndef QT_BUILD_INTERNAL
+ QSKIP("Test only possible in developer builds");
+#endif
+
+ QTest::addColumn<uint>("control");
+ QTest::addColumn<quint64>("sup");
+ QTest::addColumn<quint64>("expected");
+
+ auto newRow = [&](unsigned val, unsigned sup) {
+ Q_ASSERT((val & ~RandomDataMask) == 0);
+
+ unsigned control = SetRandomData | val;
+ QTest::addRow("%u,%u", val, sup) << control << quint64(sup) << quint64(val);
+ };
+
+ // useless: we can only generate zeroes:
+ newRow(0, 1);
+
+ newRow(0x10, 200);
+ newRow(0x20, 200);
+ newRow(0x80, 200);
+}
+
+void tst_QRandomGenerator::bounded64()
+{
+ QFETCH(uint, control);
+ QFETCH(quint64, sup);
+ QFETCH(quint64, expected);
+ RandomGenerator rng(control);
+
+ quint64 value = rng.bounded(sup);
+ QVERIFY(value < sup);
+ QCOMPARE(value, expected);
+
+ qint64 ivalue = rng.bounded(qint64(sup));
+ QVERIFY(ivalue < int(sup));
+ QCOMPARE(ivalue, int(expected));
+
+ // confirm only the bound now
+ setRNGControl(control & (SkipHWRNG|SkipSystemRNG|UseSystemRNG));
+ value = rng.bounded(sup);
+ QVERIFY(value < sup);
+
+ value = rng.bounded(sup / 2, 3 * sup / 2);
+ QVERIFY(value >= sup / 2);
+ QVERIFY(value < 3 * sup / 2);
+
+ ivalue = rng.bounded(-qint64(sup), qint64(sup));
+ QVERIFY(ivalue >= -qint64(sup));
+ QVERIFY(ivalue < qint64(sup));
+
+ // wholly negative range
+ ivalue = rng.bounded(-qint64(sup), qint64(0));
+ QVERIFY(ivalue >= -qint64(sup));
+ QVERIFY(ivalue < 0);
+}
+
void tst_QRandomGenerator::generateReal()
{
QFETCH(uint, control);