f53daa79f6
This removes the transaction-signing code from the hub internal codebase. The only user for this was the API call signrawtransaction, and a lot of unit testing code. I'd argue that if the user needs to send a private key to the hub via RPC for signing his transaction, then they are doing it wrong. This also removes the duplicate test double_spend which tests functionality also tested in the DoubleSpendProofTest. As an aside, the flowee/utils library still has full signing capability and we suggest using the TransactionBuilder API for that.
86 lines
2.7 KiB
CMake
86 lines
2.7 KiB
CMake
# This file is part of the Flowee project
|
|
# Copyright (C) 2018 Tom Zander <tom@flowee.org>
|
|
#
|
|
# 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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/>.
|
|
|
|
enable_testing()
|
|
|
|
get_property(hub_deb GLOBAL PROPERTY BUILDING_HUB)
|
|
if (hub_deb)
|
|
add_subdirectory(test)
|
|
set(OTHER_TESTS test_hubOld)
|
|
endif()
|
|
|
|
if (${Qt6Core_FOUND})
|
|
find_package(Qt6Test)
|
|
if (${Qt6Test_FOUND})
|
|
add_subdirectory(common)
|
|
add_subdirectory(apputils)
|
|
add_subdirectory(prevector)
|
|
add_subdirectory(utxo)
|
|
add_subdirectory(utils)
|
|
add_subdirectory(streaming)
|
|
add_subdirectory(networkmanager)
|
|
add_subdirectory(hashstorage)
|
|
add_subdirectory(p2pnet)
|
|
|
|
if (hub_deb)
|
|
add_subdirectory(hub)
|
|
add_subdirectory(api)
|
|
add_subdirectory(bitcoin-protocol)
|
|
add_subdirectory(blockvalidation)
|
|
list(APPEND OTHER_TESTS
|
|
test_hub
|
|
test_protocol
|
|
test_blockvalidation
|
|
|
|
test_api_live
|
|
test_api_blockchain
|
|
test_api_address_monitor
|
|
test_api_double_spend_monitor
|
|
test_api_txid_monitor
|
|
)
|
|
endif()
|
|
|
|
find_package(Qt6Network)
|
|
if (${Qt6Network_FOUND})
|
|
add_subdirectory(httpengine)
|
|
list(APPEND OTHER_TESTS test_httpengine)
|
|
endif ()
|
|
|
|
option(test_proto_builder "Enable testing of the protocol buffer unit test" OFF)
|
|
if (test-proto_builder)
|
|
find_package(Protobuf REQUIRED)
|
|
if (Protobuf_FOUND)
|
|
add_subdirectory(protobuf)
|
|
LIST (APPEND OTHER_TESTS test_protobuf)
|
|
endif ()
|
|
endif ()
|
|
|
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} DEPENDS
|
|
test_utxo
|
|
test_utils
|
|
test_apputils
|
|
test_prevector
|
|
test_streaming
|
|
test_networkmanager
|
|
test_hashstorage
|
|
test_p2pnet
|
|
${OTHER_TESTS}
|
|
)
|
|
else ()
|
|
message("Missing qt6 (test) library, not building some tests")
|
|
endif ()
|
|
endif()
|