-
Notifications
You must be signed in to change notification settings - Fork 707
Expand file tree
/
Copy pathSafeTransferLib.t.sol
More file actions
610 lines (520 loc) · 20 KB
/
SafeTransferLib.t.sol
File metadata and controls
610 lines (520 loc) · 20 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.15;
import {MockERC20} from "./utils/mocks/MockERC20.sol";
import {RevertingToken} from "./utils/weird-tokens/RevertingToken.sol";
import {ReturnsTwoToken} from "./utils/weird-tokens/ReturnsTwoToken.sol";
import {ReturnsFalseToken} from "./utils/weird-tokens/ReturnsFalseToken.sol";
import {MissingReturnToken} from "./utils/weird-tokens/MissingReturnToken.sol";
import {ReturnsTooMuchToken} from "./utils/weird-tokens/ReturnsTooMuchToken.sol";
import {ReturnsGarbageToken} from "./utils/weird-tokens/ReturnsGarbageToken.sol";
import {ReturnsTooLittleToken} from "./utils/weird-tokens/ReturnsTooLittleToken.sol";
import {DSTestPlus} from "./utils/DSTestPlus.sol";
import {ERC20} from "../tokens/ERC20.sol";
import {SafeTransferLib} from "../utils/SafeTransferLib.sol";
contract SafeTransferLibTest is DSTestPlus {
RevertingToken reverting;
ReturnsTwoToken returnsTwo;
ReturnsFalseToken returnsFalse;
MissingReturnToken missingReturn;
ReturnsTooMuchToken returnsTooMuch;
ReturnsGarbageToken returnsGarbage;
ReturnsTooLittleToken returnsTooLittle;
MockERC20 erc20;
function setUp() public virtual {
reverting = new RevertingToken();
returnsTwo = new ReturnsTwoToken();
returnsFalse = new ReturnsFalseToken();
missingReturn = new MissingReturnToken();
returnsTooMuch = new ReturnsTooMuchToken();
returnsGarbage = new ReturnsGarbageToken();
returnsTooLittle = new ReturnsTooLittleToken();
erc20 = new MockERC20("StandardToken", "ST", 18);
erc20.mint(address(this), type(uint256).max);
}
function testTransferWithMissingReturn() public {
verifySafeTransfer(address(missingReturn), address(0xBEEF), 1e18);
}
function testTransferWithStandardERC20() public {
verifySafeTransfer(address(erc20), address(0xBEEF), 1e18);
}
function testTransferWithReturnsTooMuch() public {
verifySafeTransfer(address(returnsTooMuch), address(0xBEEF), 1e18);
}
function testTransferWithNonContract() public {
SafeTransferLib.safeTransfer(ERC20(address(0xBADBEEF)), address(0xBEEF), 1e18);
}
function testTransferFromWithMissingReturn() public {
verifySafeTransferFrom(address(missingReturn), address(0xFEED), address(0xBEEF), 1e18);
}
function testTransferFromWithStandardERC20() public {
verifySafeTransferFrom(address(erc20), address(0xFEED), address(0xBEEF), 1e18);
}
function testTransferFromWithReturnsTooMuch() public {
verifySafeTransferFrom(address(returnsTooMuch), address(0xFEED), address(0xBEEF), 1e18);
}
function testTransferFromWithNonContract() public {
SafeTransferLib.safeTransferFrom(ERC20(address(0xBADBEEF)), address(0xFEED), address(0xBEEF), 1e18);
}
function testApproveWithMissingReturn() public {
verifySafeApprove(address(missingReturn), address(0xBEEF), 1e18);
}
function testApproveWithStandardERC20() public {
verifySafeApprove(address(erc20), address(0xBEEF), 1e18);
}
function testApproveWithReturnsTooMuch() public {
verifySafeApprove(address(returnsTooMuch), address(0xBEEF), 1e18);
}
function testApproveWithNonContract() public {
SafeTransferLib.safeApprove(ERC20(address(0xBADBEEF)), address(0xBEEF), 1e18);
}
function testTransferETH() public {
SafeTransferLib.safeTransferETH(address(0xBEEF), 1e18);
}
function testFailTransferWithReturnsFalse() public {
verifySafeTransfer(address(returnsFalse), address(0xBEEF), 1e18);
}
function testFailTransferWithReverting() public {
verifySafeTransfer(address(reverting), address(0xBEEF), 1e18);
}
function testFailTransferWithReturnsTooLittle() public {
verifySafeTransfer(address(returnsTooLittle), address(0xBEEF), 1e18);
}
function testFailTransferFromWithReturnsFalse() public {
verifySafeTransferFrom(address(returnsFalse), address(0xFEED), address(0xBEEF), 1e18);
}
function testFailTransferFromWithReverting() public {
verifySafeTransferFrom(address(reverting), address(0xFEED), address(0xBEEF), 1e18);
}
function testFailTransferFromWithReturnsTooLittle() public {
verifySafeTransferFrom(address(returnsTooLittle), address(0xFEED), address(0xBEEF), 1e18);
}
function testFailApproveWithReturnsFalse() public {
verifySafeApprove(address(returnsFalse), address(0xBEEF), 1e18);
}
function testFailApproveWithReverting() public {
verifySafeApprove(address(reverting), address(0xBEEF), 1e18);
}
function testFailApproveWithReturnsTooLittle() public {
verifySafeApprove(address(returnsTooLittle), address(0xBEEF), 1e18);
}
function testTransferWithMissingReturn(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(missingReturn), to, amount);
}
function testTransferWithStandardERC20(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(erc20), to, amount);
}
function testTransferWithReturnsTooMuch(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(returnsTooMuch), to, amount);
}
function testTransferWithGarbage(
address to,
uint256 amount,
bytes memory garbage,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
if (
(garbage.length < 32 ||
(garbage[0] != 0 ||
garbage[1] != 0 ||
garbage[2] != 0 ||
garbage[3] != 0 ||
garbage[4] != 0 ||
garbage[5] != 0 ||
garbage[6] != 0 ||
garbage[7] != 0 ||
garbage[8] != 0 ||
garbage[9] != 0 ||
garbage[10] != 0 ||
garbage[11] != 0 ||
garbage[12] != 0 ||
garbage[13] != 0 ||
garbage[14] != 0 ||
garbage[15] != 0 ||
garbage[16] != 0 ||
garbage[17] != 0 ||
garbage[18] != 0 ||
garbage[19] != 0 ||
garbage[20] != 0 ||
garbage[21] != 0 ||
garbage[22] != 0 ||
garbage[23] != 0 ||
garbage[24] != 0 ||
garbage[25] != 0 ||
garbage[26] != 0 ||
garbage[27] != 0 ||
garbage[28] != 0 ||
garbage[29] != 0 ||
garbage[30] != 0 ||
garbage[31] != bytes1(0x01))) && garbage.length != 0
) return;
returnsGarbage.setGarbage(garbage);
verifySafeTransfer(address(returnsGarbage), to, amount);
}
function testTransferWithNonContract(
address nonContract,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
if (uint256(uint160(nonContract)) <= 18 || nonContract.code.length > 0) return;
SafeTransferLib.safeTransfer(ERC20(nonContract), to, amount);
}
function testFailTransferETHToContractWithoutFallback() public {
SafeTransferLib.safeTransferETH(address(this), 1e18);
}
function testTransferFromWithMissingReturn(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(missingReturn), from, to, amount);
}
function testTransferFromWithStandardERC20(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(erc20), from, to, amount);
}
function testTransferFromWithReturnsTooMuch(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(returnsTooMuch), from, to, amount);
}
function testTransferFromWithGarbage(
address from,
address to,
uint256 amount,
bytes memory garbage,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
if (
(garbage.length < 32 ||
(garbage[0] != 0 ||
garbage[1] != 0 ||
garbage[2] != 0 ||
garbage[3] != 0 ||
garbage[4] != 0 ||
garbage[5] != 0 ||
garbage[6] != 0 ||
garbage[7] != 0 ||
garbage[8] != 0 ||
garbage[9] != 0 ||
garbage[10] != 0 ||
garbage[11] != 0 ||
garbage[12] != 0 ||
garbage[13] != 0 ||
garbage[14] != 0 ||
garbage[15] != 0 ||
garbage[16] != 0 ||
garbage[17] != 0 ||
garbage[18] != 0 ||
garbage[19] != 0 ||
garbage[20] != 0 ||
garbage[21] != 0 ||
garbage[22] != 0 ||
garbage[23] != 0 ||
garbage[24] != 0 ||
garbage[25] != 0 ||
garbage[26] != 0 ||
garbage[27] != 0 ||
garbage[28] != 0 ||
garbage[29] != 0 ||
garbage[30] != 0 ||
garbage[31] != bytes1(0x01))) && garbage.length != 0
) return;
returnsGarbage.setGarbage(garbage);
verifySafeTransferFrom(address(returnsGarbage), from, to, amount);
}
function testTransferFromWithNonContract(
address nonContract,
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
if (uint256(uint160(nonContract)) <= 18 || nonContract.code.length > 0) return;
SafeTransferLib.safeTransferFrom(ERC20(nonContract), from, to, amount);
}
function testApproveWithMissingReturn(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(missingReturn), to, amount);
}
function testApproveWithStandardERC20(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(erc20), to, amount);
}
function testApproveWithReturnsTooMuch(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(returnsTooMuch), to, amount);
}
function testApproveWithGarbage(
address to,
uint256 amount,
bytes memory garbage,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
if (
(garbage.length < 32 ||
(garbage[0] != 0 ||
garbage[1] != 0 ||
garbage[2] != 0 ||
garbage[3] != 0 ||
garbage[4] != 0 ||
garbage[5] != 0 ||
garbage[6] != 0 ||
garbage[7] != 0 ||
garbage[8] != 0 ||
garbage[9] != 0 ||
garbage[10] != 0 ||
garbage[11] != 0 ||
garbage[12] != 0 ||
garbage[13] != 0 ||
garbage[14] != 0 ||
garbage[15] != 0 ||
garbage[16] != 0 ||
garbage[17] != 0 ||
garbage[18] != 0 ||
garbage[19] != 0 ||
garbage[20] != 0 ||
garbage[21] != 0 ||
garbage[22] != 0 ||
garbage[23] != 0 ||
garbage[24] != 0 ||
garbage[25] != 0 ||
garbage[26] != 0 ||
garbage[27] != 0 ||
garbage[28] != 0 ||
garbage[29] != 0 ||
garbage[30] != 0 ||
garbage[31] != bytes1(0x01))) && garbage.length != 0
) return;
returnsGarbage.setGarbage(garbage);
verifySafeApprove(address(returnsGarbage), to, amount);
}
function testApproveWithNonContract(
address nonContract,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
if (uint256(uint160(nonContract)) <= 18 || nonContract.code.length > 0) return;
SafeTransferLib.safeApprove(ERC20(nonContract), to, amount);
}
function testTransferETH(
address recipient,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
// Transferring to msg.sender can fail because it's possible to overflow their ETH balance as it begins non-zero.
if (recipient.code.length > 0 || uint256(uint160(recipient)) <= 18 || recipient == msg.sender) return;
amount = bound(amount, 0, address(this).balance);
SafeTransferLib.safeTransferETH(recipient, amount);
}
function testFailTransferWithReturnsFalse(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(returnsFalse), to, amount);
}
function testFailTransferWithReverting(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(reverting), to, amount);
}
function testFailTransferWithReturnsTooLittle(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(returnsTooLittle), to, amount);
}
function testFailTransferWithReturnsTwo(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransfer(address(returnsTwo), to, amount);
}
function testFailTransferWithGarbage(
address to,
uint256 amount,
bytes memory garbage,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
require(garbage.length != 0 && (garbage.length < 32 || garbage[31] != bytes1(0x01)));
returnsGarbage.setGarbage(garbage);
verifySafeTransfer(address(returnsGarbage), to, amount);
}
function testFailTransferFromWithReturnsFalse(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(returnsFalse), from, to, amount);
}
function testFailTransferFromWithReverting(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(reverting), from, to, amount);
}
function testFailTransferFromWithReturnsTooLittle(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(returnsTooLittle), from, to, amount);
}
function testFailTransferFromWithReturnsTwo(
address from,
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeTransferFrom(address(returnsTwo), from, to, amount);
}
function testFailTransferFromWithGarbage(
address from,
address to,
uint256 amount,
bytes memory garbage,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
require(garbage.length != 0 && (garbage.length < 32 || garbage[31] != bytes1(0x01)));
returnsGarbage.setGarbage(garbage);
verifySafeTransferFrom(address(returnsGarbage), from, to, amount);
}
function testFailApproveWithReturnsFalse(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(returnsFalse), to, amount);
}
function testFailApproveWithReverting(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(reverting), to, amount);
}
function testFailApproveWithReturnsTooLittle(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(returnsTooLittle), to, amount);
}
function testFailApproveWithReturnsTwo(
address to,
uint256 amount,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
verifySafeApprove(address(returnsTwo), to, amount);
}
function testFailApproveWithGarbage(
address to,
uint256 amount,
bytes memory garbage,
bytes calldata brutalizeWith
) public brutalizeMemory(brutalizeWith) {
require(garbage.length != 0 && (garbage.length < 32 || garbage[31] != bytes1(0x01)));
returnsGarbage.setGarbage(garbage);
verifySafeApprove(address(returnsGarbage), to, amount);
}
function testFailTransferETHToContractWithoutFallback(uint256 amount, bytes calldata brutalizeWith)
public
brutalizeMemory(brutalizeWith)
{
SafeTransferLib.safeTransferETH(address(this), amount);
}
function verifySafeTransfer(
address token,
address to,
uint256 amount
) internal {
uint256 preBal = ERC20(token).balanceOf(to);
SafeTransferLib.safeTransfer(ERC20(address(token)), to, amount);
uint256 postBal = ERC20(token).balanceOf(to);
if (to == address(this)) {
assertEq(preBal, postBal);
} else {
assertEq(postBal - preBal, amount);
}
}
function verifySafeTransferFrom(
address token,
address from,
address to,
uint256 amount
) internal {
forceApprove(token, from, address(this), amount);
// We cast to MissingReturnToken here because it won't check
// that there was return data, which accommodates all tokens.
MissingReturnToken(token).transfer(from, amount);
uint256 preBal = ERC20(token).balanceOf(to);
SafeTransferLib.safeTransferFrom(ERC20(token), from, to, amount);
uint256 postBal = ERC20(token).balanceOf(to);
if (from == to) {
assertEq(preBal, postBal);
} else {
assertEq(postBal - preBal, amount);
}
}
function verifySafeApprove(
address token,
address to,
uint256 amount
) internal {
SafeTransferLib.safeApprove(ERC20(address(token)), to, amount);
assertEq(ERC20(token).allowance(address(this), to), amount);
}
function forceApprove(
address token,
address from,
address to,
uint256 amount
) internal {
uint256 slot = token == address(erc20) ? 4 : 2; // Standard ERC20 name and symbol aren't constant.
hevm.store(
token,
keccak256(abi.encode(to, keccak256(abi.encode(from, uint256(slot))))),
bytes32(uint256(amount))
);
assertEq(ERC20(token).allowance(from, to), amount, "wrong allowance");
}
}