Skip to content

Commit 8aedf2b

Browse files
BigABjfromaniello
authored andcommitted
Fix tests in jwt.rs.tests.js which causes 4 to fail
1 parent bd82ab3 commit 8aedf2b

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

test/jwt.rs.tests.js

+19-10
Original file line numberDiff line numberDiff line change
@@ -259,98 +259,107 @@ describe('RS256', function() {
259259
describe('when signing a token with issuer', function() {
260260
var token = jwt.sign({ foo: 'bar' }, priv, { algorithm: 'RS256', issuer: 'urn:foo' });
261261

262-
it('should check issuer', function() {
262+
it('should check issuer', function(done) {
263263
jwt.verify(token, pub, { issuer: 'urn:foo' }, function(err, decoded) {
264264
assert.isNotNull(decoded);
265265
assert.isNull(err);
266+
done();
266267
});
267268
});
268269

269-
it('should throw when invalid issuer', function() {
270+
it('should throw when invalid issuer', function(done) {
270271
jwt.verify(token, pub, { issuer: 'urn:wrong' }, function(err, decoded) {
271272
assert.isUndefined(decoded);
272273
assert.isNotNull(err);
273274
assert.equal(err.name, 'JsonWebTokenError');
274275
assert.instanceOf(err, jwt.JsonWebTokenError);
276+
done();
275277
});
276278
});
277279
});
278280

279281
describe('when signing a token without issuer', function() {
280282
var token = jwt.sign({ foo: 'bar' }, priv, { algorithm: 'RS256' });
281283

282-
it('should check issuer', function() {
284+
it('should check issuer', function(done) {
283285
jwt.verify(token, pub, { issuer: 'urn:foo' }, function(err, decoded) {
284286
assert.isUndefined(decoded);
285287
assert.isNotNull(err);
286288
assert.equal(err.name, 'JsonWebTokenError');
287289
assert.instanceOf(err, jwt.JsonWebTokenError);
290+
done();
288291
});
289292
});
290293
});
291294

292295
describe('when signing a token with subject', function() {
293296
var token = jwt.sign({ foo: 'bar' }, priv, { algorithm: 'RS256', subject: 'subject' });
294297

295-
it('should check subject', function() {
298+
it('should check subject', function(done) {
296299
jwt.verify(token, pub, { subject: 'subject' }, function(err, decoded) {
297300
assert.isNotNull(decoded);
298301
assert.isNull(err);
302+
done();
299303
});
300304
});
301305

302-
it('should throw when invalid subject', function() {
303-
jwt.verify(token, pub, { issuer: 'wrongSubject' }, function(err, decoded) {
306+
it('should throw when invalid subject', function(done) {
307+
jwt.verify(token, pub, { subject: 'wrongSubject' }, function(err, decoded) {
304308
assert.isUndefined(decoded);
305309
assert.isNotNull(err);
306310
assert.equal(err.name, 'JsonWebTokenError');
307311
assert.instanceOf(err, jwt.JsonWebTokenError);
312+
done();
308313
});
309314
});
310315
});
311316

312317
describe('when signing a token without subject', function() {
313318
var token = jwt.sign({ foo: 'bar' }, priv, { algorithm: 'RS256' });
314319

315-
it('should check subject', function() {
320+
it('should check subject', function(done) {
316321
jwt.verify(token, pub, { subject: 'subject' }, function(err, decoded) {
317322
assert.isUndefined(decoded);
318323
assert.isNotNull(err);
319324
assert.equal(err.name, 'JsonWebTokenError');
320325
assert.instanceOf(err, jwt.JsonWebTokenError);
326+
done();
321327
});
322328
});
323329
});
324330

325331
describe('when signing a token with jwt id', function() {
326332
var token = jwt.sign({ foo: 'bar' }, priv, { algorithm: 'RS256', jwtid: 'jwtid' });
327333

328-
it('should check jwt id', function() {
334+
it('should check jwt id', function(done) {
329335
jwt.verify(token, pub, { jwtid: 'jwtid' }, function(err, decoded) {
330336
assert.isNotNull(decoded);
331337
assert.isNull(err);
338+
done();
332339
});
333340
});
334341

335-
it('should throw when invalid jwt id', function() {
342+
it('should throw when invalid jwt id', function(done) {
336343
jwt.verify(token, pub, { jwtid: 'wrongJwtid' }, function(err, decoded) {
337344
assert.isUndefined(decoded);
338345
assert.isNotNull(err);
339346
assert.equal(err.name, 'JsonWebTokenError');
340347
assert.instanceOf(err, jwt.JsonWebTokenError);
348+
done();
341349
});
342350
});
343351
});
344352

345353
describe('when signing a token without jwt id', function() {
346354
var token = jwt.sign({ foo: 'bar' }, priv, { algorithm: 'RS256' });
347355

348-
it('should check jwt id', function() {
356+
it('should check jwt id', function(done) {
349357
jwt.verify(token, pub, { jwtid: 'jwtid' }, function(err, decoded) {
350358
assert.isUndefined(decoded);
351359
assert.isNotNull(err);
352360
assert.equal(err.name, 'JsonWebTokenError');
353361
assert.instanceOf(err, jwt.JsonWebTokenError);
362+
done();
354363
});
355364
});
356365
});

0 commit comments

Comments
 (0)