mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Fix building without features
* Fix #3684 - Include YubiKey headers in CLI tests * Skip building testguibrowser if browser integration is disabled * Cleanup test CMakeLists
This commit is contained in:
parent
1ab8a9f42c
commit
178bea6bbc
4 changed files with 13 additions and 17 deletions
|
@ -75,3 +75,10 @@ YubiKey::ChallengeResult YubiKey::challenge(int slot, bool mayBlock, const QByte
|
||||||
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool YubiKey::checkSlotIsBlocking(int slot, QString& errorMessage)
|
||||||
|
{
|
||||||
|
Q_UNUSED(slot);
|
||||||
|
Q_UNUSED(errorMessage);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
|
@ -87,17 +87,7 @@ macro(add_unit_test)
|
||||||
endif()
|
endif()
|
||||||
endmacro(add_unit_test)
|
endmacro(add_unit_test)
|
||||||
|
|
||||||
set(TEST_LIBRARIES
|
set(TEST_LIBRARIES keepassx_core Qt5::Test)
|
||||||
keepassx_core
|
|
||||||
${keepassxcbrowser_LIB}
|
|
||||||
${autotype_LIB}
|
|
||||||
Qt5::Core
|
|
||||||
Qt5::Concurrent
|
|
||||||
Qt5::Widgets
|
|
||||||
Qt5::Test
|
|
||||||
${GCRYPT_LIBRARIES}
|
|
||||||
${GPGERROR_LIBRARIES}
|
|
||||||
${ZLIB_LIBRARIES})
|
|
||||||
|
|
||||||
set(testsupport_SOURCES
|
set(testsupport_SOURCES
|
||||||
modeltest.cpp
|
modeltest.cpp
|
||||||
|
@ -108,10 +98,6 @@ set(testsupport_SOURCES
|
||||||
add_library(testsupport STATIC ${testsupport_SOURCES})
|
add_library(testsupport STATIC ${testsupport_SOURCES})
|
||||||
target_link_libraries(testsupport Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Test)
|
target_link_libraries(testsupport Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Test)
|
||||||
|
|
||||||
if(YUBIKEY_FOUND)
|
|
||||||
set(TEST_LIBRARIES ${TEST_LIBRARIES} ${YUBIKEY_LIBRARIES})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_unit_test(NAME testgroup SOURCES TestGroup.cpp
|
add_unit_test(NAME testgroup SOURCES TestGroup.cpp
|
||||||
LIBS testsupport ${TEST_LIBRARIES})
|
LIBS testsupport ${TEST_LIBRARIES})
|
||||||
|
|
||||||
|
|
|
@ -21,9 +21,9 @@
|
||||||
#include "core/Bootstrap.h"
|
#include "core/Bootstrap.h"
|
||||||
#include "core/Config.h"
|
#include "core/Config.h"
|
||||||
#include "core/Global.h"
|
#include "core/Global.h"
|
||||||
#include "core/PasswordGenerator.h"
|
|
||||||
#include "core/Tools.h"
|
#include "core/Tools.h"
|
||||||
#include "crypto/Crypto.h"
|
#include "crypto/Crypto.h"
|
||||||
|
#include "keys/drivers/YubiKey.h"
|
||||||
#include "format/Kdbx3Reader.h"
|
#include "format/Kdbx3Reader.h"
|
||||||
#include "format/Kdbx3Writer.h"
|
#include "format/Kdbx3Writer.h"
|
||||||
#include "format/Kdbx4Reader.h"
|
#include "format/Kdbx4Reader.h"
|
||||||
|
|
|
@ -16,5 +16,8 @@
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||||||
|
|
||||||
add_unit_test(NAME testgui SOURCES TestGui.cpp ../util/TemporaryFile.cpp LIBS ${TEST_LIBRARIES})
|
add_unit_test(NAME testgui SOURCES TestGui.cpp ../util/TemporaryFile.cpp LIBS ${TEST_LIBRARIES})
|
||||||
add_unit_test(NAME testguibrowser SOURCES TestGuiBrowser.cpp ../util/TemporaryFile.cpp LIBS ${TEST_LIBRARIES})
|
|
||||||
add_unit_test(NAME testguipixmaps SOURCES TestGuiPixmaps.cpp LIBS ${TEST_LIBRARIES})
|
add_unit_test(NAME testguipixmaps SOURCES TestGuiPixmaps.cpp LIBS ${TEST_LIBRARIES})
|
||||||
|
|
||||||
|
if(WITH_XC_BROWSER)
|
||||||
|
add_unit_test(NAME testguibrowser SOURCES TestGuiBrowser.cpp ../util/TemporaryFile.cpp LIBS ${TEST_LIBRARIES})
|
||||||
|
endif()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue