2022-12-24 23:49:50 +00:00
|
|
|
// Copyright (c) 2019-2022 The Bitcoin Core developers
|
2020-01-30 12:07:57 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
//
|
2024-02-13 08:03:02 +01:00
|
|
|
|
2024-02-26 13:36:30 +01:00
|
|
|
#include <config/bitcoin-config.h> // IWYU pragma: keep
|
2020-01-30 12:07:57 +01:00
|
|
|
#include <test/util/setup_common.h>
|
2022-10-04 18:15:53 +00:00
|
|
|
#include <common/run_command.h>
|
2020-01-30 12:07:57 +01:00
|
|
|
#include <univalue.h>
|
|
|
|
|
2019-10-30 20:08:23 +01:00
|
|
|
#ifdef ENABLE_EXTERNAL_SIGNER
|
2024-04-19 11:02:01 +01:00
|
|
|
#include <util/subprocess.h>
|
2019-10-30 20:08:23 +01:00
|
|
|
#endif // ENABLE_EXTERNAL_SIGNER
|
2020-01-30 12:07:57 +01:00
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(system_tests, BasicTestingSetup)
|
|
|
|
|
2019-10-30 20:08:23 +01:00
|
|
|
// At least one test is required (in case ENABLE_EXTERNAL_SIGNER is not defined).
|
2020-01-30 12:07:57 +01:00
|
|
|
// Workaround for https://github.com/bitcoin/bitcoin/issues/19128
|
|
|
|
BOOST_AUTO_TEST_CASE(dummy)
|
|
|
|
{
|
|
|
|
BOOST_CHECK(true);
|
|
|
|
}
|
|
|
|
|
2019-10-30 20:08:23 +01:00
|
|
|
#ifdef ENABLE_EXTERNAL_SIGNER
|
2020-01-30 12:07:57 +01:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(run_command)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
const UniValue result = RunCommandParseJSON("");
|
|
|
|
BOOST_CHECK(result.isNull());
|
|
|
|
}
|
|
|
|
{
|
2023-03-12 18:59:25 +01:00
|
|
|
const UniValue result = RunCommandParseJSON("echo {\"success\": true}");
|
2020-01-30 12:07:57 +01:00
|
|
|
BOOST_CHECK(result.isObject());
|
2023-05-09 09:25:50 +02:00
|
|
|
const UniValue& success = result.find_value("success");
|
2020-01-30 12:07:57 +01:00
|
|
|
BOOST_CHECK(!success.isNull());
|
2022-09-30 15:05:35 +02:00
|
|
|
BOOST_CHECK_EQUAL(success.get_bool(), true);
|
2020-01-30 12:07:57 +01:00
|
|
|
}
|
|
|
|
{
|
2023-03-12 18:59:25 +01:00
|
|
|
// An invalid command is handled by cpp-subprocess
|
|
|
|
const std::string expected{"execve failed: "};
|
|
|
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON("invalid_command"), subprocess::CalledProcessError, HasReason(expected));
|
2020-01-30 12:07:57 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// Return non-zero exit code, no output to stderr
|
2021-12-15 13:59:08 +02:00
|
|
|
const std::string command{"false"};
|
|
|
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
2023-01-06 10:53:36 +00:00
|
|
|
const std::string what{e.what()};
|
|
|
|
BOOST_CHECK(what.find(strprintf("RunCommandParseJSON error: process(%s) returned 1: \n", command)) != std::string::npos);
|
2021-12-15 13:59:08 +02:00
|
|
|
return true;
|
|
|
|
});
|
2020-01-30 12:07:57 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// Return non-zero exit code, with error message for stderr
|
2021-12-15 14:02:46 +02:00
|
|
|
const std::string command{"ls nosuchfile"};
|
|
|
|
const std::string expected{"No such file or directory"};
|
|
|
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
|
|
|
const std::string what(e.what());
|
|
|
|
BOOST_CHECK(what.find(strprintf("RunCommandParseJSON error: process(%s) returned", command)) != std::string::npos);
|
|
|
|
BOOST_CHECK(what.find(expected) != std::string::npos);
|
|
|
|
return true;
|
|
|
|
});
|
2020-01-30 12:07:57 +01:00
|
|
|
}
|
|
|
|
{
|
2023-12-03 16:04:20 +00:00
|
|
|
// Unable to parse JSON
|
|
|
|
const std::string command{"echo {"};
|
|
|
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, HasReason("Unable to parse JSON: {"));
|
2020-01-30 12:07:57 +01:00
|
|
|
}
|
2024-02-27 15:59:05 +00:00
|
|
|
// Test std::in
|
2020-01-30 12:07:57 +01:00
|
|
|
{
|
|
|
|
const UniValue result = RunCommandParseJSON("cat", "{\"success\": true}");
|
|
|
|
BOOST_CHECK(result.isObject());
|
2023-05-09 09:25:50 +02:00
|
|
|
const UniValue& success = result.find_value("success");
|
2020-01-30 12:07:57 +01:00
|
|
|
BOOST_CHECK(!success.isNull());
|
2022-09-30 15:05:35 +02:00
|
|
|
BOOST_CHECK_EQUAL(success.get_bool(), true);
|
2020-01-30 12:07:57 +01:00
|
|
|
}
|
|
|
|
}
|
2019-10-30 20:08:23 +01:00
|
|
|
#endif // ENABLE_EXTERNAL_SIGNER
|
2020-01-30 12:07:57 +01:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|