mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-05 17:56:49 +00:00
307 lines
10 KiB
C++
307 lines
10 KiB
C++
// Auto-generated unit tests for transaction XChainAddAccountCreateAttestation
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <protocol_autogen/TestHelpers.h>
|
|
|
|
#include <xrpl/protocol/SecretKey.h>
|
|
#include <xrpl/protocol/Seed.h>
|
|
#include <xrpl/protocol/STTx.h>
|
|
#include <xrpl/protocol_autogen/transactions/XChainAddAccountCreateAttestation.h>
|
|
#include <xrpl/protocol_autogen/transactions/AccountSet.h>
|
|
|
|
#include <string>
|
|
|
|
namespace xrpl::transactions {
|
|
|
|
// 1 & 4) Set fields via builder setters, build, then read them back via
|
|
// wrapper getters. After build(), validate() should succeed.
|
|
TEST(TransactionsXChainAddAccountCreateAttestationTests, BuilderSettersRoundTrip)
|
|
{
|
|
// Generate a deterministic keypair for signing
|
|
auto const [publicKey, secretKey] =
|
|
generateKeyPair(KeyType::Secp256k1, generateSeed("testXChainAddAccountCreateAttestation"));
|
|
|
|
// Common transaction fields
|
|
auto const accountValue = calcAccountID(publicKey);
|
|
std::uint32_t const sequenceValue = 1;
|
|
auto const feeValue = canonical_AMOUNT();
|
|
|
|
// Transaction-specific field values
|
|
auto const xChainBridgeValue = canonical_XCHAIN_BRIDGE();
|
|
auto const attestationSignerAccountValue = canonical_ACCOUNT();
|
|
auto const publicKeyValue = canonical_VL();
|
|
auto const signatureValue = canonical_VL();
|
|
auto const otherChainSourceValue = canonical_ACCOUNT();
|
|
auto const amountValue = canonical_AMOUNT();
|
|
auto const attestationRewardAccountValue = canonical_ACCOUNT();
|
|
auto const wasLockingChainSendValue = canonical_UINT8();
|
|
auto const xChainAccountCreateCountValue = canonical_UINT64();
|
|
auto const destinationValue = canonical_ACCOUNT();
|
|
auto const signatureRewardValue = canonical_AMOUNT();
|
|
|
|
XChainAddAccountCreateAttestationBuilder builder{
|
|
accountValue,
|
|
xChainBridgeValue,
|
|
attestationSignerAccountValue,
|
|
publicKeyValue,
|
|
signatureValue,
|
|
otherChainSourceValue,
|
|
amountValue,
|
|
attestationRewardAccountValue,
|
|
wasLockingChainSendValue,
|
|
xChainAccountCreateCountValue,
|
|
destinationValue,
|
|
signatureRewardValue,
|
|
sequenceValue,
|
|
feeValue
|
|
};
|
|
|
|
// Set optional fields
|
|
|
|
auto tx = builder.build(publicKey, secretKey);
|
|
|
|
std::string reason;
|
|
EXPECT_TRUE(tx.validate(reason)) << reason;
|
|
|
|
// Verify signing was applied
|
|
EXPECT_FALSE(tx.getSigningPubKey().empty());
|
|
EXPECT_TRUE(tx.hasTxnSignature());
|
|
|
|
// Verify common fields
|
|
EXPECT_EQ(tx.getAccount(), accountValue);
|
|
EXPECT_EQ(tx.getSequence(), sequenceValue);
|
|
EXPECT_EQ(tx.getFee(), feeValue);
|
|
|
|
// Verify required fields
|
|
{
|
|
auto const& expected = xChainBridgeValue;
|
|
auto const actual = tx.getXChainBridge();
|
|
expectEqualField(expected, actual, "sfXChainBridge");
|
|
}
|
|
|
|
{
|
|
auto const& expected = attestationSignerAccountValue;
|
|
auto const actual = tx.getAttestationSignerAccount();
|
|
expectEqualField(expected, actual, "sfAttestationSignerAccount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = publicKeyValue;
|
|
auto const actual = tx.getPublicKey();
|
|
expectEqualField(expected, actual, "sfPublicKey");
|
|
}
|
|
|
|
{
|
|
auto const& expected = signatureValue;
|
|
auto const actual = tx.getSignature();
|
|
expectEqualField(expected, actual, "sfSignature");
|
|
}
|
|
|
|
{
|
|
auto const& expected = otherChainSourceValue;
|
|
auto const actual = tx.getOtherChainSource();
|
|
expectEqualField(expected, actual, "sfOtherChainSource");
|
|
}
|
|
|
|
{
|
|
auto const& expected = amountValue;
|
|
auto const actual = tx.getAmount();
|
|
expectEqualField(expected, actual, "sfAmount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = attestationRewardAccountValue;
|
|
auto const actual = tx.getAttestationRewardAccount();
|
|
expectEqualField(expected, actual, "sfAttestationRewardAccount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = wasLockingChainSendValue;
|
|
auto const actual = tx.getWasLockingChainSend();
|
|
expectEqualField(expected, actual, "sfWasLockingChainSend");
|
|
}
|
|
|
|
{
|
|
auto const& expected = xChainAccountCreateCountValue;
|
|
auto const actual = tx.getXChainAccountCreateCount();
|
|
expectEqualField(expected, actual, "sfXChainAccountCreateCount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = destinationValue;
|
|
auto const actual = tx.getDestination();
|
|
expectEqualField(expected, actual, "sfDestination");
|
|
}
|
|
|
|
{
|
|
auto const& expected = signatureRewardValue;
|
|
auto const actual = tx.getSignatureReward();
|
|
expectEqualField(expected, actual, "sfSignatureReward");
|
|
}
|
|
|
|
// Verify optional fields
|
|
}
|
|
|
|
// 2 & 4) Start from an STTx, construct a builder from it, build a new wrapper,
|
|
// and verify all fields match.
|
|
TEST(TransactionsXChainAddAccountCreateAttestationTests, BuilderFromStTxRoundTrip)
|
|
{
|
|
// Generate a deterministic keypair for signing
|
|
auto const [publicKey, secretKey] =
|
|
generateKeyPair(KeyType::Secp256k1, generateSeed("testXChainAddAccountCreateAttestationFromTx"));
|
|
|
|
// Common transaction fields
|
|
auto const accountValue = calcAccountID(publicKey);
|
|
std::uint32_t const sequenceValue = 2;
|
|
auto const feeValue = canonical_AMOUNT();
|
|
|
|
// Transaction-specific field values
|
|
auto const xChainBridgeValue = canonical_XCHAIN_BRIDGE();
|
|
auto const attestationSignerAccountValue = canonical_ACCOUNT();
|
|
auto const publicKeyValue = canonical_VL();
|
|
auto const signatureValue = canonical_VL();
|
|
auto const otherChainSourceValue = canonical_ACCOUNT();
|
|
auto const amountValue = canonical_AMOUNT();
|
|
auto const attestationRewardAccountValue = canonical_ACCOUNT();
|
|
auto const wasLockingChainSendValue = canonical_UINT8();
|
|
auto const xChainAccountCreateCountValue = canonical_UINT64();
|
|
auto const destinationValue = canonical_ACCOUNT();
|
|
auto const signatureRewardValue = canonical_AMOUNT();
|
|
|
|
// Build an initial transaction
|
|
XChainAddAccountCreateAttestationBuilder initialBuilder{
|
|
accountValue,
|
|
xChainBridgeValue,
|
|
attestationSignerAccountValue,
|
|
publicKeyValue,
|
|
signatureValue,
|
|
otherChainSourceValue,
|
|
amountValue,
|
|
attestationRewardAccountValue,
|
|
wasLockingChainSendValue,
|
|
xChainAccountCreateCountValue,
|
|
destinationValue,
|
|
signatureRewardValue,
|
|
sequenceValue,
|
|
feeValue
|
|
};
|
|
|
|
|
|
auto initialTx = initialBuilder.build(publicKey, secretKey);
|
|
|
|
// Create builder from existing STTx
|
|
XChainAddAccountCreateAttestationBuilder builderFromTx{initialTx.getSTTx()};
|
|
|
|
auto rebuiltTx = builderFromTx.build(publicKey, secretKey);
|
|
|
|
std::string reason;
|
|
EXPECT_TRUE(rebuiltTx.validate(reason)) << reason;
|
|
|
|
// Verify common fields
|
|
EXPECT_EQ(rebuiltTx.getAccount(), accountValue);
|
|
EXPECT_EQ(rebuiltTx.getSequence(), sequenceValue);
|
|
EXPECT_EQ(rebuiltTx.getFee(), feeValue);
|
|
|
|
// Verify required fields
|
|
{
|
|
auto const& expected = xChainBridgeValue;
|
|
auto const actual = rebuiltTx.getXChainBridge();
|
|
expectEqualField(expected, actual, "sfXChainBridge");
|
|
}
|
|
|
|
{
|
|
auto const& expected = attestationSignerAccountValue;
|
|
auto const actual = rebuiltTx.getAttestationSignerAccount();
|
|
expectEqualField(expected, actual, "sfAttestationSignerAccount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = publicKeyValue;
|
|
auto const actual = rebuiltTx.getPublicKey();
|
|
expectEqualField(expected, actual, "sfPublicKey");
|
|
}
|
|
|
|
{
|
|
auto const& expected = signatureValue;
|
|
auto const actual = rebuiltTx.getSignature();
|
|
expectEqualField(expected, actual, "sfSignature");
|
|
}
|
|
|
|
{
|
|
auto const& expected = otherChainSourceValue;
|
|
auto const actual = rebuiltTx.getOtherChainSource();
|
|
expectEqualField(expected, actual, "sfOtherChainSource");
|
|
}
|
|
|
|
{
|
|
auto const& expected = amountValue;
|
|
auto const actual = rebuiltTx.getAmount();
|
|
expectEqualField(expected, actual, "sfAmount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = attestationRewardAccountValue;
|
|
auto const actual = rebuiltTx.getAttestationRewardAccount();
|
|
expectEqualField(expected, actual, "sfAttestationRewardAccount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = wasLockingChainSendValue;
|
|
auto const actual = rebuiltTx.getWasLockingChainSend();
|
|
expectEqualField(expected, actual, "sfWasLockingChainSend");
|
|
}
|
|
|
|
{
|
|
auto const& expected = xChainAccountCreateCountValue;
|
|
auto const actual = rebuiltTx.getXChainAccountCreateCount();
|
|
expectEqualField(expected, actual, "sfXChainAccountCreateCount");
|
|
}
|
|
|
|
{
|
|
auto const& expected = destinationValue;
|
|
auto const actual = rebuiltTx.getDestination();
|
|
expectEqualField(expected, actual, "sfDestination");
|
|
}
|
|
|
|
{
|
|
auto const& expected = signatureRewardValue;
|
|
auto const actual = rebuiltTx.getSignatureReward();
|
|
expectEqualField(expected, actual, "sfSignatureReward");
|
|
}
|
|
|
|
// Verify optional fields
|
|
}
|
|
|
|
// 3) Verify wrapper throws when constructed from wrong transaction type.
|
|
TEST(TransactionsXChainAddAccountCreateAttestationTests, WrapperThrowsOnWrongTxType)
|
|
{
|
|
// Build a valid transaction of a different type
|
|
auto const [pk, sk] =
|
|
generateKeyPair(KeyType::Secp256k1, generateSeed("testWrongType"));
|
|
auto const account = calcAccountID(pk);
|
|
|
|
AccountSetBuilder wrongBuilder{account, 1, canonical_AMOUNT()};
|
|
auto wrongTx = wrongBuilder.build(pk, sk);
|
|
|
|
EXPECT_THROW(XChainAddAccountCreateAttestation{wrongTx.getSTTx()}, std::runtime_error);
|
|
}
|
|
|
|
// 4) Verify builder throws when constructed from wrong transaction type.
|
|
TEST(TransactionsXChainAddAccountCreateAttestationTests, BuilderThrowsOnWrongTxType)
|
|
{
|
|
// Build a valid transaction of a different type
|
|
auto const [pk, sk] =
|
|
generateKeyPair(KeyType::Secp256k1, generateSeed("testWrongTypeBuilder"));
|
|
auto const account = calcAccountID(pk);
|
|
|
|
AccountSetBuilder wrongBuilder{account, 1, canonical_AMOUNT()};
|
|
auto wrongTx = wrongBuilder.build(pk, sk);
|
|
|
|
EXPECT_THROW(XChainAddAccountCreateAttestationBuilder{wrongTx.getSTTx()}, std::runtime_error);
|
|
}
|
|
|
|
|
|
}
|