forked from compound-finance/compound-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimelockTest.js
373 lines (308 loc) · 13.6 KB
/
TimelockTest.js
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
const {
encodeParameters,
etherUnsigned,
freezeTime,
keccak256
} = require('./Utils/Ethereum');
const oneWeekInSeconds = etherUnsigned(7 * 24 * 60 * 60);
const zero = etherUnsigned(0);
const gracePeriod = oneWeekInSeconds.multipliedBy(2);
describe('Timelock', () => {
let root, notAdmin, newAdmin;
let blockTimestamp;
let timelock;
let delay = oneWeekInSeconds;
let newDelay = delay.multipliedBy(2);
let target;
let value = zero;
let signature = 'setDelay(uint256)';
let data = encodeParameters(['uint256'], [newDelay.toFixed()]);
let revertData = encodeParameters(['uint256'], [etherUnsigned(60 * 60).toFixed()]);
let eta;
let queuedTxHash;
beforeEach(async () => {
[root, notAdmin, newAdmin] = accounts;
timelock = await deploy('TimelockHarness', [root, delay]);
blockTimestamp = etherUnsigned(100);
await freezeTime(blockTimestamp.toNumber())
target = timelock.options.address;
eta = blockTimestamp.plus(delay);
queuedTxHash = keccak256(
encodeParameters(
['address', 'uint256', 'string', 'bytes', 'uint256'],
[target, value.toString(), signature, data, eta.toString()]
)
);
});
describe('constructor', () => {
it('sets address of admin', async () => {
let configuredAdmin = await call(timelock, 'admin');
expect(configuredAdmin).toEqual(root);
});
it('sets delay', async () => {
let configuredDelay = await call(timelock, 'delay');
expect(configuredDelay).toEqual(delay.toString());
});
});
describe('setDelay', () => {
it('requires msg.sender to be Timelock', async () => {
await expect(send(timelock, 'setDelay', [delay], { from: root })).rejects.toRevert('revert Timelock::setDelay: Call must come from Timelock.');
});
});
describe('setPendingAdmin', () => {
it('requires msg.sender to be Timelock', async () => {
await expect(
send(timelock, 'setPendingAdmin', [newAdmin], { from: root })
).rejects.toRevert('revert Timelock::setPendingAdmin: Call must come from Timelock.');
});
});
describe('acceptAdmin', () => {
afterEach(async () => {
await send(timelock, 'harnessSetAdmin', [root], { from: root });
});
it('requires msg.sender to be pendingAdmin', async () => {
await expect(
send(timelock, 'acceptAdmin', { from: notAdmin })
).rejects.toRevert('revert Timelock::acceptAdmin: Call must come from pendingAdmin.');
});
it('sets pendingAdmin to address 0 and changes admin', async () => {
await send(timelock, 'harnessSetPendingAdmin', [newAdmin], { from: root });
const pendingAdminBefore = await call(timelock, 'pendingAdmin');
expect(pendingAdminBefore).toEqual(newAdmin);
const result = await send(timelock, 'acceptAdmin', { from: newAdmin });
const pendingAdminAfter = await call(timelock, 'pendingAdmin');
expect(pendingAdminAfter).toEqual('0x0000000000000000000000000000000000000000');
const timelockAdmin = await call(timelock, 'admin');
expect(timelockAdmin).toEqual(newAdmin);
expect(result).toHaveLog('NewAdmin', {
newAdmin
});
});
});
describe('queueTransaction', () => {
it('requires admin to be msg.sender', async () => {
await expect(
send(timelock, 'queueTransaction', [target, value, signature, data, eta], { from: notAdmin })
).rejects.toRevert('revert Timelock::queueTransaction: Call must come from admin.');
});
it('requires eta to exceed delay', async () => {
const etaLessThanDelay = blockTimestamp.plus(delay).minus(1);
await expect(
send(timelock, 'queueTransaction', [target, value, signature, data, etaLessThanDelay], {
from: root
})
).rejects.toRevert('revert Timelock::queueTransaction: Estimated execution block must satisfy delay.');
});
it('sets hash as true in queuedTransactions mapping', async () => {
const queueTransactionsHashValueBefore = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueBefore).toEqual(false);
await send(timelock, 'queueTransaction', [target, value, signature, data, eta], { from: root });
const queueTransactionsHashValueAfter = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueAfter).toEqual(true);
});
it('should emit QueueTransaction event', async () => {
const result = await send(timelock, 'queueTransaction', [target, value, signature, data, eta], {
from: root
});
expect(result).toHaveLog('QueueTransaction', {
data,
signature,
target,
eta: eta.toString(),
txHash: queuedTxHash,
value: value.toString()
});
});
});
describe('cancelTransaction', () => {
beforeEach(async () => {
await send(timelock, 'queueTransaction', [target, value, signature, data, eta], { from: root });
});
it('requires admin to be msg.sender', async () => {
await expect(
send(timelock, 'cancelTransaction', [target, value, signature, data, eta], { from: notAdmin })
).rejects.toRevert('revert Timelock::cancelTransaction: Call must come from admin.');
});
it('sets hash from true to false in queuedTransactions mapping', async () => {
const queueTransactionsHashValueBefore = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueBefore).toEqual(true);
await send(timelock, 'cancelTransaction', [target, value, signature, data, eta], { from: root });
const queueTransactionsHashValueAfter = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueAfter).toEqual(false);
});
it('should emit CancelTransaction event', async () => {
const result = await send(timelock, 'cancelTransaction', [target, value, signature, data, eta], {
from: root
});
expect(result).toHaveLog('CancelTransaction', {
data,
signature,
target,
eta: eta.toString(),
txHash: queuedTxHash,
value: value.toString()
});
});
});
describe('queue and cancel empty', () => {
it('can queue and cancel an empty signature and data', async () => {
const txHash = keccak256(
encodeParameters(
['address', 'uint256', 'string', 'bytes', 'uint256'],
[target, value.toString(), '', '0x', eta.toString()]
)
);
expect(await call(timelock, 'queuedTransactions', [txHash])).toBeFalsy();
await send(timelock, 'queueTransaction', [target, value, '', '0x', eta], { from: root });
expect(await call(timelock, 'queuedTransactions', [txHash])).toBeTruthy();
await send(timelock, 'cancelTransaction', [target, value, '', '0x', eta], { from: root });
expect(await call(timelock, 'queuedTransactions', [txHash])).toBeFalsy();
});
});
describe('executeTransaction (setDelay)', () => {
beforeEach(async () => {
// Queue transaction that will succeed
await send(timelock, 'queueTransaction', [target, value, signature, data, eta], {
from: root
});
// Queue transaction that will revert when executed
await send(timelock, 'queueTransaction', [target, value, signature, revertData, eta], {
from: root
});
});
it('requires admin to be msg.sender', async () => {
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, eta], { from: notAdmin })
).rejects.toRevert('revert Timelock::executeTransaction: Call must come from admin.');
});
it('requires transaction to be queued', async () => {
const differentEta = eta.plus(1);
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, differentEta], { from: root })
).rejects.toRevert("revert Timelock::executeTransaction: Transaction hasn't been queued.");
});
it('requires timestamp to be greater than or equal to eta', async () => {
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, eta], {
from: root
})
).rejects.toRevert(
"revert Timelock::executeTransaction: Transaction hasn't surpassed time lock."
);
});
it('requires timestamp to be less than eta plus gracePeriod', async () => {
await freezeTime(blockTimestamp.plus(delay).plus(gracePeriod).plus(1).toNumber());
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, eta], {
from: root
})
).rejects.toRevert('revert Timelock::executeTransaction: Transaction is stale.');
});
it('requires target.call transaction to succeed', async () => {
await freezeTime(eta.toNumber());
await expect(
send(timelock, 'executeTransaction', [target, value, signature, revertData, eta], {
from: root
})
).rejects.toRevert('revert Timelock::executeTransaction: Transaction execution reverted.');
});
it('sets hash from true to false in queuedTransactions mapping, updates delay, and emits ExecuteTransaction event', async () => {
const configuredDelayBefore = await call(timelock, 'delay');
expect(configuredDelayBefore).toEqual(delay.toString());
const queueTransactionsHashValueBefore = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueBefore).toEqual(true);
const newBlockTimestamp = blockTimestamp.plus(delay).plus(1);
await freezeTime(newBlockTimestamp.toNumber());
const result = await send(timelock, 'executeTransaction', [target, value, signature, data, eta], {
from: root
});
const queueTransactionsHashValueAfter = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueAfter).toEqual(false);
const configuredDelayAfter = await call(timelock, 'delay');
expect(configuredDelayAfter).toEqual(newDelay.toString());
expect(result).toHaveLog('ExecuteTransaction', {
data,
signature,
target,
eta: eta.toString(),
txHash: queuedTxHash,
value: value.toString()
});
expect(result).toHaveLog('NewDelay', {
newDelay: newDelay.toString()
});
});
});
describe('executeTransaction (setPendingAdmin)', () => {
beforeEach(async () => {
const configuredDelay = await call(timelock, 'delay');
delay = etherUnsigned(configuredDelay);
signature = 'setPendingAdmin(address)';
data = encodeParameters(['address'], [newAdmin]);
eta = blockTimestamp.plus(delay);
queuedTxHash = keccak256(
encodeParameters(
['address', 'uint256', 'string', 'bytes', 'uint256'],
[target, value.toString(), signature, data, eta.toString()]
)
);
await send(timelock, 'queueTransaction', [target, value, signature, data, eta], {
from: root
});
});
it('requires admin to be msg.sender', async () => {
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, eta], { from: notAdmin })
).rejects.toRevert('revert Timelock::executeTransaction: Call must come from admin.');
});
it('requires transaction to be queued', async () => {
const differentEta = eta.plus(1);
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, differentEta], { from: root })
).rejects.toRevert("revert Timelock::executeTransaction: Transaction hasn't been queued.");
});
it('requires timestamp to be greater than or equal to eta', async () => {
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, eta], {
from: root
})
).rejects.toRevert(
"revert Timelock::executeTransaction: Transaction hasn't surpassed time lock."
);
});
it('requires timestamp to be less than eta plus gracePeriod', async () => {
await freezeTime(blockTimestamp.plus(delay).plus(gracePeriod).plus(1).toNumber());
await expect(
send(timelock, 'executeTransaction', [target, value, signature, data, eta], {
from: root
})
).rejects.toRevert('revert Timelock::executeTransaction: Transaction is stale.');
});
it('sets hash from true to false in queuedTransactions mapping, updates admin, and emits ExecuteTransaction event', async () => {
const configuredPendingAdminBefore = await call(timelock, 'pendingAdmin');
expect(configuredPendingAdminBefore).toEqual('0x0000000000000000000000000000000000000000');
const queueTransactionsHashValueBefore = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueBefore).toEqual(true);
const newBlockTimestamp = blockTimestamp.plus(delay).plus(1);
await freezeTime(newBlockTimestamp.toNumber())
const result = await send(timelock, 'executeTransaction', [target, value, signature, data, eta], {
from: root
});
const queueTransactionsHashValueAfter = await call(timelock, 'queuedTransactions', [queuedTxHash]);
expect(queueTransactionsHashValueAfter).toEqual(false);
const configuredPendingAdminAfter = await call(timelock, 'pendingAdmin');
expect(configuredPendingAdminAfter).toEqual(newAdmin);
expect(result).toHaveLog('ExecuteTransaction', {
data,
signature,
target,
eta: eta.toString(),
txHash: queuedTxHash,
value: value.toString()
});
expect(result).toHaveLog('NewPendingAdmin', {
newPendingAdmin: newAdmin
});
});
});
});