@@ -70,14 +70,13 @@ func TestAccountActivateOpts_Execute(t *testing.T) {
70
70
defer close (mocks .progressStream )
71
71
mocks .stsMock .EXPECT ().GetAccount ().Return (testAccountId , nil )
72
72
mocks .s3Mock .EXPECT ().BucketExists ("agc-test-account-id-test-account-region" ).Return (false , nil )
73
- mocks .cdkMock .EXPECT ().DeployApp (
74
- gomock .Any (),
75
- []string {
76
- fmt .Sprintf ("AGC_BUCKET_NAME=agc-%s-%s" , testAccountId , testAccountRegion ),
77
- fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , true ),
78
- fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
79
- },
80
- "activate" ).Return (mocks .progressStream , nil )
73
+ vars := []string {
74
+ fmt .Sprintf ("AGC_BUCKET_NAME=agc-%s-%s" , testAccountId , testAccountRegion ),
75
+ fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , true ),
76
+ fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
77
+ }
78
+ mocks .cdkMock .EXPECT ().Bootstrap (gomock .Any (), vars , "bootstrap" ).Return (mocks .progressStream , nil )
79
+ mocks .cdkMock .EXPECT ().DeployApp (gomock .Any (), vars , "activate" ).Return (mocks .progressStream , nil )
81
80
return mocks
82
81
},
83
82
vpcId : "" ,
@@ -98,14 +97,13 @@ func TestAccountActivateOpts_Execute(t *testing.T) {
98
97
mocks := createMocks (t )
99
98
defer close (mocks .progressStream )
100
99
mocks .s3Mock .EXPECT ().BucketExists (testAccountBucketName ).Return (false , nil )
101
- mocks .cdkMock .EXPECT ().DeployApp (
102
- gomock .Any (),
103
- []string {
104
- fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
105
- fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , true ),
106
- fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
107
- },
108
- "activate" ).Return (mocks .progressStream , nil )
100
+ vars := []string {
101
+ fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
102
+ fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , true ),
103
+ fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
104
+ }
105
+ mocks .cdkMock .EXPECT ().Bootstrap (gomock .Any (), vars , "bootstrap" ).Return (mocks .progressStream , nil )
106
+ mocks .cdkMock .EXPECT ().DeployApp (gomock .Any (), vars , "activate" ).Return (mocks .progressStream , nil )
109
107
return mocks
110
108
},
111
109
},
@@ -116,14 +114,13 @@ func TestAccountActivateOpts_Execute(t *testing.T) {
116
114
mocks := createMocks (t )
117
115
defer close (mocks .progressStream )
118
116
mocks .s3Mock .EXPECT ().BucketExists (testAccountBucketName ).Return (true , nil )
119
- mocks .cdkMock .EXPECT ().DeployApp (
120
- gomock .Any (),
121
- []string {
122
- fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
123
- fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , false ),
124
- fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
125
- },
126
- "activate" ).Return (mocks .progressStream , nil )
117
+ vars := []string {
118
+ fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
119
+ fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , false ),
120
+ fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
121
+ }
122
+ mocks .cdkMock .EXPECT ().Bootstrap (gomock .Any (), vars , "bootstrap" ).Return (mocks .progressStream , nil )
123
+ mocks .cdkMock .EXPECT ().DeployApp (gomock .Any (), vars , "activate" ).Return (mocks .progressStream , nil )
127
124
return mocks
128
125
},
129
126
},
@@ -134,15 +131,14 @@ func TestAccountActivateOpts_Execute(t *testing.T) {
134
131
mocks := createMocks (t )
135
132
defer close (mocks .progressStream )
136
133
mocks .s3Mock .EXPECT ().BucketExists (testAccountBucketName ).Return (false , nil )
137
- baseVars := []string {
134
+ vars := []string {
138
135
fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
139
136
fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , true ),
140
137
fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
138
+ fmt .Sprintf ("VPC_ID=%s" , testAccountVpcId ),
141
139
}
142
- mocks .cdkMock .EXPECT ().DeployApp (
143
- gomock .Any (),
144
- append (baseVars , fmt .Sprintf ("VPC_ID=%s" , testAccountVpcId )),
145
- "activate" ).Return (mocks .progressStream , nil )
140
+ mocks .cdkMock .EXPECT ().Bootstrap (gomock .Any (), vars , "bootstrap" ).Return (mocks .progressStream , nil )
141
+ mocks .cdkMock .EXPECT ().DeployApp (gomock .Any (), vars , "activate" ).Return (mocks .progressStream , nil )
146
142
return mocks
147
143
},
148
144
},
@@ -160,19 +156,36 @@ func TestAccountActivateOpts_Execute(t *testing.T) {
160
156
vpcId : "" ,
161
157
setupMocks : func (t * testing.T ) mockClients {
162
158
mocks := createMocks (t )
159
+ defer close (mocks .progressStream )
163
160
mocks .s3Mock .EXPECT ().BucketExists (testAccountBucketName ).Return (true , nil )
161
+ vars := []string {
162
+ fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
163
+ fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , false ),
164
+ fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
165
+ }
166
+ mocks .cdkMock .EXPECT ().Bootstrap (gomock .Any (), vars , "bootstrap" ).Return (mocks .progressStream , nil )
164
167
mocks .cdkMock .EXPECT ().DeployApp (
165
- gomock .Any (),
166
- []string {
167
- fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
168
- fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , false ),
169
- fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
170
- },
171
- "activate" ).Return (nil , fmt .Errorf ("some deploy error" ))
168
+ gomock .Any (), vars , "activate" ).Return (nil , fmt .Errorf ("some deploy error" ))
172
169
return mocks
173
170
},
174
171
expectedErr : fmt .Errorf ("some deploy error" ),
175
172
},
173
+ "bootstrap error" : {
174
+ bucketName : testAccountBucketName ,
175
+ vpcId : "" ,
176
+ setupMocks : func (t * testing.T ) mockClients {
177
+ mocks := createMocks (t )
178
+ vars := []string {
179
+ fmt .Sprintf ("AGC_BUCKET_NAME=%s" , testAccountBucketName ),
180
+ fmt .Sprintf ("CREATE_AGC_BUCKET=%t" , false ),
181
+ fmt .Sprintf ("AGC_VERSION=%s" , version .Version ),
182
+ }
183
+ mocks .s3Mock .EXPECT ().BucketExists (testAccountBucketName ).Return (true , nil )
184
+ mocks .cdkMock .EXPECT ().Bootstrap (gomock .Any (), vars , "bootstrap" ).Return (nil , fmt .Errorf ("some bootstrap error" ))
185
+ return mocks
186
+ },
187
+ expectedErr : fmt .Errorf ("some bootstrap error" ),
188
+ },
176
189
}
177
190
178
191
for name , tc := range testCases {
0 commit comments