unittests: added test for printf with floats
This commit is contained in:
parent
e16bbda5f6
commit
08a2aed46d
1
tests/unittests/tests-printf_float/Makefile
Normal file
1
tests/unittests/tests-printf_float/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(RIOTBASE)/Makefile.base
|
||||||
1
tests/unittests/tests-printf_float/Makefile.include
Normal file
1
tests/unittests/tests-printf_float/Makefile.include
Normal file
@ -0,0 +1 @@
|
|||||||
|
USEMODULE += printf_float
|
||||||
78
tests/unittests/tests-printf_float/tests-printf_float.c
Normal file
78
tests/unittests/tests-printf_float/tests-printf_float.c
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Freie Universität Berlin
|
||||||
|
*
|
||||||
|
* 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 Implementations of unit tests for printing floating point numbers
|
||||||
|
*
|
||||||
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <errno.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "embUnit/embUnit.h"
|
||||||
|
|
||||||
|
#include "tests-printf_float.h"
|
||||||
|
|
||||||
|
#define BUFSIZE (10)
|
||||||
|
|
||||||
|
static const double in0 = 2016.0349;
|
||||||
|
static const double in1 = 123.4567;
|
||||||
|
static const double in2 = 0.0;
|
||||||
|
|
||||||
|
static void sfprintf_float(void)
|
||||||
|
{
|
||||||
|
char tmp[BUFSIZE];
|
||||||
|
char *str = tmp;
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%f", in0);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("2016.0349", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%.2f", in0);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("2016.03", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%.f", in0);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("2016", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%.4f", in1);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("123.4567", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%.2f", in1);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("123.46", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%4.f", in2);
|
||||||
|
TEST_ASSERT_EQUAL_STRING(" 0", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%.3f", in2);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("0.000", str);
|
||||||
|
|
||||||
|
snprintf(str, BUFSIZE, "%2.04f", in2);
|
||||||
|
TEST_ASSERT_EQUAL_STRING("0.0000", str);
|
||||||
|
}
|
||||||
|
|
||||||
|
Test *tests_printf_float_tests(void)
|
||||||
|
{
|
||||||
|
EMB_UNIT_TESTFIXTURES(fixtures) {
|
||||||
|
new_TestFixture(sfprintf_float)
|
||||||
|
};
|
||||||
|
|
||||||
|
EMB_UNIT_TESTCALLER(pkt_tests, NULL, NULL, fixtures);
|
||||||
|
|
||||||
|
return (Test *)&pkt_tests;
|
||||||
|
}
|
||||||
|
|
||||||
|
void tests_printf_float(void)
|
||||||
|
{
|
||||||
|
TESTS_RUN(tests_printf_float_tests());
|
||||||
|
}
|
||||||
38
tests/unittests/tests-printf_float/tests-printf_float.h
Normal file
38
tests/unittests/tests-printf_float/tests-printf_float.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Freie Universität Berlin
|
||||||
|
*
|
||||||
|
* 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 Unit tests for printing floating point numbers
|
||||||
|
*
|
||||||
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef TESTS_PRINTF_FLOAT_H_
|
||||||
|
#define TESTS_PRINTF_FLOAT_H_
|
||||||
|
|
||||||
|
#include "embUnit.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The entry point of this test suite
|
||||||
|
*/
|
||||||
|
void tests_printf_float(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* TESTS_PRINTF_FLOAT_H_ */
|
||||||
|
/** @} */
|
||||||
Loading…
x
Reference in New Issue
Block a user