-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathOrchestrator.ts
More file actions
468 lines (402 loc) · 15.8 KB
/
Orchestrator.ts
File metadata and controls
468 lines (402 loc) · 15.8 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
import { ethers, waffle } from 'hardhat'
import { Contract, Signer } from 'ethers'
import { increaseTime } from '../utils/utils'
import { expect } from 'chai'
import { TransactionResponse } from '@ethersproject/providers'
let orchestrator: Contract, mockPolicy: Contract, mockDownstream: Contract
let r: Promise<TransactionResponse>
let deployer: Signer, user: Signer
let rebaseCallerContracts: Contract[]
async function mockedOrchestrator() {
await increaseTime(86400)
// get signers
const [deployer, user] = await ethers.getSigners()
// deploy mocks
const mockPolicy = await (
await ethers.getContractFactory('MockUFragmentsPolicy')
)
.connect(deployer)
.deploy()
const orchestrator = await (await ethers.getContractFactory('Orchestrator'))
.connect(deployer)
.deploy(mockPolicy.address)
const mockDownstream = await (
await ethers.getContractFactory('MockDownstream')
)
.connect(deployer)
.deploy()
const rebaseCallerContracts = []
for (let i = 0; i < 3; i++) {
const _rebaseCallerContract = await (
await ethers.getContractFactory('RebaseCallerContract')
)
.connect(deployer)
.deploy()
rebaseCallerContracts.push(_rebaseCallerContract)
}
return {
deployer,
user,
orchestrator,
mockPolicy,
mockDownstream,
rebaseCallerContracts,
}
}
describe('Orchestrator', function () {
before('setup Orchestrator contract', async () => {
;({ deployer, user, orchestrator, mockPolicy, mockDownstream } =
await waffle.loadFixture(mockedOrchestrator))
})
describe('when sent ether', async function () {
it('should reject', async function () {
await expect(user.sendTransaction({ to: orchestrator.address, value: 1 }))
.to.be.reverted
})
})
describe('when rebase called by a contract', function () {
it('should fail', async function () {
const rebaseCallerContract = await (
await ethers.getContractFactory('RebaseCallerContract')
)
.connect(deployer)
.deploy()
await expect(rebaseCallerContract.callRebase(orchestrator.address)).to.be
.reverted
})
})
describe('when rebase called by a contract which is being constructed', function () {
it('should fail', async function () {
await expect(
(await ethers.getContractFactory('ConstructorRebaseCallerContract'))
.connect(deployer)
.deploy(orchestrator.address),
).to.be.reverted
})
})
describe('when transaction list is empty', async function () {
before('calling rebase', async function () {
r = orchestrator.rebase()
})
it('should have no transactions', async function () {
expect(await orchestrator.transactionsSize()).to.eq(0)
})
it('should call rebase on policy', async function () {
await expect(r)
.to.emit(mockPolicy, 'FunctionCalled')
.withArgs('UFragmentsPolicy', 'rebase', orchestrator.address)
})
it('should not have any subsequent logs', async function () {
expect((await (await r).wait()).logs.length).to.eq(1)
})
})
describe('when there is a single transaction', async function () {
before('adding a transaction', async function () {
const updateOneArgEncoded =
await mockDownstream.populateTransaction.updateOneArg(12345)
await orchestrator
.connect(deployer)
.addTransaction(mockDownstream.address, updateOneArgEncoded.data)
r = orchestrator.connect(deployer).rebase()
})
it('should have 1 transaction', async function () {
expect(await orchestrator.transactionsSize()).to.eq(1)
})
it('should call rebase on policy', async function () {
await expect(r)
.to.emit(mockPolicy, 'FunctionCalled')
.withArgs('UFragmentsPolicy', 'rebase', orchestrator.address)
})
it('should call the transaction', async function () {
await expect(r)
.to.emit(mockDownstream, 'FunctionCalled')
.withArgs('MockDownstream', 'updateOneArg', orchestrator.address)
await expect(r)
.to.emit(mockDownstream, 'FunctionArguments')
.withArgs([12345], [])
})
it('should not have any subsequent logs', async function () {
expect((await (await r).wait()).logs.length).to.eq(3)
})
})
describe('when there are two transactions', async function () {
before('adding a transaction', async function () {
const updateTwoArgsEncoded =
await mockDownstream.populateTransaction.updateTwoArgs(12345, 23456)
await orchestrator
.connect(deployer)
.addTransaction(mockDownstream.address, updateTwoArgsEncoded.data)
r = orchestrator.connect(deployer).rebase()
})
it('should have 2 transactions', async function () {
expect(await orchestrator.transactionsSize()).to.eq(2)
})
it('should call rebase on policy', async function () {
await expect(r)
.to.emit(mockPolicy, 'FunctionCalled')
.withArgs('UFragmentsPolicy', 'rebase', orchestrator.address)
})
it('should call first transaction', async function () {
await expect(r)
.to.emit(mockDownstream, 'FunctionCalled')
.withArgs('MockDownstream', 'updateOneArg', orchestrator.address)
await expect(r)
.to.emit(mockDownstream, 'FunctionArguments')
.withArgs([12345], [])
})
it('should call second transaction', async function () {
await expect(r)
.to.emit(mockDownstream, 'FunctionCalled')
.withArgs('MockDownstream', 'updateTwoArgs', orchestrator.address)
await expect(r)
.to.emit(mockDownstream, 'FunctionArguments')
.withArgs([12345], [23456])
})
it('should not have any subsequent logs', async function () {
expect((await (await r).wait()).logs.length).to.eq(5)
})
})
describe('when 1st transaction is disabled', async function () {
before('disabling a transaction', async function () {
await orchestrator.connect(deployer).setTransactionEnabled(0, false)
r = orchestrator.connect(deployer).rebase()
})
it('should have 2 transactions', async function () {
expect(await orchestrator.transactionsSize()).to.eq(2)
})
it('should call rebase on policy', async function () {
await expect(r)
.to.emit(mockPolicy, 'FunctionCalled')
.withArgs('UFragmentsPolicy', 'rebase', orchestrator.address)
})
it('should call second transaction', async function () {
await expect(r)
.to.emit(mockDownstream, 'FunctionCalled')
.withArgs('MockDownstream', 'updateTwoArgs', orchestrator.address)
await expect(r)
.to.emit(mockDownstream, 'FunctionArguments')
.withArgs([12345], [23456])
})
it('should not have any subsequent logs', async function () {
expect(await (await (await r).wait()).logs.length).to.eq(3)
})
})
describe('when a transaction is removed', async function () {
before('removing 1st transaction', async function () {
await orchestrator.connect(deployer).removeTransaction(0)
r = orchestrator.connect(deployer).rebase()
})
it('should have 1 transaction', async function () {
expect(await orchestrator.transactionsSize()).to.eq(1)
})
it('should call rebase on policy', async function () {
await expect(r)
.to.emit(mockPolicy, 'FunctionCalled')
.withArgs('UFragmentsPolicy', 'rebase', orchestrator.address)
})
it('should call the transaction', async function () {
await expect(r)
.to.emit(mockDownstream, 'FunctionCalled')
.withArgs('MockDownstream', 'updateTwoArgs', orchestrator.address)
await expect(r)
.to.emit(mockDownstream, 'FunctionArguments')
.withArgs([12345], [23456])
})
it('should not have any subsequent logs', async function () {
expect((await (await r).wait()).logs.length).to.eq(3)
})
})
describe('when all transactions are removed', async function () {
before('removing 1st transaction', async function () {
await orchestrator.connect(deployer).removeTransaction(0)
r = orchestrator.connect(deployer).rebase()
})
it('should have 0 transactions', async function () {
expect(await orchestrator.transactionsSize()).to.eq(0)
})
it('should call rebase on policy', async function () {
await expect(r)
.to.emit(mockPolicy, 'FunctionCalled')
.withArgs('UFragmentsPolicy', 'rebase', orchestrator.address)
})
it('should not have any subsequent logs', async function () {
expect((await (await r).wait()).logs.length).to.eq(1)
})
})
describe('when a transaction reverts', async function () {
before('adding 3 transactions', async function () {
const updateOneArgEncoded =
await mockDownstream.populateTransaction.updateOneArg(123)
await orchestrator
.connect(deployer)
.addTransaction(mockDownstream.address, updateOneArgEncoded.data)
const revertsEncoded = await mockDownstream.populateTransaction.reverts()
await orchestrator
.connect(deployer)
.addTransaction(mockDownstream.address, revertsEncoded.data)
const updateTwoArgsEncoded =
await mockDownstream.populateTransaction.updateTwoArgs(12345, 23456)
await orchestrator
.connect(deployer)
.addTransaction(mockDownstream.address, updateTwoArgsEncoded.data)
await expect(orchestrator.connect(deployer).rebase()).to.be.reverted
})
it('should have 3 transactions', async function () {
expect(await orchestrator.transactionsSize()).to.eq(3)
})
})
describe('Access Control', function () {
describe('addTransaction', async function () {
it('should be callable by owner', async function () {
const updateNoArgEncoded =
await mockDownstream.populateTransaction.updateNoArg()
await expect(
orchestrator
.connect(deployer)
.addTransaction(mockDownstream.address, updateNoArgEncoded.data),
).to.not.be.reverted
})
it('should not be callable by others', async function () {
const updateNoArgEncoded =
await mockDownstream.populateTransaction.updateNoArg()
await expect(
orchestrator
.connect(user)
.addTransaction(mockDownstream.address, updateNoArgEncoded.data),
).to.be.reverted
})
})
describe('setTransactionEnabled', async function () {
it('should be callable by owner', async function () {
expect(await orchestrator.transactionsSize()).to.gt(0)
await expect(
orchestrator.connect(deployer).setTransactionEnabled(0, true),
).to.not.be.reverted
})
it('should revert if index out of bounds', async function () {
expect(await orchestrator.transactionsSize()).to.lt(5)
await expect(
orchestrator.connect(deployer).setTransactionEnabled(5, true),
).to.be.reverted
})
it('should not be callable by others', async function () {
expect(await orchestrator.transactionsSize()).to.gt(0)
await expect(orchestrator.connect(user).setTransactionEnabled(0, true))
.to.be.reverted
})
})
describe('removeTransaction', async function () {
it('should not be callable by others', async function () {
expect(await orchestrator.transactionsSize()).to.gt(0)
await expect(orchestrator.connect(user).removeTransaction(0)).to.be
.reverted
})
it('should revert if index out of bounds', async function () {
expect(await orchestrator.transactionsSize()).to.lt(5)
await expect(orchestrator.connect(deployer).removeTransaction(5)).to.be
.reverted
})
it('should be callable by owner', async function () {
expect(await orchestrator.transactionsSize()).to.gt(0)
await expect(orchestrator.connect(deployer).removeTransaction(0)).to.not
.be.reverted
})
})
describe('transferOwnership', async function () {
it('should transfer ownership', async function () {
expect(await orchestrator.owner()).to.eq(await deployer.getAddress())
await orchestrator
.connect(deployer)
.transferOwnership(user.getAddress())
expect(await orchestrator.owner()).to.eq(await user.getAddress())
})
})
})
describe('whitelist functionality', async function () {
before('setup rebase caller contracts', async () => {
;({ rebaseCallerContracts } = await waffle.loadFixture(
mockedOrchestrator,
))
})
it('should return an empty list', async function () {
expect((await orchestrator.getWhitelist()).length).to.eq(0)
})
describe('adding to whitelist', async function () {
it('should add contract address to whitelist', async function () {
await orchestrator
.connect(deployer)
.whitelistAccount(rebaseCallerContracts[0].address)
const whitelist = await orchestrator.getWhitelist()
expect(whitelist.length).to.eq(1)
expect(whitelist[0]).to.eq(rebaseCallerContracts[0].address)
})
it('should disallow non-owner from adding contract address to whitelist', async function () {
await expect(
orchestrator
.connect(user)
.whitelistAccount(rebaseCallerContracts[1].address),
).to.be.reverted
const whitelist = await orchestrator.getWhitelist()
expect(whitelist.length).to.eq(1)
expect(whitelist[0]).to.eq(rebaseCallerContracts[0].address)
})
})
describe('rebasing from whitelist', async function () {
it('should allow whitelisted contract entry to rebaseFromContract', async function () {
await expect(
rebaseCallerContracts[0].callRebaseFromContract(orchestrator.address),
).to.not.be.reverted
})
it('should disallow whitelisted contract entry to eoa rebase entrypoint', async function () {
await expect(rebaseCallerContracts[0].callRebase(orchestrator.address))
.to.be.reverted
})
it('should rebase....', async function () {
console.log('todo')
})
})
describe('removing from whitelist', async function () {
it('should disallow non-owner from removing contract address from whitelist', async function () {
await expect(
orchestrator
.connect(user)
.unlistAccount(rebaseCallerContracts[0].address),
).to.be.reverted
const whitelist = await orchestrator.getWhitelist()
expect(whitelist.length).to.eq(1)
expect(whitelist[0]).to.eq(rebaseCallerContracts[0].address)
})
it('should remove address from whitelist', async function () {
await orchestrator
.connect(deployer)
.unlistAccount(rebaseCallerContracts[0].address)
const whitelist = await orchestrator.getWhitelist()
expect(whitelist.length).to.eq(0)
})
it('should disallow unlisted contract entry to rebaseFromContract', async function () {
await expect(
rebaseCallerContracts[0].callRebaseFromContract(orchestrator.address),
).to.be.reverted
})
})
describe('handling longer whitelist', async function () {
it('should add and allow multiple whitelisted contracts entry to rebaseFromContract', async function () {
for (let i = 0; i < rebaseCallerContracts.length; i++) {
await orchestrator
.connect(deployer)
.whitelistAccount(rebaseCallerContracts[i].address)
}
const whitelist = await orchestrator.getWhitelist()
expect(whitelist.length).to.eq(3)
for (let i = 0; i < rebaseCallerContracts.length; i++) {
expect(whitelist[i]).to.eq(rebaseCallerContracts[i].address)
await expect(
rebaseCallerContracts[i].callRebaseFromContract(
orchestrator.address,
),
).to.not.be.reverted
}
})
})
})
})