Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / resource / c_common / ocrandom / test / linux / randomtest.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21
22
23 extern "C" {
24     #include "ocrandom.h"
25 }
26
27 #include "gtest/gtest.h"
28 #include "math.h"
29
30 #define ARR_SIZE (20)
31
32 int main(int argc, char* argv[]) {
33     testing::InitGoogleTest(&argc, argv);
34     return RUN_ALL_TESTS();
35 }
36
37 TEST(RandomGeneration,OCSeedRandom) {
38     EXPECT_EQ(0, OCSeedRandom());
39 }
40
41 TEST(RandomGeneration,OCGetRandomByte) {
42     uint8_t value = OCGetRandomByte();
43     EXPECT_LE((uint8_t )0, value);
44     EXPECT_GT(pow(2, 8), value);
45 }
46
47 TEST(RandomGeneration,OCGetRandom) {
48     uint32_t value = OCGetRandom();
49     EXPECT_LE((uint8_t )0, value);
50     EXPECT_GT(pow(2, 32), value);
51 }
52
53 TEST(RandomGeneration,OCFillRandomMem) {
54     uint8_t array[ARR_SIZE] = {};
55     OCFillRandomMem(array + 1, ARR_SIZE - 2);
56
57     for (int i = 1; i <= ARR_SIZE - 2; i++) {
58         uint8_t value = array[i];
59         EXPECT_LE((uint8_t )0, value);
60         EXPECT_GT(pow(2, 8), value);
61     }
62     EXPECT_EQ((uint8_t )0, array[0]);
63     EXPECT_EQ((uint8_t )0, array[ARR_SIZE - 1]);
64 }
65
66 TEST(RandomGeneration, OCGenerateUuid)
67 {
68     EXPECT_EQ(RAND_UUID_INVALID_PARAM, OCGenerateUuid(NULL));
69
70     uint8_t uuid[16] = {};
71
72     EXPECT_EQ(RAND_UUID_OK, OCGenerateUuid(uuid));
73
74     EXPECT_FALSE(uuid[0] == '0' && uuid[1] == '0' &&
75                  uuid[2] == '0' && uuid[3] == '0' &&
76                  uuid[4] == '0' && uuid[5] == '0' &&
77                  uuid[6] == '0' && uuid[7] == '0' &&
78                  uuid[8] == '0' && uuid[9] == '0' &&
79                  uuid[10] == '0' && uuid[11] == '0' &&
80                  uuid[12] == '0' && uuid[13] == '0' &&
81                  uuid[14] == '0' && uuid[15] == '0');
82 }
83
84 TEST(RandomGeneration, OCGenerateUuidString)
85 {
86     EXPECT_EQ(RAND_UUID_INVALID_PARAM, OCGenerateUuidString(NULL));
87
88     char uuidString[37] = {};
89
90     EXPECT_EQ(RAND_UUID_OK, OCGenerateUuidString(uuidString));
91     EXPECT_EQ('\0', uuidString[36]);
92     EXPECT_EQ('-', uuidString[8]);
93     EXPECT_EQ('-', uuidString[13]);
94     EXPECT_EQ('-', uuidString[18]);
95     EXPECT_EQ('-', uuidString[23]);
96
97     for(int i = 0; i < 36; ++i)
98     {
99         EXPECT_TRUE(
100                 i == 8 || i == 13 || i == 18 || i == 23 ||
101                 (uuidString[i] >= 'a' && uuidString[i] <= 'f') ||
102                 (uuidString[i] >= '0' && uuidString[i] <= '9'))
103                 << "UUID Character out of range: "<< uuidString[i];
104     }
105 }