forked from holographxyz/holograph-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10_holograph_tests.ts
376 lines (307 loc) · 13.3 KB
/
10_holograph_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
import { expect } from 'chai';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
import { ethers } from 'hardhat';
import { generateInitCode } from '../scripts/utils/helpers';
import {
Holograph,
MockExternalCall,
MockExternalCall__factory,
MockHolographChild,
Holograph__factory,
} from '../typechain-types';
describe('Holograph Contract', () => {
let holograph: Holograph;
let mockExternalCall: MockExternalCall;
let mockHolographChild: MockHolographChild;
let deployer: SignerWithAddress;
let admin: SignerWithAddress;
let user: SignerWithAddress;
const randomAddress = () => ethers.Wallet.createRandom().address;
const holographChainId = 1;
const bridge = randomAddress();
const factory = randomAddress();
const interfaces = randomAddress();
const operator = randomAddress();
const registry = randomAddress();
const treasury = randomAddress();
const utilityToken = randomAddress();
const initCode = generateInitCode(
['uint32', 'address', 'address', 'address', 'address', 'address', 'address', 'address'],
[holographChainId, bridge, factory, interfaces, operator, registry, treasury, utilityToken]
);
function encodeFunctionSignature(fnSignature: string, fnName: string, fnParams: any[] = []) {
return new ethers.utils.Interface([fnSignature]).encodeFunctionData(fnName, fnParams);
}
before(async () => {
[deployer, admin, user] = await ethers.getSigners();
const HolographFactory = await ethers.getContractFactory<Holograph__factory>('Holograph');
holograph = await HolographFactory.deploy();
await holograph.deployed();
const mockExternalCallFactory = await ethers.getContractFactory<MockExternalCall__factory>('MockExternalCall');
mockExternalCall = await mockExternalCallFactory.deploy();
await mockExternalCall.deployed();
const mockHolographChildFactory = await ethers.getContractFactory('MockHolographChild');
mockHolographChild = (await mockHolographChildFactory.deploy()) as MockHolographChild;
await mockHolographChild.deployed();
});
describe('init():', () => {
it('should successfully init once', async () => {
await expect(holograph.init(initCode)).to.not.be.reverted;
await expect(holograph.functions.setAdmin(admin.address)).to.not.be.reverted;
});
it('should fail to init if already initialized', async () => {
await expect(holograph.init(initCode)).to.be.reverted;
});
it('should fail if holographChainId is value larger than uint32'); // does it make sense at all?
});
describe(`getBridge()`, () => {
it('Should return valid _bridgeSlot', async () => {
await expect((await holograph.functions.getBridge()).bridge).to.equal(bridge);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature('function getBridge() external view returns (address bridge)', 'getBridge', [])
)
).to.not.be.reverted;
});
it(
'should fail to allow inherited contract to call fn' /*async () => {
// This actually doesn't fail
await expect(
mockHolographChild.functions.getBridge()
).to.be.reverted
}*/
);
});
describe('setBridge()', () => {
it('should allow admin to alter _bridgeSlot', async () => {
await expect(holograph.connect(admin).functions.setBridge(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _bridgeSlot', async () => {
await expect(holograph.functions.setBridge(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _bridgeSlot', async () => {
await expect(holograph.connect(user).functions.setBridge(randomAddress())).to.be.reverted;
});
});
describe(`getChainId()`, () => {
it('Should return valid _chainIdSlot', async () => {
await expect((await holograph.functions.getChainId()).chainId.toString()).to.not.be.empty;
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature('function getChainId() external view returns (uint256 chainId)', 'getChainId', [])
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setChainId()', () => {
it('should allow admin to alter _chainIdSlot', async () => {
await expect(holograph.connect(admin).functions.setChainId(2)).to.not.be.reverted;
});
it('should fail to allow owner to alter _chainIdSlot', async () => {
await expect(holograph.functions.setChainId(3)).to.be.reverted;
});
it('should fail to allow non-owner to alter _chainIdSlot', async () => {
await expect(holograph.connect(user).functions.setChainId(4)).to.be.reverted;
});
});
describe(`getFactory()`, () => {
it('Should return valid _factorySlot', async () => {
await expect((await holograph.functions.getFactory()).factory).to.equal(factory);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature('function getFactory() external view returns (address factory)', 'getFactory', [])
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setFactory()', () => {
it('should allow admin to alter _factorySlot', async () => {
await expect(holograph.connect(admin).functions.setFactory(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _factorySlot', async () => {
await expect(holograph.functions.setFactory(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _factorySlot', async () => {
await expect(holograph.connect(user).functions.setFactory(randomAddress())).to.be.reverted;
});
});
describe(`getHolographChainId()`, () => {
it('Should return valid _holographChainIdSlot', async () => {
await expect((await holograph.functions.getHolographChainId()).holographChainId).to.equal(holographChainId);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature(
'function getHolographChainId() external view returns (uint32 holographChainId)',
'getHolographChainId',
[]
)
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setHolographChainId()', () => {
it('should allow admin to alter _holographChainIdSlot', async () => {
await expect(holograph.connect(admin).functions.setHolographChainId(2)).to.not.be.reverted;
});
it('should fail to allow owner to alter _holographChainIdSlot', async () => {
await expect(holograph.functions.setHolographChainId(3)).to.be.reverted;
});
it('should fail to allow non-owner to alter _holographChainIdSlot', async () => {
await expect(holograph.connect(user).functions.setHolographChainId(4)).to.be.reverted;
});
});
describe(`getInterfaces()`, () => {
it('Should return valid _interfacesSlot', async () => {
await expect((await holograph.functions.getInterfaces()).interfaces).to.equal(interfaces);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature(
'function getInterfaces() external view returns (address interfaces)',
'getInterfaces',
[]
)
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setInterfaces()', () => {
it('should allow admin to alter _interfacesSlot', async () => {
await expect(holograph.connect(admin).functions.setInterfaces(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _interfacesSlot', async () => {
await expect(holograph.functions.setInterfaces(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _interfacesSlot', async () => {
await expect(holograph.connect(user).functions.setInterfaces(randomAddress())).to.be.reverted;
});
});
describe(`getOperator()`, () => {
it('Should return valid _operatorSlot', async () => {
await expect((await holograph.functions.getOperator()).operator).to.equal(operator);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature('function getOperator() external view returns (address operator)', 'getOperator', [])
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setOperator()', () => {
it('should allow admin to alter _operatorSlot', async () => {
await expect(holograph.connect(admin).functions.setOperator(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _operatorSlot', async () => {
await expect(holograph.functions.setOperator(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _operatorSlot', async () => {
await expect(holograph.connect(user).functions.setOperator(randomAddress())).to.be.reverted;
});
});
describe(`getRegistry()`, () => {
it('Should return valid _registrySlot', async () => {
await expect((await holograph.functions.getRegistry()).registry).to.equal(registry);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature('function getRegistry() external view returns (address registry)', 'getRegistry', [])
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setRegistry()', () => {
it('should allow admin to alter _registrySlot', async () => {
await expect(holograph.connect(admin).functions.setRegistry(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _registrySlot', async () => {
await expect(holograph.functions.setRegistry(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _registrySlot', async () => {
await expect(holograph.connect(user).functions.setRegistry(randomAddress())).to.be.reverted;
});
});
describe(`getTreasury()`, () => {
it('Should return valid _treasurySlot', async () => {
await expect((await holograph.functions.getTreasury()).treasury).to.equal(treasury);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature('function getTreasury() external view returns (address treasury)', 'getTreasury', [])
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setTreasury()', () => {
it('should allow admin to alter _treasurySlot', async () => {
await expect(holograph.connect(admin).functions.setTreasury(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _treasurySlot', async () => {
await expect(holograph.functions.setTreasury(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _treasurySlot', async () => {
await expect(holograph.connect(user).functions.setTreasury(randomAddress())).to.be.reverted;
});
});
describe(`getUtilityToken()`, () => {
it('Should return valid _utilityTokenSlot', async () => {
await expect((await holograph.functions.getUtilityToken()).utilityToken).to.equal(utilityToken);
});
it('Should allow external contract to call fn', async () => {
await expect(
mockExternalCall.functions.callExternalFn(
holograph.address,
encodeFunctionSignature(
'function getUtilityToken() external view returns (address utilityToken)',
'getUtilityToken',
[]
)
)
).to.not.be.reverted;
});
it('should fail to allow inherited contract to call fn');
});
describe('setUtilityToken()', () => {
it('should allow admin to alter _utilityTokenSlot', async () => {
await expect(holograph.connect(admin).functions.setUtilityToken(randomAddress())).to.not.be.reverted;
});
it('should fail to allow owner to alter _utilityTokenSlot', async () => {
await expect(holograph.functions.setUtilityToken(randomAddress())).to.be.reverted;
});
it('should fail to allow non-owner to alter _utilityTokenSlot', async () => {
await expect(holograph.connect(user).functions.setUtilityToken(randomAddress())).to.be.reverted;
});
});
describe(`receive()`, () => {
it('should revert');
});
describe(`fallback()`, () => {
it('should revert');
});
});