2023-03-29 09:49:32 +00:00
|
|
|
// SPDX-License-Identifier: Unlicense
|
|
|
|
pragma solidity ^0.8.15;
|
|
|
|
|
|
|
|
import "../contracts/PoseidonHasher.sol";
|
|
|
|
import "../contracts/Rln.sol";
|
|
|
|
import "forge-std/Test.sol";
|
2023-03-29 11:48:00 +00:00
|
|
|
import "forge-std/StdCheats.sol";
|
2023-03-29 09:49:32 +00:00
|
|
|
import "forge-std/console.sol";
|
|
|
|
|
|
|
|
contract RLNTest is Test {
|
2023-03-29 11:48:00 +00:00
|
|
|
using stdStorage for StdStorage;
|
|
|
|
|
2023-03-29 09:49:32 +00:00
|
|
|
RLN public rln;
|
2023-03-29 11:48:00 +00:00
|
|
|
PoseidonHasher public poseidon;
|
2023-03-29 09:49:32 +00:00
|
|
|
|
|
|
|
uint256 public constant MEMBERSHIP_DEPOSIT = 1000000000000000;
|
|
|
|
uint256 public constant DEPTH = 20;
|
|
|
|
uint256 public constant SET_SIZE = 1048576;
|
|
|
|
|
|
|
|
/// @dev Setup the testing environment.
|
|
|
|
function setUp() public {
|
2023-03-29 11:48:00 +00:00
|
|
|
poseidon = new PoseidonHasher();
|
2023-03-29 09:49:32 +00:00
|
|
|
rln = new RLN(MEMBERSHIP_DEPOSIT, DEPTH, address(poseidon));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Ensure that you can hash a value.
|
|
|
|
function test__Constants() public {
|
|
|
|
assertEq(rln.MEMBERSHIP_DEPOSIT(), MEMBERSHIP_DEPOSIT);
|
|
|
|
assertEq(rln.DEPTH(), DEPTH);
|
|
|
|
assertEq(rln.SET_SIZE(), SET_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
function test__ValidRegistration(uint256 idCommitment) public {
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
2023-05-23 06:54:58 +00:00
|
|
|
assertEq(rln.members(idCommitment), 1);
|
2023-03-29 09:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function test__InvalidRegistration__DuplicateCommitment(
|
|
|
|
uint256 idCommitment
|
|
|
|
) public {
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
2023-05-23 06:54:58 +00:00
|
|
|
assertEq(rln.members(idCommitment), 1);
|
2023-03-30 12:00:54 +00:00
|
|
|
vm.expectRevert(DuplicateIdCommitment.selector);
|
2023-03-29 09:49:32 +00:00
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
}
|
|
|
|
|
|
|
|
function test__InvalidRegistration__InsufficientDeposit(
|
|
|
|
uint256 idCommitment
|
|
|
|
) public {
|
2023-03-30 12:00:54 +00:00
|
|
|
uint256 badDepositAmount = MEMBERSHIP_DEPOSIT - 1;
|
2023-03-29 09:49:32 +00:00
|
|
|
vm.expectRevert(
|
2023-03-30 12:00:54 +00:00
|
|
|
abi.encodeWithSelector(
|
|
|
|
InsufficientDeposit.selector,
|
|
|
|
MEMBERSHIP_DEPOSIT,
|
|
|
|
badDepositAmount
|
|
|
|
)
|
2023-03-29 09:49:32 +00:00
|
|
|
);
|
2023-03-30 12:00:54 +00:00
|
|
|
rln.register{value: badDepositAmount}(idCommitment);
|
2023-03-29 09:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function test__InvalidRegistration__FullSet(
|
|
|
|
uint256 idCommitmentSeed
|
|
|
|
) public {
|
|
|
|
vm.assume(idCommitmentSeed < 2 ** 255 - SET_SIZE);
|
|
|
|
RLN tempRln = new RLN(
|
|
|
|
MEMBERSHIP_DEPOSIT,
|
|
|
|
2,
|
|
|
|
address(rln.poseidonHasher())
|
|
|
|
);
|
2023-05-23 06:54:58 +00:00
|
|
|
uint256 setSize = tempRln.SET_SIZE() - 1;
|
2023-03-29 09:49:32 +00:00
|
|
|
for (uint256 i = 0; i < setSize; i++) {
|
|
|
|
tempRln.register{value: MEMBERSHIP_DEPOSIT}(idCommitmentSeed + i);
|
|
|
|
}
|
|
|
|
assertEq(tempRln.idCommitmentIndex(), 4);
|
2023-05-23 06:54:58 +00:00
|
|
|
vm.expectRevert(FullTree.selector);
|
2023-03-29 09:49:32 +00:00
|
|
|
tempRln.register{value: MEMBERSHIP_DEPOSIT}(idCommitmentSeed + setSize);
|
|
|
|
}
|
2023-03-29 11:48:00 +00:00
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
function test__ValidSlash(uint256 idSecretHash, address payable to) public {
|
2023-03-29 11:48:00 +00:00
|
|
|
// avoid precompiles, etc
|
2023-03-29 12:21:48 +00:00
|
|
|
// TODO: wrap both of these in a single function
|
2023-03-29 11:48:00 +00:00
|
|
|
assumePayable(to);
|
2023-03-29 12:21:48 +00:00
|
|
|
assumeNoPrecompiles(to);
|
2023-03-29 11:59:33 +00:00
|
|
|
vm.assume(to != address(0));
|
2023-03-29 11:48:00 +00:00
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
|
|
|
|
|
|
|
uint256 balanceBefore = to.balance;
|
2023-03-30 14:53:08 +00:00
|
|
|
rln.slash(idSecretHash, to);
|
|
|
|
vm.prank(to);
|
|
|
|
rln.withdraw();
|
2023-03-29 11:48:00 +00:00
|
|
|
assertEq(rln.stakedAmounts(idCommitment), 0);
|
2023-05-23 06:54:58 +00:00
|
|
|
assertEq(rln.members(idCommitment), 0);
|
2023-03-29 11:48:00 +00:00
|
|
|
assertEq(to.balance, balanceBefore + MEMBERSHIP_DEPOSIT);
|
|
|
|
}
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
function test__InvalidSlash__ToZeroAddress() public {
|
2023-03-29 11:48:00 +00:00
|
|
|
uint256 idSecretHash = 19014214495641488759237505126948346942972912379615652741039992445865937985820;
|
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
2023-03-30 12:00:54 +00:00
|
|
|
vm.expectRevert(
|
2023-03-30 14:53:08 +00:00
|
|
|
abi.encodeWithSelector(InvalidReceiverAddress.selector, address(0))
|
2023-03-30 12:00:54 +00:00
|
|
|
);
|
2023-03-30 14:53:08 +00:00
|
|
|
rln.slash(idSecretHash, payable(address(0)));
|
2023-03-29 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
function test__InvalidSlash__ToRlnAddress() public {
|
2023-03-29 11:48:00 +00:00
|
|
|
uint256 idSecretHash = 19014214495641488759237505126948346942972912379615652741039992445865937985820;
|
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
2023-03-30 12:00:54 +00:00
|
|
|
vm.expectRevert(
|
|
|
|
abi.encodeWithSelector(
|
2023-03-30 14:53:08 +00:00
|
|
|
InvalidReceiverAddress.selector,
|
2023-03-30 12:00:54 +00:00
|
|
|
address(rln)
|
|
|
|
)
|
|
|
|
);
|
2023-03-30 14:53:08 +00:00
|
|
|
rln.slash(idSecretHash, payable(address(rln)));
|
2023-03-29 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
function test__InvalidSlash__InvalidIdCommitment(
|
2023-03-30 12:00:54 +00:00
|
|
|
uint256 idSecretHash
|
2023-03-29 11:48:00 +00:00
|
|
|
) public {
|
2023-03-30 12:00:54 +00:00
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
vm.expectRevert(
|
|
|
|
abi.encodeWithSelector(MemberNotRegistered.selector, idCommitment)
|
|
|
|
);
|
2023-03-30 14:53:08 +00:00
|
|
|
rln.slash(idSecretHash, payable(address(this)));
|
2023-03-29 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// this shouldn't be possible, but just in case
|
2023-03-30 14:53:08 +00:00
|
|
|
function test__InvalidSlash__NoStake(
|
2023-03-29 11:48:00 +00:00
|
|
|
uint256 idSecretHash,
|
|
|
|
address payable to
|
|
|
|
) public {
|
|
|
|
// avoid precompiles, etc
|
|
|
|
assumePayable(to);
|
2023-03-29 12:21:48 +00:00
|
|
|
assumeNoPrecompiles(to);
|
2023-03-29 11:59:33 +00:00
|
|
|
vm.assume(to != address(0));
|
2023-03-29 11:48:00 +00:00
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
rln.slash(idSecretHash, to);
|
2023-03-29 11:48:00 +00:00
|
|
|
assertEq(rln.stakedAmounts(idCommitment), 0);
|
2023-05-23 06:54:58 +00:00
|
|
|
assertEq(rln.members(idCommitment), 0);
|
2023-03-29 11:48:00 +00:00
|
|
|
|
|
|
|
// manually set members[idCommitment] to true using vm
|
|
|
|
stdstore
|
|
|
|
.target(address(rln))
|
|
|
|
.sig("members(uint256)")
|
|
|
|
.with_key(idCommitment)
|
|
|
|
.depth(0)
|
|
|
|
.checked_write(true);
|
|
|
|
|
2023-03-30 12:00:54 +00:00
|
|
|
vm.expectRevert(
|
|
|
|
abi.encodeWithSelector(MemberHasNoStake.selector, idCommitment)
|
|
|
|
);
|
2023-03-30 14:53:08 +00:00
|
|
|
rln.slash(idSecretHash, to);
|
2023-03-29 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
function test__InvalidWithdraw__InsufficientWithdrawalBalance() public {
|
|
|
|
vm.expectRevert(InsufficientWithdrawalBalance.selector);
|
|
|
|
rln.withdraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
function test__InvalidWithdraw__InsufficientContractBalance() public {
|
|
|
|
uint256 idSecretHash = 19014214495641488759237505126948346942972912379615652741039992445865937985820;
|
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
|
|
|
rln.slash(idSecretHash, payable(address(this)));
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), 0);
|
2023-05-23 06:54:58 +00:00
|
|
|
assertEq(rln.members(idCommitment), 0);
|
2023-03-30 14:53:08 +00:00
|
|
|
|
|
|
|
vm.deal(address(rln), 0);
|
|
|
|
vm.expectRevert(InsufficientContractBalance.selector);
|
|
|
|
rln.withdraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
function test__ValidWithdraw(address payable to) public {
|
|
|
|
assumePayable(to);
|
|
|
|
assumeNoPrecompiles(to);
|
|
|
|
|
|
|
|
uint256 idSecretHash = 19014214495641488759237505126948346942972912379615652741039992445865937985820;
|
|
|
|
uint256 idCommitment = poseidon.hash(idSecretHash);
|
|
|
|
|
|
|
|
rln.register{value: MEMBERSHIP_DEPOSIT}(idCommitment);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), MEMBERSHIP_DEPOSIT);
|
|
|
|
rln.slash(idSecretHash, to);
|
|
|
|
assertEq(rln.stakedAmounts(idCommitment), 0);
|
2023-05-23 06:54:58 +00:00
|
|
|
assertEq(rln.members(idCommitment), 0);
|
2023-03-30 14:53:08 +00:00
|
|
|
|
|
|
|
vm.prank(to);
|
|
|
|
rln.withdraw();
|
|
|
|
assertEq(rln.withdrawalBalance(to), 0);
|
|
|
|
}
|
2023-03-29 09:49:32 +00:00
|
|
|
}
|