forked from lpinca/shopify-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
320 lines (271 loc) · 9.37 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
describe('shopify-token', function () {
'use strict';
var expect = require('chai').expect
, ShopifyToken = require('./')
, nock = require('nock')
, url = require('url');
var shopifyToken = new ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz'
});
it('exports the constructor', function () {
expect(ShopifyToken).to.be.a('function');
});
it('throws an error when the required options are missing', function () {
expect(function () {
new ShopifyToken();
}).to.throw(Error, /Missing or invalid options/);
expect(function () {
new ShopifyToken({ scopes: 'write_content' });
}).to.throw(Error, /Missing or invalid options/);
});
it('makes the new operator optional', function () {
var shopifyToken = ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz'
});
expect(shopifyToken).to.be.an.instanceof(ShopifyToken);
});
it('uses a default scope', function () {
expect(shopifyToken.scopes).to.equal('read_content');
});
it('allows to customize the default scopes', function () {
var shopifyToken = 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 request timeout', function () {
var shopifyToken = ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 300
});
expect(shopifyToken.timeout).to.equal(300);
});
describe('#generateNonce', function () {
it('generates a random nonce', function () {
var nonce = shopifyToken.generateNonce();
expect(nonce).to.be.a('string').and.have.length(32);
});
});
describe('#generateAuthUrl', function () {
it('builds the authorization URL', function () {
var uri = shopifyToken.generateAuthUrl('qux')
, 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 () {
var uri = shopifyToken.generateAuthUrl('qux', 'read_themes,read_products')
, 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 () {
var uri = shopifyToken.generateAuthUrl('qux', [
'read_products',
'read_themes'
]);
var 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 () {
var 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'
}
}));
});
});
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);
});
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);
});
it('returns false if the properties values are not strings', function () {
expect(shopifyToken.verifyHmac({ foo: [1, 2] })).to.equal(false);
});
});
describe('#getAccessToken', function () {
var pathname = '/admin/oauth/access_token'
, hostname = 'qux.myshopify.com'
, scope = nock('https://' + hostname);
afterEach(function () {
expect(scope.isDone()).to.be.true;
});
it('exchanges the auth code for the access token', function (done) {
var token = 'f85632530bf277ec9ac6f649fc327f17'
, code = '4d732838ad8c22cd1d2dd96f8a403fb7';
scope
.post(pathname, {
client_secret: 'foo',
client_id: 'baz',
code: code
})
.reply(200, { access_token: token });
shopifyToken.getAccessToken(hostname, code, function (err, res) {
if (err) return done(err);
expect(res).to.equal(token);
done();
});
});
it('returns an error if the request fails', function (done) {
var message = 'Something wrong happened';
scope
.post(pathname)
.replyWithError(message);
shopifyToken.getAccessToken(hostname, '123456', function (err, res) {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal(message);
expect(res).to.equal(undefined);
done();
});
});
it('returns an error when timeout expires (headers)', function (done) {
var shopifyToken = ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 100
});
scope
.post(pathname)
.delay({ head: 200 })
.reply(200, {});
shopifyToken.getAccessToken(hostname, '123456', function (err, res) {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal('Request timed out');
expect(res).to.equal(undefined);
done();
});
});
it('returns an error when timeout expires (body)', function (done) {
var shopifyToken = ShopifyToken({
sharedSecret: 'foo',
redirectUri: 'bar',
apiKey: 'baz',
timeout: 100
});
scope
.post(pathname)
.delay({ body: 200 })
.reply(200, {});
shopifyToken.getAccessToken(hostname, '123456', function (err, res) {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal('Request timed out');
expect(res).to.equal(undefined);
done();
});
});
it('returns an error when timeout expires (connection)', function (done) {
var shopifyToken = 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
// issues a non-routable IP address is used here instead of `nock`. See
// https://tools.ietf.org/html/rfc5737#section-3
//
shopifyToken.getAccessToken('192.0.2.1', '123456', function (err, res) {
expect(err).to.be.an.instanceof(Error);
expect(err.message).to.equal('Request timed out');
expect(res).to.equal(undefined);
done();
});
});
it('returns an error if response statusCode is not 200', function (done) {
var body = 'some error message from shopify';
scope
.post(pathname)
.reply(400, body);
shopifyToken.getAccessToken(hostname, '123456', function (err, res) {
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);
expect(res).to.equal(undefined);
done();
});
});
it('returns an error if JSON.parse throws', function (done) {
var body = '<!DOCTYPE html><html><head></head><body></body></html>';
scope
.post(pathname)
.reply(200, body);
shopifyToken.getAccessToken(hostname, '123456', function (err, res) {
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);
expect(res).to.equal(undefined);
done();
});
});
});
});