diff --git a/server/notification-providers/aliyun-sms.spec.js b/server/notification-providers/aliyun-sms.spec.js new file mode 100644 index 0000000..c8eb948 --- /dev/null +++ b/server/notification-providers/aliyun-sms.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const AliyunSMS = require("./aliyun-sms"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new AliyunSMS(); + expect(notification.name).toBe("AliyunSMS"); + }); +}); diff --git a/server/notification-providers/apprise.spec.js b/server/notification-providers/apprise.spec.js new file mode 100644 index 0000000..6cb5a1f --- /dev/null +++ b/server/notification-providers/apprise.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Apprise = require("./apprise"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Apprise(); + expect(notification.name).toBe("apprise"); + }); +}); diff --git a/server/notification-providers/dingding.spec.js b/server/notification-providers/dingding.spec.js new file mode 100644 index 0000000..e90bdbe --- /dev/null +++ b/server/notification-providers/dingding.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const DingDing = require("./dingding"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new DingDing(); + expect(notification.name).toBe("DingDing"); + }); +}); diff --git a/server/notification-providers/discord.spec.js b/server/notification-providers/discord.spec.js new file mode 100644 index 0000000..1f9feb0 --- /dev/null +++ b/server/notification-providers/discord.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Discord = require("./discord"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Discord(); + expect(notification.name).toBe("discord"); + }); +}); diff --git a/server/notification-providers/feishu.spec.js b/server/notification-providers/feishu.spec.js new file mode 100644 index 0000000..5d34906 --- /dev/null +++ b/server/notification-providers/feishu.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Feishu = require("./feishu"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Feishu(); + expect(notification.name).toBe("Feishu"); + }); +}); diff --git a/server/notification-providers/gotify.spec.js b/server/notification-providers/gotify.spec.js new file mode 100644 index 0000000..02f3c71 --- /dev/null +++ b/server/notification-providers/gotify.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Gotify = require("./gotify"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Gotify(); + expect(notification.name).toBe("gotify"); + }); +}); diff --git a/server/notification-providers/line.spec.js b/server/notification-providers/line.spec.js new file mode 100644 index 0000000..10aa265 --- /dev/null +++ b/server/notification-providers/line.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Line = require("./line"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Line(); + expect(notification.name).toBe("line"); + }); +}); diff --git a/server/notification-providers/lunasea.spec.js b/server/notification-providers/lunasea.spec.js new file mode 100644 index 0000000..344e794 --- /dev/null +++ b/server/notification-providers/lunasea.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const LunaSea = require("./lunasea"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new LunaSea(); + expect(notification.name).toBe("lunasea"); + }); +}); diff --git a/server/notification-providers/matrix.spec.js b/server/notification-providers/matrix.spec.js new file mode 100644 index 0000000..94c84b5 --- /dev/null +++ b/server/notification-providers/matrix.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Matrix = require("./matrix"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Matrix(); + expect(notification.name).toBe("matrix"); + }); +}); diff --git a/server/notification-providers/mattermost.spec.js b/server/notification-providers/mattermost.spec.js new file mode 100644 index 0000000..81d6490 --- /dev/null +++ b/server/notification-providers/mattermost.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Mattermost = require("./mattermost"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Mattermost(); + expect(notification.name).toBe("mattermost"); + }); +}); diff --git a/server/notification-providers/notification-provider.spec.js b/server/notification-providers/notification-provider.spec.js new file mode 100644 index 0000000..56d929b --- /dev/null +++ b/server/notification-providers/notification-provider.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const NotificationProvider = require("./notification-provider"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new NotificationProvider(); + expect(notification.name).toBe(undefined); + }); +}); diff --git a/server/notification-providers/octopush.spec.js b/server/notification-providers/octopush.spec.js new file mode 100644 index 0000000..3c16c3a --- /dev/null +++ b/server/notification-providers/octopush.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Octopush = require("./octopush"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Octopush(); + expect(notification.name).toBe("octopush"); + }); +}); diff --git a/server/notification-providers/promosms.spec.js b/server/notification-providers/promosms.spec.js new file mode 100644 index 0000000..3d9dde7 --- /dev/null +++ b/server/notification-providers/promosms.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const PromoSMS = require("./promosms"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new PromoSMS(); + expect(notification.name).toBe("promosms"); + }); +}); diff --git a/server/notification-providers/pushbullet.spec.js b/server/notification-providers/pushbullet.spec.js new file mode 100644 index 0000000..1cad877 --- /dev/null +++ b/server/notification-providers/pushbullet.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Pushbullet = require("./pushbullet"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Pushbullet(); + expect(notification.name).toBe("pushbullet"); + }); +}); diff --git a/server/notification-providers/pushover.spec.js b/server/notification-providers/pushover.spec.js new file mode 100644 index 0000000..dcc3adc --- /dev/null +++ b/server/notification-providers/pushover.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Pushover = require("./pushover"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Pushover(); + expect(notification.name).toBe("pushover"); + }); +}); diff --git a/server/notification-providers/pushy.spec.js b/server/notification-providers/pushy.spec.js new file mode 100644 index 0000000..477e2ce --- /dev/null +++ b/server/notification-providers/pushy.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Pushy = require("./pushy"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Pushy(); + expect(notification.name).toBe("pushy"); + }); +}); diff --git a/server/notification-providers/rocket-chat.spec.js b/server/notification-providers/rocket-chat.spec.js new file mode 100644 index 0000000..a34cc89 --- /dev/null +++ b/server/notification-providers/rocket-chat.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const RocketChat = require("./rocket-chat"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new RocketChat(); + expect(notification.name).toBe("rocket.chat"); + }); +}); diff --git a/server/notification-providers/signal.spec.js b/server/notification-providers/signal.spec.js new file mode 100644 index 0000000..dc3403a --- /dev/null +++ b/server/notification-providers/signal.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Signal = require("./signal"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Signal(); + expect(notification.name).toBe("signal"); + }); +}); diff --git a/server/notification-providers/slack.spec.js b/server/notification-providers/slack.spec.js new file mode 100644 index 0000000..f025654 --- /dev/null +++ b/server/notification-providers/slack.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Slack = require("./slack"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Slack(); + expect(notification.name).toBe("slack"); + }); +}); diff --git a/server/notification-providers/teams.spec.js b/server/notification-providers/teams.spec.js new file mode 100644 index 0000000..c5f804c --- /dev/null +++ b/server/notification-providers/teams.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Teams = require("./teams"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Teams(); + expect(notification.name).toBe("teams"); + }); +}); diff --git a/server/notification-providers/telegram.spec.js b/server/notification-providers/telegram.spec.js new file mode 100644 index 0000000..285eef8 --- /dev/null +++ b/server/notification-providers/telegram.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Telegram = require("./telegram"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Telegram(); + expect(notification.name).toBe("telegram"); + }); +}); diff --git a/server/notification-providers/webhook.spec.js b/server/notification-providers/webhook.spec.js new file mode 100644 index 0000000..7b2dfb7 --- /dev/null +++ b/server/notification-providers/webhook.spec.js @@ -0,0 +1,18 @@ +// jest.mock("nodemailer", () => ({ +// createTransport: jest.fn(), +// })); + +// const mockNodeMailer = require("nodemailer"); + +const Webhook = require("./webhook"); + +beforeEach(() => { + // mockNodeMailer.createTransport.mockReset(); +}); + +describe("notification default information", () => { + it("should have the correct name", () => { + let notification = new Webhook(); + expect(notification.name).toBe("webhook"); + }); +});