blob: 4f46b80705b23b9e5b8592ab2d92b69b0084582d [file] [log] [blame]
abarth@chromium.orgc19cb312011-04-30 06:03:54 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
mark@chromium.orgb93c0542008-09-30 07:18:01 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/rand_util.h"
6
avia6a6a682015-12-27 07:15:14 +09007#include <stddef.h>
8#include <stdint.h>
9
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090010#include <algorithm>
mark@chromium.orgb93c0542008-09-30 07:18:01 +090011#include <limits>
dchengcc8e4d82016-04-05 06:25:51 +090012#include <memory>
mark@chromium.orgb93c0542008-09-30 07:18:01 +090013
dalecurtis@chromium.org4f4a8772014-01-23 11:14:28 +090014#include "base/logging.h"
dalecurtis@chromium.org4f4a8772014-01-23 11:14:28 +090015#include "base/time/time.h"
mark@chromium.orgb93c0542008-09-30 07:18:01 +090016#include "testing/gtest/include/gtest/gtest.h"
17
18namespace {
19
20const int kIntMin = std::numeric_limits<int>::min();
21const int kIntMax = std::numeric_limits<int>::max();
22
23} // namespace
24
Nico Weber1796efe2015-10-30 05:42:58 +090025TEST(RandUtilTest, RandInt) {
mark@chromium.orgb93c0542008-09-30 07:18:01 +090026 EXPECT_EQ(base::RandInt(0, 0), 0);
27 EXPECT_EQ(base::RandInt(kIntMin, kIntMin), kIntMin);
28 EXPECT_EQ(base::RandInt(kIntMax, kIntMax), kIntMax);
Nico Weber1796efe2015-10-30 05:42:58 +090029
30 // Check that the DCHECKS in RandInt() don't fire due to internal overflow.
31 // There was a 50% chance of that happening, so calling it 40 times means
32 // the chances of this passing by accident are tiny (9e-13).
33 for (int i = 0; i < 40; ++i)
34 base::RandInt(kIntMin, kIntMax);
mark@chromium.orgb93c0542008-09-30 07:18:01 +090035}
mark@chromium.orgc22c62b2008-09-30 23:26:33 +090036
37TEST(RandUtilTest, RandDouble) {
abarth@chromium.orgc19cb312011-04-30 06:03:54 +090038 // Force 64-bit precision, making sure we're not in a 80-bit FPU register.
39 volatile double number = base::RandDouble();
40 EXPECT_GT(1.0, number);
41 EXPECT_LE(0.0, number);
42}
43
qsr@google.comfbda4d52011-05-05 17:46:11 +090044TEST(RandUtilTest, RandBytes) {
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090045 const size_t buffer_size = 50;
qsr@google.comfbda4d52011-05-05 17:46:11 +090046 char buffer[buffer_size];
47 memset(buffer, 0, buffer_size);
48 base::RandBytes(buffer, buffer_size);
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090049 std::sort(buffer, buffer + buffer_size);
50 // Probability of occurrence of less than 25 unique bytes in 50 random bytes
51 // is below 10^-25.
52 EXPECT_GT(std::unique(buffer, buffer + buffer_size) - buffer, 25);
qsr@google.comfbda4d52011-05-05 17:46:11 +090053}
54
abarth@chromium.orgc19cb312011-04-30 06:03:54 +090055TEST(RandUtilTest, RandBytesAsString) {
pkasting@chromium.orgd3479372011-11-30 05:06:18 +090056 std::string random_string = base::RandBytesAsString(1);
57 EXPECT_EQ(1U, random_string.size());
abarth@chromium.orgc19cb312011-04-30 06:03:54 +090058 random_string = base::RandBytesAsString(145);
59 EXPECT_EQ(145U, random_string.size());
60 char accumulator = 0;
61 for (size_t i = 0; i < random_string.size(); ++i)
62 accumulator |= random_string[i];
63 // In theory this test can fail, but it won't before the universe dies of
64 // heat death.
65 EXPECT_NE(0, accumulator);
mark@chromium.orgc22c62b2008-09-30 23:26:33 +090066}
isherman@chromium.org01eaa0b2010-08-31 06:07:05 +090067
68// Make sure that it is still appropriate to use RandGenerator in conjunction
69// with std::random_shuffle().
70TEST(RandUtilTest, RandGeneratorForRandomShuffle) {
71 EXPECT_EQ(base::RandGenerator(1), 0U);
72 EXPECT_LE(std::numeric_limits<ptrdiff_t>::max(),
avia6a6a682015-12-27 07:15:14 +090073 std::numeric_limits<int64_t>::max());
isherman@chromium.org01eaa0b2010-08-31 06:07:05 +090074}
joi@chromium.orgedf24fc2011-05-31 02:39:09 +090075
76TEST(RandUtilTest, RandGeneratorIsUniform) {
77 // Verify that RandGenerator has a uniform distribution. This is a
78 // regression test that consistently failed when RandGenerator was
79 // implemented this way:
80 //
81 // return base::RandUint64() % max;
82 //
83 // A degenerate case for such an implementation is e.g. a top of
84 // range that is 2/3rds of the way to MAX_UINT64, in which case the
85 // bottom half of the range would be twice as likely to occur as the
86 // top half. A bit of calculus care of jar@ shows that the largest
87 // measurable delta is when the top of the range is 3/4ths of the
88 // way, so that's what we use in the test.
avia6a6a682015-12-27 07:15:14 +090089 const uint64_t kTopOfRange =
90 (std::numeric_limits<uint64_t>::max() / 4ULL) * 3ULL;
91 const uint64_t kExpectedAverage = kTopOfRange / 2ULL;
92 const uint64_t kAllowedVariance = kExpectedAverage / 50ULL; // +/- 2%
joi@chromium.orgedf24fc2011-05-31 02:39:09 +090093 const int kMinAttempts = 1000;
94 const int kMaxAttempts = 1000000;
95
96 double cumulative_average = 0.0;
97 int count = 0;
98 while (count < kMaxAttempts) {
avia6a6a682015-12-27 07:15:14 +090099 uint64_t value = base::RandGenerator(kTopOfRange);
joi@chromium.orgedf24fc2011-05-31 02:39:09 +0900100 cumulative_average = (count * cumulative_average + value) / (count + 1);
101
102 // Don't quit too quickly for things to start converging, or we may have
103 // a false positive.
104 if (count > kMinAttempts &&
105 kExpectedAverage - kAllowedVariance < cumulative_average &&
106 cumulative_average < kExpectedAverage + kAllowedVariance) {
107 break;
108 }
109
110 ++count;
111 }
112
113 ASSERT_LT(count, kMaxAttempts) << "Expected average was " <<
114 kExpectedAverage << ", average ended at " << cumulative_average;
115}
116
117TEST(RandUtilTest, RandUint64ProducesBothValuesOfAllBits) {
118 // This tests to see that our underlying random generator is good
119 // enough, for some value of good enough.
avia6a6a682015-12-27 07:15:14 +0900120 uint64_t kAllZeros = 0ULL;
121 uint64_t kAllOnes = ~kAllZeros;
122 uint64_t found_ones = kAllZeros;
123 uint64_t found_zeros = kAllOnes;
joi@chromium.orgedf24fc2011-05-31 02:39:09 +0900124
125 for (size_t i = 0; i < 1000; ++i) {
avia6a6a682015-12-27 07:15:14 +0900126 uint64_t value = base::RandUint64();
joi@chromium.orgedf24fc2011-05-31 02:39:09 +0900127 found_ones |= value;
128 found_zeros &= value;
129
130 if (found_zeros == kAllZeros && found_ones == kAllOnes)
131 return;
132 }
133
134 FAIL() << "Didn't achieve all bit values in maximum number of tries.";
135}
dalecurtis@chromium.org4f4a8772014-01-23 11:14:28 +0900136
137// Benchmark test for RandBytes(). Disabled since it's intentionally slow and
138// does not test anything that isn't already tested by the existing RandBytes()
139// tests.
140TEST(RandUtilTest, DISABLED_RandBytesPerf) {
141 // Benchmark the performance of |kTestIterations| of RandBytes() using a
142 // buffer size of |kTestBufferSize|.
143 const int kTestIterations = 10;
144 const size_t kTestBufferSize = 1 * 1024 * 1024;
145
dchengcc8e4d82016-04-05 06:25:51 +0900146 std::unique_ptr<uint8_t[]> buffer(new uint8_t[kTestBufferSize]);
charlieaddf2b792015-01-27 02:35:41 +0900147 const base::TimeTicks now = base::TimeTicks::Now();
dalecurtis@chromium.org4f4a8772014-01-23 11:14:28 +0900148 for (int i = 0; i < kTestIterations; ++i)
149 base::RandBytes(buffer.get(), kTestBufferSize);
charlieaddf2b792015-01-27 02:35:41 +0900150 const base::TimeTicks end = base::TimeTicks::Now();
dalecurtis@chromium.org4f4a8772014-01-23 11:14:28 +0900151
152 LOG(INFO) << "RandBytes(" << kTestBufferSize << ") took: "
153 << (end - now).InMicroseconds() << "µs";
154}