CMakeLists.txt 3.3 KB
Newer Older
H
haozi007 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
# iSula-libutils: utils library for iSula
#
# Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
#
# Authors:
# Haozi007 <liuhao27@huawei.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#

enable_testing()
find_package(GTest REQUIRED)

set(CMAKE_C_COMPILER "g++" CACHE PATH "c compiler")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")

configure_file("data/ocihook.json" ${CMAKE_BINARY_DIR}/tests/ocihook.json COPYONLY)

macro(_DEFINE_NEW_TEST)
    add_executable(${ARGV0}
        ${TESTS_UTILS_SRCS}
        main.cpp
        ${ARGV0}.cpp
        )

    target_link_libraries(${ARGV0}
        isula_libutils
H
haozi007 已提交
40 41
        ${GTEST_LIBRARY}
        ${LIBYAJL_LIBRARY}
H
haozi007 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
        pthread
        )

    target_include_directories(${ARGV0} PUBLIC
        ${GTEST_INCLUDE_DIR}
        PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
        PUBLIC ${CMAKE_SOURCE_DIR}/src
        PUBLIC ${CMAKE_SOURCE_DIR}/third_party
        PUBLIC ${CMAKE_SOURCE_DIR}/src/json
        PUBLIC ${CMAKE_SOURCE_DIR}/src/json/schema/src
        PUBLIC ${CMAKE_BINARY_DIR}/json
        PUBLIC ${CMAKE_BINARY_DIR}/conf
        )

    add_test(
        NAME ${ARGV1}
        COMMAND ${ARGV0}
    )
endmacro()

# --------------- testcase add here -----------------
#   api testcase
H
haozi007 已提交
64 65 66
_DEFINE_NEW_TEST(log_ut log_testcase)
_DEFINE_NEW_TEST(libocispec_ut libocispec_testcase)

H
haozi007 已提交
67

H
haozi007 已提交
68
# mock test for run lcov to generate html
H
haozi007 已提交
69 70
add_executable(mock_ut main.cpp)
target_include_directories(mock_ut PUBLIC
H
haozi007 已提交
71 72 73
    ${GTEST_INCLUDE_DIR}
    PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
    )
H
haozi007 已提交
74 75
target_link_libraries(mock_ut
    ${GTEST_LIBRARY}
H
haozi007 已提交
76 77
    pthread
    )
H
haozi007 已提交
78
add_dependencies(mock_ut log_ut libocispec_ut)
H
haozi007 已提交
79

H
haozi007 已提交
80 81 82 83 84
# run ut and gcov
if (ENABLE_GCOV)
    set(result isula_libutils.info)
    set(result_dir lcr_gcovs)
    set(target_dir src/CMakeFiles/isula_libutils.dir)
85

H
haozi007 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    add_custom_command(TARGET mock_ut
        POST_BUILD
        COMMAND ${CMAKE_COMMAND} -E remove -f ${result}
        COMMAND ${CMAKE_COMMAND} -E make_directory ${result_dir}
        COMMAND ctest -VV
        COMMAND ${CMD_LCOV} --gcov-tool ${CMD_GCOV} --exclude "/usr/*" --exclude "*/src/utils.c" --exclude "*/json/*" -d ${CMAKE_BINARY_DIR}/${target_dir} -c -o ${result}
        COMMAND ${CMD_GENHTML} --ignore-errors source -o ${result_dir} ${result}
        COMMAND ${CMAKE_COMMAND} -E echo run gcov finish
        VERBATIM
        WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/tests
        )
else()
    add_custom_command(TARGET mock_ut
        PRE_BUILD
        COMMAND ${CMAKE_CTEST_COMMAND} -VV
        COMMAND ${CMAKE_COMMAND} -E echo UT finish
        VERBATIM
        WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/tests
        )
endif()
H
haozi007 已提交
106

H
haozi007 已提交
107 108
# --------------- testcase add finish -----------------