1*635a8641SAndroid Build Coastguard Worker // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2*635a8641SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 3*635a8641SAndroid Build Coastguard Worker // found in the LICENSE file. 4*635a8641SAndroid Build Coastguard Worker 5*635a8641SAndroid Build Coastguard Worker #include "crypto/random.h" 6*635a8641SAndroid Build Coastguard Worker 7*635a8641SAndroid Build Coastguard Worker #include <stddef.h> 8*635a8641SAndroid Build Coastguard Worker 9*635a8641SAndroid Build Coastguard Worker #include <string> 10*635a8641SAndroid Build Coastguard Worker 11*635a8641SAndroid Build Coastguard Worker #include "base/strings/string_util.h" 12*635a8641SAndroid Build Coastguard Worker #include "testing/gtest/include/gtest/gtest.h" 13*635a8641SAndroid Build Coastguard Worker 14*635a8641SAndroid Build Coastguard Worker // Basic functionality tests. Does NOT test the security of the random data. 15*635a8641SAndroid Build Coastguard Worker 16*635a8641SAndroid Build Coastguard Worker // Ensures we don't have all trivial data, i.e. that the data is indeed random. 17*635a8641SAndroid Build Coastguard Worker // Currently, that means the bytes cannot be all the same (e.g. all zeros). IsTrivial(const std::string & bytes)18*635a8641SAndroid Build Coastguard Workerbool IsTrivial(const std::string& bytes) { 19*635a8641SAndroid Build Coastguard Worker for (size_t i = 0; i < bytes.size(); i++) { 20*635a8641SAndroid Build Coastguard Worker if (bytes[i] != bytes[0]) { 21*635a8641SAndroid Build Coastguard Worker return false; 22*635a8641SAndroid Build Coastguard Worker } 23*635a8641SAndroid Build Coastguard Worker } 24*635a8641SAndroid Build Coastguard Worker return true; 25*635a8641SAndroid Build Coastguard Worker } 26*635a8641SAndroid Build Coastguard Worker TEST(RandBytes,RandBytes)27*635a8641SAndroid Build Coastguard WorkerTEST(RandBytes, RandBytes) { 28*635a8641SAndroid Build Coastguard Worker std::string bytes(16, '\0'); 29*635a8641SAndroid Build Coastguard Worker crypto::RandBytes(base::WriteInto(&bytes, bytes.size()), bytes.size()); 30*635a8641SAndroid Build Coastguard Worker EXPECT_TRUE(!IsTrivial(bytes)); 31*635a8641SAndroid Build Coastguard Worker } 32