Files
xahaud/src/test/app/LedgerLoad_test.cpp
Chenna Keshava B S 7b562e2312 Remove default ctors from SecretKey and PublicKey: (#4607)
* It is now an invariant that all constructed Public Keys are valid,
  non-empty and contain 33 bytes of data.
* Additionally, the memory footprint of the PublicKey class is reduced.
  The size_ data member is declared as static.
* Distinguish and identify the PublisherList retrieved from the local
  config file, versus the ones obtained from other validators.
* Fixes #2942
2026-02-20 07:05:25 +09:00

266 lines
8.4 KiB
C++

//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2012-2017 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#include <ripple/beast/unit_test.h>
#include <ripple/beast/utility/temp_dir.h>
#include <ripple/protocol/SField.h>
#include <ripple/protocol/jss.h>
#include <test/jtx.h>
#include <test/jtx/Env.h>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem.hpp>
#include <fstream>
namespace ripple {
class LedgerLoad_test : public beast::unit_test::suite
{
auto static ledgerConfig(
std::unique_ptr<Config> cfg,
std::string const& dbPath,
std::string const& ledger,
Config::StartUpType type)
{
cfg->START_LEDGER = ledger;
cfg->START_UP = type;
assert(!dbPath.empty());
cfg->legacy("database_path", dbPath);
auto& sectionNode = cfg->section(ConfigSection::nodeDatabase());
sectionNode.set("type", "memory");
cfg->overwrite(SECTION_RELATIONAL_DB, "backend", "sqlite");
return cfg;
}
// setup for test cases
struct SetupData
{
std::string const dbPath;
std::string ledgerFile{};
Json::Value ledger{};
Json::Value hashes{};
};
SetupData
setupLedger(beast::temp_dir const& td)
{
using namespace test::jtx;
SetupData retval = {td.path()};
retval.ledgerFile = td.file("ledgerdata.json");
Env env{*this, envconfig([](std::unique_ptr<Config> cfg) {
auto& sectionNode =
cfg->section(ConfigSection::nodeDatabase());
sectionNode.set("type", "memory");
cfg->overwrite(SECTION_RELATIONAL_DB, "backend", "sqlite");
return cfg;
})};
std::optional<Account> prev;
for (auto i = 0; i < 20; ++i)
{
Account acct{"A" + std::to_string(i)};
env.fund(XRP(10000), acct);
env.close();
if (i > 0 && BEAST_EXPECT(prev))
{
env.trust(acct["USD"](1000), *prev);
env(pay(acct, *prev, acct["USD"](5)));
}
env(offer(acct, XRP(100), acct["USD"](1)));
env.close();
prev.emplace(std::move(acct));
}
retval.ledger = env.rpc("ledger", "current", "full")[jss::result];
BEAST_EXPECT(
retval.ledger[jss::ledger][jss::accountState].size() == 102);
retval.hashes = [&] {
for (auto const& it : retval.ledger[jss::ledger][jss::accountState])
{
if (it[sfLedgerEntryType.fieldName] == jss::LedgerHashes)
return it[sfHashes.fieldName];
}
return Json::Value{};
}();
BEAST_EXPECT(retval.hashes.size() == 41);
// write this ledger data to a file.
std::ofstream o(retval.ledgerFile, std::ios::out | std::ios::trunc);
o << to_string(retval.ledger);
o.close();
return retval;
}
void
testLoad(SetupData const& sd)
{
testcase("Load a saved ledger");
using namespace test::jtx;
// create a new env with the ledger file specified for startup
Env env(
*this,
envconfig(
ledgerConfig, sd.dbPath, sd.ledgerFile, Config::LOAD_FILE),
nullptr,
beast::severities::kDisabled);
auto jrb = env.rpc("ledger", "current", "full")[jss::result];
BEAST_EXPECT(
sd.ledger[jss::ledger][jss::accountState].size() ==
jrb[jss::ledger][jss::accountState].size());
}
void
testBadFiles(SetupData const& sd)
{
testcase("Load ledger: Bad Files");
using namespace test::jtx;
using namespace boost::filesystem;
// empty path
except([&] {
Env env(
*this,
envconfig(ledgerConfig, sd.dbPath, "", Config::LOAD_FILE),
nullptr,
beast::severities::kDisabled);
});
// file does not exist
except([&] {
Env env(
*this,
envconfig(
ledgerConfig, sd.dbPath, "badfile.json", Config::LOAD_FILE),
nullptr,
beast::severities::kDisabled);
});
// make a corrupted version of the ledger file (last 10 bytes removed).
boost::system::error_code ec;
auto ledgerFileCorrupt =
boost::filesystem::path{sd.dbPath} / "ledgerdata_bad.json";
copy_file(
sd.ledgerFile,
ledgerFileCorrupt,
copy_options::overwrite_existing,
ec);
if (!BEAST_EXPECTS(!ec, ec.message()))
return;
auto filesize = file_size(ledgerFileCorrupt, ec);
if (!BEAST_EXPECTS(!ec, ec.message()))
return;
resize_file(ledgerFileCorrupt, filesize - 10, ec);
if (!BEAST_EXPECTS(!ec, ec.message()))
return;
except([&] {
Env env(
*this,
envconfig(
ledgerConfig,
sd.dbPath,
ledgerFileCorrupt.string(),
Config::LOAD_FILE),
nullptr,
beast::severities::kDisabled);
});
}
void
testLoadByHash(SetupData const& sd)
{
testcase("Load by hash");
using namespace test::jtx;
// create a new env with the ledger hash specified for startup
auto ledgerHash = to_string(sd.hashes[sd.hashes.size() - 1]);
boost::erase_all(ledgerHash, "\"");
Env env(
*this,
envconfig(ledgerConfig, sd.dbPath, ledgerHash, Config::LOAD),
nullptr,
beast::severities::kDisabled);
auto jrb = env.rpc("ledger", "current", "full")[jss::result];
BEAST_EXPECT(jrb[jss::ledger][jss::accountState].size() == 98);
BEAST_EXPECT(
jrb[jss::ledger][jss::accountState].size() <=
sd.ledger[jss::ledger][jss::accountState].size());
}
void
testLoadLatest(SetupData const& sd)
{
testcase("Load by keyword");
using namespace test::jtx;
// create a new env with the ledger "latest" specified for startup
Env env(
*this,
envconfig(ledgerConfig, sd.dbPath, "latest", Config::LOAD),
nullptr,
beast::severities::kDisabled);
auto jrb = env.rpc("ledger", "current", "full")[jss::result];
BEAST_EXPECT(
sd.ledger[jss::ledger][jss::accountState].size() ==
jrb[jss::ledger][jss::accountState].size());
}
void
testLoadIndex(SetupData const& sd)
{
testcase("Load by index");
using namespace test::jtx;
// create a new env with specific ledger index at startup
Env env(
*this,
envconfig(ledgerConfig, sd.dbPath, "43", Config::LOAD),
nullptr,
beast::severities::kDisabled);
auto jrb = env.rpc("ledger", "current", "full")[jss::result];
BEAST_EXPECT(
sd.ledger[jss::ledger][jss::accountState].size() ==
jrb[jss::ledger][jss::accountState].size());
}
public:
void
run() override
{
beast::temp_dir td;
auto sd = setupLedger(td);
// test cases
testLoad(sd);
testBadFiles(sd);
testLoadByHash(sd);
testLoadLatest(sd);
testLoadIndex(sd);
}
};
BEAST_DEFINE_TESTSUITE(LedgerLoad, app, ripple);
} // namespace ripple