logos-delivery-rlnv2-contract/test/WakuRlnV2.fuzz.t.sol
2025-09-29 16:51:48 +10:00

142 lines
6.3 KiB
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.19 <0.9.0;
import "../src/Membership.sol";
import "../src/WakuRlnV2.sol";
import "forge-std/console.sol"; // solhint-disable-line
import "forge-std/Vm.sol";
import { DeployPriceCalculator, DeployWakuRlnV2, DeployProxy } from "../script/Deploy.s.sol"; // solhint-disable-line
import { DeployTokenWithProxy } from "../script/DeployTokenWithProxy.s.sol";
import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import { ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
import { IPriceCalculator } from "../src/IPriceCalculator.sol";
import { LinearPriceCalculator } from "../src/LinearPriceCalculator.sol";
import { PoseidonT3 } from "poseidon-solidity/PoseidonT3.sol";
import { Test } from "forge-std/Test.sol"; // For signature manipulation
import { TestStableToken } from "./TestStableToken.sol";
import { UUPSUpgradeable } from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
contract WakuRlnV2Test is Test {
WakuRlnV2 internal w;
TestStableToken internal token;
DeployTokenWithProxy internal tokenDeployer;
address internal deployer;
uint256[] internal noIdCommitmentsToErase = new uint256[](0);
function setUp() public virtual {
// Deploy TestStableToken through proxy using deployment script
tokenDeployer = new DeployTokenWithProxy();
ERC1967Proxy tokenProxy = tokenDeployer.deploy();
token = TestStableToken(address(tokenProxy));
IPriceCalculator priceCalculator = (new DeployPriceCalculator()).deploy(address(token));
WakuRlnV2 wakuRlnV2 = (new DeployWakuRlnV2()).deploy();
ERC1967Proxy proxy = (new DeployProxy()).deploy(address(priceCalculator), address(wakuRlnV2));
w = WakuRlnV2(address(proxy));
// Log owner for debugging
console.log("WakuRlnV2 owner: ", w.owner());
// Minting a large number of tokens to not have to worry about
// Not having enough balance
// 900_000 ether is chosen to be well above any test requirements and is within the new max supply constraints.
vm.prank(address(tokenDeployer));
token.mint(address(this), 900_000 ether);
}
function testFuzz_RegisterInvalid(uint256 idCommitment, uint32 rateLimit) external {
vm.assume(idCommitment >= w.Q() || idCommitment == 0); // Invalid ID
(, uint256 price) = w.priceCalculator().calculate(rateLimit);
token.approve(address(w), price);
vm.expectRevert(); // Generic or specific error
w.register(idCommitment, rateLimit, new uint256[](0));
}
function testFuzz_MultipleRegisters(uint8 numRegs) external {
vm.assume(numRegs > 0 && numRegs < 100); // Small for gas
uint32 rateLimit = w.minMembershipRateLimit();
uint256 totalExpected = 0;
for (uint8 i = 1; i <= numRegs; i++) {
vm.assume(w.currentTotalRateLimit() + rateLimit <= w.maxTotalRateLimit());
(, uint256 price) = w.priceCalculator().calculate(rateLimit);
token.approve(address(w), price);
w.register(i, rateLimit, new uint256[](0));
totalExpected += rateLimit;
}
assertEq(w.currentTotalRateLimit(), totalExpected);
}
// Helper function to register a single membership (reusable in tests)
function _registerMembership(uint256 idCommitment, uint32 rateLimit) internal {
(, uint256 price) = w.priceCalculator().calculate(rateLimit);
token.approve(address(w), price);
w.register(idCommitment, rateLimit, new uint256[](0));
}
function _buildIdsFromMask(uint8 subsetMask) internal pure returns (uint256[] memory idCommitments) {
uint256 len = 0;
for (uint8 bit = 0; bit < 4; bit++) {
if ((subsetMask & (1 << bit)) != 0) {
len++;
}
}
idCommitments = new uint256[](len);
uint256 idx = 0;
for (uint8 bit = 0; bit < 4; bit++) {
if ((subsetMask & (1 << bit)) != 0) {
idCommitments[idx++] = uint256(bit) + 1;
}
}
}
// Fuzz Test: Erasure with Random IDs and Time Deltas
function testFuzz_Erasure(bool fullErase, uint8 subsetMask) external {
vm.assume(subsetMask > 0 && subsetMask < 16);
// Setup: Register multiple memberships to allow fuzzing various IDs
uint32 rateLimit = w.minMembershipRateLimit();
uint256 initialTotal = 0;
for (uint256 i = 1; i <= 4; i++) {
// Register up to 4 for <5 constraint
if (w.currentTotalRateLimit() + rateLimit <= w.maxTotalRateLimit()) {
_registerMembership(i, rateLimit);
initialTotal += rateLimit;
}
}
// Fuzz time warp (constrain to > active + grace for expiration, and < 1180 year to reduce range and speed up)
uint256 minDelta =
uint256(w.activeDurationForNewMemberships()) + uint256(w.gracePeriodDurationForNewMemberships()) + 1;
vm.warp(block.timestamp + minDelta);
uint256[] memory idCommitments = _buildIdsFromMask(subsetMask);
// Record indices before erasure
uint32[] memory indices = new uint32[](idCommitments.length);
for (uint256 j = 0; j < idCommitments.length; j++) {
(, indices[j],) = w.getMembershipInfo(idCommitments[j]); // Get original index
}
w.eraseMemberships(idCommitments, fullErase);
// Assert invariants: For each ID, check erased if conditions met
uint256 erasedTotal = 0;
uint256 rateLimitCast = uint256(rateLimit);
for (uint256 j = 0; j < idCommitments.length; j++) {
assertFalse(w.isInMembershipSet(idCommitments[j]));
(uint32 rl,, uint256 commitment) = w.getMembershipInfo(idCommitments[j]);
assertEq(rl, 0);
assertEq(commitment, 0); // Info returns 0 if erased
if (indices[j] < w.nextFreeIndex()) {
// Valid index
uint256 expectedCommitment = fullErase ? 0 : PoseidonT3.hash([idCommitments[j], rateLimitCast]);
assertEq(w.getRateCommitmentsInRangeBoundsInclusive(indices[j], indices[j])[0], expectedCommitment);
}
erasedTotal += rateLimit; // Assuming all were valid to erase
}
assertEq(w.currentTotalRateLimit(), initialTotal - erasedTotal);
}
}