-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy pathtoken_generator_test.go
361 lines (321 loc) · 9.88 KB
/
token_generator_test.go
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
// Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package auth
import (
"context"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"strings"
"testing"
"firebase.google.com/go/v4/errorutils"
"firebase.google.com/go/v4/internal"
)
func TestEncodeToken(t *testing.T) {
info := &jwtInfo{
header: jwtHeader{Algorithm: "RS256", Type: "JWT"},
payload: mockIDTokenPayload{"key": "value"},
}
s, err := info.Token(context.Background(), &mockSigner{})
if err != nil {
t.Fatal(err)
}
parts := strings.Split(s, ".")
if len(parts) != 3 {
t.Errorf("encodeToken() = %d; want: %d", len(parts), 3)
}
var header jwtHeader
if err := decode(parts[0], &header); err != nil {
t.Fatal(err)
} else if info.header != header {
t.Errorf("decode(header) = %v; want = %v", header, info.header)
}
payload := make(mockIDTokenPayload)
if err := decode(parts[1], &payload); err != nil {
t.Fatal(err)
} else if len(payload) != 1 || payload["key"] != "value" {
t.Errorf("decode(payload) = %v; want = %v", payload, info.payload)
}
if sig, err := base64.RawURLEncoding.DecodeString(parts[2]); err != nil {
t.Fatal(err)
} else if string(sig) != "signedBlob" {
t.Errorf("decode(signature) = %q; want = %q", string(sig), "signedBlob")
}
}
func TestEncodeSignError(t *testing.T) {
signer := &mockSigner{
err: errors.New("sign error"),
}
info := &jwtInfo{
header: jwtHeader{Algorithm: "RS256", Type: "JWT"},
payload: mockIDTokenPayload{"key": "value"},
}
if s, err := info.Token(context.Background(), signer); s != "" || err != signer.err {
t.Errorf("encodeToken() = (%v, %v); want = ('', %v)", s, err, signer.err)
}
}
func TestEncodeInvalidPayload(t *testing.T) {
info := &jwtInfo{
header: jwtHeader{Algorithm: "RS256", Type: "JWT"},
payload: mockIDTokenPayload{"key": func() {}},
}
s, err := info.Token(context.Background(), &mockSigner{})
if s != "" || err == nil {
t.Errorf("encodeToken() = (%v, %v); want = ('', error)", s, err)
}
}
func TestServiceAccountSigner(t *testing.T) {
b, err := ioutil.ReadFile("../testdata/service_account.json")
if err != nil {
t.Fatal(err)
}
var sa serviceAccount
if err := json.Unmarshal(b, &sa); err != nil {
t.Fatal(err)
}
signer, err := newServiceAccountSigner(sa)
if err != nil {
t.Fatal(err)
}
algorithm := signer.Algorithm()
if algorithm != algorithmRS256 {
t.Errorf("Algorithm() = %q; want = %q", algorithm, algorithmRS256)
}
email, err := signer.Email(context.Background())
if email != sa.ClientEmail || err != nil {
t.Errorf("Email() = (%q, %v); want = (%q, nil)", email, err, sa.ClientEmail)
}
sign, err := signer.Sign(context.Background(), []byte("test"))
if sign == nil || err != nil {
t.Errorf("Sign() = (%v, %v); want = (bytes, nil)", email, err)
}
}
func TestIAMSigner(t *testing.T) {
ctx := context.Background()
conf := &internal.AuthConfig{
Opts: optsWithTokenSource,
ServiceAccountID: "test-service-account",
Version: testVersion,
}
signer, err := newIAMSigner(ctx, conf)
if err != nil {
t.Fatal(err)
}
algorithm := signer.Algorithm()
if algorithm != algorithmRS256 {
t.Errorf("Algorithm() = %q; want = %q", algorithm, algorithmRS256)
}
email, err := signer.Email(ctx)
if email != conf.ServiceAccountID || err != nil {
t.Errorf("Email() = (%q, %v); want = (%q, nil)", email, err, conf.ServiceAccountID)
}
wantSignature := "test-signature"
server := iamServer(t, email, wantSignature)
defer server.Close()
signer.iamHost = server.URL
signature, err := signer.Sign(ctx, []byte("input"))
if err != nil {
t.Fatal(err)
}
if string(signature) != wantSignature {
t.Errorf("Sign() = %q; want = %q", string(signature), wantSignature)
}
}
func TestIAMSignerHTTPError(t *testing.T) {
conf := &internal.AuthConfig{
Opts: optsWithTokenSource,
ServiceAccountID: "test-service-account",
Version: testVersion,
}
signer, err := newIAMSigner(context.Background(), conf)
if err != nil {
t.Fatal(err)
}
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
w.WriteHeader(http.StatusForbidden)
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"error": {"status": "PERMISSION_DENIED", "message": "test reason"}}`))
})
server := httptest.NewServer(handler)
defer server.Close()
signer.iamHost = server.URL
want := "test reason"
_, err = signer.Sign(context.Background(), []byte("input"))
if err == nil || !errorutils.IsPermissionDenied(err) || err.Error() != want {
t.Errorf("Sign() = %v; want = %q", err, want)
}
}
func TestIAMSignerUnknownHTTPError(t *testing.T) {
conf := &internal.AuthConfig{
Opts: optsWithTokenSource,
ServiceAccountID: "test-service-account",
Version: testVersion,
}
signer, err := newIAMSigner(context.Background(), conf)
if err != nil {
t.Fatal(err)
}
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
w.WriteHeader(http.StatusForbidden)
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`not json`))
})
server := httptest.NewServer(handler)
defer server.Close()
signer.iamHost = server.URL
want := "unexpected http response with status: 403\nnot json"
_, err = signer.Sign(context.Background(), []byte("input"))
if err == nil || !errorutils.IsPermissionDenied(err) || err.Error() != want {
t.Errorf("Sign() = %v; want = %q", err, want)
}
}
func TestIAMSignerWithMetadataService(t *testing.T) {
ctx := context.Background()
conf := &internal.AuthConfig{
Opts: optsWithTokenSource,
Version: testVersion,
}
signer, err := newIAMSigner(ctx, conf)
if err != nil {
t.Fatal(err)
}
// start mock metadata service and test Email()
serviceAcct := "discovered-service-account"
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
flavor := r.Header.Get("Metadata-Flavor")
if flavor != "Google" {
t.Errorf("Header(Metadata-Flavor) = %q; want = %q", flavor, "Google")
}
w.Header().Set("Content-Type", "application/text")
w.Write([]byte(serviceAcct))
})
metadata := httptest.NewServer(handler)
defer metadata.Close()
signer.metadataHost = metadata.URL
email, err := signer.Email(ctx)
if email != serviceAcct || err != nil {
t.Errorf("Email() = (%q, %v); want = (%q, nil)", email, err, serviceAcct)
}
// start mock IAM service and test Sign()
wantSignature := "test-signature"
server := iamServer(t, email, wantSignature)
defer server.Close()
signer.iamHost = server.URL
signature, err := signer.Sign(ctx, []byte("input"))
if err != nil {
t.Fatal(err)
}
if string(signature) != wantSignature {
t.Errorf("Sign() = %q; want = %q", string(signature), wantSignature)
}
}
func TestIAMSignerNoMetadataService(t *testing.T) {
ctx := context.Background()
conf := &internal.AuthConfig{
Opts: optsWithTokenSource,
Version: testVersion,
}
signer, err := newIAMSigner(ctx, conf)
if err != nil {
t.Fatal(err)
}
signer.metadataHost = "http://non-existing.metadata.service"
want := "failed to determine service account: "
_, err = signer.Email(ctx)
if err == nil || !strings.HasPrefix(err.Error(), want) {
t.Errorf("Email() = %v; want = %q", err, want)
}
_, err = signer.Sign(ctx, []byte("input"))
if err == nil || !strings.HasPrefix(err.Error(), want) {
t.Errorf("Sign() = %v; want = %q", err, want)
}
}
func TestEmulatedSigner(t *testing.T) {
signer := emulatedSigner{}
algorithm := signer.Algorithm()
if algorithm != algorithmNone {
t.Errorf("Algorithm() = %q; want = %q", algorithm, algorithmNone)
}
email, err := signer.Email(context.Background())
if err != nil {
t.Fatal(err)
}
if email != emulatorEmail {
t.Errorf("Email() = %q; want = %q", email, emulatorEmail)
}
wantSignature := ""
sign, err := signer.Sign(context.Background(), []byte("test"))
if err != nil {
t.Fatal(err)
}
if string(sign) != wantSignature {
t.Errorf("Sign() = %q; want = %q", string(sign), wantSignature)
}
}
type mockSigner struct {
err error
}
func (s *mockSigner) Algorithm() string {
return ""
}
func (s *mockSigner) Email(ctx context.Context) (string, error) {
return "", nil
}
func (s *mockSigner) Sign(ctx context.Context, b []byte) ([]byte, error) {
if s.err != nil {
return nil, s.err
}
return []byte("signedBlob"), nil
}
func iamServer(t *testing.T, serviceAcct, signature string) *httptest.Server {
resp := map[string]interface{}{
"signedBlob": base64.StdEncoding.EncodeToString([]byte(signature)),
}
wantPath := fmt.Sprintf("/v1/projects/-/serviceAccounts/%s:signBlob", serviceAcct)
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
reqBody, err := ioutil.ReadAll(r.Body)
if err != nil {
t.Fatal(err)
}
var m map[string]interface{}
if err := json.Unmarshal(reqBody, &m); err != nil {
t.Fatal(err)
}
if m["payload"] == "" {
t.Fatal("payload = empty; want = non-empty")
}
if r.URL.Path != wantPath {
t.Errorf("Path = %q; want = %q", r.URL.Path, wantPath)
}
xGoogAPIClientHeader := internal.GetMetricsHeader(testVersion)
if h := r.Header.Get("x-goog-api-client"); h != xGoogAPIClientHeader {
t.Errorf("x-goog-api-client header = %q; want = %q", h, xGoogAPIClientHeader)
}
w.Header().Set("Content-Type", "application/json")
b, err := json.Marshal(resp)
if err != nil {
t.Fatal(err)
}
w.Write(b)
})
return httptest.NewServer(handler)
}