3f8b8b5619
* Added dynamic RAM file system to use with basic bacnet file object. * Added static RAM file system to use with basic bacnet file object. * Added check for read-only during AtomicWriteFile service API for BACnet File object. * Change stm32f4xx example to use static RAM file system. * Fixed bacfile_count() function return type
226 lines
8.9 KiB
C
226 lines
8.9 KiB
C
/* @file
|
|
* @brief tests the BACnet RAM File System (BRAMFS)
|
|
* @date August 2025
|
|
* @author Steve Karg <Steve Karg <skarg@users.sourceforge.net>
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#include <limits.h>
|
|
#include <zephyr/ztest.h>
|
|
#include <bacnet/bacstr.h>
|
|
#include <bacnet/basic/sys/bramfs.h>
|
|
|
|
/**
|
|
* @addtogroup bacnet_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Unit Test for the BACnet RAM File System (BRAMFS)
|
|
*/
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST(bramfs_tests, test_BRAMFS_stream)
|
|
#else
|
|
static void test_BRAMFS_stream(void)
|
|
#endif
|
|
{
|
|
const char *pathname = "testfile.txt";
|
|
size_t file_size = 0;
|
|
uint8_t null_file_data[256] = { 0 };
|
|
uint8_t test_file_data[256] = { 0 };
|
|
/* data less than 256 bytes */
|
|
uint8_t file_data[] = {
|
|
"This is a test file for the BACnet RAM File System (BRAMFS). "
|
|
"It contains some sample data to be read and written."
|
|
};
|
|
uint8_t file_data_2[] = {
|
|
"This is a second test file for the BACnet RAM File System (BRAMFS). "
|
|
"It contains some additional sample data to be read and written."
|
|
};
|
|
uint8_t file_data_small[] = { "Small file data" };
|
|
int32_t fileStartPosition = 0;
|
|
|
|
/* Initialize the BRAMFS */
|
|
bacfile_ramfs_init();
|
|
|
|
file_size = bacfile_ramfs_file_size(pathname);
|
|
zassert_equal(file_size, 0, "File size should be 0 after initialization");
|
|
zassert_true(
|
|
bacfile_ramfs_file_size_set(pathname, sizeof(null_file_data)),
|
|
"Failed to set file size");
|
|
file_size = bacfile_ramfs_file_size(pathname);
|
|
zassert_equal(
|
|
file_size, sizeof(null_file_data),
|
|
"File size should be 256 after setting");
|
|
file_size = bacfile_ramfs_read_stream_data(
|
|
pathname, 0, test_file_data, sizeof(test_file_data));
|
|
zassert_equal(
|
|
file_size, sizeof(test_file_data), "file_size=%zu", file_size);
|
|
zassert_true(
|
|
memcmp(test_file_data, null_file_data, sizeof(test_file_data)) == 0,
|
|
"File data should be zeroed out initially");
|
|
file_size = bacfile_ramfs_write_stream_data(
|
|
pathname, 0, file_data, sizeof(file_data));
|
|
zassert_equal(file_size, sizeof(file_data), "file_size=%zu", file_size);
|
|
file_size = bacfile_ramfs_read_stream_data(
|
|
pathname, 0, test_file_data, sizeof(test_file_data));
|
|
zassert_equal(file_size, sizeof(file_data), "file_size=%zu", file_size);
|
|
zassert_true(
|
|
memcmp(test_file_data, file_data, sizeof(file_data)) == 0,
|
|
"File data should match written data");
|
|
/* append data to the end of the file */
|
|
fileStartPosition = -1;
|
|
file_size = bacfile_ramfs_write_stream_data(
|
|
pathname, fileStartPosition, file_data_2, sizeof(file_data_2));
|
|
zassert_equal(file_size, sizeof(file_data_2), "file_size=%zu", file_size);
|
|
file_size = bacfile_ramfs_read_stream_data(
|
|
pathname, sizeof(file_data), test_file_data, sizeof(test_file_data));
|
|
zassert_equal(file_size, sizeof(file_data_2), "file_size=%zu", file_size);
|
|
zassert_true(
|
|
memcmp(test_file_data, file_data_2, sizeof(file_data_2)) == 0,
|
|
"File data should match appended data");
|
|
/* write a smaller file */
|
|
fileStartPosition = 0;
|
|
file_size = bacfile_ramfs_write_stream_data(
|
|
pathname, fileStartPosition, file_data_small, sizeof(file_data_small));
|
|
zassert_equal(
|
|
file_size, sizeof(file_data_small), "file_size=%zu", file_size);
|
|
file_size = bacfile_ramfs_read_stream_data(
|
|
pathname, 0, test_file_data, sizeof(test_file_data));
|
|
zassert_equal(
|
|
file_size, sizeof(file_data_small), "file_size=%zu", file_size);
|
|
zassert_true(
|
|
memcmp(test_file_data, file_data_small, sizeof(file_data_small)) == 0,
|
|
"File data should match smaller written data");
|
|
file_size = bacfile_ramfs_file_size(pathname);
|
|
zassert_equal(
|
|
file_size, sizeof(file_data_small),
|
|
"File size should be %u after shrinking", sizeof(file_data_small));
|
|
/* shrink the file by writing zero at zero */
|
|
zassert_true(
|
|
bacfile_ramfs_file_size_set(pathname, 0),
|
|
"Failed to set file size to 0");
|
|
file_size = bacfile_ramfs_file_size(pathname);
|
|
zassert_equal(file_size, 0, "File size should be 0 after shrinking");
|
|
/* check a NULL pathname */
|
|
file_size = bacfile_ramfs_file_size(NULL);
|
|
zassert_equal(file_size, 0, "File size should be 0 on a null pathname");
|
|
|
|
/* append data to the end of the file */
|
|
fileStartPosition = 5;
|
|
file_size = bacfile_ramfs_write_stream_data(
|
|
pathname, fileStartPosition, file_data, sizeof(file_data));
|
|
zassert_equal(file_size, sizeof(file_data), "file_size=%zu", file_size);
|
|
file_size = bacfile_ramfs_read_stream_data(
|
|
pathname, fileStartPosition, test_file_data, sizeof(test_file_data));
|
|
zassert_equal(file_size, sizeof(file_data), "file_size=%zu", file_size);
|
|
zassert_true(
|
|
memcmp(test_file_data, file_data, sizeof(file_data)) == 0,
|
|
"File data should match written data at position %d",
|
|
fileStartPosition);
|
|
file_size = bacfile_ramfs_file_size(pathname);
|
|
zassert_equal(
|
|
file_size, sizeof(file_data) + fileStartPosition,
|
|
"File size should be %u after appending",
|
|
sizeof(file_data) + fileStartPosition);
|
|
bacfile_ramfs_deinit();
|
|
}
|
|
|
|
/**
|
|
* @brief Unit Test for the BACnet RAM File System (BRAMFS)
|
|
*/
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST(bramfs_tests, test_BRAMFS_records)
|
|
#else
|
|
static void test_BRAMFS_records(void)
|
|
#endif
|
|
{
|
|
const char *pathname = "testfile.txt";
|
|
bool status = false;
|
|
char record_1[] = { "This is the first record in the file." };
|
|
char record_2[] = { "This is the second record in the file." };
|
|
char record_3[] = { "This is the third record in the file." };
|
|
size_t record_len = 0;
|
|
|
|
/* Initialize the BRAMFS */
|
|
bacfile_ramfs_init();
|
|
|
|
/* no data in the file - expect failure */
|
|
record_len = bacnet_strnlen(record_1, sizeof(record_1));
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 0, (uint8_t *)record_1, record_len);
|
|
zassert_false(status, "Read record 1 should fail on empty file");
|
|
|
|
record_len = bacnet_strnlen(record_1, sizeof(record_1));
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 1, (uint8_t *)record_2, record_len);
|
|
zassert_false(status, "Read record 2 should fail on empty file");
|
|
|
|
record_len = bacnet_strnlen(record_3, sizeof(record_3));
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 2, (uint8_t *)record_3, record_len);
|
|
zassert_false(status, "Read record 3 should fail on empty file");
|
|
|
|
/* write the first record */
|
|
record_len = bacnet_strnlen(record_1, sizeof(record_1));
|
|
status = bacfile_ramfs_write_record_data(
|
|
pathname, 0, 0, (const uint8_t *)record_1, record_len);
|
|
zassert_true(status, "Write record 1 should succeed");
|
|
/* read the first record */
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 0, (uint8_t *)record_1, record_len);
|
|
zassert_true(status, "Read record 1 should succeed");
|
|
zassert_true(
|
|
memcmp(record_1, record_1, record_len) == 0,
|
|
"Record 1 data should match written data");
|
|
/* write the second record as an append */
|
|
record_len = bacnet_strnlen(record_2, sizeof(record_2));
|
|
status = bacfile_ramfs_write_record_data(
|
|
pathname, -1, 1, (const uint8_t *)record_2, record_len);
|
|
zassert_true(status, "Write record 2 should succeed");
|
|
/* read the second record */
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 1, (uint8_t *)record_2, record_len);
|
|
zassert_true(status, "Read record 2 should succeed");
|
|
zassert_true(
|
|
memcmp(record_2, record_2, record_len) == 0,
|
|
"Record 2 data should match written data");
|
|
/* overwrite the third record at index 1 */
|
|
record_len = bacnet_strnlen(record_3, sizeof(record_3));
|
|
status = bacfile_ramfs_write_record_data(
|
|
pathname, 0, 1, (const uint8_t *)record_3, record_len);
|
|
zassert_true(status, "Write record 3 should succeed");
|
|
/* read the third record */
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 1, (uint8_t *)record_2, record_len);
|
|
zassert_true(status, "Read record 2 should succeed");
|
|
zassert_true(
|
|
memcmp(record_2, record_3, record_len) == 0,
|
|
"Record 2 data should match written record 3 data");
|
|
/* read the first record again */
|
|
record_len = bacnet_strnlen(record_1, sizeof(record_1));
|
|
status = bacfile_ramfs_read_record_data(
|
|
pathname, 0, 0, (uint8_t *)record_1, record_len);
|
|
zassert_true(status, "Read record 1 should succeed");
|
|
zassert_true(
|
|
memcmp(record_1, record_1, record_len) == 0,
|
|
"Record 1 data should match written data");
|
|
bacfile_ramfs_deinit();
|
|
}
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#if defined(CONFIG_ZTEST_NEW_API)
|
|
ZTEST_SUITE(bramfs_tests, NULL, NULL, NULL, NULL, NULL);
|
|
#else
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(
|
|
bramfs_tests, ztest_unit_test(test_BRAMFS_stream),
|
|
ztest_unit_test(test_BRAMFS_records));
|
|
|
|
ztest_run_test_suite(bramfs_tests);
|
|
}
|
|
#endif
|