You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
182 lines
5.5 KiB
182 lines
5.5 KiB
1 year ago
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
pragma solidity ^0.8.13;
|
||
|
|
||
|
import {Test} from "forge-std/Test.sol";
|
||
|
import {TypeCasts} from "../../contracts/libs/TypeCasts.sol";
|
||
|
import {MessageUtils} from "../isms/IsmTestUtils.sol";
|
||
1 year ago
|
import {StandardHookMetadata} from "../../contracts/hooks/libs/StandardHookMetadata.sol";
|
||
1 year ago
|
import {IPostDispatchHook} from "../../contracts/interfaces/hooks/IPostDispatchHook.sol";
|
||
1 year ago
|
|
||
12 months ago
|
import {ProtocolFee} from "../../contracts/hooks/ProtocolFee.sol";
|
||
1 year ago
|
|
||
12 months ago
|
contract ProtocolFeeTest is Test {
|
||
1 year ago
|
using TypeCasts for address;
|
||
1 year ago
|
|
||
12 months ago
|
ProtocolFee internal fees;
|
||
1 year ago
|
|
||
|
address internal alice = address(0x1); // alice the user
|
||
|
address internal bob = address(0x2); // bob the beneficiary
|
||
|
address internal charlie = address(0x3); // charlie the crock
|
||
|
|
||
|
uint32 internal constant TEST_ORIGIN_DOMAIN = 1;
|
||
|
uint32 internal constant TEST_DESTINATION_DOMAIN = 2;
|
||
|
|
||
1 year ago
|
uint256 internal constant MAX_FEE = 1e16;
|
||
|
uint256 internal constant FEE = 1e16;
|
||
|
|
||
1 year ago
|
bytes internal testMessage;
|
||
|
|
||
|
function setUp() public {
|
||
12 months ago
|
fees = new ProtocolFee(MAX_FEE, FEE, bob, address(this));
|
||
1 year ago
|
|
||
|
testMessage = _encodeTestMessage();
|
||
|
}
|
||
|
|
||
|
function testConstructor() public {
|
||
1 year ago
|
assertEq(fees.protocolFee(), FEE);
|
||
1 year ago
|
}
|
||
|
|
||
1 year ago
|
function testHookType() public {
|
||
|
assertEq(fees.hookType(), uint8(IPostDispatchHook.Types.PROTOCOL_FEE));
|
||
|
}
|
||
|
|
||
1 year ago
|
function testSetProtocolFee(uint256 fee) public {
|
||
|
fee = bound(fee, 0, fees.MAX_PROTOCOL_FEE());
|
||
|
fees.setProtocolFee(fee);
|
||
|
assertEq(fees.protocolFee(), fee);
|
||
|
}
|
||
|
|
||
|
function testSetProtocolFee_revertsWhen_notOwner() public {
|
||
|
uint256 fee = 1e17;
|
||
|
|
||
|
vm.prank(charlie);
|
||
|
vm.expectRevert("Ownable: caller is not the owner");
|
||
|
fees.setProtocolFee(fee);
|
||
|
|
||
1 year ago
|
assertEq(fees.protocolFee(), FEE);
|
||
1 year ago
|
}
|
||
|
|
||
|
function testSetProtocolFee_revertWhen_exceedsMax(uint256 fee) public {
|
||
|
fee = bound(
|
||
|
fee,
|
||
|
fees.MAX_PROTOCOL_FEE() + 1,
|
||
|
10 * fees.MAX_PROTOCOL_FEE()
|
||
|
);
|
||
|
|
||
12 months ago
|
vm.expectRevert("ProtocolFee: exceeds max protocol fee");
|
||
1 year ago
|
fees.setProtocolFee(fee);
|
||
|
|
||
1 year ago
|
assertEq(fees.protocolFee(), FEE);
|
||
1 year ago
|
}
|
||
|
|
||
|
function testSetBeneficiary_revertWhen_notOwner() public {
|
||
|
vm.prank(charlie);
|
||
|
|
||
|
vm.expectRevert("Ownable: caller is not the owner");
|
||
|
fees.setBeneficiary(charlie);
|
||
|
assertEq(fees.beneficiary(), bob);
|
||
|
}
|
||
|
|
||
1 year ago
|
function testQuoteDispatch() public {
|
||
1 year ago
|
assertEq(fees.quoteDispatch("", testMessage), FEE);
|
||
1 year ago
|
}
|
||
|
|
||
1 year ago
|
function testFuzz_postDispatch_inusfficientFees(
|
||
|
uint256 feeRequired,
|
||
|
uint256 feeSent
|
||
|
) public {
|
||
|
feeRequired = bound(feeRequired, 1, fees.MAX_PROTOCOL_FEE());
|
||
|
// bound feeSent to be less than feeRequired
|
||
|
feeSent = bound(feeSent, 0, feeRequired - 1);
|
||
|
vm.deal(alice, feeSent);
|
||
|
|
||
|
fees.setProtocolFee(feeRequired);
|
||
|
|
||
|
uint256 balanceBefore = alice.balance;
|
||
|
|
||
|
vm.prank(alice);
|
||
12 months ago
|
vm.expectRevert("ProtocolFee: insufficient protocol fee");
|
||
1 year ago
|
fees.postDispatch{value: feeSent}("", "");
|
||
|
|
||
|
assertEq(alice.balance, balanceBefore);
|
||
|
}
|
||
|
|
||
|
function testFuzz_postDispatch_sufficientFees(
|
||
|
uint256 feeRequired,
|
||
|
uint256 feeSent
|
||
|
) public {
|
||
|
feeRequired = bound(feeRequired, 1, fees.MAX_PROTOCOL_FEE());
|
||
|
feeSent = bound(feeSent, feeRequired, 10 * feeRequired);
|
||
|
vm.deal(alice, feeSent);
|
||
|
|
||
|
fees.setProtocolFee(feeRequired);
|
||
|
uint256 aliceBalanceBefore = alice.balance;
|
||
|
vm.prank(alice);
|
||
|
|
||
|
fees.postDispatch{value: feeSent}("", testMessage);
|
||
|
|
||
|
assertEq(alice.balance, aliceBalanceBefore - feeRequired);
|
||
|
}
|
||
|
|
||
1 year ago
|
function test_postDispatch_specifyRefundAddress(
|
||
|
uint256 feeRequired,
|
||
|
uint256 feeSent
|
||
|
) public {
|
||
1 year ago
|
bytes memory metadata = StandardHookMetadata.overrideRefundAddress(bob);
|
||
1 year ago
|
|
||
|
feeRequired = bound(feeRequired, 1, fees.MAX_PROTOCOL_FEE());
|
||
|
feeSent = bound(feeSent, feeRequired, 10 * feeRequired);
|
||
|
vm.deal(alice, feeSent);
|
||
|
|
||
|
fees.setProtocolFee(feeRequired);
|
||
|
uint256 aliceBalanceBefore = alice.balance;
|
||
|
uint256 bobBalanceBefore = bob.balance;
|
||
|
vm.prank(alice);
|
||
|
|
||
|
fees.postDispatch{value: feeSent}(metadata, testMessage);
|
||
|
|
||
|
assertEq(alice.balance, aliceBalanceBefore - feeSent);
|
||
|
assertEq(bob.balance, bobBalanceBefore + feeSent - feeRequired);
|
||
|
}
|
||
|
|
||
1 year ago
|
function testFuzz_collectProtocolFee(
|
||
|
uint256 feeRequired,
|
||
|
uint256 dispatchCalls
|
||
|
) public {
|
||
|
feeRequired = bound(feeRequired, 1, fees.MAX_PROTOCOL_FEE());
|
||
|
// no of postDispatch calls to be made
|
||
|
dispatchCalls = bound(dispatchCalls, 1, 1000);
|
||
|
vm.deal(alice, feeRequired * dispatchCalls);
|
||
|
|
||
|
fees.setProtocolFee(feeRequired);
|
||
|
|
||
|
uint256 balanceBefore = bob.balance;
|
||
|
|
||
|
for (uint256 i = 0; i < dispatchCalls; i++) {
|
||
|
vm.prank(alice);
|
||
|
fees.postDispatch{value: feeRequired}("", "");
|
||
|
}
|
||
|
|
||
|
fees.collectProtocolFees();
|
||
|
|
||
|
assertEq(bob.balance, balanceBefore + feeRequired * dispatchCalls);
|
||
|
}
|
||
|
|
||
|
// ============ Helper Functions ============
|
||
|
|
||
|
function _encodeTestMessage() internal view returns (bytes memory) {
|
||
|
return
|
||
|
MessageUtils.formatMessage(
|
||
|
uint8(0),
|
||
|
uint32(1),
|
||
|
TEST_ORIGIN_DOMAIN,
|
||
|
alice.addressToBytes32(),
|
||
|
TEST_DESTINATION_DOMAIN,
|
||
|
alice.addressToBytes32(),
|
||
|
abi.encodePacked("Hello World")
|
||
|
);
|
||
|
}
|
||
|
|
||
|
receive() external payable {}
|
||
|
}
|