-
Notifications
You must be signed in to change notification settings - Fork 25
/
test.js
434 lines (370 loc) · 12.8 KB
/
test.js
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
describe('shopify-token', function () {
'use strict';
const expect = require('chai').expect;
const stream = require('stream');
const https = require('https');
const nock = require('nock');
const url = require('url');
const ShopifyToken = require('.');
const shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz'
});
it('exports the class', function () {
expect(ShopifyToken).to.be.a('function');
});
it('throws an error when the required options are missing', function () {
expect(() => {
new ShopifyToken();
}).to.throw(Error, /Missing or invalid options/);
expect(() => {
new ShopifyToken({ scopes: 'write_content' });
}).to.throw(Error, /Missing or invalid options/);
});
it('uses a default scope', function () {
expect(shopifyToken.scopes).to.equal('read_content');
});
it('defaults to offline access mode', function () {
expect(shopifyToken.accessMode).to.equal('');
});
it('allows to customize the default scopes', function () {
const shopifyToken = new ShopifyToken({
scopes: 'read_content,write_content',
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz'
});
expect(shopifyToken.scopes).to.equal('read_content,write_content');
});
it('allows to customize the default access mode', function () {
const shopifyToken = new ShopifyToken({
accessMode: 'per-user',
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz'
});
expect(shopifyToken.accessMode).to.equal('per-user');
});
it('allows to customize the request timeout', function () {
const shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 300
});
expect(shopifyToken.timeout).to.equal(300);
});
describe('#generateNonce', function () {
it('generates a random nonce', function () {
const nonce = shopifyToken.generateNonce();
expect(nonce).to.be.a('string').and.have.length(32);
});
});
describe('#generateAuthUrl', function () {
it('builds the authorization URL', function () {
const uri = shopifyToken.generateAuthUrl('qux');
const nonce = url.parse(uri, true).query.state;
expect(nonce).to.be.a('string').and.have.length(32);
expect(uri).to.equal(url.format({
pathname: '/admin/oauth/authorize',
hostname: 'qux.myshopify.com',
protocol: 'https:',
query: {
scope: 'read_content',
state: nonce,
redirect_uri: 'bar',
client_id: 'baz'
}
}));
});
it("allows to use the shop's myshopify.com domain as shop name", function () {
const uri = shopifyToken.generateAuthUrl('qux.myshopify.com');
const nonce = url.parse(uri, true).query.state;
expect(nonce).to.be.a('string').and.have.length(32);
expect(uri).to.equal(url.format({
pathname: '/admin/oauth/authorize',
hostname: 'qux.myshopify.com',
protocol: 'https:',
query: {
scope: 'read_content',
state: nonce,
redirect_uri: 'bar',
client_id: 'baz'
}
}));
});
it('allows to override the default scopes', function () {
const uri = shopifyToken.generateAuthUrl('qux', 'read_themes,read_products');
const nonce = url.parse(uri, true).query.state;
expect(nonce).to.be.a('string').and.have.length(32);
expect(uri).to.equal(url.format({
pathname: '/admin/oauth/authorize',
hostname: 'qux.myshopify.com',
protocol: 'https:',
query: {
scope: 'read_themes,read_products',
state: nonce,
redirect_uri: 'bar',
client_id: 'baz'
}
}));
});
it('allows to use an array to override the scopes', function () {
const uri = shopifyToken.generateAuthUrl('qux', [
'read_products',
'read_themes'
]);
const nonce = url.parse(uri, true).query.state;
expect(nonce).to.be.a('string').and.have.length(32);
expect(uri).to.equal(url.format({
pathname: '/admin/oauth/authorize',
hostname: 'qux.myshopify.com',
protocol: 'https:',
query: {
scope: 'read_products,read_themes',
state: nonce,
redirect_uri: 'bar',
client_id: 'baz'
}
}));
});
it('allows to use a custom nonce', function () {
const uri = shopifyToken.generateAuthUrl('qux', undefined, 'corge');
expect(uri).to.equal(url.format({
pathname: '/admin/oauth/authorize',
hostname: 'qux.myshopify.com',
protocol: 'https:',
query: {
scope: 'read_content',
state: 'corge',
redirect_uri: 'bar',
client_id: 'baz'
}
}));
});
it('allows to override the default access mode', function () {
const uri = shopifyToken.generateAuthUrl(
'qux',
undefined,
undefined,
'per-user'
);
const nonce = url.parse(uri, true).query.state;
expect(nonce).to.be.a('string').and.have.length(32);
expect(uri).to.equal(url.format({
pathname: '/admin/oauth/authorize',
hostname: 'qux.myshopify.com',
protocol: 'https:',
query: {
scope: 'read_content',
state: nonce,
redirect_uri: 'bar',
client_id: 'baz',
'grant_options[]': 'per-user'
}
}));
});
});
describe('#verifyHmac', function () {
it('returns true if the message is authentic', function () {
expect(shopifyToken.verifyHmac({
hmac: '3d9b9a7918ac20dfd03b6a0af54a58f0a47980145ae81a37f41597a1e34b528d',
state: 'b77827e928ee8eee614b5808d3276c8a',
code: '4d732838ad8c22cd1d2dd96f8a403fb7',
shop: 'qux.myshopify.com',
timestamp: '1451929074'
})).to.equal(true);
expect(shopifyToken.verifyHmac({
hmac: 'ffe89c5d47dd26297d47b68e6ad14cf4ee6f11a72b3da7c7a0974d0c3959579a',
shop: 'qux.myshopify.com',
timestamp: '1492784493',
quuz: [1, 2],
corge: 'grault'
})).to.equal(true);
});
it('returns false if the message is not authentic', function () {
expect(shopifyToken.verifyHmac({
hmac: '3d9b9a7918ac20dfd03b6a0af54a58f0a47980145ae81a37f41597a1e34b528d',
state: 'b77827e928ee8eee614b5808d3276c8a',
code: '4d732838ad8c22cd1d2dd96f8a403fb7',
shop: 'qux.myshopify.com',
timestamp: '1451933938'
})).to.equal(false);
});
it('returns false if the query object is empty', function () {
expect(shopifyToken.verifyHmac({})).to.equal(false);
});
});
describe('#getAccessToken', function () {
const pathname = '/admin/oauth/access_token';
const hostname = 'qux.myshopify.com';
const scope = nock(`https://${hostname}`, { allowUnmocked: true });
afterEach(function () {
expect(scope.isDone()).to.be.true;
});
it('exchanges the auth code for the access token', function () {
const code = '4d732838ad8c22cd1d2dd96f8a403fb7';
const reply = {
access_token: 'f85632530bf277ec9ac6f649fc327f17',
scope: 'read_content'
};
scope
.post(pathname, { client_secret: 'foo', client_id: 'baz', code })
.reply(200, reply);
return shopifyToken.getAccessToken(hostname, code)
.then((data) => expect(data).to.deep.equal(reply));
});
it('honors the `agent` option', function () {
const code = '4d732838ad8c22cd1d2dd96f8a403fb7';
const requestBody = {
client_secret: 'foo',
client_id: 'baz',
code
};
const stringifiedRequestBody = JSON.stringify(requestBody);
const responseBody = {
access_token: 'f85632530bf277ec9ac6f649fc327f17',
scope: 'read_content'
};
const stringifiedResponseBody = JSON.stringify(responseBody);
const agent = new https.Agent();
agent.createConnection = function () {
const duplex = new stream.Duplex({
read() {},
write(chunk, encoding, callback) {
if (chunk.length === 0) {
callback();
return;
}
expect(chunk.toString()).to.equal([
`POST ${pathname} HTTP/1.1`,
`Content-Length: ${Buffer.byteLength(stringifiedRequestBody)}`,
'Content-Type: application/json',
'Accept: application/json',
`Host: ${hostname}`,
'Connection: close',
'',
stringifiedRequestBody
].join('\r\n'));
duplex.push([
'HTTP/1.1 200 OK',
'Content-Type: application/json',
`Content-Length: ${Buffer.byteLength(stringifiedResponseBody)}`,
'Connection: close',
`Date: ${new Date().toUTCString()}`,
'',
stringifiedResponseBody
].join('\r\n'));
callback();
}
});
return duplex;
}
const shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
agent
});
return shopifyToken.getAccessToken(hostname, code)
.then((data) => expect(data).to.deep.equal(responseBody));
});
it('returns an error if the request fails', function () {
const message = 'Something wrong happened';
scope
.post(pathname)
.replyWithError(message);
return shopifyToken.getAccessToken(hostname, '123456').then(() => {
throw new Error('Test invalidation');
}, (err) => {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal(message);
});
});
it('returns an error when timeout expires (headers)', function () {
const shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 100
});
scope
.post(pathname)
.delay({ head: 200 })
.reply(200, {});
return shopifyToken.getAccessToken(hostname, '123456').then(() => {
throw new Error('Test invalidation');
}, (err) => {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal('Request timed out');
});
});
it('returns an error when timeout expires (body)', function () {
const shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 100
});
scope
.post(pathname)
.delay({ body: 200 })
.reply(200, {});
return shopifyToken.getAccessToken(hostname, '123456').then(() => {
throw new Error('Test invalidation');
}, (err) => {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal('Request timed out');
});
});
it('returns an error when timeout expires (connection)', function () {
const shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 100
});
//
// `scope.delay()` can only delay the `response` event. The connection is
// still established so it is useless for this test. To work around this
// issue a non-routable IP address is used here instead of `nock`. See
// https://tools.ietf.org/html/rfc5737#section-3
//
return shopifyToken.getAccessToken('192.0.2.1', '123456').then(() => {
throw new Error('Test invalidation');
}, (err) => {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal('Request timed out');
});
});
it('returns an error if response statusCode is not 200', function () {
const body = 'some error message from shopify';
scope
.post(pathname)
.reply(400, body);
return shopifyToken.getAccessToken(hostname, '123456').then(() => {
throw new Error('Test invalidation');
}, (err) => {
expect(err).to.be.an.instanceof(Error);
expect(err).to.have.property('message', 'Failed to get Shopify access token');
expect(err).to.have.property('responseBody', body);
expect(err).to.have.property('statusCode', 400);
});
});
it('returns an error if JSON.parse throws', function () {
const body = '<!DOCTYPE html><html><head></head><body></body></html>';
scope
.post(pathname)
.reply(200, body);
return shopifyToken.getAccessToken(hostname, '123456').then(() => {
throw new Error('Test invalidation');
}, (err) => {
expect(err).to.be.an.instanceof(Error);
expect(err).to.have.property('message', 'Failed to parse the response body');
expect(err).to.have.property('responseBody', body);
expect(err).to.have.property('statusCode', 200);
});
});
});
});