-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathauthorize.test.ts
More file actions
361 lines (326 loc) · 10 KB
/
authorize.test.ts
File metadata and controls
361 lines (326 loc) · 10 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
import { newKitFromProvider } from '@celo/contractkit'
import { testWithAnvilL2 } from '@celo/dev-utils/anvil-test'
import { addressToPublicKey } from '@celo/utils/lib/signatureUtils'
import { stripAnsiCodesFromNestedArray, testLocallyWithNode } from '../../test-utils/cliUtils'
import { PROOF_OF_POSSESSION_SIGNATURE } from '../../test-utils/constants'
import Lock from '../lockedcelo/lock'
import ValidatorRegister from '../validator/register'
import Authorize from './authorize'
import Register from './register'
process.env.NO_SYNCCHECK = 'true'
testWithAnvilL2('account:authorize cmd', (provider) => {
const logMock = jest.spyOn(console, 'log')
const errorMock = jest.spyOn(console, 'error')
beforeEach(() => {
logMock.mockClear().mockImplementation()
errorMock.mockClear().mockImplementation()
})
afterEach(() => jest.clearAllMocks())
test('can authorize vote signer', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
await testLocallyWithNode(Register, ['--from', notRegisteredAccount], provider)
logMock.mockClear()
await testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'vote',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
],
provider
)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`
[
[
"Running Checks:",
],
[
" ✔ 0x5409ED021D9299bf6814279A6A1411A7e866A631 is a registered Account ",
],
[
"All checks passed",
],
[
"SendTransaction: authorizeTx",
],
[
"txHash: 0xtxhash",
],
]
`)
})
test('can authorize attestation signer', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
await testLocallyWithNode(Register, ['--from', notRegisteredAccount], provider)
logMock.mockClear()
await testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'attestation',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
],
provider
)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`
[
[
"Running Checks:",
],
[
" ✔ 0x5409ED021D9299bf6814279A6A1411A7e866A631 is a registered Account ",
],
[
"All checks passed",
],
[
"SendTransaction: authorizeTx",
],
[
"txHash: 0xtxhash",
],
]
`)
})
test('can authorize validator signer before validator is registered', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
await testLocallyWithNode(Register, ['--from', notRegisteredAccount], provider)
logMock.mockClear()
await testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'validator',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
],
provider
)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`
[
[
"Running Checks:",
],
[
" ✔ 0x5409ED021D9299bf6814279A6A1411A7e866A631 is a registered Account ",
],
[
"All checks passed",
],
[
"SendTransaction: authorizeTx",
],
[
"txHash: 0xtxhash",
],
]
`)
expect(stripAnsiCodesFromNestedArray(errorMock.mock.calls)).toMatchInlineSnapshot(`[]`)
})
it('can authorize validator signer after validator is registered', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
const ecdsaPublicKey = await addressToPublicKey(notRegisteredAccount, kit.connection.sign)
await testLocallyWithNode(Register, ['--from', notRegisteredAccount], provider)
await testLocallyWithNode(
Lock,
['--from', notRegisteredAccount, '--value', '10000000000000000000000'],
provider
)
await testLocallyWithNode(
ValidatorRegister,
['--from', notRegisteredAccount, '--ecdsaKey', ecdsaPublicKey, '--yes'],
provider
)
logMock.mockClear()
await testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'validator',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
],
provider
)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`
[
[
"Running Checks:",
],
[
" ✔ 0x5409ED021D9299bf6814279A6A1411A7e866A631 is a registered Account ",
],
[
"All checks passed",
],
[
"SendTransaction: authorizeTx",
],
[
"txHash: 0xtxhash",
],
]
`)
})
it('fails when using BLS keys on L2', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
const ecdsaPublicKey = await addressToPublicKey(notRegisteredAccount, kit.connection.sign)
await testLocallyWithNode(Register, ['--from', notRegisteredAccount], provider)
await testLocallyWithNode(
Lock,
['--from', notRegisteredAccount, '--value', '10000000000000000000000'],
provider
)
await testLocallyWithNode(
ValidatorRegister,
['--from', notRegisteredAccount, '--ecdsaKey', ecdsaPublicKey, '--yes'],
provider
)
logMock.mockClear()
await expect(
testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'validator',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
'--blsKey',
'0x4fa3f67fc913878b068d1fa1cdddc54913d3bf988dbe5a36a20fa888f20d4894c408a6773f3d7bde11154f2a3076b700d345a42fd25a0e5e83f4db5586ac7979ac2053cd95d8f2efd3e959571ceccaa743e02cf4be3f5d7aaddb0b06fc9aff00',
'--blsPop',
'0xcdb77255037eb68897cd487fdd85388cbda448f617f874449d4b11588b0b7ad8ddc20d9bb450b513bb35664ea3923900',
],
provider
)
).rejects.toMatchInlineSnapshot(`
[Error: Nonexistent flags: --blsKey, --blsPop
See more help with --help]
`)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`[]`)
})
test('can force authorize validator signer without BLS after validator is registered', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
const ecdsaPublicKey = await addressToPublicKey(notRegisteredAccount, kit.connection.sign)
await testLocallyWithNode(Register, ['--from', notRegisteredAccount], provider)
await testLocallyWithNode(
Lock,
['--from', notRegisteredAccount, '--value', '10000000000000000000000'],
provider
)
await testLocallyWithNode(
ValidatorRegister,
['--from', notRegisteredAccount, '--ecdsaKey', ecdsaPublicKey, '--yes'],
provider
)
logMock.mockClear()
await testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'validator',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
'--force',
],
provider
)
expect(stripAnsiCodesFromNestedArray(errorMock.mock.calls)).toMatchInlineSnapshot(`[]`)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`
[
[
"Running Checks:",
],
[
" ✔ 0x5409ED021D9299bf6814279A6A1411A7e866A631 is a registered Account ",
],
[
"All checks passed",
],
[
"SendTransaction: authorizeTx",
],
[
"txHash: 0xtxhash",
],
]
`)
})
test('fails if from is not an account', async () => {
const kit = newKitFromProvider(provider)
const accounts = await kit.connection.getAccounts()
const notRegisteredAccount = accounts[0]
const signerNotRegisteredAccount = accounts[1]
logMock.mockClear()
await expect(
testLocallyWithNode(
Authorize,
[
'--from',
notRegisteredAccount,
'--role',
'validator',
'--signer',
signerNotRegisteredAccount,
'--signature',
PROOF_OF_POSSESSION_SIGNATURE,
],
provider
)
).rejects.toThrowErrorMatchingInlineSnapshot(`"Some checks didn't pass!"`)
expect(stripAnsiCodesFromNestedArray(errorMock.mock.calls)).toMatchInlineSnapshot(`[]`)
expect(stripAnsiCodesFromNestedArray(logMock.mock.calls)).toMatchInlineSnapshot(`
[
[
"Running Checks:",
],
[
" ✘ 0x5409ED021D9299bf6814279A6A1411A7e866A631 is a registered Account 0x5409ED021D9299bf6814279A6A1411A7e866A631 is not registered as an account. Try running account:register",
],
]
`)
})
})