add: HOTP module test

This commit is contained in:
lancegin 2017-06-29 15:03:11 +08:00
parent 8926483c06
commit 0278f4e041

View File

@ -0,0 +1,20 @@
var hotp = require('../lib/hotp');
var assert = require('assert');
describe('HOTP module test', function() {
var HOTP = hotp.HOTP;
var a = new HOTP("BASE32_ENCODED_SECRET");
describe('at() function', function() {
it("should print 'HOTP.at'", function() {
assert.equal("HOTP.at", a.at());
});
});
describe('verify() function', function() {
it("should print 'HOTP.verify'", function() {
assert.equal("HOTP.verify", a.verify());
})
})
});