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 * as sinon from "sinon";
|
|
import * as BluebirdPromise from "bluebird";
|
|
import * as assert from "assert";
|
|
|
|
import { NotifierFactory } from "../../src/lib/notifiers/NotifierFactory";
|
|
import { GMailNotifier } from "../../src/lib/notifiers/GMailNotifier";
|
|
import { SmtpNotifier } from "../../src/lib/notifiers/SmtpNotifier";
|
|
import { MailSenderBuilderStub } from "../mocks/notifiers/MailSenderBuilderStub";
|
|
|
|
|
|
describe("test notifier factory", function () {
|
|
let mailSenderBuilderStub: MailSenderBuilderStub;
|
|
it("should build a Gmail Notifier", function () {
|
|
const options = {
|
|
gmail: {
|
|
username: "abc",
|
|
password: "password"
|
|
}
|
|
};
|
|
mailSenderBuilderStub = new MailSenderBuilderStub();
|
|
assert(NotifierFactory.build(options, mailSenderBuilderStub) instanceof GMailNotifier);
|
|
});
|
|
|
|
it("should build a SMTP Notifier", function () {
|
|
const options = {
|
|
smtp: {
|
|
username: "user",
|
|
password: "pass",
|
|
secure: true,
|
|
host: "localhost",
|
|
port: 25
|
|
}
|
|
};
|
|
|
|
mailSenderBuilderStub = new MailSenderBuilderStub();
|
|
assert(NotifierFactory.build(options, mailSenderBuilderStub) instanceof SmtpNotifier);
|
|
});
|
|
});
|