Skip to content

Commit 677ead6

Browse files
MitMaroziluvatar
authored andcommitted
Use lolex for faking date in tests (#491)
Sinon.JS provides a project called lolex to handle faking dates. This change replaces the fakeDate utility with the equivalent Sinon.JS code.
1 parent 9676a83 commit 677ead6

File tree

3 files changed

+5
-36
lines changed

3 files changed

+5
-36
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "JSON Web Token implementation (symmetric and asymmetric)",
55
"main": "index.js",
66
"scripts": {
7-
"test": "nyc --reporter=html --reporter=text mocha --require test/util/fakeDate && nsp check && cost-of-modules"
7+
"test": "nyc --reporter=html --reporter=text mocha && nsp check && cost-of-modules"
88
},
99
"repository": {
1010
"type": "git",
@@ -37,7 +37,7 @@
3737
"mocha": "^2.1.0",
3838
"nsp": "^2.6.2",
3939
"nyc": "^11.8.0",
40-
"sinon": "^1.15.4"
40+
"sinon": "^6.0.0"
4141
},
4242
"engines": {
4343
"npm": ">=1.4.28",

test/jwt.asymmetric_signing.tests.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ var path = require('path');
55
var expect = require('chai').expect;
66
var assert = require('chai').assert;
77
var ms = require('ms');
8+
var sinon = require('sinon');
89

910
function loadKey(filename) {
1011
return fs.readFileSync(path.join(__dirname, filename));
@@ -140,14 +141,14 @@ describe('Asymmetric Algorithms', function(){
140141

141142

142143
it('should valid when date are equals', function (done) {
143-
Date.fix(1451908031);
144+
var fakeClock = sinon.useFakeTimers({now: 1451908031});
144145

145146
token = jwt.sign({ foo: 'bar' }, priv, { algorithm: algorithm, notBefore: 0 });
146147

147148
jwt.verify(token, pub, function (err, decoded) {
149+
fakeClock.uninstall();
148150
assert.isNull(err);
149151
assert.isNotNull(decoded);
150-
Date.unfix();
151152
done();
152153
});
153154
});

test/util/fakeDate.js

-32
This file was deleted.

0 commit comments

Comments
 (0)