-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathSafe.Setup.spec.ts
More file actions
465 lines (422 loc) · 17.7 KB
/
Safe.Setup.spec.ts
File metadata and controls
465 lines (422 loc) · 17.7 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
import { expect } from "chai";
import hre, { deployments, ethers } from "hardhat";
import { AddressZero } from "@ethersproject/constants";
import { deployContract, getMock, getSafeSingleton, getSafeTemplate } from "../utils/setup";
import { calculateSafeDomainSeparator } from "../../src/utils/execution";
import { AddressOne } from "../../src/utils/constants";
import { chainId, encodeTransfer } from "../utils/encoding";
describe("Safe", () => {
const setupTests = deployments.createFixture(async ({ deployments }) => {
await deployments.fixture();
const signers = await ethers.getSigners();
return {
template: await getSafeTemplate(),
mock: await getMock(),
signers,
};
});
describe("setup", () => {
it("should not allow to call setup on singleton", async () => {
const {
signers: [user1, user2, user3],
} = await setupTests();
const singleton = await getSafeSingleton();
await expect(await singleton.getThreshold()).to.eq(1n);
// Because setup wasn't called on the singleton it breaks the assumption made
// within `getModulesPaginated` method that the linked list will be always correctly
// initialized with 0x1 as a starting element and 0x1 as the end
// But because `setupModules` wasn't called, it is empty.
await expect(singleton.getModulesPaginated(AddressOne, 10)).to.be.reverted;
// "Should not be able to retrieve owners (currently the contract will run in an endless loop when not initialized)"
await expect(singleton.getOwners()).to.be.reverted;
await expect(
singleton.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
),
).to.be.revertedWith("GS200");
});
it("should set domain hash", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
const templateAddress = await template.getAddress();
await expect(
template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
),
)
.to.emit(template, "SafeSetup")
.withArgs(user1.address, [user1.address, user2.address, user3.address], 2, AddressZero, AddressZero);
await expect(await template.domainSeparator()).to.be.eq(calculateSafeDomainSeparator(templateAddress, await chainId()));
await expect(await template.getOwners()).to.be.deep.eq([user1.address, user2.address, user3.address]);
await expect(await template.getThreshold()).to.be.deep.eq(2n);
});
it("should revert if called twice", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
await template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
);
await expect(
template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
),
).to.be.revertedWith("GS200");
});
it("should revert if same owner is included twice", async () => {
const {
template,
signers: [user1, user2],
} = await setupTests();
await expect(
template.setup(
[user2.address, user1.address, user2.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
),
).to.be.revertedWith("GS204");
});
it("should revert if 0 address is used as an owner", async () => {
const {
template,
signers: [, user2],
} = await setupTests();
await expect(
template.setup([user2.address, AddressZero], 2, AddressZero, "0x", AddressZero, AddressZero, 0, AddressZero),
).to.be.revertedWith("GS203");
});
it("should revert if Safe itself is used as an owner", async () => {
const {
template,
signers: [, user2],
} = await setupTests();
const templateAddress = await template.getAddress();
await expect(
template.setup([user2.address, templateAddress], 2, AddressZero, "0x", AddressZero, AddressZero, 0, AddressZero),
).to.be.revertedWith("GS203");
});
it("should revert if sentinel is used as an owner", async () => {
const {
template,
signers: [, user2],
} = await setupTests();
await expect(
template.setup([user2.address, AddressOne], 2, AddressZero, "0x", AddressZero, AddressZero, 0, AddressZero),
).to.be.revertedWith("GS203");
});
it("should revert if same owner is included twice one after each other", async () => {
const {
template,
signers: [, user2],
} = await setupTests();
await expect(
template.setup([user2.address, user2.address], 2, AddressZero, "0x", AddressZero, AddressZero, 0, AddressZero),
).to.be.revertedWith("GS203");
});
it("should revert if threshold is too high", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
await expect(
template.setup(
[user1.address, user2.address, user3.address],
4,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
),
).to.be.revertedWith("GS201");
});
it("should revert if threshold is 0", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
await expect(
template.setup(
[user1.address, user2.address, user3.address],
0,
AddressZero,
"0x",
AddressZero,
AddressZero,
0,
AddressZero,
),
).to.be.revertedWith("GS202");
});
it("should revert if owners are empty", async () => {
const { template } = await setupTests();
await expect(template.setup([], 0, AddressZero, "0x", AddressZero, AddressZero, 0, AddressZero)).to.be.revertedWith("GS202");
});
it("should set fallback handler and call sub inititalizer", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
const templateAddress = await template.getAddress();
const source = `
contract Initializer {
function init(bytes4 data) public {
bytes32 slot = 0x4242424242424242424242424242424242424242424242424242424242424242;
/* solhint-disable no-inline-assembly */
/// @solidity memory-safe-assembly
assembly {
sstore(slot, data)
}
/* solhint-enable no-inline-assembly */
}
}`;
const testIntializer = await deployContract(user1, source);
const testIntializerAddress = await testIntializer.getAddress();
const initData = testIntializer.interface.encodeFunctionData("init", ["0x42baddad"]);
await expect(
template.setup(
[user1.address, user2.address, user3.address],
2,
testIntializerAddress,
initData,
AddressOne,
AddressZero,
0,
AddressZero,
),
)
.to.emit(template, "SafeSetup")
.withArgs(user1.address, [user1.address, user2.address, user3.address], 2, testIntializerAddress, AddressOne);
await expect(await template.domainSeparator()).to.be.eq(calculateSafeDomainSeparator(templateAddress, await chainId()));
await expect(await template.getOwners()).to.be.deep.eq([user1.address, user2.address, user3.address]);
await expect(await template.getThreshold()).to.eq(2n);
await expect(
await hre.ethers.provider.getStorage(templateAddress, "0x6c9a6c4a39284e37ed1cf53d337577d14212a4870fb976a4366c693b939918d5"),
).to.be.eq("0x" + "1".padStart(64, "0"));
await expect(
await hre.ethers.provider.getStorage(templateAddress, "0x4242424242424242424242424242424242424242424242424242424242424242"),
).to.be.eq("0x" + "42baddad".padEnd(64, "0"));
});
it("should fail if sub initializer fails", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
const source = `
contract Initializer {
function init(bytes4 data) public {
require(false, "Computer says nah");
}
}`;
const testIntializer = await deployContract(user1, source);
const testIntializerAddress = await testIntializer.getAddress();
const initData = testIntializer.interface.encodeFunctionData("init", ["0x42baddad"]);
await expect(
template.setup(
[user1.address, user2.address, user3.address],
2,
testIntializerAddress,
initData,
AddressZero,
AddressZero,
0,
AddressZero,
),
).to.be.revertedWith("GS000");
});
it("should fail if ether payment fails", async () => {
const {
template,
mock,
signers: [user1, user2, user3],
} = await setupTests();
const payment = 133742;
const transferData = encodeTransfer(user1.address, payment);
await mock.givenCalldataRevert(transferData);
await expect(
template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
payment,
AddressZero,
),
).to.be.revertedWith("GS011");
});
it("should work with ether payment to deployer", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
const templateAddress = await template.getAddress();
const payment = ethers.parseEther("10");
await user1.sendTransaction({ to: templateAddress, value: payment });
const userBalance = await hre.ethers.provider.getBalance(user1.address);
await expect(await hre.ethers.provider.getBalance(templateAddress)).to.eq(ethers.parseEther("10"));
await template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
payment,
AddressZero,
);
await expect(await hre.ethers.provider.getBalance(templateAddress)).to.eq(ethers.parseEther("0"));
await expect(userBalance < (await hre.ethers.provider.getBalance(user1.address))).to.be.true;
});
it("should work with ether payment to account", async () => {
const {
template,
signers: [user1, user2, user3],
} = await setupTests();
const templateAddress = await template.getAddress();
const payment = ethers.parseEther("10");
await user1.sendTransaction({ to: templateAddress, value: payment });
const userBalance = await hre.ethers.provider.getBalance(user2.address);
await expect(await hre.ethers.provider.getBalance(templateAddress)).to.eq(ethers.parseEther("10"));
await template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
AddressZero,
payment,
user2.address,
);
await expect(await hre.ethers.provider.getBalance(templateAddress)).to.eq(ethers.parseEther("0"));
await expect(await hre.ethers.provider.getBalance(user2.address)).to.eq(userBalance + payment);
await expect(await template.getOwners()).to.be.deep.eq([user1.address, user2.address, user3.address]);
});
it("should fail if token payment fails", async () => {
const {
template,
mock,
signers: [user1, user2, user3],
} = await setupTests();
const mockAddress = await mock.getAddress();
const payment = 133742;
const transferData = encodeTransfer(user1.address, payment);
await mock.givenCalldataRevert(transferData);
await expect(
template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
mockAddress,
payment,
AddressZero,
),
).to.be.revertedWith("GS012");
});
it("should work with token payment to deployer", async () => {
const {
template,
mock,
signers: [user1, user2, user3],
} = await setupTests();
const mockAddress = await mock.getAddress();
const payment = 133742;
const transferData = encodeTransfer(user1.address, payment);
await mock.givenCalldataReturnBool(transferData, true);
await template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
mockAddress,
payment,
AddressZero,
);
expect(await mock.invocationCountForCalldata.staticCall(transferData)).to.eq(1n);
await expect(await template.getOwners()).to.be.deep.eq([user1.address, user2.address, user3.address]);
});
it("should work with token payment to account", async () => {
const {
template,
mock,
signers: [user1, user2, user3],
} = await setupTests();
const mockAddress = await mock.getAddress();
const payment = 133742;
const transferData = encodeTransfer(user2.address, payment);
await mock.givenCalldataReturnBool(transferData, true);
await template.setup(
[user1.address, user2.address, user3.address],
2,
AddressZero,
"0x",
AddressZero,
mockAddress,
payment,
user2.address,
);
expect(await mock.invocationCountForCalldata.staticCall(transferData)).to.eq(1n);
await expect(await template.getOwners()).to.be.deep.eq([user1.address, user2.address, user3.address]);
});
it("should revert if the initializer address does not contain code", async () => {
const {
template,
signers: [user1, user2],
} = await setupTests();
await expect(
template.setup([user1.address], 1, user2.address, "0xbeef73", AddressZero, AddressZero, 0, AddressZero),
).to.be.revertedWith("GS002");
});
it("should fail if tried to set the fallback handler address to self", async () => {
const {
template,
signers: [user1],
} = await setupTests();
const templateAddress = await template.getAddress();
await expect(
template.setup([user1.address], 1, AddressZero, "0x", templateAddress, AddressZero, 0, AddressZero),
).to.be.revertedWith("GS400");
});
});
});