diff --git a/tests/shared/src/MovingPercentileTests.cpp b/tests/shared/src/MovingPercentileTests.cpp index daf96ca188..c2be130c64 100644 --- a/tests/shared/src/MovingPercentileTests.cpp +++ b/tests/shared/src/MovingPercentileTests.cpp @@ -18,6 +18,7 @@ #include #include #include +#include QTEST_MAIN(MovingPercentileTests) @@ -41,70 +42,67 @@ void MovingPercentileTests::testRunningMedian() { int64_t MovingPercentileTests::random() { - return ((int64_t) rand() << 48) ^ - ((int64_t) rand() << 32) ^ - ((int64_t) rand() << 16) ^ - ((int64_t) rand()); + return QRandomGenerator64::global()->generate(); } void MovingPercentileTests::testRunningMinForN (int n) { // Stores the last n samples QQueue samples; - + MovingPercentile movingMin (n, 0.0f); - + for (int s = 0; s < 3 * n; ++s) { int64_t sample = random(); - + samples.push_back(sample); if (samples.size() > n) samples.pop_front(); - + if (samples.size() == 0) { QFAIL_WITH_MESSAGE("\n\n\n\tWTF\n\tsamples.size() = " << samples.size() << ", n = " << n); } - + movingMin.updatePercentile(sample); - + // Calculate the minimum of the moving samples int64_t expectedMin = std::numeric_limits::max(); - + int prevSize = samples.size(); for (auto val : samples) { expectedMin = std::min(val, expectedMin); } QCOMPARE(samples.size(), prevSize); - + QVERIFY(movingMin.getValueAtPercentile() - expectedMin == 0L); } } void MovingPercentileTests::testRunningMaxForN (int n) { - + // Stores the last n samples QQueue samples; - + MovingPercentile movingMax (n, 1.0f); - + for (int s = 0; s < 10000; ++s) { int64_t sample = random(); - + samples.push_back(sample); if (samples.size() > n) { samples.pop_front(); } - + if (samples.size() == 0) { QFAIL_WITH_MESSAGE("\n\n\n\tWTF\n\tsamples.size() = " << samples.size() << ", n = " << n); } - + movingMax.updatePercentile(sample); - + // Calculate the maximum of the moving samples int64_t expectedMax = std::numeric_limits::min(); for (auto val : samples) expectedMax = std::max(val, expectedMax); - + QVERIFY(movingMax.getValueAtPercentile() - expectedMax == 0L); } } @@ -112,34 +110,34 @@ void MovingPercentileTests::testRunningMaxForN (int n) { void MovingPercentileTests::testRunningMedianForN (int n) { // Stores the last n samples QQueue samples; - + MovingPercentile movingMedian (n, 0.5f); - + for (int s = 0; s < 10000; ++s) { int64_t sample = random(); - + samples.push_back(sample); if (samples.size() > n) samples.pop_front(); - + if (samples.size() == 0) { QFAIL_WITH_MESSAGE("\n\n\n\tWTF\n\tsamples.size() = " << samples.size() << ", n = " << n); } - + movingMedian.updatePercentile(sample); auto median = movingMedian.getValueAtPercentile(); - + // Check the number of samples that are > or < median int samplesGreaterThan = 0; int samplesLessThan = 0; - + for (auto value : samples) { if (value < median) ++samplesGreaterThan; else if (value > median) ++samplesLessThan; } - + QCOMPARE_WITH_LAMBDA(samplesLessThan, n / 2, [=]() { return samplesLessThan <= n / 2; });