mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-04 20:05:51 +00:00
108 lines
3.4 KiB
C++
108 lines
3.4 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2025, the clio developers.
|
|
|
|
Permission to use, copy, modify, and 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 "etlng/Models.hpp"
|
|
#include "etlng/impl/ext/Core.hpp"
|
|
#include "util/BinaryTestObject.hpp"
|
|
#include "util/MockBackendTestFixture.hpp"
|
|
#include "util/MockPrometheus.hpp"
|
|
#include "util/TestObject.hpp"
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
#include <xrpl/protocol/TxFormats.h>
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
using namespace etlng::impl;
|
|
using namespace data;
|
|
|
|
namespace {
|
|
constinit auto const kSEQ = 123u;
|
|
constinit auto const kLEDGER_HASH = "4BC50C9B0D8515D3EAAE1E74B29A95804346C491EE1A95BF25E4AAB854A6A652";
|
|
|
|
auto
|
|
createTestData()
|
|
{
|
|
auto transactions = std::vector{
|
|
util::createTransaction(ripple::TxType::ttNFTOKEN_BURN),
|
|
util::createTransaction(ripple::TxType::ttNFTOKEN_BURN),
|
|
util::createTransaction(ripple::TxType::ttNFTOKEN_CREATE_OFFER),
|
|
};
|
|
|
|
auto const header = createLedgerHeader(kLEDGER_HASH, kSEQ);
|
|
return etlng::model::LedgerData{
|
|
.transactions = std::move(transactions),
|
|
.objects = {},
|
|
.successors = {},
|
|
.edgeKeys = {},
|
|
.header = header,
|
|
.rawHeader = {},
|
|
.seq = kSEQ
|
|
};
|
|
}
|
|
|
|
} // namespace
|
|
|
|
struct CoreExtTests : util::prometheus::WithPrometheus, MockBackendTest {
|
|
protected:
|
|
etlng::impl::CoreExt ext_{backend_};
|
|
};
|
|
|
|
TEST_F(CoreExtTests, OnLedgerDataWritesLedgerAndTransactions)
|
|
{
|
|
auto const data = createTestData();
|
|
|
|
EXPECT_CALL(*backend_, writeLedger(testing::_, auto{data.rawHeader}));
|
|
EXPECT_CALL(*backend_, writeAccountTransaction).Times(data.transactions.size());
|
|
EXPECT_CALL(*backend_, writeTransaction).Times(data.transactions.size());
|
|
|
|
ext_.onLedgerData(data);
|
|
}
|
|
|
|
TEST_F(CoreExtTests, OnInitialDataWritesLedgerAndTransactions)
|
|
{
|
|
auto const data = createTestData();
|
|
|
|
EXPECT_CALL(*backend_, writeLedger(testing::_, auto{data.rawHeader}));
|
|
EXPECT_CALL(*backend_, writeAccountTransaction).Times(data.transactions.size());
|
|
EXPECT_CALL(*backend_, writeTransaction).Times(data.transactions.size());
|
|
|
|
ext_.onInitialData(data);
|
|
}
|
|
|
|
TEST_F(CoreExtTests, OnInitialObjectWritesLedgerObject)
|
|
{
|
|
auto const data = util::createObject();
|
|
|
|
EXPECT_CALL(*backend_, writeLedgerObject(auto{data.keyRaw}, kSEQ, auto{data.dataRaw}));
|
|
|
|
ext_.onInitialObject(kSEQ, data);
|
|
}
|
|
|
|
TEST_F(CoreExtTests, OnObjectWritesLedgerObject)
|
|
{
|
|
auto const data = util::createObject();
|
|
|
|
EXPECT_CALL(*backend_, writeLedgerObject(auto{data.keyRaw}, kSEQ, auto{data.dataRaw}));
|
|
|
|
ext_.onObject(kSEQ, data);
|
|
}
|