@@ -9,12 +9,6 @@ contract TrimmingTest is Test {
9
9
using TrimmedAmountLib for uint256 ;
10
10
using TrimmedAmountLib for TrimmedAmount;
11
11
12
- function test_packUnpack (uint64 amount , uint8 decimals ) public {
13
- TrimmedAmount trimmed = packTrimmedAmount (amount, decimals);
14
- assertEq (trimmed.getAmount (), amount);
15
- assertEq (trimmed.getDecimals (), decimals);
16
- }
17
-
18
12
function testTrimmingRoundTrip () public {
19
13
uint8 decimals = 18 ;
20
14
uint256 amount = 50 * 10 ** decimals;
@@ -169,6 +163,14 @@ contract TrimmingTest is Test {
169
163
assertEq (expectedRoundTrip, amountRoundTrip);
170
164
}
171
165
166
+ // ============= FUZZ TESTS ================== //
167
+
168
+ function test_packUnpack (uint64 amount , uint8 decimals ) public {
169
+ TrimmedAmount trimmed = packTrimmedAmount (amount, decimals);
170
+ assertEq (trimmed.getAmount (), amount);
171
+ assertEq (trimmed.getDecimals (), decimals);
172
+ }
173
+
172
174
function testFuzz_AddOperatorOverload (TrimmedAmount a , TrimmedAmount b ) public {
173
175
vm.assume (a.getDecimals () == b.getDecimals ());
174
176
@@ -235,53 +237,50 @@ contract TrimmingTest is Test {
235
237
vm.assume (fromDecimals <= 8 && fromDecimals <= toDecimals);
236
238
237
239
// initialize TrimmedAmount
238
- TrimmedAmount memory trimmedAmount = TrimmedAmount (uint64 (amt), fromDecimals);
240
+ TrimmedAmount trimmedAmount = packTrimmedAmount (uint64 (amt), fromDecimals);
239
241
240
242
// trimming is left inverse of trimming
241
243
uint256 amountUntrimmed = trimmedAmount.untrim (toDecimals);
242
- TrimmedAmount memory amountRoundTrip = amountUntrimmed.trim (toDecimals, fromDecimals);
244
+ TrimmedAmount amountRoundTrip = amountUntrimmed.trim (toDecimals, fromDecimals);
243
245
244
- assertEq (trimmedAmount.amount , amountRoundTrip.amount );
246
+ assertEq (trimmedAmount.getAmount () , amountRoundTrip.getAmount () );
245
247
}
246
248
247
- // FUZZ TESTS
248
-
249
249
// invariant: forall (TrimmedAmount a, TrimmedAmount b)
250
250
// a.saturatingAdd(b).amount <= type(uint64).max
251
- function testFuzz_saturatingAddDoesNotOverflow (
252
- TrimmedAmount memory a ,
253
- TrimmedAmount memory b
254
- ) public {
255
- vm.assume (a.decimals == b.decimals);
251
+ function testFuzz_saturatingAddDoesNotOverflow (TrimmedAmount a , TrimmedAmount b ) public {
252
+ vm.assume (a.getDecimals () == b.getDecimals ());
256
253
257
- TrimmedAmount memory c = a.saturatingAdd (b);
254
+ TrimmedAmount c = a.saturatingAdd (b);
258
255
259
256
// decimals should always be the same, else revert
260
- assertEq (c.decimals , a.decimals );
257
+ assertEq (c.getDecimals () , a.getDecimals () );
261
258
262
259
// amount should never overflow
263
- assertLe (c.amount , type (uint64 ).max);
260
+ assertLe (c.getAmount () , type (uint64 ).max);
264
261
// amount should never underflow
265
- assertGe (c.amount , 0 );
262
+ assertGe (c.getAmount () , 0 );
266
263
}
267
264
268
265
// NOTE: above the TRIMMED_DECIMALS threshold will always get trimmed to TRIMMED_DECIMALS
269
266
// or trimmed to the number of decimals on the recipient chain.
270
267
// this tests for inputs with decimals > TRIMMED_DECIMALS
271
- function testFuzz_SubOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public pure {
268
+ function testFuzz_SubOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public {
272
269
decimals = uint8 (bound (decimals, 8 , 18 ));
273
270
uint256 maxAmt = (type (uint64 ).max) / (10 ** decimals);
274
271
vm.assume (amt < maxAmt);
275
272
276
273
uint256 amount = amt * (10 ** decimals);
277
274
uint256 amountOther = 0 ;
278
- TrimmedAmount memory trimmedAmount = amount.trim (decimals, 8 );
279
- TrimmedAmount memory trimmedAmountOther = amountOther.trim (decimals, 8 );
275
+ TrimmedAmount trimmedAmount = amount.trim (decimals, 8 );
276
+ TrimmedAmount trimmedAmountOther = amountOther.trim (decimals, 8 );
280
277
281
- TrimmedAmount memory trimmedSub = trimmedAmount. sub ( trimmedAmountOther) ;
278
+ TrimmedAmount trimmedSub = trimmedAmount - trimmedAmountOther;
282
279
283
- TrimmedAmount memory expectedTrimmedSub = TrimmedAmount (uint64 (amt * (10 ** 8 )), 8 );
284
- assert (expectedTrimmedSub.eq (trimmedSub));
280
+ TrimmedAmount expectedTrimmedSub = packTrimmedAmount (uint64 (amt * (10 ** 8 )), 8 );
281
+ assert (expectedTrimmedSub == trimmedSub);
282
+ assertEq (expectedTrimmedSub.getAmount (), trimmedSub.getAmount ());
283
+ assertEq (expectedTrimmedSub.getDecimals (), trimmedSub.getDecimals ());
285
284
}
286
285
287
286
function testFuzz_SubOperatorWillOverflow (
@@ -296,29 +295,31 @@ contract TrimmingTest is Test {
296
295
297
296
uint256 amountLeft = amtLeft * (10 ** decimals);
298
297
uint256 amountRight = amtRight * (10 ** decimals);
299
- TrimmedAmount memory trimmedAmount = amountLeft.trim (decimals, 8 );
300
- TrimmedAmount memory trimmedAmountOther = amountRight.trim (decimals, 8 );
298
+ TrimmedAmount trimmedAmount = amountLeft.trim (decimals, 8 );
299
+ TrimmedAmount trimmedAmountOther = amountRight.trim (decimals, 8 );
301
300
302
- vm.expectRevert ();
303
- trimmedAmount. sub ( trimmedAmountOther) ;
301
+ vm.expectRevert (stdError.arithmeticError );
302
+ trimmedAmount - trimmedAmountOther;
304
303
}
305
304
306
305
// NOTE: above the TRIMMED_DECIMALS threshold will always get trimmed to TRIMMED_DECIMALS
307
306
// or trimmed to the number of decimals on the recipient chain.
308
307
// this tests for inputs with decimals > TRIMMED_DECIMALS
309
- function testFuzz_AddOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public pure {
308
+ function testFuzz_AddOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public {
310
309
decimals = uint8 (bound (decimals, 8 , 18 ));
311
310
uint256 maxAmt = (type (uint64 ).max) / (10 ** decimals);
312
311
vm.assume (amt < maxAmt);
313
312
314
313
uint256 amount = amt * (10 ** decimals);
315
314
uint256 amountOther = 0 ;
316
- TrimmedAmount memory trimmedAmount = amount.trim (decimals, 8 );
317
- TrimmedAmount memory trimmedAmountOther = amountOther.trim (decimals, 8 );
315
+ TrimmedAmount trimmedAmount = amount.trim (decimals, 8 );
316
+ TrimmedAmount trimmedAmountOther = amountOther.trim (decimals, 8 );
318
317
319
- TrimmedAmount memory trimmedSum = trimmedAmount. add ( trimmedAmountOther) ;
318
+ TrimmedAmount trimmedSum = trimmedAmount + trimmedAmountOther;
320
319
321
- TrimmedAmount memory expectedTrimmedSum = TrimmedAmount (uint64 (amt * (10 ** 8 )), 8 );
322
- assert (expectedTrimmedSum.eq (trimmedSum));
320
+ TrimmedAmount expectedTrimmedSum = packTrimmedAmount (uint64 (amt * (10 ** 8 )), 8 );
321
+ assert (expectedTrimmedSum == trimmedSum);
322
+ assertEq (expectedTrimmedSum.getAmount (), trimmedSum.getAmount ());
323
+ assertEq (expectedTrimmedSum.getDecimals (), trimmedSum.getDecimals ());
323
324
}
324
325
}
0 commit comments