This commit removes the usage of NULL parameter as message in zassert_* macros after making it optional Signed-off-by: Michał Barnaś <mb@semihalf.com>
102 lines
2.2 KiB
C
102 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "test_msgq.h"
|
|
|
|
static ZTEST_BMEM char __aligned(4) tbuffer[MSG_SIZE * MSGQ_LEN];
|
|
static ZTEST_DMEM uint32_t data[MSGQ_LEN] = { MSG0, MSG1 };
|
|
extern struct k_msgq msgq;
|
|
|
|
static void put_fail(struct k_msgq *q)
|
|
{
|
|
int ret = k_msgq_put(q, (void *)&data[0], K_NO_WAIT);
|
|
|
|
zassert_false(ret);
|
|
ret = k_msgq_put(q, (void *)&data[0], K_NO_WAIT);
|
|
zassert_false(ret);
|
|
/**TESTPOINT: msgq put returns -ENOMSG*/
|
|
ret = k_msgq_put(q, (void *)&data[1], K_NO_WAIT);
|
|
zassert_equal(ret, -ENOMSG);
|
|
/**TESTPOINT: msgq put returns -EAGAIN*/
|
|
ret = k_msgq_put(q, (void *)&data[0], TIMEOUT);
|
|
zassert_equal(ret, -EAGAIN);
|
|
|
|
k_msgq_purge(q);
|
|
}
|
|
|
|
static void get_fail(struct k_msgq *q)
|
|
{
|
|
uint32_t rx_data;
|
|
|
|
/**TESTPOINT: msgq get returns -ENOMSG*/
|
|
int ret = k_msgq_get(q, &rx_data, K_NO_WAIT);
|
|
|
|
zassert_equal(ret, -ENOMSG);
|
|
/**TESTPOINT: msgq get returns -EAGAIN*/
|
|
ret = k_msgq_get(q, &rx_data, TIMEOUT);
|
|
zassert_equal(ret, -EAGAIN);
|
|
}
|
|
|
|
/**
|
|
* @addtogroup kernel_message_queue_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Test returned error code during writing in msgq
|
|
* @see k_msgq_init()
|
|
*/
|
|
ZTEST(msgq_api_1cpu, test_msgq_put_fail)
|
|
{
|
|
k_msgq_init(&msgq, tbuffer, MSG_SIZE, MSGQ_LEN);
|
|
put_fail(&msgq);
|
|
}
|
|
|
|
#ifdef CONFIG_USERSPACE
|
|
/**
|
|
* @brief Test returned error code during writing in msgq
|
|
* @see k_msgq_alloc_init()
|
|
*/
|
|
ZTEST_USER(msgq_api, test_msgq_user_put_fail)
|
|
{
|
|
struct k_msgq *q;
|
|
|
|
q = k_object_alloc(K_OBJ_MSGQ);
|
|
zassert_not_null(q, "couldn't alloc message queue");
|
|
zassert_false(k_msgq_alloc_init(q, MSG_SIZE, MSGQ_LEN));
|
|
put_fail(q);
|
|
}
|
|
#endif /* CONFIG_USERSPACE */
|
|
|
|
/**
|
|
* @brief Test returned error code during reading from msgq
|
|
* @see k_msgq_init(), k_msgq_put()
|
|
*/
|
|
ZTEST(msgq_api_1cpu, test_msgq_get_fail)
|
|
{
|
|
k_msgq_init(&msgq, tbuffer, MSG_SIZE, MSGQ_LEN);
|
|
get_fail(&msgq);
|
|
}
|
|
|
|
#ifdef CONFIG_USERSPACE
|
|
/**
|
|
* @brief Test returned error code during reading from msgq
|
|
* @see k_msgq_alloc_init(), k_msgq_get()
|
|
*/
|
|
ZTEST_USER(msgq_api, test_msgq_user_get_fail)
|
|
{
|
|
struct k_msgq *q;
|
|
|
|
q = k_object_alloc(K_OBJ_MSGQ);
|
|
zassert_not_null(q, "couldn't alloc message queue");
|
|
zassert_false(k_msgq_alloc_init(q, MSG_SIZE, MSGQ_LEN));
|
|
get_fail(q);
|
|
}
|
|
#endif /* CONFIG_USERSPACE */
|
|
|
|
/**
|
|
* @}
|
|
*/
|