dad9e13485
* [WIP] Remove unit testcases duplicated under non-unit tree * [WIP] Update west.yml to Zephyr v3.3.0 (twister verified) * Update CI to Zephyr v3.4.0 w/ reduced module set - Update zephyr/module.yml to use Zephyr v3.4.0 + cmsis; - Update tests to use ZTEST_NEW_API for zephyr builds Verified by: 1. make clean test 2. ./zephyr/scripts/twister -p unit_testing -T bacnet/zephyr/tests/bacnet --------- Co-authored-by: Gregory Shue <gregory.shue@legrand.com>
115 lines
3.3 KiB
C
115 lines
3.3 KiB
C
/*
|
|
* Copyright (c) 2020 Legrand North America, LLC.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/* @file
|
|
* @brief test BACnet integer encode/decode APIs
|
|
*/
|
|
|
|
#include <zephyr/ztest.h>
|
|
#include <bacnet/readrange.h>
|
|
#include <bacnet/basic/object/netport.h>
|
|
|
|
/**
|
|
* @addtogroup bacnet_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Test
|
|
*/
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST(netport_tests, test_network_port)
|
|
#else
|
|
static void test_network_port(void)
|
|
#endif
|
|
{
|
|
uint8_t apdu[MAX_APDU] = { 0 };
|
|
int len = 0;
|
|
int test_len = 0;
|
|
BACNET_READ_PROPERTY_DATA rpdata;
|
|
/* for decode value data */
|
|
BACNET_APPLICATION_DATA_VALUE value;
|
|
const int *pRequired = NULL;
|
|
const int *pOptional = NULL;
|
|
const int *pProprietary = NULL;
|
|
unsigned port = 0;
|
|
unsigned count = 0;
|
|
uint32_t object_instance = 0;
|
|
bool status = false;
|
|
uint8_t port_type[] = { PORT_TYPE_ETHERNET, PORT_TYPE_ARCNET,
|
|
PORT_TYPE_MSTP, PORT_TYPE_PTP, PORT_TYPE_LONTALK, PORT_TYPE_BIP,
|
|
PORT_TYPE_ZIGBEE, PORT_TYPE_VIRTUAL, PORT_TYPE_NON_BACNET,
|
|
PORT_TYPE_BIP6, PORT_TYPE_MAX };
|
|
|
|
while (port_type[port] != PORT_TYPE_MAX) {
|
|
object_instance = 1234;
|
|
status = Network_Port_Object_Instance_Number_Set(0, object_instance);
|
|
zassert_true(status, NULL);
|
|
status = Network_Port_Type_Set(object_instance, port_type[port]);
|
|
zassert_true(status, NULL);
|
|
Network_Port_Init();
|
|
count = Network_Port_Count();
|
|
zassert_true(count > 0, NULL);
|
|
rpdata.application_data = &apdu[0];
|
|
rpdata.application_data_len = sizeof(apdu);
|
|
rpdata.object_type = OBJECT_NETWORK_PORT;
|
|
rpdata.object_instance = object_instance;
|
|
Network_Port_Property_Lists(&pRequired, &pOptional, &pProprietary);
|
|
while ((*pRequired) != -1) {
|
|
rpdata.object_property = *pRequired;
|
|
rpdata.array_index = BACNET_ARRAY_ALL;
|
|
len = Network_Port_Read_Property(&rpdata);
|
|
zassert_not_equal(len, BACNET_STATUS_ERROR, NULL);
|
|
if (len > 0) {
|
|
test_len = bacapp_decode_application_data(
|
|
rpdata.application_data,
|
|
(uint8_t)rpdata.application_data_len, &value);
|
|
zassert_true(test_len >= 0, NULL);
|
|
if (test_len < 0) {
|
|
printf("<decode failed!>\n");
|
|
}
|
|
}
|
|
pRequired++;
|
|
}
|
|
while ((*pOptional) != -1) {
|
|
rpdata.object_property = *pOptional;
|
|
rpdata.array_index = BACNET_ARRAY_ALL;
|
|
len = Network_Port_Read_Property(&rpdata);
|
|
zassert_not_equal(len, BACNET_STATUS_ERROR, NULL);
|
|
if (len > 0) {
|
|
test_len = bacapp_decode_application_data(
|
|
rpdata.application_data,
|
|
(uint8_t)rpdata.application_data_len, &value);
|
|
zassert_true(test_len >= 0, NULL);
|
|
if (test_len < 0) {
|
|
printf("<decode failed!>\n");
|
|
}
|
|
}
|
|
pOptional++;
|
|
}
|
|
port++;
|
|
}
|
|
|
|
return;
|
|
}
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST_SUITE(netport_tests, NULL, NULL, NULL, NULL, NULL);
|
|
#else
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(netport_tests,
|
|
ztest_unit_test(test_network_port)
|
|
);
|
|
|
|
ztest_run_test_suite(netport_tests);
|
|
}
|
|
#endif
|