f806c5829b
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
93 lines
2.0 KiB
C
93 lines
2.0 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/iam.h>
|
|
|
|
/**
|
|
* @addtogroup bacnet_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Test
|
|
*/
|
|
static int iam_decode_apdu(
|
|
const uint8_t *apdu,
|
|
uint32_t *pDevice_id,
|
|
unsigned *pMax_apdu,
|
|
int *pSegmentation,
|
|
uint16_t *pVendor_id)
|
|
{
|
|
int apdu_len = 0; /* total length of the apdu, return value */
|
|
|
|
/* valid data? */
|
|
if (!apdu) {
|
|
return -1;
|
|
}
|
|
/* optional checking - most likely was already done prior to this call */
|
|
if (apdu[0] != PDU_TYPE_UNCONFIRMED_SERVICE_REQUEST) {
|
|
return -1;
|
|
}
|
|
if (apdu[1] != SERVICE_UNCONFIRMED_I_AM) {
|
|
return -1;
|
|
}
|
|
apdu_len = iam_decode_service_request(
|
|
&apdu[2], pDevice_id, pMax_apdu, pSegmentation, pVendor_id);
|
|
|
|
return apdu_len;
|
|
}
|
|
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST(iam_tests, testIAm)
|
|
#else
|
|
static void testIAm(void)
|
|
#endif
|
|
{
|
|
uint8_t apdu[480] = { 0 };
|
|
int len = 0;
|
|
uint32_t device_id = 42;
|
|
unsigned max_apdu = 480;
|
|
int segmentation = SEGMENTATION_NONE;
|
|
uint16_t vendor_id = 42;
|
|
uint32_t test_device_id = 0;
|
|
unsigned test_max_apdu = 0;
|
|
int test_segmentation = 0;
|
|
uint16_t test_vendor_id = 0;
|
|
|
|
len =
|
|
iam_encode_apdu(&apdu[0], device_id, max_apdu, segmentation, vendor_id);
|
|
zassert_not_equal(len, 0, NULL);
|
|
|
|
len = iam_decode_apdu(
|
|
&apdu[0], &test_device_id, &test_max_apdu, &test_segmentation,
|
|
&test_vendor_id);
|
|
|
|
zassert_not_equal(len, -1, NULL);
|
|
zassert_equal(test_device_id, device_id, NULL);
|
|
zassert_equal(test_vendor_id, vendor_id, NULL);
|
|
zassert_equal(test_max_apdu, max_apdu, NULL);
|
|
zassert_equal(test_segmentation, segmentation, NULL);
|
|
}
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST_SUITE(iam_tests, NULL, NULL, NULL, NULL, NULL);
|
|
#else
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(iam_tests, ztest_unit_test(testIAm));
|
|
|
|
ztest_run_test_suite(iam_tests);
|
|
}
|
|
#endif
|