84 lines
2.5 KiB
C
84 lines
2.5 KiB
C
/**
|
|
* @file
|
|
* @author Steve Karg
|
|
* @date April 2020
|
|
* @brief Test file for a basic BBMD for BVLC IPv4 handler
|
|
*
|
|
* @section LICENSE
|
|
*
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include "bacnet/basic/sys/keylist.h"
|
|
#include "bacnet/basic/object/objects.h"
|
|
#include "ctest.h"
|
|
|
|
/* test the object creation and deletion */
|
|
void testBACnetObjectsCompare(
|
|
Test *pTest, OBJECT_DEVICE_T *pDevice, uint32_t device_id)
|
|
{
|
|
ct_test(pTest, pDevice != NULL);
|
|
if (pDevice) {
|
|
ct_test(pTest, pDevice->Object_List != NULL);
|
|
ct_test(pTest, pDevice->Object_Identifier.instance == device_id);
|
|
ct_test(pTest, pDevice->Object_Identifier.type == OBJECT_DEVICE);
|
|
ct_test(pTest, pDevice->Object_Type == OBJECT_DEVICE);
|
|
}
|
|
}
|
|
|
|
void testBACnetObjects(Test *pTest)
|
|
{
|
|
uint32_t device_id = 0;
|
|
unsigned test_point = 0;
|
|
const unsigned max_test_points = 20;
|
|
OBJECT_DEVICE_T *pDevice;
|
|
bool status = false;
|
|
|
|
for (test_point = 0; test_point < max_test_points; test_point++) {
|
|
device_id = test_point * (BACNET_MAX_INSTANCE / max_test_points);
|
|
pDevice = objects_device_new(device_id);
|
|
testBACnetObjectsCompare(pTest, pDevice, device_id);
|
|
pDevice = objects_device_by_instance(device_id);
|
|
testBACnetObjectsCompare(pTest, pDevice, device_id);
|
|
}
|
|
ct_test(pTest, max_test_points == objects_device_count());
|
|
for (test_point = 0; test_point < max_test_points; test_point++) {
|
|
device_id = test_point * (BACNET_MAX_INSTANCE / max_test_points);
|
|
pDevice = objects_device_by_instance(device_id);
|
|
testBACnetObjectsCompare(pTest, pDevice, device_id);
|
|
}
|
|
for (test_point = 0; test_point < max_test_points; test_point++) {
|
|
device_id = test_point * (BACNET_MAX_INSTANCE / max_test_points);
|
|
pDevice = objects_device_data(test_point);
|
|
testBACnetObjectsCompare(pTest, pDevice, objects_device_id(test_point));
|
|
}
|
|
for (test_point = 0; test_point < max_test_points; test_point++) {
|
|
status = objects_device_delete(0);
|
|
ct_test(pTest, status);
|
|
}
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
Test *pTest;
|
|
bool rc;
|
|
|
|
pTest = ct_create("BACnet Objects", NULL);
|
|
|
|
/* individual tests */
|
|
rc = ct_addTestFunction(pTest, testBACnetObjects);
|
|
assert(rc);
|
|
|
|
ct_setStream(pTest, stdout);
|
|
ct_run(pTest);
|
|
(void)ct_report(pTest);
|
|
|
|
ct_destroy(pTest);
|
|
|
|
return 0;
|
|
}
|