Bump all dependencies
parent
5074b8fdde
commit
39555179e4
|
@ -5,10 +5,10 @@ module.exports = function (grunt) {
|
|||
grunt.initConfig({
|
||||
env: {
|
||||
"env-test-server-unit": {
|
||||
TS_NODE_PROJECT: "server"
|
||||
TS_NODE_PROJECT: "server/tsconfig.json"
|
||||
},
|
||||
"env-test-client-unit": {
|
||||
TS_NODE_PROJECT: "client"
|
||||
TS_NODE_PROJECT: "client/tsconfig.json"
|
||||
}
|
||||
},
|
||||
run: {
|
||||
|
@ -180,8 +180,8 @@ module.exports = function (grunt) {
|
|||
grunt.registerTask('compile-server', ['run:lint-server', 'run:compile-server'])
|
||||
grunt.registerTask('compile-client', ['run:lint-client', 'run:compile-client'])
|
||||
|
||||
grunt.registerTask('test-server', ['run:test-server-unit'])
|
||||
grunt.registerTask('test-client', ['run:test-client-unit'])
|
||||
grunt.registerTask('test-server', ['env:env-test-server-unit', 'run:test-server-unit'])
|
||||
grunt.registerTask('test-client', ['env:env-test-client-unit', 'run:test-client-unit'])
|
||||
grunt.registerTask('test-unit', ['test-server', 'test-client']);
|
||||
grunt.registerTask('test-int', ['run:test-int']);
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -78,6 +78,7 @@
|
|||
"@types/request-promise": "^4.1.38",
|
||||
"@types/selenium-webdriver": "^3.0.4",
|
||||
"@types/sinon": "^4.3.0",
|
||||
"@types/speakeasy": "^2.0.2",
|
||||
"@types/tmp": "0.0.33",
|
||||
"@types/winston": "^2.3.2",
|
||||
"@types/yamljs": "^0.2.30",
|
||||
|
@ -109,12 +110,12 @@
|
|||
"request-promise": "^4.2.2",
|
||||
"selenium-webdriver": "^4.0.0-alpha.1",
|
||||
"should": "^13.2.1",
|
||||
"sinon": "^4.0.2",
|
||||
"sinon": "^5.0.7",
|
||||
"tmp": "0.0.33",
|
||||
"ts-node": "^5.0.1",
|
||||
"ts-node": "^6.0.1",
|
||||
"tslint": "^5.2.0",
|
||||
"typescript": "^2.3.2",
|
||||
"typescript-json-schema": "^0.21.0",
|
||||
"typescript-json-schema": "^0.23.0",
|
||||
"uglify-es": "^3.0.15"
|
||||
},
|
||||
"nyc": {
|
||||
|
|
|
@ -3,7 +3,7 @@ export class LdapSearchError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "LdapSearchError";
|
||||
Object.setPrototypeOf(this, LdapSearchError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, LdapSearchError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,7 @@ export class LdapBindError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "LdapBindError";
|
||||
Object.setPrototypeOf(this, LdapBindError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, LdapBindError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -19,7 +19,7 @@ export class LdapError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "LdapError";
|
||||
Object.setPrototypeOf(this, LdapError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, LdapError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ export class IdentityError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "IdentityError";
|
||||
Object.setPrototypeOf(this, IdentityError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, IdentityError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ export class AccessDeniedError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "AccessDeniedError";
|
||||
Object.setPrototypeOf(this, AccessDeniedError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, AccessDeniedError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -43,7 +43,7 @@ export class AuthenticationRegulationError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "AuthenticationRegulationError";
|
||||
Object.setPrototypeOf(this, AuthenticationRegulationError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, AuthenticationRegulationError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ export class InvalidTOTPError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "InvalidTOTPError";
|
||||
Object.setPrototypeOf(this, InvalidTOTPError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, InvalidTOTPError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -59,7 +59,7 @@ export class DomainAccessDenied extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "DomainAccessDenied";
|
||||
Object.setPrototypeOf(this, DomainAccessDenied.prototype);
|
||||
(<any>Object).setPrototypeOf(this, DomainAccessDenied.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -67,7 +67,7 @@ export class FirstFactorValidationError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "FirstFactorValidationError";
|
||||
Object.setPrototypeOf(this, FirstFactorValidationError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, FirstFactorValidationError.prototype);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -75,6 +75,6 @@ export class SecondFactorValidationError extends Error {
|
|||
constructor(message?: string) {
|
||||
super(message);
|
||||
this.name = "SecondFactorValidationError";
|
||||
Object.setPrototypeOf(this, FirstFactorValidationError.prototype);
|
||||
(<any>Object).setPrototypeOf(this, FirstFactorValidationError.prototype);
|
||||
}
|
||||
}
|
|
@ -49,9 +49,9 @@ describe("test identity check process", function () {
|
|||
|
||||
mocks.notifier.notifyStub.returns(BluebirdPromise.resolve());
|
||||
mocks.userDataStore.produceIdentityValidationTokenStub
|
||||
.returns(Promise.resolve());
|
||||
.returns(BluebirdPromise.resolve());
|
||||
mocks.userDataStore.consumeIdentityValidationTokenStub
|
||||
.returns(Promise.resolve({ userId: "user" }));
|
||||
.returns(BluebirdPromise.resolve({ userId: "user" }));
|
||||
|
||||
app = express();
|
||||
app_get = sinon.stub(app, "get");
|
||||
|
|
|
@ -10,30 +10,27 @@ import session = require("express-session");
|
|||
import { AppConfiguration, UserConfiguration } from "../src/lib/configuration/Configuration";
|
||||
import { GlobalDependencies } from "../types/Dependencies";
|
||||
import Server from "../src/lib/Server";
|
||||
import { LdapjsMock, LdapjsClientMock } from "./mocks/ldapjs";
|
||||
|
||||
|
||||
describe("test server configuration", function () {
|
||||
let deps: GlobalDependencies;
|
||||
let sessionMock: Sinon.SinonSpy;
|
||||
let ldapjsMock: LdapjsMock;
|
||||
|
||||
before(function () {
|
||||
sessionMock = Sinon.spy(session);
|
||||
ldapjsMock = new LdapjsMock();
|
||||
|
||||
deps = {
|
||||
speakeasy: speakeasy,
|
||||
u2f: u2f,
|
||||
nedb: nedb,
|
||||
winston: winston,
|
||||
ldapjs: {
|
||||
createClient: Sinon.spy(function () {
|
||||
return {
|
||||
on: Sinon.spy(),
|
||||
bind: Sinon.spy(),
|
||||
};
|
||||
})
|
||||
},
|
||||
ldapjs: ldapjsMock as any,
|
||||
session: sessionMock as any,
|
||||
ConnectRedis: Sinon.spy()
|
||||
ConnectRedis: Sinon.spy(),
|
||||
Redis: Sinon.spy() as any
|
||||
};
|
||||
});
|
||||
|
||||
|
|
|
@ -65,7 +65,8 @@ describe("test session configuration builder", function () {
|
|||
session: Sinon.spy() as any,
|
||||
speakeasy: Sinon.spy() as any,
|
||||
u2f: Sinon.spy() as any,
|
||||
winston: Sinon.spy() as any
|
||||
winston: Sinon.spy() as any,
|
||||
Redis: Sinon.spy() as any
|
||||
};
|
||||
|
||||
const options = SessionConfigurationBuilder.build(configuration, deps);
|
||||
|
|
|
@ -1,30 +1,50 @@
|
|||
|
||||
import sinon = require("sinon");
|
||||
import Sinon = require("sinon");
|
||||
|
||||
export interface LdapjsMock {
|
||||
createClient: sinon.SinonStub;
|
||||
export class LdapjsMock {
|
||||
createClientStub: sinon.SinonStub;
|
||||
|
||||
constructor() {
|
||||
this.createClientStub = Sinon.stub();
|
||||
}
|
||||
|
||||
createClient(params: any) {
|
||||
return this.createClientStub(params);
|
||||
}
|
||||
}
|
||||
|
||||
export interface LdapjsClientMock {
|
||||
bind: sinon.SinonStub;
|
||||
unbind: sinon.SinonStub;
|
||||
search: sinon.SinonStub;
|
||||
modify: sinon.SinonStub;
|
||||
on: sinon.SinonStub;
|
||||
}
|
||||
export class LdapjsClientMock {
|
||||
bindStub: sinon.SinonStub;
|
||||
unbindStub: sinon.SinonStub;
|
||||
searchStub: sinon.SinonStub;
|
||||
modifyStub: sinon.SinonStub;
|
||||
onStub: sinon.SinonStub;
|
||||
|
||||
export function LdapjsMock(): LdapjsMock {
|
||||
return {
|
||||
createClient: sinon.stub()
|
||||
};
|
||||
}
|
||||
constructor() {
|
||||
this.bindStub = Sinon.stub();
|
||||
this.unbindStub = Sinon.stub();
|
||||
this.searchStub = Sinon.stub();
|
||||
this.modifyStub = Sinon.stub();
|
||||
this.onStub = Sinon.stub();
|
||||
}
|
||||
|
||||
export function LdapjsClientMock(): LdapjsClientMock {
|
||||
return {
|
||||
bind: sinon.stub(),
|
||||
unbind: sinon.stub(),
|
||||
search: sinon.stub(),
|
||||
modify: sinon.stub(),
|
||||
on: sinon.stub()
|
||||
};
|
||||
bind() {
|
||||
return this.bindStub();
|
||||
}
|
||||
|
||||
unbind() {
|
||||
return this.unbindStub();
|
||||
}
|
||||
|
||||
search() {
|
||||
return this.searchStub();
|
||||
}
|
||||
|
||||
modify() {
|
||||
return this.modifyStub();
|
||||
}
|
||||
|
||||
on() {
|
||||
return this.onStub();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue