mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
78f6028c1b
Previously, logs were not very friendly and it was hard to track a request because of the lack of request ID. Now every log message comes with a header containing: method, path request ID, session ID, IP of the user, date. Moreover, the configurations displayed in the logs have their secrets hidden from this commit.
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import Sinon = require("sinon");
|
|
import express = require("express");
|
|
import { RequestLoggerStub } from "./RequestLoggerStub";
|
|
import { UserDataStoreStub } from "./storage/UserDataStoreStub";
|
|
import { VARIABLES_KEY } from "../../src/lib/ServerVariablesHandler";
|
|
|
|
export interface ServerVariablesMock {
|
|
logger: any;
|
|
ldapAuthenticator: any;
|
|
ldapEmailsRetriever: any;
|
|
ldapPasswordUpdater: any;
|
|
totpValidator: any;
|
|
totpGenerator: any;
|
|
u2f: any;
|
|
userDataStore: UserDataStoreStub;
|
|
notifier: any;
|
|
regulator: any;
|
|
config: any;
|
|
accessController: any;
|
|
}
|
|
|
|
|
|
export function mock(app: express.Application): ServerVariablesMock {
|
|
const mocks: ServerVariablesMock = {
|
|
accessController: Sinon.stub(),
|
|
config: Sinon.stub(),
|
|
ldapAuthenticator: Sinon.stub() as any,
|
|
ldapEmailsRetriever: Sinon.stub() as any,
|
|
ldapPasswordUpdater: Sinon.stub() as any,
|
|
logger: new RequestLoggerStub(),
|
|
notifier: Sinon.stub(),
|
|
regulator: Sinon.stub(),
|
|
totpGenerator: Sinon.stub(),
|
|
totpValidator: Sinon.stub(),
|
|
u2f: Sinon.stub(),
|
|
userDataStore: new UserDataStoreStub()
|
|
};
|
|
app.get = Sinon.stub().withArgs(VARIABLES_KEY).returns(mocks);
|
|
return mocks;
|
|
} |