Skip to content

Commit 23320d1

Browse files
author
Rahul Maganti
committed
evm: remove unnecessary bounds in fuzz test for saturatingAdd
1 parent ff58420 commit 23320d1

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

evm/test/TrimmedAmount.t.sol

+7-13
Original file line numberDiff line numberDiff line change
@@ -245,20 +245,14 @@ contract TrimmingTest is Test {
245245

246246
// FUZZ TESTS
247247

248-
// invariant: forall (TrimmedAmount a, TrimmedAmount b) a.saturatingAdd(b).amount <= type(uint64).max
248+
// invariant: forall (TrimmedAmount a, TrimmedAmount b)
249+
// a.saturatingAdd(b).amount <= type(uint64).max
249250
function testFuzz_saturatingAddDoesNotOverflow(
250251
TrimmedAmount memory a,
251252
TrimmedAmount memory b
252253
) public {
253254
vm.assume(a.decimals == b.decimals);
254255

255-
// this is guaranteed by trimming
256-
a.amount = uint64(bound(a.amount, 0, type(uint64).max));
257-
a.decimals = uint8(bound(a.decimals, 0, 8));
258-
259-
b.amount = uint64(bound(b.amount, 0, type(uint64).max));
260-
b.decimals = uint8(bound(b.decimals, 0, 8));
261-
262256
TrimmedAmount memory c = a.saturatingAdd(b);
263257

264258
// decimals should always be the same, else revert
@@ -273,8 +267,8 @@ contract TrimmingTest is Test {
273267
// NOTE: above the TRIMMED_DECIMALS threshold will always get trimmed to TRIMMED_DECIMALS
274268
// or trimmed to the number of decimals on the recipient chain.
275269
// this tests for inputs with decimals > TRIMMED_DECIMALS
276-
function testFuzz_SubOperatorZeroAboveThreshold(uint256 amt, uint8 decimals) public {
277-
uint8 decimals = uint8(bound(decimals, 8, 18));
270+
function testFuzz_SubOperatorZeroAboveThreshold(uint256 amt, uint8 decimals) public pure {
271+
decimals = uint8(bound(decimals, 8, 18));
278272
uint256 maxAmt = (type(uint64).max) / (10 ** decimals);
279273
vm.assume(amt < maxAmt);
280274

@@ -294,7 +288,7 @@ contract TrimmingTest is Test {
294288
uint256 amtLeft,
295289
uint256 amtRight
296290
) public {
297-
uint8 decimals = uint8(bound(decimals, 8, 18));
291+
decimals = uint8(bound(decimals, 8, 18));
298292
uint256 maxAmt = (type(uint64).max) / (10 ** decimals);
299293
vm.assume(amtRight < maxAmt);
300294
vm.assume(amtLeft < amtRight);
@@ -311,8 +305,8 @@ contract TrimmingTest is Test {
311305
// NOTE: above the TRIMMED_DECIMALS threshold will always get trimmed to TRIMMED_DECIMALS
312306
// or trimmed to the number of decimals on the recipient chain.
313307
// this tests for inputs with decimals > TRIMMED_DECIMALS
314-
function testFuzz_AddOperatorZeroAboveThreshold(uint256 amt, uint8 decimals) public {
315-
uint8 decimals = uint8(bound(decimals, 8, 18));
308+
function testFuzz_AddOperatorZeroAboveThreshold(uint256 amt, uint8 decimals) public pure {
309+
decimals = uint8(bound(decimals, 8, 18));
316310
uint256 maxAmt = (type(uint64).max) / (10 ** decimals);
317311
vm.assume(amt < maxAmt);
318312

0 commit comments

Comments
 (0)