blob: 7e21c77a314a8a021bb82cdad72f9482293a3ec1 [file] [log] [blame]
Randall Spanglera3454fc2011-08-23 14:41:18 -07001/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 *
Randall Spanglerf02bbb42011-08-24 14:16:01 -07005 * Tests for utility functions
Randall Spanglera3454fc2011-08-23 14:41:18 -07006 */
7
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
11
12#define _STUB_IMPLEMENTATION_ /* So we can use memset() ourselves */
13
14#include "test_common.h"
15#include "utility.h"
16#include "vboot_common.h"
17
18
Randall Spanglerf02bbb42011-08-24 14:16:01 -070019/* Test utility.h and sysincludes.h macros */
20static void MacrosTest(void) {
21 int64_t a = -10, b = -20;
Gabe Blackac8805e2013-03-16 04:03:40 -070022 uint64_t u = (0xABCD00000000ULL);
23 uint64_t v = (0xABCD000000ULL);
Randall Spanglerf02bbb42011-08-24 14:16:01 -070024
25 TEST_EQ(CombineUint16Pair(1, 2), 0x00010002, "CombineUint16Pair");
26 TEST_EQ(CombineUint16Pair(0xFFFE, 0xFFFF), 0xFFFEFFFF,
27 "CombineUint16Pair 2");
28 TEST_EQ(CombineUint16Pair(-4, -16), 0xFFFCFFF0,
29 "CombineUint16Pair big negative");
30 TEST_EQ(CombineUint16Pair(0x10003, 0x10004), 0x00030004,
31 "CombineUint16Pair overflow");
32
33 TEST_EQ(Min(1, 2), 1, "Min 1");
34 TEST_EQ(Min(4, 3), 3, "Min 2");
35 TEST_EQ(Min(5, 5), 5, "Min 5");
36 TEST_EQ(Min(a, b), b, "Min uint64 1");
37 TEST_EQ(Min(b, a), b, "Min uint64 2");
38 TEST_EQ(Min(b, b), b, "Min uint64 same");
39
Gabe Blackac8805e2013-03-16 04:03:40 -070040 TEST_EQ(u >> 8, v, "uint64_t >> 8");
41 TEST_EQ(u >> 0, u, "uint64_t >> 0");
42 TEST_EQ(u >> 36, (uint64_t)0xABC, "uint64_t >> 36");
Randall Spanglerf02bbb42011-08-24 14:16:01 -070043
Gabe Blackac8805e2013-03-16 04:03:40 -070044 TEST_EQ(v * (uint32_t)0, 0, "uint64_t * uint32_t 0");
45 TEST_EQ(v * (uint32_t)1, v, "uint64_t * uint32_t 1");
46 TEST_EQ(v * (uint32_t)256, u, "uint64_t * uint32_t 256");
Randall Spanglerf02bbb42011-08-24 14:16:01 -070047}
48
49
Randall Spanglera3454fc2011-08-23 14:41:18 -070050/* Test SafeMemcmp */
51static void SafeMemcmpTest(void) {
52 /* Zero-length strings are equal */
53 TEST_EQ(0, SafeMemcmp("APPLE", "TIGER", 0), "SafeMemcmp() size=0");
54
55 /* Test equal arrays */
56 TEST_EQ(0, SafeMemcmp("clonebob", "clonebob", 8), "SafeMemcmp() equal");
57 /* Inequality past end of array doesn't affect result */
58 TEST_EQ(0, SafeMemcmp("clonebob", "clonedan", 5), "SafeMemcmp() equal2");
59
60 TEST_EQ(1, SafeMemcmp("APPLE", "TIGER", 5), "SafeMemcmp() unequal");
61 TEST_EQ(1, SafeMemcmp("APPLE", "APPLe", 5), "SafeMemcmp() unequal 2");
62}
63
64
Randall Spanglera3454fc2011-08-23 14:41:18 -070065int main(int argc, char* argv[]) {
66 int error_code = 0;
67
Randall Spanglerf02bbb42011-08-24 14:16:01 -070068 MacrosTest();
Randall Spanglera3454fc2011-08-23 14:41:18 -070069 SafeMemcmpTest();
70
71 if (!gTestSuccess)
72 error_code = 255;
73
74 return error_code;
75}