mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 05:53:49 +01:00
Merge pull request #31 from miri64/tests/enh/cib
tests: add #8117 test case for cib.h unittests (+ some enhancements)
This commit is contained in:
commit
ce58399fbd
@ -6,13 +6,15 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include "embUnit.h"
|
||||
|
||||
#include "cib.h"
|
||||
|
||||
#include "tests-core.h"
|
||||
|
||||
#define TEST_CIB_SIZE 2
|
||||
#define TEST_CIB_SIZE (4)
|
||||
|
||||
static cib_t cib;
|
||||
|
||||
@ -23,8 +25,9 @@ static void set_up(void)
|
||||
|
||||
static void test_cib_put(void)
|
||||
{
|
||||
TEST_ASSERT_EQUAL_INT(0, cib_put(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(1, cib_put(&cib));
|
||||
for (unsigned i = 0; i < TEST_CIB_SIZE; i++) {
|
||||
TEST_ASSERT_EQUAL_INT(i, cib_put(&cib));
|
||||
}
|
||||
TEST_ASSERT_EQUAL_INT(-1, cib_put(&cib));
|
||||
}
|
||||
|
||||
@ -36,6 +39,16 @@ static void test_cib_get(void)
|
||||
TEST_ASSERT_EQUAL_INT(-1, cib_get(&cib));
|
||||
}
|
||||
|
||||
static void test_cib_get__overflow(void)
|
||||
{
|
||||
/* XXX this is hacky, but bare with me ;-) */
|
||||
cib.read_count = UINT_MAX;
|
||||
cib.write_count = UINT_MAX;
|
||||
|
||||
TEST_ASSERT_EQUAL_INT(3, cib_put(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(3, cib_get(&cib));
|
||||
}
|
||||
|
||||
static void test_cib_peek(void)
|
||||
{
|
||||
cib_init(&cib, TEST_CIB_SIZE);
|
||||
@ -50,6 +63,16 @@ static void test_cib_peek(void)
|
||||
TEST_ASSERT_EQUAL_INT(-1, cib_peek(&cib));
|
||||
}
|
||||
|
||||
static void test_cib_peek__overflow(void)
|
||||
{
|
||||
/* XXX this is hacky, but bare with me ;-) */
|
||||
cib.read_count = UINT_MAX;
|
||||
cib.write_count = UINT_MAX;
|
||||
|
||||
TEST_ASSERT_EQUAL_INT(3, cib_put(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(3, cib_peek(&cib));
|
||||
}
|
||||
|
||||
static void test_cib_avail(void)
|
||||
{
|
||||
TEST_ASSERT_EQUAL_INT(0, cib_avail(&cib));
|
||||
@ -59,16 +82,6 @@ static void test_cib_avail(void)
|
||||
TEST_ASSERT_EQUAL_INT(2, cib_avail(&cib));
|
||||
}
|
||||
|
||||
static void test_cib_put_and_get(void)
|
||||
{
|
||||
TEST_ASSERT_EQUAL_INT(0, cib_put(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(0, cib_get(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(-1, cib_get(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(1, cib_put(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(0, cib_put(&cib));
|
||||
TEST_ASSERT_EQUAL_INT(-1, cib_put(&cib));
|
||||
}
|
||||
|
||||
static void test_empty_cib(void)
|
||||
{
|
||||
cib_init(&cib, 0);
|
||||
@ -93,11 +106,12 @@ Test *tests_core_cib_tests(void)
|
||||
EMB_UNIT_TESTFIXTURES(fixtures) {
|
||||
new_TestFixture(test_cib_put),
|
||||
new_TestFixture(test_cib_get),
|
||||
new_TestFixture(test_cib_get__overflow),
|
||||
new_TestFixture(test_cib_avail),
|
||||
new_TestFixture(test_cib_put_and_get),
|
||||
new_TestFixture(test_empty_cib),
|
||||
new_TestFixture(test_singleton_cib),
|
||||
new_TestFixture(test_cib_peek),
|
||||
new_TestFixture(test_cib_peek__overflow),
|
||||
};
|
||||
|
||||
EMB_UNIT_TESTCALLER(core_cib_tests, set_up, NULL, fixtures);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user