From ecd084781a2dc079d57852be8015bf080fe766e3 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Tue, 19 Nov 2019 17:15:22 +0100 Subject: [PATCH] tests: add test for at24mac driver --- tests/driver_at24mac/Makefile | 5 ++ tests/driver_at24mac/main.c | 100 ++++++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 tests/driver_at24mac/Makefile create mode 100644 tests/driver_at24mac/main.c diff --git a/tests/driver_at24mac/Makefile b/tests/driver_at24mac/Makefile new file mode 100644 index 0000000000..37a6486dca --- /dev/null +++ b/tests/driver_at24mac/Makefile @@ -0,0 +1,5 @@ +include ../Makefile.tests_common + +USEMODULE += at24mac + +include $(RIOTBASE)/Makefile.include diff --git a/tests/driver_at24mac/main.c b/tests/driver_at24mac/main.c new file mode 100644 index 0000000000..71cf41a19f --- /dev/null +++ b/tests/driver_at24mac/main.c @@ -0,0 +1,100 @@ +/* + * Copyright (C) 2019 Benjamin Valentin + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup tests + * @{ + * + * @file + * @brief Test application for the AT24MAC driver + * + * @author Benjamin Valentin + * + * @} + */ + +#include +#include "at24mac.h" + +static int test_get_eui48(void) +{ + if (at24mac_get_type(0) != AT24MAC4XX) { + return 0; + } + + eui48_t e48; + if (at24mac_get_eui48(0, &e48) != 0) { + puts("[FAILED]"); + return 1; + } + + printf("EUI-48:"); + for (unsigned i = 0; i < sizeof(e48.uint8); ++i) { + printf(" %02x", e48.uint8[i]); + } + puts(""); + + return 0; +} + +static int test_get_eui64(void) +{ + if (at24mac_get_type(0) != AT24MAC6XX) { + return 0; + } + + eui64_t e64; + if (at24mac_get_eui64(0, &e64) != 0) { + puts("[FAILED]"); + return 1; + } + + printf("EUI-64:"); + for (unsigned i = 0; i < sizeof(e64.uint8); ++i) { + printf(" %02x", e64.uint8[i]); + } + puts(""); + + return 0; +} + +static int test_get_id128(void) +{ + uint8_t id[AT24MAC_ID_LEN]; + if (at24mac_get_id128(0, &id) != 0) { + puts("[FAILED]"); + return 1; + } + + printf("ID-128:"); + for (unsigned i = 0; i < sizeof(id); ++i) { + printf(" %02x", id[i]); + } + puts(""); + + return 0; +} + +int main(void) +{ + if (test_get_eui48()) { + return -1; + } + + if (test_get_eui64()) { + return -1; + } + + if (test_get_id128()) { + return -1; + } + + puts("[SUCCESS]"); + + return 0; +}