mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b9fa786df6
This refactoring aims to ease testability and clean up a lot of soft touchy typings in test code. This is the first step of this refactoring introducing the concept and implementing missing interfaces and stubs. At the end of the day, ServerVariablesHandler should completely disappear and every variable should be injected in the endpoint handler builder itself.
22 lines
661 B
TypeScript
22 lines
661 B
TypeScript
import Sinon = require("sinon");
|
|
import BluebirdPromise = require("bluebird");
|
|
import { ITotpHandler, GenerateSecretOptions } from "../../src/lib/authentication/totp/ITotpHandler";
|
|
import { TOTPSecret } from "../../types/TOTPSecret";
|
|
|
|
export class TotpHandlerStub implements ITotpHandler {
|
|
generateStub: Sinon.SinonStub;
|
|
validateStub: Sinon.SinonStub;
|
|
|
|
constructor() {
|
|
this.generateStub = Sinon.stub();
|
|
this.validateStub = Sinon.stub();
|
|
}
|
|
|
|
generate(options?: GenerateSecretOptions): TOTPSecret {
|
|
return this.generateStub(options);
|
|
}
|
|
|
|
validate(token: string, secret: string): boolean {
|
|
return this.validateStub(token, secret);
|
|
}
|
|
} |