19869dccdb
* Leverage (older) embedded unit tests into external unit tests build upon copy of Zephyr's ztest library and CMake. * Expand top-level CMake build to run external unit tests. * Expand Zephyr module extension to run external unit tests via west or sanitycheck. Co-authored-by: Gregory Shue <gregory.shue@legrand.us>
83 lines
1.8 KiB
C
83 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 <ztest.h>
|
|
#include <bacnet/iam.h>
|
|
|
|
/**
|
|
* @addtogroup bacnet_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Test
|
|
*/
|
|
static int iam_decode_apdu(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;
|
|
}
|
|
|
|
static void testIAm(void)
|
|
{
|
|
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);
|
|
}
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(iam_tests,
|
|
ztest_unit_test(testIAm)
|
|
);
|
|
|
|
ztest_run_test_suite(iam_tests);
|
|
}
|