mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-14 00:22:34 +02:00
octopush tests
This commit is contained in:
parent
ba3fefa7b8
commit
6ce6d034a8
2 changed files with 235 additions and 9 deletions
|
@ -6,7 +6,6 @@ class Octopush extends NotificationProvider {
|
||||||
name = "octopush";
|
name = "octopush";
|
||||||
|
|
||||||
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
||||||
let okMsg = "Sent Successfully.";
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Default - V2
|
// Default - V2
|
||||||
|
@ -30,7 +29,7 @@ class Octopush extends NotificationProvider {
|
||||||
"purpose": "alert",
|
"purpose": "alert",
|
||||||
"sender": notification.octopushSenderName
|
"sender": notification.octopushSenderName
|
||||||
};
|
};
|
||||||
await axios.post("https://api.octopush.com/v1/public/sms-campaign/send", data, config)
|
await axios.post("https://api.octopush.com/v1/public/sms-campaign/send", data, config);
|
||||||
} else if (notification.octopushVersion == 1) {
|
} else if (notification.octopushVersion == 1) {
|
||||||
let data = {
|
let data = {
|
||||||
"user_login": notification.octopushDMLogin,
|
"user_login": notification.octopushDMLogin,
|
||||||
|
@ -49,12 +48,12 @@ class Octopush extends NotificationProvider {
|
||||||
},
|
},
|
||||||
params: data
|
params: data
|
||||||
};
|
};
|
||||||
await axios.post("https://www.octopush-dm.com/api/sms/json", {}, config)
|
await axios.post("https://www.octopush-dm.com/api/sms/json", {}, config);
|
||||||
} else {
|
} else {
|
||||||
throw new Error("Unknown Octopush version!");
|
throw new Error("Unknown Octopush version!");
|
||||||
}
|
}
|
||||||
|
|
||||||
return okMsg;
|
return this.sendSuccess;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.throwGeneralAxiosError(error);
|
this.throwGeneralAxiosError(error);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
// jest.mock("nodemailer", () => ({
|
jest.mock("axios", () => ({
|
||||||
// createTransport: jest.fn(),
|
post: jest.fn(),
|
||||||
// }));
|
}));
|
||||||
|
|
||||||
// const mockNodeMailer = require("nodemailer");
|
const axios = require("axios");
|
||||||
|
const { UP, DOWN } = require("../../src/util");
|
||||||
|
const NotificationSend = require("../notification");
|
||||||
|
|
||||||
const Octopush = require("./octopush");
|
const Octopush = require("./octopush");
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
// mockNodeMailer.createTransport.mockReset();
|
axios.post.mockReset();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("notification default information", () => {
|
describe("notification default information", () => {
|
||||||
|
@ -16,3 +18,228 @@ describe("notification default information", () => {
|
||||||
expect(notification.name).toBe("octopush");
|
expect(notification.name).toBe("octopush");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("notification to act properly on send", () => {
|
||||||
|
it("should call axios with the proper default data when version 2", async () => {
|
||||||
|
|
||||||
|
let response = {
|
||||||
|
data: {
|
||||||
|
Message: "OK"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
axios.post.mockResolvedValueOnce(response);
|
||||||
|
|
||||||
|
let notif = new Octopush();
|
||||||
|
let notificationConf = {
|
||||||
|
type: "octopush",
|
||||||
|
octopushVersion: 2,
|
||||||
|
octopushAPIKey: "key",
|
||||||
|
octopushLogin: "login",
|
||||||
|
octopushPhoneNumber: "number",
|
||||||
|
octopushSMSType: "type",
|
||||||
|
octopushSenderName: "sender"
|
||||||
|
};
|
||||||
|
let monitorConf = {
|
||||||
|
type: "http",
|
||||||
|
url: "https://www.google.com",
|
||||||
|
name: "testing",
|
||||||
|
};
|
||||||
|
let heartbeatConf = {
|
||||||
|
status: UP,
|
||||||
|
msg: "some message",
|
||||||
|
time: "example time",
|
||||||
|
};
|
||||||
|
let msg = "PassedInMessage😀";
|
||||||
|
let res = await notif.send(notificationConf, msg, monitorConf, heartbeatConf);
|
||||||
|
|
||||||
|
expect(axios.post).toHaveBeenCalledWith("https://api.octopush.com/v1/public/sms-campaign/send", {
|
||||||
|
"purpose": "alert",
|
||||||
|
"recipients": [{ "phone_number": "number" }],
|
||||||
|
"sender": "sender",
|
||||||
|
"text": "PassedInMessage",
|
||||||
|
"type": "type"
|
||||||
|
}, {
|
||||||
|
"headers": {
|
||||||
|
"api-key": "key",
|
||||||
|
"api-login": "login",
|
||||||
|
"cache-control": "no-cache"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
expect(res).toBe("Sent Successfully.");
|
||||||
|
});
|
||||||
|
it("should call axios with the proper default data when version 1", async () => {
|
||||||
|
|
||||||
|
let response = {
|
||||||
|
data: {
|
||||||
|
Message: "OK"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
axios.post.mockResolvedValueOnce(response);
|
||||||
|
|
||||||
|
let notif = new Octopush();
|
||||||
|
let notificationConf = {
|
||||||
|
type: "octopush",
|
||||||
|
octopushVersion: 1,
|
||||||
|
octopushDMAPIKey: "key",
|
||||||
|
octopushDMLogin: "login",
|
||||||
|
octopushDMPhoneNumber: "number",
|
||||||
|
octopushDMSMSType: "sms_premium",
|
||||||
|
octopushDMSenderName: "sender"
|
||||||
|
};
|
||||||
|
let monitorConf = {
|
||||||
|
type: "http",
|
||||||
|
url: "https://www.google.com",
|
||||||
|
name: "testing",
|
||||||
|
};
|
||||||
|
let heartbeatConf = {
|
||||||
|
status: UP,
|
||||||
|
msg: "some message",
|
||||||
|
time: "example time",
|
||||||
|
};
|
||||||
|
let msg = "PassedInMessage😀";
|
||||||
|
|
||||||
|
let res = await notif.send(notificationConf, msg, monitorConf, heartbeatConf);
|
||||||
|
|
||||||
|
expect(axios.post).toHaveBeenCalledWith("https://www.octopush-dm.com/api/sms/json", {
|
||||||
|
|
||||||
|
}, {
|
||||||
|
"headers": {
|
||||||
|
"cache-control": "no-cache"
|
||||||
|
},
|
||||||
|
"params": {
|
||||||
|
"api_key": "key",
|
||||||
|
"sms_recipients": "number",
|
||||||
|
"sms_sender": "sender",
|
||||||
|
"sms_text": "PassedInMessage",
|
||||||
|
"sms_type": "FR",
|
||||||
|
"transactional": "1",
|
||||||
|
"user_login": "login"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
expect(res).toBe("Sent Successfully.");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should call axios with the proper data when monitor nil", async () => {
|
||||||
|
let response = {
|
||||||
|
data: {
|
||||||
|
Message: "OK"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
axios.post.mockResolvedValueOnce(response);
|
||||||
|
|
||||||
|
let notif = new Octopush();
|
||||||
|
let notificationConf = {
|
||||||
|
type: "lunasea",
|
||||||
|
lunaseaDevice: "1234",
|
||||||
|
};
|
||||||
|
let msg = "PassedInMessage";
|
||||||
|
|
||||||
|
let res = await notif.send(notificationConf, msg, null, null);
|
||||||
|
|
||||||
|
expect(axios.post).toHaveBeenCalledWith("https://api.octopush.com/v1/public/sms-campaign/send", {
|
||||||
|
"purpose": "alert",
|
||||||
|
"recipients": [{ "phone_number": undefined }],
|
||||||
|
"sender": undefined,
|
||||||
|
"text": "PassedInMessage",
|
||||||
|
"type": undefined
|
||||||
|
}, {
|
||||||
|
"headers": {
|
||||||
|
"api-key": undefined,
|
||||||
|
"api-login": undefined,
|
||||||
|
"cache-control": "no-cache"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
expect(res).toBe("Sent Successfully.");
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("notification to act properly on error", () => {
|
||||||
|
it("should respond with an axios error on error", async () => {
|
||||||
|
|
||||||
|
axios.post.mockImplementation(() => {
|
||||||
|
throw new Error("Test Error");
|
||||||
|
});
|
||||||
|
let notif = new Octopush();
|
||||||
|
let notificationConf = {
|
||||||
|
type: "octopush",
|
||||||
|
octopushVersion: 2,
|
||||||
|
octopushAPIKey: "key",
|
||||||
|
octopushLogin: "login",
|
||||||
|
octopushPhoneNumber: "number",
|
||||||
|
octopushSMSType: "type",
|
||||||
|
octopushSenderName: "sender"
|
||||||
|
};
|
||||||
|
let msg = "PassedInMessage";
|
||||||
|
|
||||||
|
try {
|
||||||
|
await notif.send(notificationConf, msg, null, null);
|
||||||
|
expect("Error thrown").toBe(false);
|
||||||
|
} catch (e) {
|
||||||
|
expect(e.message).toBe("Error: Error: Test Error ");
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(axios.post).toHaveBeenCalledWith("https://api.octopush.com/v1/public/sms-campaign/send", {
|
||||||
|
"purpose": "alert",
|
||||||
|
"recipients": [{ "phone_number": "number" }],
|
||||||
|
"sender": "sender",
|
||||||
|
"text": "PassedInMessage",
|
||||||
|
"type": "type"
|
||||||
|
}, {
|
||||||
|
"headers": {
|
||||||
|
"api-key": "key",
|
||||||
|
"api-login": "login",
|
||||||
|
"cache-control": "no-cache"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("notification to get proper data from Notification.send", () => {
|
||||||
|
it("should call axios with proper data", async () => {
|
||||||
|
let response = {
|
||||||
|
data: {
|
||||||
|
Message: "OK"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
axios.post.mockResolvedValueOnce(response);
|
||||||
|
let notificationConf = {
|
||||||
|
type: "octopush",
|
||||||
|
octopushVersion: 2,
|
||||||
|
octopushAPIKey: "key",
|
||||||
|
octopushLogin: "login",
|
||||||
|
octopushPhoneNumber: "number",
|
||||||
|
octopushSMSType: "type",
|
||||||
|
octopushSenderName: "sender"
|
||||||
|
};
|
||||||
|
let monitorConf = {
|
||||||
|
type: "http",
|
||||||
|
url: "https://www.google.com",
|
||||||
|
name: "testing",
|
||||||
|
};
|
||||||
|
let heartbeatConf = {
|
||||||
|
status: UP,
|
||||||
|
msg: "some message",
|
||||||
|
time: "example time",
|
||||||
|
};
|
||||||
|
|
||||||
|
NotificationSend.Notification.init();
|
||||||
|
let res = await NotificationSend.Notification.send(notificationConf, "Passed😀InMessage", monitorConf, heartbeatConf);
|
||||||
|
expect(axios.post).toHaveBeenCalledWith("https://api.octopush.com/v1/public/sms-campaign/send", {
|
||||||
|
"purpose": "alert",
|
||||||
|
"recipients": [{ "phone_number": "number" }],
|
||||||
|
"sender": "sender",
|
||||||
|
"text": "PassedInMessage",
|
||||||
|
"type": "type"
|
||||||
|
}, {
|
||||||
|
"headers": {
|
||||||
|
"api-key": "key",
|
||||||
|
"api-login": "login",
|
||||||
|
"cache-control": "no-cache"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
expect(res).toBe("Sent Successfully.");
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue