mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Compare commits
2 Commits
ximinez/le
...
a1q123456/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4734b81302 | ||
|
|
5e0a0cbdae |
@@ -7028,6 +7028,140 @@ protected:
|
|||||||
paymentParams);
|
paymentParams);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
testLoanPayBrokerOwnerMissingTrustline()
|
||||||
|
{
|
||||||
|
testcase << "LoanPay Broker Owner Missing Trustline (PoC)";
|
||||||
|
using namespace jtx;
|
||||||
|
using namespace loan;
|
||||||
|
Account const issuer("issuer");
|
||||||
|
Account const borrower("borrower");
|
||||||
|
Account const broker("broker");
|
||||||
|
auto const IOU = issuer["IOU"];
|
||||||
|
Env env(*this, all);
|
||||||
|
env.fund(XRP(20'000), issuer, broker, borrower);
|
||||||
|
env.close();
|
||||||
|
// Set up trustlines and fund accounts
|
||||||
|
env(trust(broker, IOU(20'000'000)));
|
||||||
|
env(trust(borrower, IOU(20'000'000)));
|
||||||
|
env(pay(issuer, broker, IOU(10'000'000)));
|
||||||
|
env(pay(issuer, borrower, IOU(1'000)));
|
||||||
|
env.close();
|
||||||
|
// Create vault and broker
|
||||||
|
auto const brokerInfo = createVaultAndBroker(env, IOU, broker);
|
||||||
|
// Create a loan first (this creates debt)
|
||||||
|
auto const keylet = keylet::loan(brokerInfo.brokerID, 1);
|
||||||
|
env(set(borrower, brokerInfo.brokerID, 10'000),
|
||||||
|
sig(sfCounterpartySignature, broker),
|
||||||
|
loanServiceFee(IOU(100).value()),
|
||||||
|
paymentInterval(100),
|
||||||
|
fee(XRP(100)));
|
||||||
|
env.close();
|
||||||
|
// Ensure broker has sufficient cover so brokerPayee == brokerOwner
|
||||||
|
// We need coverAvailable >= (debtTotal * coverRateMinimum)
|
||||||
|
// Deposit enough cover to ensure the fee goes to broker owner
|
||||||
|
// The default coverRateMinimum is 10%, so for a 10,000 loan we need
|
||||||
|
// at least 1,000 cover. Default cover is 1,000, so we add more to be
|
||||||
|
// safe.
|
||||||
|
auto const additionalCover = IOU(50'000).value();
|
||||||
|
env(loanBroker::coverDeposit(
|
||||||
|
broker, brokerInfo.brokerID, STAmount{IOU, additionalCover}));
|
||||||
|
env.close();
|
||||||
|
// Verify broker owner has a trustline
|
||||||
|
auto const brokerTrustline = keylet::line(broker, IOU);
|
||||||
|
BEAST_EXPECT(env.le(brokerTrustline) != nullptr);
|
||||||
|
// Broker owner deletes their trustline
|
||||||
|
// First, pay any positive balance to issuer to zero it out
|
||||||
|
auto const brokerBalance = env.balance(broker, IOU);
|
||||||
|
env(pay(broker, issuer, brokerBalance));
|
||||||
|
env.close();
|
||||||
|
// Remove the trustline by setting limit to 0
|
||||||
|
env(trust(broker, IOU(0)));
|
||||||
|
env.close();
|
||||||
|
// Verify trustline is deleted
|
||||||
|
BEAST_EXPECT(env.le(brokerTrustline) == nullptr);
|
||||||
|
// Now borrower tries to make a payment
|
||||||
|
// We should get a tesSUCCESS instead of a tecNO_LINE.
|
||||||
|
env(pay(borrower, keylet.key, IOU(10'100)),
|
||||||
|
fee(XRP(100)),
|
||||||
|
ter(tesSUCCESS));
|
||||||
|
env.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
testLoanPayBrokerOwnerUnauthorizedMPT()
|
||||||
|
{
|
||||||
|
testcase << "LoanPay Broker Owner MPT unauthorized";
|
||||||
|
using namespace jtx;
|
||||||
|
using namespace loan;
|
||||||
|
|
||||||
|
Account const issuer("issuer");
|
||||||
|
Account const borrower("borrower");
|
||||||
|
Account const broker("broker");
|
||||||
|
|
||||||
|
Env env(*this, all);
|
||||||
|
env.fund(XRP(20'000), issuer, broker, borrower);
|
||||||
|
env.close();
|
||||||
|
|
||||||
|
MPTTester mptt{env, issuer, mptInitNoFund};
|
||||||
|
mptt.create(
|
||||||
|
{.flags = tfMPTCanClawback | tfMPTCanTransfer | tfMPTCanLock});
|
||||||
|
|
||||||
|
PrettyAsset const MPT{mptt.issuanceID()};
|
||||||
|
|
||||||
|
// Authorize broker and borrower
|
||||||
|
mptt.authorize({.account = broker});
|
||||||
|
mptt.authorize({.account = borrower});
|
||||||
|
|
||||||
|
env.close();
|
||||||
|
|
||||||
|
// Fund accounts
|
||||||
|
env(pay(issuer, broker, MPT(10'000'000)));
|
||||||
|
env(pay(issuer, borrower, MPT(1'000)));
|
||||||
|
env.close();
|
||||||
|
|
||||||
|
// Create vault and broker
|
||||||
|
auto const brokerInfo = createVaultAndBroker(env, MPT, broker);
|
||||||
|
// Create a loan first (this creates debt)
|
||||||
|
auto const keylet = keylet::loan(brokerInfo.brokerID, 1);
|
||||||
|
env(set(borrower, brokerInfo.brokerID, 10'000),
|
||||||
|
sig(sfCounterpartySignature, broker),
|
||||||
|
loanServiceFee(MPT(100).value()),
|
||||||
|
paymentInterval(100),
|
||||||
|
fee(XRP(100)));
|
||||||
|
env.close();
|
||||||
|
// Ensure broker has sufficient cover so brokerPayee == brokerOwner
|
||||||
|
// We need coverAvailable >= (debtTotal * coverRateMinimum)
|
||||||
|
// Deposit enough cover to ensure the fee goes to broker owner
|
||||||
|
// The default coverRateMinimum is 10%, so for a 10,000 loan we need
|
||||||
|
// at least 1,000 cover. Default cover is 1,000, so we add more to be
|
||||||
|
// safe.
|
||||||
|
auto const additionalCover = MPT(50'000).value();
|
||||||
|
env(loanBroker::coverDeposit(
|
||||||
|
broker, brokerInfo.brokerID, STAmount{MPT, additionalCover}));
|
||||||
|
env.close();
|
||||||
|
// Verify broker owner is authorized
|
||||||
|
auto const brokerMpt = keylet::mptoken(mptt.issuanceID(), broker);
|
||||||
|
BEAST_EXPECT(env.le(brokerMpt) != nullptr);
|
||||||
|
// Broker owner unauthorizes.
|
||||||
|
// First, pay any positive balance to issuer to zero it out
|
||||||
|
auto const brokerBalance = env.balance(broker, MPT);
|
||||||
|
env(pay(broker, issuer, brokerBalance));
|
||||||
|
env.close();
|
||||||
|
// Then, unauthorize the MPT.
|
||||||
|
mptt.authorize({.account = broker, .flags = tfMPTUnauthorize});
|
||||||
|
env.close();
|
||||||
|
// Verify the MPT is unauthorized.
|
||||||
|
BEAST_EXPECT(env.le(brokerMpt) == nullptr);
|
||||||
|
// Now borrower tries to make a payment
|
||||||
|
// We should get a tesSUCCESS instead of a tecNO_AUTH.
|
||||||
|
auto const borrowerBalance = env.balance(borrower, MPT);
|
||||||
|
env(pay(borrower, keylet.key, MPT(10'100)),
|
||||||
|
fee(XRP(100)),
|
||||||
|
ter(tesSUCCESS));
|
||||||
|
env.close();
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void
|
void
|
||||||
run() override
|
run() override
|
||||||
@@ -7076,6 +7210,8 @@ public:
|
|||||||
testBorrowerIsBroker();
|
testBorrowerIsBroker();
|
||||||
testIssuerIsBorrower();
|
testIssuerIsBorrower();
|
||||||
testLimitExceeded();
|
testLimitExceeded();
|
||||||
|
testLoanPayBrokerOwnerMissingTrustline();
|
||||||
|
testLoanPayBrokerOwnerUnauthorizedMPT();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -262,9 +262,10 @@ LoanPay::doApply()
|
|||||||
auto debtTotalProxy = brokerSle->at(sfDebtTotal);
|
auto debtTotalProxy = brokerSle->at(sfDebtTotal);
|
||||||
|
|
||||||
// Send the broker fee to the owner if they have sufficient cover available,
|
// Send the broker fee to the owner if they have sufficient cover available,
|
||||||
// _and_ if the owner can receive funds. If not, so as not to block the
|
// _and_ if the owner can receive funds
|
||||||
// payment, add it to the cover balance (send it to the broker pseudo
|
// _and_ if the broker is authorized to hold funds. If not, so as not to
|
||||||
// account).
|
// block the payment, add it to the cover balance (send it to the broker
|
||||||
|
// pseudo account).
|
||||||
//
|
//
|
||||||
// Normally freeze status is checked in preflight, but we do it here to
|
// Normally freeze status is checked in preflight, but we do it here to
|
||||||
// avoid duplicating the check. It'll claim a fee either way.
|
// avoid duplicating the check. It'll claim a fee either way.
|
||||||
@@ -278,7 +279,9 @@ LoanPay::doApply()
|
|||||||
asset,
|
asset,
|
||||||
tenthBipsOfValue(debtTotalProxy.value(), coverRateMinimum),
|
tenthBipsOfValue(debtTotalProxy.value(), coverRateMinimum),
|
||||||
loanScale) &&
|
loanScale) &&
|
||||||
!isDeepFrozen(view, brokerOwner, asset);
|
!isDeepFrozen(view, brokerOwner, asset) &&
|
||||||
|
requireAuth(view, asset, brokerOwner, AuthType::StrongAuth) ==
|
||||||
|
tesSUCCESS;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
auto const brokerPayee =
|
auto const brokerPayee =
|
||||||
|
|||||||
Reference in New Issue
Block a user