mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-06-04 08:22:36 +02:00
Merge bitcoin/bitcoin#29489: test: Remove Windows-specific code from system_tests/run_command
51bc1c7126
test: Remove Windows-specific code from `system_tests/run_command` (Hennadii Stepanov) Pull request description: The removed code has been dead since https://github.com/bitcoin/bitcoin/pull/28967. Required as a precondition for replacing Boost.Process with [cpp-subprocess](https://github.com/bitcoin/bitcoin/pull/28981) to make diff for this code meaningful and reviewable. The plan is to reintroduce Windows-specific code in this test simultaneously with enabling Windows support in cpp-subprocess. ACKs for top commit: Sjors: utACK51bc1c7126
theStack: Code-review ACK51bc1c7126
Tree-SHA512: 0e3875c4dc20564332555633daf2227223b10dc3d052557635eced2734575d1e0252fb19e46ea6e6c47a15c51c345f70b6d437e33435abcd0e4fcf29edb50887
This commit is contained in:
commit
dfbad09c60
@ -29,23 +29,12 @@ BOOST_AUTO_TEST_CASE(dummy)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(run_command)
|
BOOST_AUTO_TEST_CASE(run_command)
|
||||||
{
|
{
|
||||||
#ifdef WIN32
|
|
||||||
// https://www.winehq.org/pipermail/wine-devel/2008-September/069387.html
|
|
||||||
auto hntdll = GetModuleHandleA("ntdll.dll");
|
|
||||||
assert(hntdll);
|
|
||||||
const bool wine_runtime = GetProcAddress(hntdll, "wine_get_version");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
{
|
{
|
||||||
const UniValue result = RunCommandParseJSON("");
|
const UniValue result = RunCommandParseJSON("");
|
||||||
BOOST_CHECK(result.isNull());
|
BOOST_CHECK(result.isNull());
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
#ifdef WIN32
|
|
||||||
const UniValue result = RunCommandParseJSON("cmd.exe /c echo {\"success\": true}");
|
|
||||||
#else
|
|
||||||
const UniValue result = RunCommandParseJSON("echo \"{\"success\": true}\"");
|
const UniValue result = RunCommandParseJSON("echo \"{\"success\": true}\"");
|
||||||
#endif
|
|
||||||
BOOST_CHECK(result.isObject());
|
BOOST_CHECK(result.isObject());
|
||||||
const UniValue& success = result.find_value("success");
|
const UniValue& success = result.find_value("success");
|
||||||
BOOST_CHECK(!success.isNull());
|
BOOST_CHECK(!success.isNull());
|
||||||
@ -53,11 +42,7 @@ BOOST_AUTO_TEST_CASE(run_command)
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
// An invalid command is handled by Boost
|
// An invalid command is handled by Boost
|
||||||
#ifdef WIN32
|
|
||||||
const int expected_error{wine_runtime ? 6 : 2};
|
|
||||||
#else
|
|
||||||
const int expected_error{2};
|
const int expected_error{2};
|
||||||
#endif
|
|
||||||
BOOST_CHECK_EXCEPTION(RunCommandParseJSON("invalid_command"), boost::process::process_error, [&](const boost::process::process_error& e) {
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON("invalid_command"), boost::process::process_error, [&](const boost::process::process_error& e) {
|
||||||
BOOST_CHECK(std::string(e.what()).find("RunCommandParseJSON error:") == std::string::npos);
|
BOOST_CHECK(std::string(e.what()).find("RunCommandParseJSON error:") == std::string::npos);
|
||||||
BOOST_CHECK_EQUAL(e.code().value(), expected_error);
|
BOOST_CHECK_EQUAL(e.code().value(), expected_error);
|
||||||
@ -66,11 +51,7 @@ BOOST_AUTO_TEST_CASE(run_command)
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Return non-zero exit code, no output to stderr
|
// Return non-zero exit code, no output to stderr
|
||||||
#ifdef WIN32
|
|
||||||
const std::string command{"cmd.exe /c exit 1"};
|
|
||||||
#else
|
|
||||||
const std::string command{"false"};
|
const std::string command{"false"};
|
||||||
#endif
|
|
||||||
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
||||||
const std::string what{e.what()};
|
const std::string what{e.what()};
|
||||||
BOOST_CHECK(what.find(strprintf("RunCommandParseJSON error: process(%s) returned 1: \n", command)) != std::string::npos);
|
BOOST_CHECK(what.find(strprintf("RunCommandParseJSON error: process(%s) returned 1: \n", command)) != std::string::npos);
|
||||||
@ -79,13 +60,8 @@ BOOST_AUTO_TEST_CASE(run_command)
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Return non-zero exit code, with error message for stderr
|
// Return non-zero exit code, with error message for stderr
|
||||||
#ifdef WIN32
|
|
||||||
const std::string command{"cmd.exe /c dir nosuchfile"};
|
|
||||||
const std::string expected{wine_runtime ? "File not found." : "File Not Found"};
|
|
||||||
#else
|
|
||||||
const std::string command{"ls nosuchfile"};
|
const std::string command{"ls nosuchfile"};
|
||||||
const std::string expected{"No such file or directory"};
|
const std::string expected{"No such file or directory"};
|
||||||
#endif
|
|
||||||
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, [&](const std::runtime_error& e) {
|
||||||
const std::string what(e.what());
|
const std::string what(e.what());
|
||||||
BOOST_CHECK(what.find(strprintf("RunCommandParseJSON error: process(%s) returned", command)) != std::string::npos);
|
BOOST_CHECK(what.find(strprintf("RunCommandParseJSON error: process(%s) returned", command)) != std::string::npos);
|
||||||
@ -95,15 +71,10 @@ BOOST_AUTO_TEST_CASE(run_command)
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Unable to parse JSON
|
// Unable to parse JSON
|
||||||
#ifdef WIN32
|
|
||||||
const std::string command{"cmd.exe /c echo {"};
|
|
||||||
#else
|
|
||||||
const std::string command{"echo {"};
|
const std::string command{"echo {"};
|
||||||
#endif
|
|
||||||
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, HasReason("Unable to parse JSON: {"));
|
BOOST_CHECK_EXCEPTION(RunCommandParseJSON(command), std::runtime_error, HasReason("Unable to parse JSON: {"));
|
||||||
}
|
}
|
||||||
// Test std::in, except for Windows
|
// Test std::in
|
||||||
#ifndef WIN32
|
|
||||||
{
|
{
|
||||||
const UniValue result = RunCommandParseJSON("cat", "{\"success\": true}");
|
const UniValue result = RunCommandParseJSON("cat", "{\"success\": true}");
|
||||||
BOOST_CHECK(result.isObject());
|
BOOST_CHECK(result.isObject());
|
||||||
@ -111,7 +82,6 @@ BOOST_AUTO_TEST_CASE(run_command)
|
|||||||
BOOST_CHECK(!success.isNull());
|
BOOST_CHECK(!success.isNull());
|
||||||
BOOST_CHECK_EQUAL(success.get_bool(), true);
|
BOOST_CHECK_EQUAL(success.get_bool(), true);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif // ENABLE_EXTERNAL_SIGNER
|
#endif // ENABLE_EXTERNAL_SIGNER
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user