index.js
11.3 KB
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
var assert = require('assert');
var fs = require('fs');
var GoogleToken = require('../lib/index.js');
var EMAIL = 'example@developer.gserviceaccount.com';
var KEYFILE = './test/assets/key.pem';
var P12FILE = './test/assets/key.p12';
var KEYFILEJSON = './test/assets/key.json';
var KEYFILENOEMAILJSON = './test/assets/key-no-email.json';
var KEYCONTENTS = fs.readFileSync(KEYFILE);
var KEYJSONCONTENTS = fs.readFileSync(KEYFILEJSON);
var SCOPE1 = 'https://www.googleapis.com/auth/urlshortener';
var SCOPE2 = 'https://www.googleapis.com/auth/drive';
var SCOPES = [SCOPE1, SCOPE2];
var GOOGLE_TOKEN_URL = 'https://accounts.google.com/o/oauth2/token';
var GOOGLE_REVOKE_TOKEN_URL = 'https://accounts.google.com/o/oauth2/revoke?token=';
var TESTDATA = {
email: 'email@developer.gserviceaccount.com',
scope: 'scope123', // or space-delimited string of scopes
key: 'abc123key'
};
var TESTDATA_KEYFILE = {
email: 'email@developer.gserviceaccount.com',
scope: 'scope123', // or space-delimited string of scopes
keyFile: KEYFILE
};
var TESTDATA_KEYFILENOEMAIL = {
scope: 'scope123', // or space-delimited string of scopes
keyFile: KEYFILE
};
var TESTDATA_KEYFILEJSON = {
scope: 'scope123', // or space-delimited string of scopes
keyFile: KEYFILEJSON
};
var TESTDATA_KEYFILENOEMAILJSON = {
scope: 'scope123', // or space-delimited string of scopes
keyFile: KEYFILENOEMAILJSON
};
var TESTDATA_P12 = {
email: 'email@developer.gserviceaccount.com',
scope: 'scope123', // or space-delimited string of scopes
keyFile: P12FILE
};
var TESTDATA_P12_NO_EMAIL = {
scope: 'scope123', // or space-delimited string of scopes
keyFile: P12FILE
};
var MIME = {
lookup: function(filename) {
if (filename === P12FILE) {
return 'application/x-pkcs12';
} else if (filename === KEYFILEJSON) {
return 'application/json';
} else {
return '';
}
}
};
var noop = function() {};
describe('gtoken', function() {
it('should exist', function() {
assert.equal(typeof GoogleToken, 'function');
});
it('should work without new or options', function() {
var gtoken = GoogleToken();
assert(gtoken);
});
describe('.iss', function() {
it('should be set from email option', function() {
var gtoken = GoogleToken({
email: EMAIL
});
assert.equal(gtoken.iss, EMAIL);
assert.equal(gtoken.email, undefined);
});
it('should be set from iss option', function() {
var gtoken = GoogleToken({
iss: EMAIL
});
assert.equal(gtoken.iss, EMAIL);
});
it('should be set from email option over iss option', function() {
var gtoken = GoogleToken({
iss: EMAIL,
email: 'another' + EMAIL
});
assert.equal(gtoken.iss, 'another' + EMAIL);
});
});
describe('.scope', function() {
it('should accept strings', function() {
var gtoken = GoogleToken({
scope: 'hello world'
});
assert.equal(gtoken.scope, 'hello world');
});
it('should accept array of strings', function() {
var gtoken = GoogleToken({
scope: ['hello', 'world']
});
assert.equal(gtoken.scope, 'hello world');
});
});
describe('.hasExpired()', function() {
it('should exist', function() {
var gtoken = GoogleToken();
assert.equal(typeof gtoken.hasExpired, 'function');
});
it('should detect expired tokens', function() {
var gtoken = GoogleToken();
assert(gtoken.hasExpired(), 'should be expired without token');
gtoken.token = 'hello';
assert(gtoken.hasExpired(), 'should be expired without expires_at');
gtoken.expires_at = (new Date().getTime()) + 10000;
assert(!gtoken.hasExpired(), 'shouldnt be expired with future date');
gtoken.expires_at = (new Date().getTime()) - 10000;
assert(gtoken.hasExpired(), 'should be expired with past date');
gtoken.expires_at = (new Date().getTime()) + 10000;
gtoken.token = null;
assert(gtoken.hasExpired(), 'should be expired with no token');
});
});
describe('.revokeToken()', function() {
it('should exist', function() {
var gtoken = GoogleToken();
assert.equal(typeof gtoken.revokeToken, 'function');
});
it('should run ._configure()', function(done) {
var gtoken = GoogleToken();
gtoken.token = 'woot';
gtoken._request = function(opts, cb) {
assert.equal(opts, GOOGLE_REVOKE_TOKEN_URL + 'woot');
cb();
};
gtoken._configure = function(options) {
assert(options);
};
gtoken.revokeToken(done);
});
it('should return error when no token set', function(done) {
var gtoken = GoogleToken();
gtoken.token = null;
gtoken.revokeToken(function(err) {
assert(err && err.message);
done();
});
});
});
describe('.getToken()', function() {
it('should exist', function() {
var gtoken = GoogleToken();
assert.equal(typeof gtoken.getToken, 'function');
});
it('should run jws.sign() with correct object', function(done) {
var gtoken = GoogleToken(TESTDATA);
gtoken._signJWT = function(data) {
assert.deepEqual(data.header, {
alg: 'RS256',
typ: 'JWT'
});
assert(data.payload);
assert.equal(data.payload.iss, 'email@developer.gserviceaccount.com');
assert.equal(data.payload.scope, 'scope123');
assert.equal(data.payload.aud, GOOGLE_TOKEN_URL);
assert.equal(data.secret, 'abc123key');
done();
};
gtoken.getToken(noop);
});
it('should read .pem keyFile from file', function(done) {
var gtoken = GoogleToken(TESTDATA_KEYFILE);
gtoken._mime = MIME;
gtoken._signJWT = function(opts, cb) {
cb();
};
gtoken._request = function(opts, cb) {
cb();
};
gtoken.getToken(function(err, token) {
assert.deepEqual(gtoken.key, KEYCONTENTS);
done();
});
});
it('should return error if iss is not set with .pem', function(done) {
var gtoken = GoogleToken(TESTDATA_KEYFILENOEMAIL);
gtoken.getToken(function(err) {
assert.strictEqual(err.code, 'MISSING_CREDENTIALS');
done();
});
});
it('should read .json key from file', function(done) {
var gtoken = GoogleToken(TESTDATA_KEYFILEJSON);
gtoken._mime = MIME;
gtoken._signJWT = function(opts, cb) {
cb();
};
gtoken._request = function(opts, cb) {
cb();
};
gtoken.getToken(function(err, token) {
var parsed = JSON.parse(KEYJSONCONTENTS);
assert.deepEqual(gtoken.key, parsed.private_key);
assert.deepEqual(gtoken.iss, parsed.client_email);
done();
});
});
it('should return error if iss is not set with .json', function(done) {
var gtoken = GoogleToken(TESTDATA_KEYFILENOEMAILJSON);
gtoken.getToken(function(err) {
assert.strictEqual(err.code, 'MISSING_CREDENTIALS');
done();
});
});
it('should return cached token if not expired', function(done) {
var gtoken = GoogleToken(TESTDATA);
gtoken.token = 'mytoken';
gtoken.expires_at = new Date().getTime() + 10000;
gtoken.getToken(function(err, token) {
assert.equal(token, 'mytoken');
done();
});
});
it('should run mime.lookup if keyFile given', function(done) {
var gtoken = GoogleToken(TESTDATA_KEYFILE);
gtoken._mime = {
lookup: function(filename) {
assert.equal(filename, KEYFILE);
done();
}
};
gtoken._request = function(opts, callback) {
callback();
};
gtoken.getToken(noop);
});
it('should run gp12pem if .p12 file is given', function(done) {
var gtoken = GoogleToken(TESTDATA_P12);
gtoken._gp12pem = function(filename, callback) {
assert.equal(filename, P12FILE);
done();
};
gtoken._mime = MIME;
gtoken.getToken(noop);
});
it('should return error if iss is not set with .p12', function(done) {
var gtoken = GoogleToken(TESTDATA_P12_NO_EMAIL);
gtoken.getToken(function(err) {
assert.strictEqual(err.code, 'MISSING_CREDENTIALS');
done();
});
});
describe('request', function() {
it('should be run with correct options', function(done) {
var gtoken = GoogleToken(TESTDATA);
gtoken._signJWT = function sign(opts, callback) {
callback(null, 'signedJWT123');
};
gtoken._request = function(options, callback) {
assert.deepEqual(options, {
method: 'post',
url: GOOGLE_TOKEN_URL,
form: {
grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer',
assertion: 'signedJWT123'
}
});
callback();
};
gtoken.getToken(done);
});
it('should set and return correct properties on success', function(done) {
var gtoken = GoogleToken(TESTDATA);
var RESPBODY = JSON.stringify({
access_token: 'accesstoken123',
expires_in: 3600,
token_type: 'Bearer'
});
gtoken._request = function(options, callback) {
callback(null, 'res', RESPBODY);
};
gtoken._signJWT = function(opts, callback) {
callback(null, 'signedJWT123');
};
gtoken.getToken(function(err, token) {
assert.deepEqual(gtoken.raw_token, JSON.parse(RESPBODY));
assert.equal(gtoken.token, 'accesstoken123');
assert.equal(gtoken.token, token);
assert.equal(err, null);
assert(gtoken.expires_at >= (new Date()).getTime());
assert(gtoken.expires_at <= (new Date()).getTime() + (3600 * 1000));
done();
});
});
it('should set and return correct properties on error', function(done) {
var ERROR = new Error('An error occurred.');
var gtoken = GoogleToken(TESTDATA);
var RESPBODY = JSON.stringify({
access_token: 'accesstoken123',
expires_in: 3600,
token_type: 'Bearer'
});
gtoken._request = function(options, callback) {
callback(ERROR);
};
gtoken._signJWT = function sign(opts, callback) {
callback(null, 'signedJWT123');
};
gtoken.getToken(function(err, token) {
assert.equal(gtoken.raw_token, null);
assert.equal(gtoken.token, null);
assert.equal(gtoken.token, token);
assert.equal(err, ERROR);
assert.equal(gtoken.expires_at, null);
done();
});
});
it('should include error_description from remote error', function(done) {
var gtoken = GoogleToken(TESTDATA);
var ERROR = 'error_name';
var DESCRIPTION = 'more detailed message';
var RESPBODY = JSON.stringify({
error: ERROR,
error_description: DESCRIPTION
});
gtoken._request = function(options, callback) {
callback(null, {}, RESPBODY);
};
gtoken._signJWT = function(opts, callback) {
callback(null, 'signedJWT123');
};
gtoken.getToken(function(err, token) {
assert(err instanceof Error);
assert.equal(err.message, ERROR + ': ' + DESCRIPTION);
done();
});
});
});
});
});