2016-10-21 19:00:43 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const expect = require("chai").expect;
|
|
|
|
const Helper = require("../../src/helper");
|
|
|
|
|
|
|
|
describe("Client passwords", function() {
|
2017-11-27 23:47:19 +00:00
|
|
|
this.slow(1500);
|
|
|
|
|
2016-10-21 19:00:43 +00:00
|
|
|
const inputPassword = "my$Super@Cool Password";
|
|
|
|
|
|
|
|
it("hashed password should match", function() {
|
|
|
|
// Generated with third party tool to test implementation
|
2017-04-08 12:34:31 +00:00
|
|
|
const comparedPassword = Helper.password.compare(inputPassword, "$2a$11$zrPPcfZ091WNfs6QrRHtQeUitlgrJcecfZhxOFiQs0FWw7TN3Q1oS");
|
2016-10-21 19:00:43 +00:00
|
|
|
|
2017-04-08 12:34:31 +00:00
|
|
|
return comparedPassword.then((result) => {
|
2017-03-23 07:47:51 +00:00
|
|
|
expect(result).to.be.true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("wrong hashed password should not match", function() {
|
|
|
|
// Compare against a fake hash
|
2017-04-08 12:34:31 +00:00
|
|
|
const comparedPassword = Helper.password.compare(inputPassword, "$2a$11$zrPPcfZ091WRONGPASSWORDitlgrJcecfZhxOFiQs0FWw7TN3Q1oS");
|
2017-03-23 07:47:51 +00:00
|
|
|
|
2017-04-08 12:34:31 +00:00
|
|
|
return comparedPassword.then((result) => {
|
2017-03-23 07:47:51 +00:00
|
|
|
expect(result).to.be.false;
|
|
|
|
});
|
2016-10-21 19:00:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("freshly hashed password should match", function() {
|
2017-04-08 12:34:31 +00:00
|
|
|
const hashedPassword = Helper.password.hash(inputPassword);
|
|
|
|
const comparedPassword = Helper.password.compare(inputPassword, hashedPassword);
|
2016-10-21 19:00:43 +00:00
|
|
|
|
2017-03-23 07:47:51 +00:00
|
|
|
return comparedPassword.then((result) => {
|
|
|
|
expect(result).to.be.true;
|
|
|
|
});
|
2016-10-21 19:00:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("shout passwords should be marked as old", function() {
|
|
|
|
expect(Helper.password.requiresUpdate("$2a$08$K4l.hteJcCP9D1G5PANzYuBGvdqhUSUDOLQLU.xeRxTbvtp01KINm")).to.be.true;
|
|
|
|
expect(Helper.password.requiresUpdate("$2a$11$zrPPcfZ091WNfs6QrRHtQeUitlgrJcecfZhxOFiQs0FWw7TN3Q1oS")).to.be.false;
|
|
|
|
});
|
|
|
|
});
|