105 lines
4.0 KiB
TypeScript
105 lines
4.0 KiB
TypeScript
|
|
||
|
import PasswordResetHandler from "../../../../src/lib/routes/password-reset/identity/PasswordResetHandler";
|
||
|
import PasswordUpdater = require("../../../../src/lib/ldap/PasswordUpdater");
|
||
|
import { ServerVariablesHandler } from "../../../../src/lib/ServerVariablesHandler";
|
||
|
import { UserDataStore } from "../../../../src/lib/storage/UserDataStore";
|
||
|
import Sinon = require("sinon");
|
||
|
import winston = require("winston");
|
||
|
import assert = require("assert");
|
||
|
import BluebirdPromise = require("bluebird");
|
||
|
|
||
|
import ExpressMock = require("../../../mocks/express");
|
||
|
import ServerVariablesMock = require("../../../mocks/ServerVariablesMock");
|
||
|
|
||
|
describe("test reset password identity check", function () {
|
||
|
let req: ExpressMock.RequestMock;
|
||
|
let res: ExpressMock.ResponseMock;
|
||
|
let configuration: any;
|
||
|
let serverVariables: ServerVariablesMock.ServerVariablesMock;
|
||
|
|
||
|
beforeEach(function () {
|
||
|
req = {
|
||
|
query: {
|
||
|
userid: "user"
|
||
|
},
|
||
|
app: {
|
||
|
get: Sinon.stub()
|
||
|
},
|
||
|
session: {
|
||
|
auth_session: {
|
||
|
userid: "user",
|
||
|
email: "user@example.com",
|
||
|
first_factor: true,
|
||
|
second_factor: false
|
||
|
}
|
||
|
},
|
||
|
headers: {
|
||
|
host: "localhost"
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const options = {
|
||
|
inMemoryOnly: true
|
||
|
};
|
||
|
|
||
|
serverVariables = ServerVariablesMock.mock(req.app);
|
||
|
|
||
|
serverVariables.userDataStore.saveU2FRegistrationStub.returns(BluebirdPromise.resolve({}));
|
||
|
serverVariables.userDataStore.retrieveU2FRegistrationStub.returns(BluebirdPromise.resolve({}));
|
||
|
serverVariables.userDataStore.produceIdentityValidationTokenStub.returns(BluebirdPromise.resolve({}));
|
||
|
serverVariables.userDataStore.consumeIdentityValidationTokenStub.returns(BluebirdPromise.resolve({}));
|
||
|
|
||
|
configuration = {
|
||
|
ldap: {
|
||
|
base_dn: "dc=example,dc=com",
|
||
|
user_name_attribute: "cn"
|
||
|
}
|
||
|
};
|
||
|
|
||
|
serverVariables.logger = winston;
|
||
|
serverVariables.config = configuration;
|
||
|
serverVariables.ldapEmailsRetriever = {
|
||
|
retrieve: Sinon.stub()
|
||
|
} as any;
|
||
|
res = ExpressMock.ResponseMock();
|
||
|
});
|
||
|
|
||
|
describe("test reset password identity pre check", () => {
|
||
|
it("should fail when no userid is provided", function () {
|
||
|
req.query.userid = undefined;
|
||
|
const handler = new PasswordResetHandler();
|
||
|
return handler.preValidationInit(req as any)
|
||
|
.then(function () { return BluebirdPromise.reject("It should fail"); })
|
||
|
.catch(function (err: Error) {
|
||
|
return BluebirdPromise.resolve();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("should fail if ldap fail", function (done) {
|
||
|
(serverVariables.ldapEmailsRetriever as any).retrieve.returns(BluebirdPromise.reject("Internal error"));
|
||
|
new PasswordResetHandler().preValidationInit(req as any)
|
||
|
.catch(function (err: Error) {
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("should perform a search in ldap to find email address", function (done) {
|
||
|
configuration.ldap.user_name_attribute = "uid";
|
||
|
(serverVariables.ldapEmailsRetriever as any).retrieve.returns(BluebirdPromise.resolve([]));
|
||
|
new PasswordResetHandler().preValidationInit(req as any)
|
||
|
.then(function () {
|
||
|
assert.equal("user", (serverVariables.ldapEmailsRetriever as any).retrieve.getCall(0).args[0]);
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("should returns identity when ldap replies", function (done) {
|
||
|
(serverVariables.ldapEmailsRetriever as any).retrieve.returns(BluebirdPromise.resolve(["test@example.com"]));
|
||
|
new PasswordResetHandler().preValidationInit(req as any)
|
||
|
.then(function () {
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|