2013-10-09 17:11:18 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
#include "TestRandomGenerator.h"
|
2021-04-04 08:56:00 -04:00
|
|
|
|
2015-07-24 12:28:12 -04:00
|
|
|
#include "core/Global.h"
|
2021-04-04 08:56:00 -04:00
|
|
|
#include "crypto/Random.h"
|
2013-10-09 17:11:18 -04:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
#include <QTest>
|
2014-05-16 06:32:52 -04:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
QTEST_GUILESS_MAIN(TestRandomGenerator)
|
|
|
|
|
2021-04-04 08:56:00 -04:00
|
|
|
void TestRandomGenerator::testArray()
|
2013-10-09 17:11:18 -04:00
|
|
|
{
|
2021-04-04 08:56:00 -04:00
|
|
|
auto ba = randomGen()->randomArray(10);
|
|
|
|
QCOMPARE(ba.size(), 10);
|
|
|
|
QVERIFY(ba != QByteArray(10, '\0'));
|
2013-10-09 17:11:18 -04:00
|
|
|
|
2021-04-04 08:56:00 -04:00
|
|
|
auto ba2 = ba;
|
|
|
|
randomGen()->randomize(ba2);
|
|
|
|
QVERIFY(ba2 != ba);
|
2013-10-09 17:11:18 -04:00
|
|
|
}
|
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
void TestRandomGenerator::testUInt()
|
2013-10-09 17:11:18 -04:00
|
|
|
{
|
2021-04-04 08:56:00 -04:00
|
|
|
QVERIFY(randomGen()->randomUInt(0) == 0);
|
|
|
|
QVERIFY(randomGen()->randomUInt(1) == 0);
|
|
|
|
|
|
|
|
// Run a bunch of trials creating random numbers to ensure we meet the standard
|
|
|
|
for (int i = 0; i < 100; ++i) {
|
|
|
|
QVERIFY(randomGen()->randomUInt(5) < 5);
|
|
|
|
QVERIFY(randomGen()->randomUInt(100) < 100);
|
|
|
|
QVERIFY(randomGen()->randomUInt(100000U) < 100000U);
|
|
|
|
QVERIFY(randomGen()->randomUInt((QUINT32_MAX / 2U) + 1U) < QUINT32_MAX / 2U + 1U);
|
2013-10-09 17:11:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
void TestRandomGenerator::testUIntRange()
|
2013-10-09 17:11:18 -04:00
|
|
|
{
|
2021-04-04 08:56:00 -04:00
|
|
|
// Run a bunch of trials to ensure we stay within the range
|
|
|
|
for (int i = 0; i < 100; ++i) {
|
|
|
|
auto rand = randomGen()->randomUIntRange(100, 200);
|
|
|
|
QVERIFY(rand >= 100);
|
|
|
|
QVERIFY(rand < 200);
|
|
|
|
}
|
2013-10-09 17:11:18 -04:00
|
|
|
}
|