Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsonwebtoken / test / iat.tests.js
Size: Mime:
var jwt = require('../index');
var expect = require('chai').expect;

describe('iat', function () {

  it('should work with a exp calculated based on numeric iat', function () {
    var dateNow = Math.floor(Date.now() / 1000);
    var iat = dateNow - 30;
    var expiresIn = 50;
    var token = jwt.sign({foo: 123, iat: iat}, '123', {expiresIn: expiresIn});
    var result = jwt.verify(token, '123');
    expect(result.exp).to.be.closeTo(iat + expiresIn, 0.2);
  });


  it('should throw if iat is not a number', function () {
    expect(function () {
      jwt.sign({foo: 123, iat: 'hello'}, '123');
    }).to.throw(/"iat" must be a number/);
  });

});