2018-10-19 21:41:56 +02:00
|
|
|
# Copyright (C) 2018 KeePassXC Team <team@keepassxc.org>
|
2010-08-13 18:08:06 +02:00
|
|
|
# Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
# version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2018-10-19 21:41:56 +02:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_SOURCE_DIR}/src
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/../src)
|
2010-08-13 18:08:06 +02:00
|
|
|
|
2011-11-20 10:12:49 +01:00
|
|
|
add_definitions(-DQT_TEST_LIB)
|
|
|
|
|
2012-05-21 23:37:29 +02:00
|
|
|
set(KEEPASSX_TEST_DATA_DIR ${CMAKE_CURRENT_SOURCE_DIR}/data)
|
|
|
|
configure_file(config-keepassx-tests.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-keepassx-tests.h)
|
|
|
|
|
|
|
|
macro(parse_arguments prefix arg_names option_names)
|
2018-10-19 21:41:56 +02:00
|
|
|
set(DEFAULT_ARGS)
|
|
|
|
foreach(arg_name ${arg_names})
|
|
|
|
set(${prefix}_${arg_name})
|
|
|
|
endforeach(arg_name)
|
|
|
|
foreach(option ${option_names})
|
|
|
|
set(${prefix}_${option} FALSE)
|
|
|
|
endforeach(option)
|
|
|
|
|
|
|
|
set(current_arg_name DEFAULT_ARGS)
|
|
|
|
set(current_arg_list)
|
|
|
|
foreach(arg ${ARGN})
|
|
|
|
set(larg_names ${arg_names})
|
|
|
|
list(FIND larg_names "${arg}" is_arg_name)
|
|
|
|
if(is_arg_name GREATER -1)
|
|
|
|
set(${prefix}_${current_arg_name} ${current_arg_list})
|
|
|
|
set(current_arg_name ${arg})
|
|
|
|
set(current_arg_list)
|
|
|
|
else()
|
|
|
|
set(loption_names ${option_names})
|
|
|
|
list(FIND loption_names "${arg}" is_option)
|
|
|
|
if(is_option GREATER -1)
|
|
|
|
set(${prefix}_${arg} TRUE)
|
|
|
|
else(is_option GREATER -1)
|
|
|
|
set(current_arg_list ${current_arg_list} ${arg})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endforeach(arg)
|
|
|
|
set(${prefix}_${current_arg_name} ${current_arg_list})
|
2012-05-21 23:37:29 +02:00
|
|
|
endmacro(parse_arguments)
|
|
|
|
|
|
|
|
macro(add_unit_test)
|
2018-10-19 21:41:56 +02:00
|
|
|
parse_arguments(TEST "NAME;SOURCES;LIBS" "" ${ARGN})
|
|
|
|
set(_test_NAME ${TEST_NAME})
|
|
|
|
set(_srcList ${TEST_SOURCES})
|
|
|
|
add_executable(${_test_NAME} ${_srcList})
|
|
|
|
target_link_libraries(${_test_NAME} ${TEST_LIBS})
|
|
|
|
|
|
|
|
if(NOT TEST_OUTPUT)
|
|
|
|
set(TEST_OUTPUT plaintext)
|
|
|
|
endif(NOT TEST_OUTPUT)
|
|
|
|
set(TEST_OUTPUT ${TEST_OUTPUT} CACHE STRING "The output to generate when running the QTest unit tests")
|
|
|
|
|
|
|
|
if(KDE4_TEST_OUTPUT STREQUAL "xml")
|
|
|
|
add_test(${_test_NAME} ${_test_NAME} -xml -o ${_test_NAME}.tml)
|
|
|
|
else(KDE4_TEST_OUTPUT STREQUAL "xml")
|
|
|
|
add_test(${_test_NAME} ${_test_NAME})
|
|
|
|
endif(KDE4_TEST_OUTPUT STREQUAL "xml")
|
|
|
|
|
|
|
|
if(NOT MSVC_IDE) #not needed for the ide
|
|
|
|
# if the tests are EXCLUDE_FROM_ALL, add a target "buildtests" to build all tests
|
|
|
|
if(NOT WITH_TESTS)
|
|
|
|
get_directory_property(_buildtestsAdded BUILDTESTS_ADDED)
|
|
|
|
if(NOT _buildtestsAdded)
|
|
|
|
add_custom_target(buildtests)
|
|
|
|
set_directory_properties(PROPERTIES BUILDTESTS_ADDED TRUE)
|
|
|
|
endif()
|
|
|
|
add_dependencies(buildtests ${_test_NAME})
|
|
|
|
endif()
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
|
|
|
endmacro(add_unit_test)
|
2010-08-13 18:08:06 +02:00
|
|
|
|
2010-11-21 23:06:30 +01:00
|
|
|
set(TEST_LIBRARIES
|
2018-10-19 21:41:56 +02:00
|
|
|
keepassx_core
|
|
|
|
${keepasshttp_LIB}
|
|
|
|
${autotype_LIB}
|
|
|
|
Qt5::Core
|
|
|
|
Qt5::Concurrent
|
|
|
|
Qt5::Widgets
|
|
|
|
Qt5::Test
|
|
|
|
${GCRYPT_LIBRARIES}
|
|
|
|
${GPGERROR_LIBRARIES}
|
|
|
|
${ZLIB_LIBRARIES})
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2018-12-19 17:52:12 -05:00
|
|
|
set(testsupport_SOURCES
|
|
|
|
modeltest.cpp
|
|
|
|
FailDevice.cpp
|
|
|
|
mock/MockClock.cpp
|
|
|
|
util/TemporaryFile.cpp
|
|
|
|
stub/TestRandom.cpp)
|
2015-07-20 21:32:07 +02:00
|
|
|
add_library(testsupport STATIC ${testsupport_SOURCES})
|
2017-06-29 19:54:49 +02:00
|
|
|
target_link_libraries(testsupport Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Test)
|
2010-08-14 14:26:25 +02:00
|
|
|
|
2014-05-26 00:46:41 -07:00
|
|
|
if(YUBIKEY_FOUND)
|
2018-10-19 21:41:56 +02:00
|
|
|
set(TEST_LIBRARIES ${TEST_LIBRARIES} ${YUBIKEY_LIBRARIES})
|
2014-05-26 00:46:41 -07:00
|
|
|
endif()
|
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testgroup SOURCES TestGroup.cpp
|
2018-10-19 21:41:56 +02:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2010-09-20 00:16:30 +02:00
|
|
|
|
2018-01-17 20:52:29 +01:00
|
|
|
add_unit_test(NAME testkdbx2 SOURCES TestKdbx2.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2010-08-15 12:31:48 +02:00
|
|
|
|
2018-01-17 20:52:29 +01:00
|
|
|
add_unit_test(NAME testkdbx3 SOURCES TestKeePass2Format.cpp FailDevice.cpp TestKdbx3.cpp
|
2018-10-19 21:41:56 +02:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2018-01-05 10:41:29 -05:00
|
|
|
|
2018-03-01 21:25:29 +01:00
|
|
|
add_unit_test(NAME testkdbx4 SOURCES TestKeePass2Format.cpp FailDevice.cpp mock/MockChallengeResponseKey.cpp TestKdbx4.cpp
|
2018-10-19 21:41:56 +02:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2011-11-13 14:52:43 +01:00
|
|
|
|
2018-03-01 20:07:19 +01:00
|
|
|
add_unit_test(NAME testkeys SOURCES TestKeys.cpp mock/MockChallengeResponseKey.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2010-08-18 16:22:48 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testgroupmodel SOURCES TestGroupModel.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testentrymodel SOURCES TestEntryModel.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testcryptohash SOURCES TestCryptoHash.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2010-09-18 17:19:42 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testsymmetriccipher SOURCES TestSymmetricCipher.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2010-11-21 23:06:30 +01:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
if(WITH_XC_KEESHARE)
|
|
|
|
add_unit_test(NAME testsignature SOURCES TestSignature.cpp
|
2019-01-03 08:46:32 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2018-10-01 10:26:24 -04:00
|
|
|
endif()
|
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testhashedblockstream SOURCES TestHashedBlockStream.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2011-07-07 00:08:37 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testkeepass2randomstream SOURCES TestKeePass2RandomStream.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2011-12-26 19:18:21 +01:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testmodified SOURCES TestModified.cpp
|
2018-10-19 21:41:56 +02:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2012-04-18 13:27:16 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testdeletedobjects SOURCES TestDeletedObjects.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2012-04-21 23:17:26 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testkeepass1reader SOURCES TestKeePass1Reader.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2011-12-26 19:18:21 +01:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testwildcardmatcher SOURCES TestWildcardMatcher.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2012-07-22 14:04:50 +02:00
|
|
|
|
2019-01-30 12:11:50 -02:00
|
|
|
if(WITH_XC_NETWORKING)
|
|
|
|
add_unit_test(NAME testupdatecheck SOURCES TestUpdateCheck.cpp
|
|
|
|
LIBS ${TEST_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
2016-12-04 19:57:24 +01:00
|
|
|
if(WITH_XC_AUTOTYPE)
|
2018-10-19 21:41:56 +02:00
|
|
|
add_unit_test(NAME testautotype SOURCES TestAutoType.cpp
|
|
|
|
LIBS ${TEST_LIBRARIES})
|
|
|
|
set_target_properties(testautotype PROPERTIES ENABLE_EXPORTS ON)
|
2016-12-04 19:57:24 +01:00
|
|
|
endif()
|
2012-10-28 15:31:57 +01:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
if(WITH_XC_CRYPTO_SSH)
|
2018-10-19 21:41:56 +02:00
|
|
|
add_unit_test(NAME testopensshkey SOURCES TestOpenSSHKey.cpp
|
2018-12-18 22:28:56 -05:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2017-10-29 17:17:24 +02:00
|
|
|
endif()
|
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testentry SOURCES TestEntry.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2013-03-24 21:21:06 +01:00
|
|
|
|
2017-09-05 10:28:47 -04:00
|
|
|
add_unit_test(NAME testmerge SOURCES TestMerge.cpp
|
2018-09-29 19:00:47 +02:00
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
|
|
|
|
|
|
|
add_unit_test(NAME testpasswordgenerator SOURCES TestPasswordGenerator.cpp
|
|
|
|
LIBS ${TEST_LIBRARIES})
|
2017-09-05 10:28:47 -04:00
|
|
|
|
2017-04-13 07:05:36 -03:00
|
|
|
add_unit_test(NAME testtotp SOURCES TestTotp.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2017-04-13 07:05:36 -03:00
|
|
|
|
2017-09-24 16:00:12 -06:00
|
|
|
add_unit_test(NAME testbase32 SOURCES TestBase32.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2017-09-24 16:00:12 -06:00
|
|
|
|
2017-01-09 01:33:21 +01:00
|
|
|
add_unit_test(NAME testcsvparser SOURCES TestCsvParser.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2017-01-09 01:33:21 +01:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
add_unit_test(NAME testrandomgenerator SOURCES TestRandomGenerator.cpp
|
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
2013-10-09 23:11:18 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testentrysearcher SOURCES TestEntrySearcher.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2014-05-15 23:48:54 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
add_unit_test(NAME testcsvexporter SOURCES TestCsvExporter.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2015-07-14 22:14:34 +02:00
|
|
|
|
2014-05-26 00:46:41 -07:00
|
|
|
add_unit_test(NAME testykchallengeresponsekey
|
2018-01-24 13:22:20 +01:00
|
|
|
SOURCES TestYkChallengeResponseKey.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2014-05-26 00:46:41 -07:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
if(WITH_XC_KEESHARE)
|
|
|
|
add_unit_test(NAME testsharing SOURCES TestSharing.cpp
|
|
|
|
LIBS testsupport ${TEST_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
2017-04-22 10:02:59 +03:00
|
|
|
add_unit_test(NAME testdatabase SOURCES TestDatabase.cpp
|
2018-01-17 18:15:37 +01:00
|
|
|
LIBS ${TEST_LIBRARIES})
|
2017-04-22 10:02:59 +03:00
|
|
|
|
2018-05-14 21:26:26 +02:00
|
|
|
add_unit_test(NAME testtools SOURCES TestTools.cpp
|
|
|
|
LIBS ${TEST_LIBRARIES})
|
|
|
|
|
2018-09-29 19:00:47 +02:00
|
|
|
|
2011-12-26 19:18:21 +01:00
|
|
|
if(WITH_GUI_TESTS)
|
2018-10-19 21:41:56 +02:00
|
|
|
# CLI clip tests need X environment on Linux
|
|
|
|
add_unit_test(NAME testcli SOURCES TestCli.cpp
|
|
|
|
LIBS testsupport cli ${TEST_LIBRARIES})
|
2018-09-29 19:00:47 +02:00
|
|
|
|
2018-10-19 21:41:56 +02:00
|
|
|
add_subdirectory(gui)
|
2011-12-26 19:18:21 +01:00
|
|
|
endif(WITH_GUI_TESTS)
|