@@ -55,6 +55,7 @@ describe("config", async () => {
55
55
56
56
let program ;
57
57
let controller ;
58
+ let airlockAddress
58
59
59
60
let configAccount : PublicKey ;
60
61
let bump : number ;
@@ -84,6 +85,27 @@ describe("config", async () => {
84
85
} ) ,
85
86
] ;
86
87
await program . provider . sendAndConfirm ( tx , [ program . provider . wallet . payer ] ) ;
88
+
89
+ airlockAddress =
90
+ PublicKey . findProgramAddressSync (
91
+ [
92
+ utils . bytes . utf8 . encode (
93
+ wasm . Constants . AIRLOCK_SEED ( ) ,
94
+ ) ,
95
+ ] ,
96
+ program . programId ,
97
+ ) [ 0 ] ;
98
+
99
+ // Initialize the airlock account
100
+ await program . methods
101
+ . initializeSpokeAirlock ( )
102
+ . accounts ( {
103
+ payer : program . provider . wallet . payer ,
104
+ airlock : airlockAddress ,
105
+ systemProgram : SystemProgram . programId ,
106
+ } )
107
+ . signers ( [ program . provider . wallet . payer ] )
108
+ . rpc ( ) ;
87
109
} ) ;
88
110
89
111
it ( "initializes config" , async ( ) => {
@@ -278,20 +300,20 @@ describe("config", async () => {
278
300
try {
279
301
await program . methods
280
302
. updateHubProposalMetadata ( hubProposalMetadataUint8Array )
281
- . accounts ( { governanceAuthority : randomUser . publicKey } )
303
+ . accounts ( { payer : randomUser . publicKey , airlock : airlockAddress } )
282
304
. signers ( [ randomUser ] )
283
305
. rpc ( ) ;
284
306
285
307
assert . fail ( "Expected error was not thrown" ) ;
286
308
} catch ( e ) {
287
- assert ( ( e as AnchorError ) . error ?. errorCode ?. code === "ConstraintAddress " ) ;
309
+ assert ( ( e as AnchorError ) . error ?. errorCode ?. code === "NotGovernanceAuthority " ) ;
288
310
}
289
311
} ) ;
290
312
291
313
it ( "should successfully update HubProposalMetadata" , async ( ) => {
292
314
await program . methods
293
315
. updateHubProposalMetadata ( hubProposalMetadataUint8Array )
294
- . accounts ( { governanceAuthority : program . provider . wallet . publicKey } )
316
+ . accounts ( { payer : program . provider . wallet . publicKey , airlock : airlockAddress } )
295
317
. rpc ( { skipPreflight : true } ) ;
296
318
297
319
const [ spokeMetadataCollectorAccount , spokeMetadataCollectorBump ] =
@@ -324,6 +346,45 @@ describe("config", async () => {
324
346
) ;
325
347
} ) ;
326
348
349
+ it ( "should revoke admin rights for updating HubProposalMetadata" , async ( ) => {
350
+ await program . methods
351
+ . relinquishAdminControlOverHubProposalMetadata ( )
352
+ . accounts ( { governanceAuthority : program . provider . wallet . publicKey } )
353
+ . rpc ( { skipPreflight : true } ) ;
354
+
355
+ const [ spokeMetadataCollectorAccount , spokeMetadataCollectorBump ] =
356
+ PublicKey . findProgramAddressSync (
357
+ [
358
+ utils . bytes . utf8 . encode (
359
+ wasm . Constants . SPOKE_METADATA_COLLECTOR_SEED ( ) ,
360
+ ) ,
361
+ ] ,
362
+ program . programId ,
363
+ ) ;
364
+
365
+ const spokeMetadataCollectorAccountData =
366
+ await program . account . spokeMetadataCollector . fetch (
367
+ spokeMetadataCollectorAccount ,
368
+ ) ;
369
+
370
+ assert . equal (
371
+ spokeMetadataCollectorAccountData . updatesControlledByGovernance ,
372
+ false ,
373
+ ) ;
374
+
375
+ try {
376
+ await program . methods
377
+ . updateHubProposalMetadata ( hubProposalMetadataUint8Array )
378
+ . accounts ( { payer : randomUser . publicKey , airlock : airlockAddress } )
379
+ . signers ( [ randomUser ] )
380
+ . rpc ( ) ;
381
+
382
+ assert . fail ( "Expected error was not thrown" ) ;
383
+ } catch ( e ) {
384
+ assert ( ( e as AnchorError ) . error ?. errorCode ?. code === "AirlockNotSigner" ) ;
385
+ }
386
+ } ) ;
387
+
327
388
it ( "create account" , async ( ) => {
328
389
const configAccountData =
329
390
await program . account . globalConfig . fetch ( configAccount ) ;
0 commit comments