aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2020-05-22 18:42:11 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2020-06-17 11:08:06 +0000
commit3cc70c25f959afec4179971437c53b809cb3a9a3 (patch)
tree00f74a69dc96e5ebf4911cf4419329a3fb987ce1 /tests/helpers.c
parent629b8f06ec59d2112539efe161f121ab22d99ec8 (diff)
downloadflashrom-3cc70c25f959afec4179971437c53b809cb3a9a3.tar.gz
flashrom-3cc70c25f959afec4179971437c53b809cb3a9a3.tar.bz2
flashrom-3cc70c25f959afec4179971437c53b809cb3a9a3.zip
tests/: Add helper.c unit tests
BUG=b:157280555 BRANCH=none TEST=builds Change-Id: If4a1fe7c499f51bb9d7cd48ef26caf9dfae3c1fa Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/41655 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'tests/helpers.c')
-rw-r--r--tests/helpers.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/tests/helpers.c b/tests/helpers.c
new file mode 100644
index 00000000..ab0863f0
--- /dev/null
+++ b/tests/helpers.c
@@ -0,0 +1,64 @@
+#include <include/test.h>
+
+#include "flash.h"
+
+#include <stdint.h>
+#include <stdlib.h>
+
+
+void address_to_bits_test_success(void **state)
+{
+ (void) state; /* unused */
+ assert_int_equal(16, address_to_bits(0xAA55));
+}
+
+void bitcount_test_success(void **state)
+{
+ (void) state; /* unused */
+ assert_int_equal(4, bitcount(0xAA));
+}
+
+void minmax_test_success(void **state)
+{
+ (void) state; /* unused */
+ assert_int_equal(0x55, min(0xAA, 0x55));
+ assert_int_equal(0xAA, max(0xAA, 0x55));
+}
+
+void strcat_realloc_test_success(void **state)
+{
+ (void) state; /* unused */
+ const char src0[] = "hello";
+ const char src1[] = " world";
+ char *dest = calloc(1, 1);
+ dest = strcat_realloc(dest, src0);
+ dest = strcat_realloc(dest, src1);
+ assert_string_equal("hello world", dest);
+ free(dest);
+}
+
+void tolower_string_test_success(void **state)
+{
+ (void) state; /* unused */
+ char str[] = "HELLO AGAIN";
+ assert_string_equal("HELLO AGAIN", str);
+ tolower_string(str);
+ assert_string_equal("hello again", str);
+}
+
+void reverse_byte_test_success(void **state)
+{
+ (void) state; /* unused */
+ assert_int_equal(0x5A, reverse_byte(0x5A));
+ assert_int_equal(0x0F, reverse_byte(0xF0));
+}
+
+void reverse_bytes_test_success(void **state)
+{
+ (void) state; /* unused */
+ uint8_t src[] = { 0xAA, 0x55 };
+ uint8_t dst[2];
+ reverse_bytes(dst, src, 2);
+ assert_int_equal(src[0], dst[1]);
+ assert_int_equal(src[1], dst[0]);
+}