Skip to content

Commit 7f68fe0

Browse files
evolvahziluvatar
authored andcommitted
Raise jws.decode error to avoid confusion with "invalid token" error (#294)
* Corrected indistinguishable error messages jws.decode() never throws an error. At least, in its current version. However, if it were to throw an exception, the diagnostics would be indistinguishable from a soft failure to decode a token. I had an extra trailing space on my JWT and it took me some additional debugging work to trace the actual root cause because the error message was not distinct. * Allowed an exception from inside of jws.decode to be handled by the caller. Currently, jws.decode never throws an exception. The change is made per discsussion in the original PR * Added a test case and proper forwarding of the possible exception thrown from jws.decode * Typo correction
1 parent a542403 commit 7f68fe0

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

test/jwt.hs.tests.js

+15
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,21 @@ describe('HS256', function() {
7777
done();
7878
});
7979
});
80+
});
81+
82+
describe('should fail verification gracefully with trailing space in the jwt', function() {
83+
var secret = 'shhhhhh';
84+
var token = jwt.sign({ foo: 'bar' }, secret, { algorithm: 'HS256' });
8085

86+
it('should return the "invalid token" error', function(done) {
87+
var malformedToken = token + ' '; // corrupt the token by adding a space
88+
jwt.verify(malformedToken, secret, { algorithm: 'HS256', ignoreExpiration: true }, function(err, decoded) {
89+
assert.isNotNull(err);
90+
assert.equal('JsonWebTokenError', err.name);
91+
assert.equal('invalid token', err.message);
92+
done();
93+
});
94+
});
8195
});
96+
8297
});

verify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module.exports = function (jwtString, secretOrPublicKey, options, callback) {
7676
try {
7777
decodedToken = jws.decode(jwtString);
7878
} catch(err) {
79-
return done(new JsonWebTokenError('invalid token'));
79+
return done(err);
8080
}
8181

8282
if (!decodedToken) {

0 commit comments

Comments
 (0)