@@ -29,27 +29,32 @@ func Test_NewConfigurer(t *testing.T) {
29
29
30
30
tests := []struct {
31
31
name string
32
- giveInstructionAuth solana. PublicKey
32
+ constructorFn func () * Configurer
33
33
wantInstructionAuth solana.PublicKey
34
34
}{
35
35
{
36
36
name : "implicit instruction authority" ,
37
- giveInstructionAuth : solana.PublicKey {},
37
+ constructorFn : func () * Configurer {
38
+ return NewConfigurer (client , auth , chainSelector )
39
+ },
38
40
wantInstructionAuth : auth .PublicKey (),
39
41
},
40
42
{
41
43
name : "explicit instruction authority" ,
42
- giveInstructionAuth : instructionAuth ,
44
+ constructorFn : func () * Configurer {
45
+ return NewConfigurer (client , auth , chainSelector , WithInstructionAuth (instructionAuth ))
46
+ },
43
47
wantInstructionAuth : instructionAuth ,
44
48
},
45
49
}
46
50
47
51
for _ , tt := range tests {
48
52
t .Run (tt .name , func (t * testing.T ) {
49
- configurer := NewConfigurer (client , auth , tt .giveInstructionAuth , chainSelector )
53
+ t .Parallel ()
54
+ configurer := tt .constructorFn ()
50
55
51
56
require .NotNil (t , configurer )
52
- require .Equal (t , configurer . instructionsAuth , tt . wantInstructionAuth )
57
+ require .Equal (t , tt . wantInstructionAuth , configurer . instructionsAuth )
53
58
})
54
59
}
55
60
}
@@ -67,18 +72,17 @@ func TestConfigurer_SetConfig(t *testing.T) {
67
72
tests := []struct {
68
73
name string
69
74
auth solana.PrivateKey
70
- instructionAuth solana. PublicKey
75
+ options [] configurerOption
71
76
mcmConfig * types.Config
72
77
setup func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient )
73
78
wantHash string
74
79
wantInstructions []solana.Instruction
75
80
wantErr string
76
81
}{
77
82
{
78
- name : "success - send instructions" ,
79
- auth : auth ,
80
- instructionAuth : solana.PublicKey {},
81
- mcmConfig : defaultMcmConfig ,
83
+ name : "success - send instructions" ,
84
+ auth : auth ,
85
+ mcmConfig : defaultMcmConfig ,
82
86
setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) {
83
87
t .Helper ()
84
88
@@ -102,12 +106,12 @@ func TestConfigurer_SetConfig(t *testing.T) {
102
106
},
103
107
},
104
108
{
105
- name : "success - do not send instructions" ,
106
- auth : nil ,
107
- instructionAuth : auth .PublicKey (),
108
- mcmConfig : defaultMcmConfig ,
109
- setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) { t .Helper () },
110
- wantHash : "" ,
109
+ name : "success - do not send instructions" ,
110
+ auth : nil ,
111
+ options : [] configurerOption { WithInstructionAuth ( auth .PublicKey ())} ,
112
+ mcmConfig : defaultMcmConfig ,
113
+ setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) { t .Helper () },
114
+ wantHash : "" ,
111
115
wantInstructions : []solana.Instruction {
112
116
bindings .NewInitSignersInstructionBuilder ().Build (),
113
117
bindings .NewAppendSignersInstructionBuilder ().Build (),
@@ -116,18 +120,16 @@ func TestConfigurer_SetConfig(t *testing.T) {
116
120
},
117
121
},
118
122
{
119
- name : "failure: too many signers" ,
120
- auth : auth ,
121
- instructionAuth : solana.PublicKey {},
122
- mcmConfig : & types.Config {Quorum : 1 , Signers : generateSigners (t , 181 )},
123
- setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) { t .Helper () },
124
- wantErr : "too many signers (max 180)" ,
123
+ name : "failure: too many signers" ,
124
+ auth : auth ,
125
+ mcmConfig : & types.Config {Quorum : 1 , Signers : generateSigners (t , 181 )},
126
+ setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) { t .Helper () },
127
+ wantErr : "too many signers (max 180)" ,
125
128
},
126
129
{
127
- name : "failure: initialize signers error" ,
128
- auth : auth ,
129
- instructionAuth : solana.PublicKey {},
130
- mcmConfig : defaultMcmConfig ,
130
+ name : "failure: initialize signers error" ,
131
+ auth : auth ,
132
+ mcmConfig : defaultMcmConfig ,
131
133
setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) {
132
134
t .Helper ()
133
135
@@ -138,10 +140,9 @@ func TestConfigurer_SetConfig(t *testing.T) {
138
140
wantErr : "unable to set config: unable to send instruction 0 - initSigners: unable to send instruction: initialize signers error" ,
139
141
},
140
142
{
141
- name : "failure: append signers error" ,
142
- auth : auth ,
143
- instructionAuth : solana.PublicKey {},
144
- mcmConfig : defaultMcmConfig ,
143
+ name : "failure: append signers error" ,
144
+ auth : auth ,
145
+ mcmConfig : defaultMcmConfig ,
145
146
setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) {
146
147
t .Helper ()
147
148
@@ -157,10 +158,9 @@ func TestConfigurer_SetConfig(t *testing.T) {
157
158
wantErr : "unable to set config: unable to send instruction 1 - appendSigners0: unable to send instruction: append signers error" ,
158
159
},
159
160
{
160
- name : "failure: finalize signers error" ,
161
- auth : auth ,
162
- instructionAuth : solana.PublicKey {},
163
- mcmConfig : defaultMcmConfig ,
161
+ name : "failure: finalize signers error" ,
162
+ auth : auth ,
163
+ mcmConfig : defaultMcmConfig ,
164
164
setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) {
165
165
t .Helper ()
166
166
@@ -178,10 +178,9 @@ func TestConfigurer_SetConfig(t *testing.T) {
178
178
wantErr : "unable to set config: unable to send instruction 2 - finalizeSigners: unable to send instruction: finalize signers error" ,
179
179
},
180
180
{
181
- name : "failure: set config error" ,
182
- auth : auth ,
183
- instructionAuth : solana.PublicKey {},
184
- mcmConfig : & types.Config {Quorum : 1 , Signers : []common.Address {common .HexToAddress ("0x1" )}},
181
+ name : "failure: set config error" ,
182
+ auth : auth ,
183
+ mcmConfig : & types.Config {Quorum : 1 , Signers : []common.Address {common .HexToAddress ("0x1" )}},
185
184
setup : func (t * testing.T , configurer * Configurer , mockJSONRPCClient * mocks.JSONRPCClient ) {
186
185
t .Helper ()
187
186
@@ -205,7 +204,7 @@ func TestConfigurer_SetConfig(t *testing.T) {
205
204
t .Run (tt .name , func (t * testing.T ) {
206
205
t .Parallel ()
207
206
208
- configurer , mockJSONRPCClient := newTestConfigurer (t , tt .auth , tt . instructionAuth , chainSelector )
207
+ configurer , mockJSONRPCClient := newTestConfigurer (t , tt .auth , chainSelector , tt . options ... )
209
208
tt .setup (t , configurer , mockJSONRPCClient )
210
209
211
210
got , err := configurer .SetConfig (ctx , ContractAddress (testMCMProgramID , testPDASeed ), tt .mcmConfig , clearRoot )
@@ -225,12 +224,13 @@ func TestConfigurer_SetConfig(t *testing.T) {
225
224
// ----- helpers -----
226
225
227
226
func newTestConfigurer (
228
- t * testing.T , auth solana.PrivateKey , instructionAuth solana. PublicKey , chainSelector types. ChainSelector ,
227
+ t * testing.T , auth solana.PrivateKey , chainSelector types. ChainSelector , options ... configurerOption ,
229
228
) (* Configurer , * mocks.JSONRPCClient ) {
230
229
t .Helper ()
231
230
232
231
mockJSONRPCClient := mocks .NewJSONRPCClient (t )
233
232
client := rpc .NewWithCustomRPCClient (mockJSONRPCClient )
234
233
235
- return NewConfigurer (client , auth , instructionAuth , chainSelector ), mockJSONRPCClient
234
+ fmt .Printf ("AAAAAAAAAAAAAA %v\n " , len (options ))
235
+ return NewConfigurer (client , auth , chainSelector , options ... ), mockJSONRPCClient
236
236
}
0 commit comments