-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule6-tests.ts
432 lines (397 loc) · 14.2 KB
/
module6-tests.ts
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
import { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address";
import { expect, should } from "chai";
import { sign } from "crypto";
import { BigNumber, Contract, Transaction } from "ethers";
import { hashMessage, parseEther } from "ethers/lib/utils";
import { ethers } from "hardhat";
describe("Multi Signature Wallet Module 6", function () {
let walletContract: Contract;
let owner1: SignerWithAddress,
owner2: SignerWithAddress,
owner3: SignerWithAddress,
member1: SignerWithAddress,
member2: SignerWithAddress,
member3: SignerWithAddress;
beforeEach(async function () {
const walletFactory = await ethers.getContractFactory("MultiSigWallet");
[
owner1,
owner2,
owner3,
member1,
member2,
member3,
] = await ethers.getSigners();
walletContract = await walletFactory.deploy();
});
describe("Owner and Member Managament", async function () {
it("Should initialize contract owner properly", async function () {
// Check status of owner and unadded member
expect(await walletContract.isOwner(owner1.address)).to.be.true;
expect(await walletContract.isMember(owner1.address)).to.be.true;
expect(await walletContract.isOwner(member1.address)).to.be.false;
expect(await walletContract.isMember(member1.address)).to.be.false;
expect(await walletContract.totalMembers()).to.equal(1);
});
it("Should be able to add owners and members", async function () {
// Add a new owner and check if it's updated
await walletContract.addOwner(owner2.address);
expect(await walletContract.isOwner(owner2.address)).to.be.true;
expect(await walletContract.isMember(owner2.address)).to.be.true;
expect(await walletContract.totalMembers()).to.equal(2);
// Let owner2 add owner3 as owner
await walletContract.connect(owner2).addOwner(owner3.address);
// check if owner2 is still owner
expect(await walletContract.isOwner(owner2.address)).to.be.true;
expect(await walletContract.isMember(owner2.address)).to.be.true;
// check if owner 3 was added as owner
expect(await walletContract.isOwner(owner3.address)).to.be.true;
expect(await walletContract.isMember(owner3.address)).to.be.true;
expect(await walletContract.totalMembers()).to.equal(3);
// add member1 as a member and promote to owner
await walletContract
.connect(owner3)
["addMember(address)"](member1.address); // Alternate way of accesing functions if overloaded
expect(await walletContract.isOwner(member1.address)).to.be.false;
expect(await walletContract.isMember(member1.address)).to.be.true;
expect(await walletContract.totalMembers()).to.equal(4);
// promote member1
await walletContract.addOwner(member1.address);
expect(await walletContract.isOwner(member1.address)).to.be.true;
expect(await walletContract.totalMembers()).to.equal(4);
});
it("Should be able to remove owners and members", async function () {
// Add owner
await walletContract.addOwner(owner2.address);
expect(await walletContract.isOwner(owner2.address)).to.be.true;
// Remove Owner
await walletContract.removeOwner(owner2.address);
expect(await walletContract.isOwner(owner2.address)).to.be.false;
expect(await walletContract.isMember(owner2.address)).to.be.true;
expect(await walletContract.totalMembers()).to.equal(2);
// Remove owner2 from mmebers
await walletContract.removeMember(owner2.address, 0);
expect(await walletContract.isMember(owner2.address)).to.be.false;
expect(await walletContract.totalMembers()).to.equal(1);
});
it("Only owners should be able to remove owners", async function () {
// Add an owner
await walletContract.addOwner(owner2.address);
// Try removing owner from random address
await expect(
walletContract.connect(member1).removeOwner(owner2.address)
).to.revertedWith("NOT_OWNER");
// Add member and try to remove owner
await walletContract["addMember(address)"](member1.address);
await expect(
walletContract.connect(member1).removeOwner(owner2.address)
).to.revertedWith("NOT_OWNER");
});
it("Owners cannot be removed from members without demoting them to members", async function () {
// Add an owner
await walletContract.addOwner(owner2.address);
// Try removing owner
await expect(
walletContract.removeMember(owner2.address, 1)
).to.revertedWith("ADDRESS_IS_OWNER");
});
it("Should update threshold if provided during member add", async function () {
// Add member
await walletContract["addMember(address,uint256)"](member1.address, 1);
expect(await walletContract.threshold()).to.equal(1);
expect(await walletContract.isMember(member1.address)).to.be.true;
});
it("Should reject invalid threshold during member add", async function () {
// Add member
await expect(
walletContract["addMember(address,uint256)"](member1.address, 3)
).to.be.revertedWith("INVALID_THRESHOLD");
});
it("Should reject invalid threshold during member remove", async function () {
// Add member
await walletContract["addMember(address,uint256)"](member1.address, 1);
await expect(
walletContract.removeMember(member1.address, 2)
).to.be.revertedWith("INVALID_THRESHOLD");
});
});
interface Transaction {
wallet: string;
to: string;
amount: number;
transactionType: 0 | 1;
token: string;
nonce: number;
}
/**
* @dev comptues a hash for transaction
* @param transaction input transaction
*/
const getTransactionHash = (transaction: Transaction): string =>
ethers.utils.keccak256(
ethers.utils.defaultAbiCoder.encode(
[
"address",
"address payable",
"uint256",
"uint256",
"address",
"uint256",
],
[
transaction.wallet,
transaction.to,
transaction.amount,
transaction.transactionType,
transaction.token,
transaction.nonce,
]
)
);
/**
* @dev comptues signature for transaction
* @param transaction input transaction
* @param signer account using which tx is to be signed
*/
const signTransaction = async (
transaction: Transaction,
signer: SignerWithAddress
): Promise<{
v: number;
r: string;
s: string;
}> => {
const hash = getTransactionHash(transaction);
const hashBytes = ethers.utils.arrayify(hash);
const signature = await signer.signMessage(hashBytes);
const { v, r, s } = ethers.utils.splitSignature(signature);
return { v, r, s };
};
describe("Transactions Signature and Hash Verification", async function () {
it("Should return correct transaction hash", async function () {
// Generate a transaction hash and compare it with what solidity gives
const transaction: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const hashExpected = getTransactionHash(transaction);
const hashFromContract = await walletContract.getTransactionHash(
transaction
);
expect(hashFromContract).to.equal(hashExpected);
});
it("Should return verify transaction signature", async function () {
// Sign a transaciton and try to recover the address from solidity
const transaction: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const { v, r, s } = await signTransaction(transaction, owner1);
const addressFromContract = await walletContract.recoverAddressFromTransactionSignature(
transaction,
v,
r,
s
);
expect(addressFromContract).to.equal(owner1.address);
});
});
describe("Transaction Verification and Execution", async function () {
/**
* @dev comptues signature arrays transaction
* @param t input transaction
* @param signers array of accounts
*/
const getSignatureArrays = async (
t: Transaction,
signers: SignerWithAddress[]
): Promise<{ v: number[]; r: string[]; s: string[] }> => {
const signatures = await Promise.all(
signers.map((signer) => signTransaction(t, signer))
);
const signatureArrays: { v: number[]; r: string[]; s: string[] } = {
v: [],
r: [],
s: [],
};
signatures.forEach(({ v, r, s }) => {
signatureArrays.v.push(v);
signatureArrays.r.push(r);
signatureArrays.s.push(s);
});
return signatureArrays;
};
beforeEach(async function () {
// Setup a 2 of 3 threshold with 1 owner
await walletContract["addMember(address)"](member1.address);
await walletContract["addMember(address,uint256)"](member2.address, 2);
// Send 10 ETH to walletContract
await owner1.sendTransaction({
to: walletContract.address,
value: parseEther("10"),
});
});
it("Should be able to execute eth transaction when threshold is met", async function () {
// Create a transaction and check if it executes
const t: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const members = [owner1, member1];
const { v, r, s } = await getSignatureArrays(t, members);
// Check transaction
await expect(
async () =>
await walletContract.executeTransaction(
t,
v,
r,
s,
members.map((member) => member.address)
)
).to.changeEtherBalances([walletContract, member3], [-10, +10]);
// Check nonce
expect(await walletContract.nonce()).to.equal(1);
});
it("Should reject transaction when threshold is not met", async function () {
// Create a transaction and check if it executes
const t: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const members = [member1];
const { v, r, s } = await getSignatureArrays(t, members);
// Check transaction
await expect(
walletContract.executeTransaction(
t,
v,
r,
s,
members.map((member) => member.address)
)
).to.be.revertedWith("INSUFFICIENT_MEMBERS");
// Check nonce
expect(await walletContract.nonce()).to.equal(0);
});
it("Should reject transaction when duplicates are present", async function () {
// Create a transaction and check if it executes
const t: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const members = [member1, member1];
const { v, r, s } = await getSignatureArrays(t, members);
// Check transaction
await expect(
walletContract.executeTransaction(
t,
v,
r,
s,
members.map((member) => member.address)
)
).to.be.revertedWith("DUPLICATE_ADDRESSES");
// Check nonce
expect(await walletContract.nonce()).to.equal(0);
});
it("Should reject transaction if non member signature is provided", async function () {
// Create a transaction and check if it executes
const t: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const members = [owner1, member3];
const { v, r, s } = await getSignatureArrays(t, members);
// Check transaction
// Check transaction
await expect(
walletContract.executeTransaction(
t,
v,
r,
s,
members.map((member) => member.address)
)
).to.be.revertedWith("ADDRESS_NOT_MEMBER");
// Check nonce
expect(await walletContract.nonce()).to.equal(0);
});
it("Should reject transaction if wallet address is wrong", async function () {
// Create a transaction and check if it executes
const t: Transaction = {
wallet: member1.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 0,
};
const members = [owner1, member2];
const { v, r, s } = await getSignatureArrays(t, members);
// Check transaction
// Check transaction
await expect(
walletContract.executeTransaction(
t,
v,
r,
s,
members.map((member) => member.address)
)
).to.be.revertedWith("WALLET_ADDRESS_MISMATCH");
// Check nonce
expect(await walletContract.nonce()).to.equal(0);
});
it("Should reject transaction if invalid nonce is provided", async function () {
// Create a transaction and check if it executes
const t: Transaction = {
wallet: walletContract.address,
to: member3.address,
amount: 10,
transactionType: 0,
token: "0x0000000000000000000000000000000000000000",
nonce: 1,
};
const members = [owner1, member2];
const { v, r, s } = await getSignatureArrays(t, members);
// Check transaction
// Check transaction
await expect(
walletContract.executeTransaction(
t,
v,
r,
s,
members.map((member) => member.address)
)
).to.be.revertedWith("INVALID_NONCE");
// Check nonce
expect(await walletContract.nonce()).to.equal(0);
});
});
});