Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test cmocka #29

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,27 @@ test:smoke-build:
-DCONFIG_MENDER_PROVIDES_DEPENDS=ON
- cmake --build build --parallel $(nproc --all)
- ./build/mender-mcu-client.elf --help

test:unit:
stage: test
image: debian:12-slim
needs: []
before_script:
- apt-get update && apt-get install -y git cmake libcurl4-openssl-dev libcjson-dev libmbedtls-dev
script:
- cmake -B build tests
-DCONFIG_MENDER_PLATFORM_FLASH_TYPE="posix"
-DCONFIG_MENDER_PLATFORM_LOG_TYPE="posix"
-DCONFIG_MENDER_PLATFORM_NET_TYPE="generic/curl"
-DCONFIG_MENDER_PLATFORM_SCHEDULER_TYPE="posix"
-DCONFIG_MENDER_PLATFORM_STORAGE_TYPE="posix"
-DCONFIG_MENDER_PLATFORM_TLS_TYPE="generic/mbedtls"
-DCONFIG_MENDER_CLIENT_ADD_ON_INVENTORY=ON
-DCONFIG_MENDER_CLIENT_ADD_ON_CONFIGURE=OFF
-DCONFIG_MENDER_CLIENT_CONFIGURE_STORAGE=OFF
-DCONFIG_MENDER_CLIENT_ADD_ON_TROUBLESHOOT=OFF
-DCONFIG_MENDER_FULL_PARSE_ARTIFACT=ON
-DCONFIG_MENDER_PROVIDES_DEPENDS=ON
-DBUILD_TESTS=ON
- cmake --build build --parallel $(nproc --all)
- ctest --test-dir build/tests/
7 changes: 7 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,13 @@ if (CONFIG_MENDER_PLATFORM_TLS_TYPE STREQUAL "mbedtls")
endif()
endif()

# cmocka
if (BUILD_TESTS)
include(cmake/FetchCMocka.cmake)
enable_testing()
add_subdirectory(tests)
endif(BUILD_TESTS)

# Define version
file(STRINGS "${CMAKE_CURRENT_LIST_DIR}/VERSION" MENDER_CLIENT_VERSION)
add_definitions("-DMENDER_CLIENT_VERSION=\"${MENDER_CLIENT_VERSION}\"")
22 changes: 22 additions & 0 deletions tests/cmake/FetchCMocka.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#https://github.com/OlivierLDff/cmocka-cmake-example
include(FetchContent)

# Declare our target. We want the lastest stable version, not the master.
# Also specify GIT_SHALLOW to avoid cloning branch we don't care about
FetchContent_Declare(
cmocka
GIT_REPOSITORY https://git.cryptomilk.org/projects/cmocka.git
GIT_TAG cmocka-1.1.5
GIT_SHALLOW 1
)

# We want to link to cmocka-static, so we need to set this option before calling the FetchContent_MakeAvailable
# We also don't care about example and tests
set(WITH_STATIC_LIB ON CACHE BOOL "CMocka: Build with a static library" FORCE)
set(WITH_CMOCKERY_SUPPORT OFF CACHE BOOL "CMocka: Install a cmockery header" FORCE)
set(WITH_EXAMPLES OFF CACHE BOOL "CMocka: Build examples" FORCE)
set(UNIT_TESTING OFF CACHE BOOL "CMocka: Build with unit testing" FORCE)
set(PICKY_DEVELOPER OFF CACHE BOOL "CMocka: Build with picky developer flags" FORCE)

# Download cmocka, and execute its cmakelists.txt
FetchContent_MakeAvailable(cmocka)
16 changes: 16 additions & 0 deletions tests/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
include_directories(${CMAKE_CURRENT_LIST_DIR}/../../include)
set(MCU_LIBRARIES "mender-mcu-client;pthread;cjson;mbedtls;mbedx509;mbedcrypto")

# Add tests by adding the target name to this list
# Example:
# list(APPEND TEST_TARGETS mender_test_target)
list(APPEND TEST_TARGETS mender_test_client)

foreach(TEST_TARGET IN LISTS TEST_TARGETS)
add_cmocka_test(
${TEST_TARGET}
SOURCES ${TEST_TARGET}.c
LINK_LIBRARIES ${CMOCKA_LIBRARIES} ${MCU_LIBRARIES})

target_link_libraries(${TEST_TARGET} PRIVATE cmocka-static)
endforeach()
80 changes: 80 additions & 0 deletions tests/tests/mender_test_client.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/**
* @file mender-test-client.c
* @brief Test
*
* Copyright Northern.tech AS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>

#include "mender-utils.h"
#include "mender-client.h"

typedef struct {
char *string;
char *wildcard_string;
bool expected;
} TestWildCard;

static void
test_wildcard_comparison(void **state) {

TestWildCard test_wildcard[] = { { "wow", "wow", true },
{ "abc_123_def_456_ghi", "abc_123_def_456_g", false },
{ "abc_123_def_456_ghi", "abc*def*ghi", true },
{ "abc_123_def_456_ghi", "abc*123*def*ghi", true },
{ "abc_123_def_456_ghi", "*def*456*", true },
{ "abc_123_def_456_ghi", "abc*789*ghi", false },
{ "hello_world", "hello*world", true },
{ "hello_world", "hello*worlds", false },
{ "a_b_c", "a*_*b*", true },
{ "a_b_c", "a*c*b", false },
{ "abc", "*a*bc*", true },
{ "abcabcabc", "a*c*a*c*", true },
{ "test_key_1", "test_*", true },
{ "test_key_1", "test_", false },
{ "best_test_key_1", "test_*", false },
{ "test_key_1", "", false },
{ "", "", true },
{ "abc", "*", true },
{ "", "abc", false },
{ "", "abc*", false },
{ "", "*", true },
{ "abc", "xyz", false },
{ "abc", "abc*", true },
{ "abc", "*abc", true },
{ "abc", "a*xyz", false },
{ "test_string", "test_*test_*", false },
{ "test_string", "test_*string*", true },
{ "test_test_key", "***", true } };

for (size_t i = 0; i < sizeof(test_wildcard) / sizeof(test_wildcard[0]); i++) {
bool result;
mender_utils_compare_wildcard(test_wildcard[i].string, test_wildcard[i].wildcard_string, &result);
assert_int_equal(result, test_wildcard[i].expected);
}
}

int
main(void) {
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_wildcard_comparison),
};

return cmocka_run_group_tests(tests, NULL, NULL);
}