2021-12-30 19:36:57 +02:00
|
|
|
// Copyright (c) 2019-2021 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.
|
|
|
|
//
|
|
|
|
#include <test/util/setup_common.h>
|
|
|
|
#include <util/system.h>
|
|
|
|
#include <univalue.h>
|
|
|
|
|
2019-10-30 20:08:23 +01:00
|
|
|
#ifdef ENABLE_EXTERNAL_SIGNER
|
2021-06-27 10:17:27 +03:00
|
|
|
#if defined(WIN32) && !defined(__kernel_entry)
|
|
|
|
// A workaround for boost 1.71 incompatibility with mingw-w64 compiler.
|
|
|
|
// For details see https://github.com/bitcoin/bitcoin/pull/22348.
|
|
|
|
#define __kernel_entry
|
|
|
|
#endif
|
2020-01-30 12:07:57 +01:00
|
|
|
#include <boost/process.hpp>
|
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());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
2021-12-15 10:38:34 +02:00
|
|
|
const UniValue result = RunCommandParseJSON("cmd.exe /c echo {\"success\": true}");
|
2020-01-30 12:07:57 +01:00
|
|
|
#else
|
|
|
|
const UniValue result = RunCommandParseJSON("echo \"{\"success\": true}\"");
|
|
|
|
#endif
|
|
|
|
BOOST_CHECK(result.isObject());
|
|
|
|
const UniValue& success = find_value(result, "success");
|
|
|
|
BOOST_CHECK(!success.isNull());
|
|
|
|
BOOST_CHECK_EQUAL(success.getBool(), true);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
// An invalid command is handled by Boost
|
2021-12-15 13:21:33 +02:00
|
|
|
#ifdef WIN32
|
|
|
|
const std::string expected{"The system cannot find the file specified."};
|
|
|
|
#else
|
|
|
|
const std::string expected{"No such file or directory"};
|
|
|
|
#endif
|
|
|
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON("invalid_command"), boost::process::process_error, [&](const boost::process::process_error& e) {
|
|
|
|
const std::string what(e.what());
|
|
|
|
BOOST_CHECK(what.find("RunCommandParseJSON error:") == std::string::npos);
|
|
|
|
BOOST_CHECK(what.find(expected) != std::string::npos);
|
|
|
|
return true;
|
|
|
|
});
|
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
|
|
|
#ifdef WIN32
|
|
|
|
const std::string command{"cmd.exe /c call"};
|
|
|
|
#else
|
|
|
|
const std::string command{"false"};
|
|
|
|
#endif
|
|
|
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
|
|
|
BOOST_CHECK(std::string(e.what()).find(strprintf("RunCommandParseJSON error: process(%s) returned 1: \n", command)) != std::string::npos);
|
|
|
|
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
|
|
|
#ifdef WIN32
|
|
|
|
const std::string command{"cmd.exe /c dir nosuchfile"};
|
|
|
|
const std::string expected{"File Not Found"};
|
|
|
|
#else
|
|
|
|
const std::string command{"ls nosuchfile"};
|
|
|
|
const std::string expected{"No such file or directory"};
|
|
|
|
#endif
|
|
|
|
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
|
|
|
}
|
|
|
|
{
|
|
|
|
BOOST_REQUIRE_THROW(RunCommandParseJSON("echo \"{\""), std::runtime_error); // Unable to parse JSON
|
|
|
|
}
|
|
|
|
// Test std::in, except for Windows
|
|
|
|
#ifndef WIN32
|
|
|
|
{
|
|
|
|
const UniValue result = RunCommandParseJSON("cat", "{\"success\": true}");
|
|
|
|
BOOST_CHECK(result.isObject());
|
|
|
|
const UniValue& success = find_value(result, "success");
|
|
|
|
BOOST_CHECK(!success.isNull());
|
|
|
|
BOOST_CHECK_EQUAL(success.getBool(), true);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
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()
|