mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Format first-party source according to .clang-format
This commit is contained in:
committed by
manojsdoshi
parent
65dfc5d19e
commit
50760c6935
@@ -17,10 +17,10 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include <test/nodestore/TestBase.h>
|
||||
#include <ripple/beast/utility/temp_dir.h>
|
||||
#include <ripple/nodestore/DummyScheduler.h>
|
||||
#include <ripple/nodestore/Manager.h>
|
||||
#include <ripple/beast/utility/temp_dir.h>
|
||||
#include <test/nodestore/TestBase.h>
|
||||
#include <test/unit_test/SuiteJournal.h>
|
||||
|
||||
namespace ripple {
|
||||
@@ -31,130 +31,131 @@ class Database_test : public TestBase
|
||||
test::SuiteJournal journal_;
|
||||
|
||||
public:
|
||||
Database_test ()
|
||||
: journal_ ("Database_test", *this)
|
||||
{ }
|
||||
Database_test() : journal_("Database_test", *this)
|
||||
{
|
||||
}
|
||||
|
||||
void testImport (std::string const& destBackendType,
|
||||
std::string const& srcBackendType, std::int64_t seedValue)
|
||||
void
|
||||
testImport(
|
||||
std::string const& destBackendType,
|
||||
std::string const& srcBackendType,
|
||||
std::int64_t seedValue)
|
||||
{
|
||||
DummyScheduler scheduler;
|
||||
RootStoppable parent ("TestRootStoppable");
|
||||
RootStoppable parent("TestRootStoppable");
|
||||
|
||||
beast::temp_dir node_db;
|
||||
Section srcParams;
|
||||
srcParams.set ("type", srcBackendType);
|
||||
srcParams.set ("path", node_db.path());
|
||||
srcParams.set("type", srcBackendType);
|
||||
srcParams.set("path", node_db.path());
|
||||
|
||||
// Create a batch
|
||||
auto batch = createPredictableBatch (
|
||||
numObjectsToTest, seedValue);
|
||||
auto batch = createPredictableBatch(numObjectsToTest, seedValue);
|
||||
|
||||
// Write to source db
|
||||
{
|
||||
std::unique_ptr <Database> src = Manager::instance().make_Database (
|
||||
std::unique_ptr<Database> src = Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, srcParams, journal_);
|
||||
storeBatch (*src, batch);
|
||||
storeBatch(*src, batch);
|
||||
}
|
||||
|
||||
Batch copy;
|
||||
|
||||
{
|
||||
// Re-open the db
|
||||
std::unique_ptr <Database> src = Manager::instance().make_Database (
|
||||
std::unique_ptr<Database> src = Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, srcParams, journal_);
|
||||
|
||||
// Set up the destination database
|
||||
beast::temp_dir dest_db;
|
||||
Section destParams;
|
||||
destParams.set ("type", destBackendType);
|
||||
destParams.set ("path", dest_db.path());
|
||||
destParams.set("type", destBackendType);
|
||||
destParams.set("path", dest_db.path());
|
||||
|
||||
std::unique_ptr <Database> dest = Manager::instance().make_Database (
|
||||
std::unique_ptr<Database> dest = Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, destParams, journal_);
|
||||
|
||||
testcase ("import into '" + destBackendType +
|
||||
"' from '" + srcBackendType + "'");
|
||||
testcase(
|
||||
"import into '" + destBackendType + "' from '" +
|
||||
srcBackendType + "'");
|
||||
|
||||
// Do the import
|
||||
dest->import (*src);
|
||||
dest->import(*src);
|
||||
|
||||
// Get the results of the import
|
||||
fetchCopyOfBatch (*dest, ©, batch);
|
||||
fetchCopyOfBatch(*dest, ©, batch);
|
||||
}
|
||||
|
||||
// Canonicalize the source and destination batches
|
||||
std::sort (batch.begin (), batch.end (), LessThan{});
|
||||
std::sort (copy.begin (), copy.end (), LessThan{});
|
||||
BEAST_EXPECT(areBatchesEqual (batch, copy));
|
||||
std::sort(batch.begin(), batch.end(), LessThan{});
|
||||
std::sort(copy.begin(), copy.end(), LessThan{});
|
||||
BEAST_EXPECT(areBatchesEqual(batch, copy));
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
void testNodeStore (std::string const& type,
|
||||
bool const testPersistence,
|
||||
std::int64_t const seedValue,
|
||||
int numObjsToTest = 2000)
|
||||
void
|
||||
testNodeStore(
|
||||
std::string const& type,
|
||||
bool const testPersistence,
|
||||
std::int64_t const seedValue,
|
||||
int numObjsToTest = 2000)
|
||||
{
|
||||
DummyScheduler scheduler;
|
||||
RootStoppable parent ("TestRootStoppable");
|
||||
RootStoppable parent("TestRootStoppable");
|
||||
|
||||
std::string s = "NodeStore backend '" + type + "'";
|
||||
|
||||
testcase (s);
|
||||
testcase(s);
|
||||
|
||||
beast::temp_dir node_db;
|
||||
Section nodeParams;
|
||||
nodeParams.set ("type", type);
|
||||
nodeParams.set ("path", node_db.path());
|
||||
nodeParams.set("type", type);
|
||||
nodeParams.set("path", node_db.path());
|
||||
|
||||
beast::xor_shift_engine rng (seedValue);
|
||||
beast::xor_shift_engine rng(seedValue);
|
||||
|
||||
// Create a batch
|
||||
auto batch = createPredictableBatch (
|
||||
numObjsToTest, rng());
|
||||
auto batch = createPredictableBatch(numObjsToTest, rng());
|
||||
|
||||
{
|
||||
// Open the database
|
||||
std::unique_ptr <Database> db = Manager::instance().make_Database (
|
||||
std::unique_ptr<Database> db = Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, nodeParams, journal_);
|
||||
|
||||
// Write the batch
|
||||
storeBatch (*db, batch);
|
||||
storeBatch(*db, batch);
|
||||
|
||||
{
|
||||
// Read it back in
|
||||
Batch copy;
|
||||
fetchCopyOfBatch (*db, ©, batch);
|
||||
BEAST_EXPECT(areBatchesEqual (batch, copy));
|
||||
fetchCopyOfBatch(*db, ©, batch);
|
||||
BEAST_EXPECT(areBatchesEqual(batch, copy));
|
||||
}
|
||||
|
||||
{
|
||||
// Reorder and read the copy again
|
||||
std::shuffle (
|
||||
batch.begin(),
|
||||
batch.end(),
|
||||
rng);
|
||||
std::shuffle(batch.begin(), batch.end(), rng);
|
||||
Batch copy;
|
||||
fetchCopyOfBatch (*db, ©, batch);
|
||||
BEAST_EXPECT(areBatchesEqual (batch, copy));
|
||||
fetchCopyOfBatch(*db, ©, batch);
|
||||
BEAST_EXPECT(areBatchesEqual(batch, copy));
|
||||
}
|
||||
}
|
||||
|
||||
if (testPersistence)
|
||||
{
|
||||
// Re-open the database without the ephemeral DB
|
||||
std::unique_ptr <Database> db = Manager::instance().make_Database (
|
||||
std::unique_ptr<Database> db = Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, nodeParams, journal_);
|
||||
|
||||
// Read it back in
|
||||
Batch copy;
|
||||
fetchCopyOfBatch (*db, ©, batch);
|
||||
fetchCopyOfBatch(*db, ©, batch);
|
||||
|
||||
// Canonicalize the source and destination batches
|
||||
std::sort (batch.begin (), batch.end (), LessThan{});
|
||||
std::sort (copy.begin (), copy.end (), LessThan{});
|
||||
BEAST_EXPECT(areBatchesEqual (batch, copy));
|
||||
std::sort(batch.begin(), batch.end(), LessThan{});
|
||||
std::sort(copy.begin(), copy.end(), LessThan{});
|
||||
BEAST_EXPECT(areBatchesEqual(batch, copy));
|
||||
}
|
||||
|
||||
if (type == "memory")
|
||||
@@ -165,7 +166,8 @@ public:
|
||||
std::unique_ptr<Database> db =
|
||||
Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, nodeParams, journal_);
|
||||
BEAST_EXPECT(db->earliestLedgerSeq() == XRP_LEDGER_EARLIEST_SEQ);
|
||||
BEAST_EXPECT(
|
||||
db->earliestLedgerSeq() == XRP_LEDGER_EARLIEST_SEQ);
|
||||
}
|
||||
|
||||
// Set an invalid earliest ledger sequence
|
||||
@@ -178,8 +180,8 @@ public:
|
||||
}
|
||||
catch (std::runtime_error const& e)
|
||||
{
|
||||
BEAST_EXPECT(std::strcmp(e.what(),
|
||||
"Invalid earliest_seq") == 0);
|
||||
BEAST_EXPECT(
|
||||
std::strcmp(e.what(), "Invalid earliest_seq") == 0);
|
||||
}
|
||||
|
||||
{
|
||||
@@ -193,58 +195,59 @@ public:
|
||||
BEAST_EXPECT(db->earliestLedgerSeq() == 1);
|
||||
}
|
||||
|
||||
|
||||
// Create another database that attempts to set the value again
|
||||
try
|
||||
{
|
||||
// Set to default earliest ledger sequence
|
||||
nodeParams.set("earliest_seq",
|
||||
std::to_string(XRP_LEDGER_EARLIEST_SEQ));
|
||||
nodeParams.set(
|
||||
"earliest_seq", std::to_string(XRP_LEDGER_EARLIEST_SEQ));
|
||||
std::unique_ptr<Database> db2 =
|
||||
Manager::instance().make_Database(
|
||||
"test", scheduler, 2, parent, nodeParams, journal_);
|
||||
}
|
||||
catch (std::runtime_error const& e)
|
||||
{
|
||||
BEAST_EXPECT(std::strcmp(e.what(),
|
||||
"earliest_seq set more than once") == 0);
|
||||
BEAST_EXPECT(
|
||||
std::strcmp(e.what(), "earliest_seq set more than once") ==
|
||||
0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
void run () override
|
||||
void
|
||||
run() override
|
||||
{
|
||||
std::int64_t const seedValue = 50;
|
||||
|
||||
testNodeStore ("memory", false, seedValue);
|
||||
testNodeStore("memory", false, seedValue);
|
||||
|
||||
// Persistent backend tests
|
||||
{
|
||||
testNodeStore ("nudb", true, seedValue);
|
||||
testNodeStore("nudb", true, seedValue);
|
||||
|
||||
#if RIPPLE_ROCKSDB_AVAILABLE
|
||||
testNodeStore ("rocksdb", true, seedValue);
|
||||
#endif
|
||||
#if RIPPLE_ROCKSDB_AVAILABLE
|
||||
testNodeStore("rocksdb", true, seedValue);
|
||||
#endif
|
||||
}
|
||||
|
||||
// Import tests
|
||||
{
|
||||
testImport ("nudb", "nudb", seedValue);
|
||||
testImport("nudb", "nudb", seedValue);
|
||||
|
||||
#if RIPPLE_ROCKSDB_AVAILABLE
|
||||
testImport ("rocksdb", "rocksdb", seedValue);
|
||||
#endif
|
||||
#if RIPPLE_ROCKSDB_AVAILABLE
|
||||
testImport("rocksdb", "rocksdb", seedValue);
|
||||
#endif
|
||||
|
||||
#if RIPPLE_ENABLE_SQLITE_BACKEND_TESTS
|
||||
testImport ("sqlite", "sqlite", seedValue);
|
||||
#endif
|
||||
#if RIPPLE_ENABLE_SQLITE_BACKEND_TESTS
|
||||
testImport("sqlite", "sqlite", seedValue);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE(Database,NodeStore,ripple);
|
||||
BEAST_DEFINE_TESTSUITE(Database, NodeStore, ripple);
|
||||
|
||||
}
|
||||
}
|
||||
} // namespace NodeStore
|
||||
} // namespace ripple
|
||||
|
||||
Reference in New Issue
Block a user