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>
77 lines
1.8 KiB
C
77 lines
1.8 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/basic/object/ai.h>
|
|
#include <bacnet/bactext.h>
|
|
|
|
/**
|
|
* @addtogroup bacnet_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Test
|
|
*/
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST(ai_tests, testAnalogInput)
|
|
#else
|
|
static void testAnalogInput(void)
|
|
#endif
|
|
{
|
|
uint8_t apdu[MAX_APDU] = { 0 };
|
|
int len = 0, test_len = 0;
|
|
BACNET_READ_PROPERTY_DATA rpdata = { 0 };
|
|
BACNET_APPLICATION_DATA_VALUE value = {0};
|
|
const int *required_property = NULL;
|
|
const uint32_t instance = 1;
|
|
|
|
Analog_Input_Init();
|
|
rpdata.application_data = &apdu[0];
|
|
rpdata.application_data_len = sizeof(apdu);
|
|
rpdata.object_type = OBJECT_ANALOG_INPUT;
|
|
rpdata.object_instance = instance;
|
|
rpdata.array_index = BACNET_ARRAY_ALL;
|
|
|
|
Analog_Input_Property_Lists(&required_property, NULL, NULL);
|
|
while ((*required_property) >= 0) {
|
|
rpdata.object_property = *required_property;
|
|
len = Analog_Input_Read_Property(&rpdata);
|
|
zassert_true(len >= 0, NULL);
|
|
if (len >= 0) {
|
|
test_len = bacapp_decode_known_property(rpdata.application_data,
|
|
len, &value, rpdata.object_type, rpdata.object_property);
|
|
if (len != test_len) {
|
|
printf("property '%s': failed to decode!\n",
|
|
bactext_property_name(rpdata.object_property));
|
|
}
|
|
zassert_equal(len, test_len, NULL);
|
|
}
|
|
required_property++;
|
|
}
|
|
}
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST_SUITE(ai_tests, NULL, NULL, NULL, NULL, NULL);
|
|
#else
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(ai_tests,
|
|
ztest_unit_test(testAnalogInput)
|
|
);
|
|
|
|
ztest_run_test_suite(ai_tests);
|
|
}
|
|
#endif
|