Skip to content

Commit 7b60c12

Browse files
lionelloziluvatar
authored andcommitted
Force use_strict during testing (#577)
* Force use_strict during testing * Add string payload test cases to .iat tests
1 parent 0c24fe6 commit 7b60c12

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"scripts": {
2222
"lint": "eslint .",
23-
"coverage": "nyc mocha",
23+
"coverage": "nyc mocha --use_strict",
2424
"test": "npm run lint && npm run coverage && cost-of-modules"
2525
},
2626
"repository": {

sign.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ module.exports = function (payload, secretOrPrivateKey, options, callback) {
140140

141141
var timestamp = payload.iat || Math.floor(Date.now() / 1000);
142142

143-
if (!options.noTimestamp) {
144-
payload.iat = timestamp;
145-
} else {
143+
if (options.noTimestamp) {
146144
delete payload.iat;
145+
} else if (isObjectPayload) {
146+
payload.iat = timestamp;
147147
}
148148

149149
if (typeof options.notBefore !== 'undefined') {

test/claim-iat.test.js

+26
Original file line numberDiff line numberDiff line change
@@ -248,4 +248,30 @@ describe('issue at', function() {
248248
});
249249
});
250250
});
251+
252+
describe('with string payload', function () {
253+
it('should not add iat to string', function (done) {
254+
const payload = 'string payload';
255+
const options = {algorithm: 'none'};
256+
testUtils.signJWTHelper(payload, 'secret', options, (err, token) => {
257+
const decoded = jwt.decode(token);
258+
testUtils.asyncCheck(done, () => {
259+
expect(err).to.be.null;
260+
expect(decoded).to.equal(payload);
261+
});
262+
});
263+
});
264+
265+
it('should not add iat to stringified object', function (done) {
266+
const payload = '{}';
267+
const options = {algorithm: 'none', header: {typ: 'JWT'}};
268+
testUtils.signJWTHelper(payload, 'secret', options, (err, token) => {
269+
const decoded = jwt.decode(token);
270+
testUtils.asyncCheck(done, () => {
271+
expect(err).to.equal(null);
272+
expect(JSON.stringify(decoded)).to.equal(payload);
273+
});
274+
});
275+
});
276+
});
251277
});

0 commit comments

Comments
 (0)