mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#include <test/jtx.h>
|
|
#include <test/jtx/CaptureLogs.h>
|
|
#include <test/jtx/Env.h>
|
|
|
|
#include <xrpl/core/HashRouter.h>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
|
|
class NetworkOPs_test : public beast::unit_test::suite
|
|
{
|
|
public:
|
|
void
|
|
run() override
|
|
{
|
|
testAllBadHeldTransactions();
|
|
}
|
|
|
|
void
|
|
testAllBadHeldTransactions()
|
|
{
|
|
// All transactions are already marked as SF_BAD, and we should be able
|
|
// to handle the case properly without an assertion failure
|
|
testcase("No valid transactions in batch");
|
|
|
|
std::string logs;
|
|
|
|
{
|
|
using namespace jtx;
|
|
auto const alice = Account{"alice"};
|
|
Env env{
|
|
*this, envconfig(), std::make_unique<CaptureLogs>(&logs), beast::severities::kAll};
|
|
env.memoize(env.master);
|
|
env.memoize(alice);
|
|
|
|
auto const jtx = env.jt(ticket::create(alice, 1), seq(1), fee(10));
|
|
|
|
auto transactionId = jtx.stx->getTransactionID();
|
|
env.app().getHashRouter().setFlags(transactionId, HashRouterFlags::HELD);
|
|
|
|
env(jtx, json(jss::Sequence, 1), ter(terNO_ACCOUNT));
|
|
|
|
env.app().getHashRouter().setFlags(transactionId, HashRouterFlags::BAD);
|
|
|
|
env.close();
|
|
}
|
|
|
|
BEAST_EXPECT(logs.find("No transaction to process!") != std::string::npos);
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(NetworkOPs, app, xrpl);
|
|
|
|
} // namespace test
|
|
} // namespace xrpl
|