authelia/test/unitary/TOTPValidator.test.ts

31 lines
826 B
TypeScript
Raw Normal View History

import TOTPValidator from "../../src/lib/TOTPValidator";
import sinon = require("sinon");
import Promise = require("bluebird");
import SpeakeasyMock = require("./mocks/speakeasy");
describe("test TOTP validation", function() {
let totpValidator: TOTPValidator;
beforeEach(() => {
SpeakeasyMock.totp.returns("token");
totpValidator = new TOTPValidator(SpeakeasyMock as any);
});
it("should validate the TOTP token", function() {
const totp_secret = "NBD2ZV64R9UV1O7K";
const token = "token";
return totpValidator.validate(token, totp_secret);
});
2017-05-21 10:14:59 +00:00
it("should not validate a wrong TOTP token", function(done) {
const totp_secret = "NBD2ZV64R9UV1O7K";
const token = "wrong token";
2017-05-21 10:14:59 +00:00
totpValidator.validate(token, totp_secret)
.catch(function() {
2017-05-21 10:14:59 +00:00
done();
});
});
});