xref: /aosp_15_r20/external/abseil-cpp/absl/random/internal/randen_test.cc (revision 9356374a3709195abf420251b3e825997ff56c0f)
1*9356374aSAndroid Build Coastguard Worker // Copyright 2017 The Abseil Authors.
2*9356374aSAndroid Build Coastguard Worker //
3*9356374aSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License");
4*9356374aSAndroid Build Coastguard Worker // you may not use this file except in compliance with the License.
5*9356374aSAndroid Build Coastguard Worker // You may obtain a copy of the License at
6*9356374aSAndroid Build Coastguard Worker //
7*9356374aSAndroid Build Coastguard Worker //      https://www.apache.org/licenses/LICENSE-2.0
8*9356374aSAndroid Build Coastguard Worker //
9*9356374aSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software
10*9356374aSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS,
11*9356374aSAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*9356374aSAndroid Build Coastguard Worker // See the License for the specific language governing permissions and
13*9356374aSAndroid Build Coastguard Worker // limitations under the License.
14*9356374aSAndroid Build Coastguard Worker 
15*9356374aSAndroid Build Coastguard Worker #include "absl/random/internal/randen.h"
16*9356374aSAndroid Build Coastguard Worker 
17*9356374aSAndroid Build Coastguard Worker #include <cstring>
18*9356374aSAndroid Build Coastguard Worker 
19*9356374aSAndroid Build Coastguard Worker #include "gtest/gtest.h"
20*9356374aSAndroid Build Coastguard Worker #include "absl/meta/type_traits.h"
21*9356374aSAndroid Build Coastguard Worker 
22*9356374aSAndroid Build Coastguard Worker namespace {
23*9356374aSAndroid Build Coastguard Worker 
24*9356374aSAndroid Build Coastguard Worker using absl::random_internal::Randen;
25*9356374aSAndroid Build Coastguard Worker 
TEST(RandenTest,CopyAndMove)26*9356374aSAndroid Build Coastguard Worker TEST(RandenTest, CopyAndMove) {
27*9356374aSAndroid Build Coastguard Worker   static_assert(std::is_copy_constructible<Randen>::value,
28*9356374aSAndroid Build Coastguard Worker                 "Randen must be copy constructible");
29*9356374aSAndroid Build Coastguard Worker 
30*9356374aSAndroid Build Coastguard Worker   static_assert(absl::is_copy_assignable<Randen>::value,
31*9356374aSAndroid Build Coastguard Worker                 "Randen must be copy assignable");
32*9356374aSAndroid Build Coastguard Worker 
33*9356374aSAndroid Build Coastguard Worker   static_assert(std::is_move_constructible<Randen>::value,
34*9356374aSAndroid Build Coastguard Worker                 "Randen must be move constructible");
35*9356374aSAndroid Build Coastguard Worker 
36*9356374aSAndroid Build Coastguard Worker   static_assert(absl::is_move_assignable<Randen>::value,
37*9356374aSAndroid Build Coastguard Worker                 "Randen must be move assignable");
38*9356374aSAndroid Build Coastguard Worker }
39*9356374aSAndroid Build Coastguard Worker 
TEST(RandenTest,Default)40*9356374aSAndroid Build Coastguard Worker TEST(RandenTest, Default) {
41*9356374aSAndroid Build Coastguard Worker   constexpr uint8_t kGolden[] = {
42*9356374aSAndroid Build Coastguard Worker       0xee, 0xd3, 0xe6, 0x0e, 0x09, 0x34, 0x65, 0x6c, 0xc6, 0x33, 0x53, 0x9d,
43*9356374aSAndroid Build Coastguard Worker       0x9b, 0x2b, 0x4e, 0x04, 0x77, 0x39, 0x43, 0x4e, 0x13, 0x4f, 0xc1, 0xc3,
44*9356374aSAndroid Build Coastguard Worker       0xee, 0x10, 0x04, 0xd9, 0x7c, 0xf4, 0xa9, 0xdd, 0x10, 0xca, 0xd8, 0x7f,
45*9356374aSAndroid Build Coastguard Worker       0x08, 0xf3, 0x7b, 0x88, 0x12, 0x29, 0xc7, 0x45, 0xf5, 0x80, 0xb7, 0xf0,
46*9356374aSAndroid Build Coastguard Worker       0x9f, 0x59, 0x96, 0x76, 0xd3, 0xb1, 0xdb, 0x15, 0x59, 0x6d, 0x3c, 0xff,
47*9356374aSAndroid Build Coastguard Worker       0xba, 0x63, 0xec, 0x30, 0xa6, 0x20, 0x7f, 0x6f, 0x60, 0x73, 0x9f, 0xb2,
48*9356374aSAndroid Build Coastguard Worker       0x4c, 0xa5, 0x49, 0x6f, 0x31, 0x8a, 0x80, 0x02, 0x0e, 0xe5, 0xc8, 0xd5,
49*9356374aSAndroid Build Coastguard Worker       0xf9, 0xea, 0x8f, 0x3b, 0x8a, 0xde, 0xd9, 0x3f, 0x5e, 0x60, 0xbf, 0x9c,
50*9356374aSAndroid Build Coastguard Worker       0xbb, 0x3b, 0x18, 0x78, 0x1a, 0xae, 0x70, 0xc9, 0xd5, 0x1e, 0x30, 0x56,
51*9356374aSAndroid Build Coastguard Worker       0xd3, 0xff, 0xb2, 0xd8, 0x37, 0x3c, 0xc7, 0x0f, 0xfe, 0x27, 0xb3, 0xf4,
52*9356374aSAndroid Build Coastguard Worker       0x19, 0x9a, 0x8f, 0xeb, 0x76, 0x8d, 0xfd, 0xcd, 0x9d, 0x0c, 0x42, 0x91,
53*9356374aSAndroid Build Coastguard Worker       0xeb, 0x06, 0xa5, 0xc3, 0x56, 0x95, 0xff, 0x3e, 0xdd, 0x05, 0xaf, 0xd5,
54*9356374aSAndroid Build Coastguard Worker       0xa1, 0xc4, 0x83, 0x8f, 0xb7, 0x1b, 0xdb, 0x48, 0x8c, 0xfe, 0x6b, 0x0d,
55*9356374aSAndroid Build Coastguard Worker       0x0e, 0x92, 0x23, 0x70, 0x42, 0x6d, 0x95, 0x34, 0x58, 0x57, 0xd3, 0x58,
56*9356374aSAndroid Build Coastguard Worker       0x40, 0xb8, 0x87, 0x6b, 0xc2, 0xf4, 0x1e, 0xed, 0xf3, 0x2d, 0x0b, 0x3e,
57*9356374aSAndroid Build Coastguard Worker       0xa2, 0x32, 0xef, 0x8e, 0xfc, 0x54, 0x11, 0x43, 0xf3, 0xab, 0x7c, 0x49,
58*9356374aSAndroid Build Coastguard Worker       0x8b, 0x9a, 0x02, 0x70, 0x05, 0x37, 0x24, 0x4e, 0xea, 0xe5, 0x90, 0xf0,
59*9356374aSAndroid Build Coastguard Worker       0x49, 0x57, 0x8b, 0xd8, 0x2f, 0x69, 0x70, 0xa9, 0x82, 0xa5, 0x51, 0xc6,
60*9356374aSAndroid Build Coastguard Worker       0xf5, 0x42, 0x63, 0xbb, 0x2c, 0xec, 0xfc, 0x78, 0xdb, 0x55, 0x2f, 0x61,
61*9356374aSAndroid Build Coastguard Worker       0x45, 0xb7, 0x3c, 0x46, 0xe3, 0xaf, 0x16, 0x18, 0xad, 0xe4, 0x2e, 0x35,
62*9356374aSAndroid Build Coastguard Worker       0x7e, 0xda, 0x01, 0xc1, 0x74, 0xf3, 0x6f, 0x02, 0x51, 0xe8, 0x3d, 0x1c,
63*9356374aSAndroid Build Coastguard Worker       0x82, 0xf0, 0x1e, 0x81,
64*9356374aSAndroid Build Coastguard Worker   };
65*9356374aSAndroid Build Coastguard Worker 
66*9356374aSAndroid Build Coastguard Worker   alignas(16) uint8_t state[Randen::kStateBytes];
67*9356374aSAndroid Build Coastguard Worker   std::memset(state, 0, sizeof(state));
68*9356374aSAndroid Build Coastguard Worker 
69*9356374aSAndroid Build Coastguard Worker   Randen r;
70*9356374aSAndroid Build Coastguard Worker   r.Generate(state);
71*9356374aSAndroid Build Coastguard Worker 
72*9356374aSAndroid Build Coastguard Worker   EXPECT_EQ(0, std::memcmp(state, kGolden, sizeof(state)));
73*9356374aSAndroid Build Coastguard Worker }
74*9356374aSAndroid Build Coastguard Worker 
75*9356374aSAndroid Build Coastguard Worker }  // namespace
76