eb36033fd8
Updating to integrate with Zephyr v3.2.0 required: - Update `west.yml` to import Zephyr v3.2.0 manifest - Prefix include pathname of ztest.h with `zephyr/` - Prefix every Zephyr header included pathname with `zephyr/` - Change all Zephyr tests/samples to use `find_package` - For unit_testing, use a distinct prj.conf which only references Kconfigs defined in the Zephyr repo. (Zephyr constraint.) - Move ztest headers into a zephyr-prefixed pathname Co-authored-by: Gregory Shue <gregory.shue@legrand.com>
57 lines
1.2 KiB
C
57 lines
1.2 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/basic/sys/filename.h>
|
|
|
|
/**
|
|
* @addtogroup bacnet_tests
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Test
|
|
*/
|
|
static void testFilename(void)
|
|
{
|
|
char *data1 = "c:\\Joshua\\run";
|
|
char *data2 = "/home/Anna/run";
|
|
char *data3 = "c:\\Program Files\\Christopher\\run.exe";
|
|
char *data4 = "//Mary/data/run";
|
|
char *data5 = "bin\\run";
|
|
char *filename = NULL;
|
|
|
|
filename = filename_remove_path(data1);
|
|
zassert_equal(strcmp("run", filename), 0, NULL);
|
|
filename = filename_remove_path(data2);
|
|
zassert_equal(strcmp("run", filename), 0, NULL);
|
|
filename = filename_remove_path(data3);
|
|
zassert_equal(strcmp("run.exe", filename), 0, NULL);
|
|
filename = filename_remove_path(data4);
|
|
zassert_equal(strcmp("run", filename), 0, NULL);
|
|
filename = filename_remove_path(data5);
|
|
zassert_equal(strcmp("run", filename), 0, NULL);
|
|
|
|
return;
|
|
}
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(filename_tests,
|
|
ztest_unit_test(testFilename)
|
|
);
|
|
|
|
ztest_run_test_suite(filename_tests);
|
|
}
|