Skip to content
Snippets Groups Projects
Commit edbfdeb0 authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

tests/unittests: add checksum test

parent 430b4aa6
No related branches found
No related tags found
No related merge requests found
include $(RIOTBASE)/Makefile.base
USEMODULE += checksum
/*
* Copyright 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*
* 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.
*/
#include <stdint.h>
#include "embUnit/embUnit.h"
#include "checksum/crc16_ccitt.h"
#include "tests-checksum.h"
static int calc_and_compare_crc_with_update(const unsigned char *buf,
size_t len, size_t split, uint16_t expected)
{
uint16_t result = crc16_ccitt_calc(buf, split);
result = crc16_ccitt_update(result, buf + split, len - split);
return result == expected;
}
static int calc_and_compare_crc(const unsigned char *buf, size_t len,
uint16_t expected)
{
uint16_t result = crc16_ccitt_calc(buf, len);
return result == expected;
}
static void test_checksum_crc16_ccitt_sequence(void)
{
/* Reference values according to
* http://srecord.sourceforge.net/crc16-ccitt.html */
{
unsigned char buf[] = "";
uint16_t expect = 0x1D0F;
TEST_ASSERT(calc_and_compare_crc(buf, sizeof(buf) - 1, expect));
TEST_ASSERT(calc_and_compare_crc_with_update(buf, sizeof(buf) - 1,
(sizeof(buf) - 1) / 2, expect)); }
{
unsigned char buf[] = "A";
uint16_t expect = 0x9479;
TEST_ASSERT(calc_and_compare_crc(buf, sizeof(buf) - 1, expect));
TEST_ASSERT(calc_and_compare_crc_with_update(buf, sizeof(buf) - 1,
(sizeof(buf) - 1) / 2, expect)); }
{
unsigned char buf[] = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
"AAAA";
uint16_t expect = 0xE938;
TEST_ASSERT(calc_and_compare_crc(buf, sizeof(buf) - 1, expect));
TEST_ASSERT(calc_and_compare_crc_with_update(buf, sizeof(buf) - 1,
(sizeof(buf) - 1) / 2, expect)); }
{
unsigned char buf[] = "123456789";
uint16_t expect = 0xE5CC;
TEST_ASSERT(calc_and_compare_crc(buf, sizeof(buf) - 1, expect));
TEST_ASSERT(calc_and_compare_crc_with_update(buf, sizeof(buf)
- 1, (sizeof(buf) - 1) / 2, expect));
}
{
unsigned char buf[] = { 0x12, 0x34, 0x56, 0x78 };
uint16_t expect = 0xBA3C;
TEST_ASSERT(calc_and_compare_crc(buf, sizeof(buf), expect));
TEST_ASSERT(calc_and_compare_crc_with_update(buf, sizeof(buf),
sizeof(buf) / 2, expect));
}
}
Test *tests_checksum_crc16_ccitt_tests(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_checksum_crc16_ccitt_sequence),
};
EMB_UNIT_TESTCALLER(checksum_crc16_ccitt_tests, NULL, NULL, fixtures);
return (Test *)&checksum_crc16_ccitt_tests;
}
/*
* Copyright 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*
* 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.
*/
#include "tests-checksum.h"
void tests_checksum(void)
{
TESTS_RUN(tests_checksum_crc16_ccitt_tests());
}
/*
* Copyright 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*
* 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.
*/
/**
* @addtogroup unittests
* @{
*
* @file
* @brief Unittests for the ``checksum`` module
*
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*/
#ifndef TESTS_CHECKSUM_H
#define TESTS_CHECKSUM_H
#include "embUnit.h"
#include "kernel.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The entry point of this test suite.
*/
void tests_checksum(void);
/**
* @brief Generates tests for checksum/crc16_ccitt.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_checksum_crc16_ccitt_tests(void);
#ifdef __cplusplus
}
#endif
#endif /* TESTS_CHECKSUM_H */
/** @} */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment