@@ -18,6 +18,7 @@ package gcp
18
18
19
19
import (
20
20
"fmt"
21
+ "io/ioutil"
21
22
"net/http"
22
23
"os"
23
24
"os/exec"
@@ -116,6 +117,114 @@ func TestHelperProcess(t *testing.T) {
116
117
os .Exit (0 )
117
118
}
118
119
120
+ func Test_isCmdTokenSource (t * testing.T ) {
121
+ c1 := map [string ]string {"cmd-path" : "foo" }
122
+ if v := isCmdTokenSource (c1 ); ! v {
123
+ t .Fatalf ("cmd-path present in config (%+v), but got %v" , c1 , v )
124
+ }
125
+
126
+ c2 := map [string ]string {"cmd-args" : "foo bar" }
127
+ if v := isCmdTokenSource (c2 ); v {
128
+ t .Fatalf ("cmd-path not present in config (%+v), but got %v" , c2 , v )
129
+ }
130
+ }
131
+
132
+ func Test_tokenSource_cmd (t * testing.T ) {
133
+ if _ , err := tokenSource (true , map [string ]string {}); err == nil {
134
+ t .Fatalf ("expected error, cmd-args not present in config" )
135
+ }
136
+
137
+ c := map [string ]string {
138
+ "cmd-path" : "foo" ,
139
+ "cmd-args" : "bar" }
140
+ ts , err := tokenSource (true , c )
141
+ if err != nil {
142
+ t .Fatalf ("failed to return cmd token source: %+v" , err )
143
+ }
144
+ if ts == nil {
145
+ t .Fatal ("returned nil token source" )
146
+ }
147
+ if _ , ok := ts .(* commandTokenSource ); ! ok {
148
+ t .Fatalf ("returned token source type:(%T) expected:(*commandTokenSource)" , ts )
149
+ }
150
+ }
151
+
152
+ func Test_tokenSource_cmdCannotBeUsedWithScopes (t * testing.T ) {
153
+ c := map [string ]string {
154
+ "cmd-path" : "foo" ,
155
+ "scopes" : "A,B" }
156
+ if _ , err := tokenSource (true , c ); err == nil {
157
+ t .Fatal ("expected error when scopes is used with cmd-path" )
158
+ }
159
+ }
160
+
161
+ func Test_tokenSource_applicationDefaultCredentials_fails (t * testing.T ) {
162
+ // try to use empty ADC file
163
+ fakeTokenFile , err := ioutil .TempFile ("" , "adctoken" )
164
+ if err != nil {
165
+ t .Fatalf ("failed to create fake token file: +%v" , err )
166
+ }
167
+ fakeTokenFile .Close ()
168
+ defer os .Remove (fakeTokenFile .Name ())
169
+
170
+ os .Setenv ("GOOGLE_APPLICATION_CREDENTIALS" , fakeTokenFile .Name ())
171
+ defer os .Unsetenv ("GOOGLE_APPLICATION_CREDENTIALS" )
172
+ if _ , err := tokenSource (false , map [string ]string {}); err == nil {
173
+ t .Fatalf ("expected error because specified ADC token file is not a JSON" )
174
+ }
175
+ }
176
+
177
+ func Test_tokenSource_applicationDefaultCredentials (t * testing.T ) {
178
+ fakeTokenFile , err := ioutil .TempFile ("" , "adctoken" )
179
+ if err != nil {
180
+ t .Fatalf ("failed to create fake token file: +%v" , err )
181
+ }
182
+ fakeTokenFile .Close ()
183
+ defer os .Remove (fakeTokenFile .Name ())
184
+ if err := ioutil .WriteFile (fakeTokenFile .Name (), []byte (`{"type":"service_account"}` ), 0600 ); err != nil {
185
+ t .Fatalf ("failed to write to fake token file: %+v" , err )
186
+ }
187
+
188
+ os .Setenv ("GOOGLE_APPLICATION_CREDENTIALS" , fakeTokenFile .Name ())
189
+ defer os .Unsetenv ("GOOGLE_APPLICATION_CREDENTIALS" )
190
+ ts , err := tokenSource (false , map [string ]string {})
191
+ if err != nil {
192
+ t .Fatalf ("failed to get a token source: %+v" , err )
193
+ }
194
+ if ts == nil {
195
+ t .Fatal ("returned nil token soruce" )
196
+ }
197
+ }
198
+
199
+ func Test_parseScopes (t * testing.T ) {
200
+ cases := []struct {
201
+ in map [string ]string
202
+ out []string
203
+ }{
204
+ {
205
+ map [string ]string {},
206
+ []string {
207
+ "https://www.googleapis.com/auth/cloud-platform" ,
208
+ "https://www.googleapis.com/auth/userinfo.email" },
209
+ },
210
+ {
211
+ map [string ]string {"scopes" : "" },
212
+ []string {},
213
+ },
214
+ {
215
+ map [string ]string {"scopes" : "A,B,C" },
216
+ []string {"A" , "B" , "C" },
217
+ },
218
+ }
219
+
220
+ for _ , c := range cases {
221
+ got := parseScopes (c .in )
222
+ if ! reflect .DeepEqual (got , c .out ) {
223
+ t .Errorf ("expected=%v, got=%v" , c .out , got )
224
+ }
225
+ }
226
+ }
227
+
119
228
func errEquiv (got , want error ) bool {
120
229
if got == want {
121
230
return true
0 commit comments