cb243c36a8
* Change MIT license texts to SPDX-License-Identifier SPDX-License-Identifier is much easier to understand and grep than license text so use that instead. * Change GPL exception license texts to SPDX-License-Identifier SPDX-License-Identifier is much easier to understand and grep than license text so use that instead. * Change misc license texts to SPDX-License-Identifier There are some external code in repo which are not licenses as most of the stuff in this repo. We still want every file to have SPDX identifier to easily grep licenses. * Add currently used license files Even though Bacnet-Stack is using SPDX identifiers we still need to give those license files with source. For this reason add all license files to license/ folder. SPDX has also files which would make same thing but this is style which example Linux kernel is using and it is quite clear so I choose that one for now. I choosed not yet bring CC-PDDC as that is not right license for those files. --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
84 lines
2.4 KiB
C
84 lines
2.4 KiB
C
/**
|
|
* @file
|
|
* @author Steve Karg
|
|
* @date April 2020
|
|
* @brief Test file for a basic BBMD for BVLC IPv4 handler
|
|
*
|
|
* @section LICENSE
|
|
*
|
|
* 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;
|
|
}
|