-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
197 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,11 +78,23 @@ describe("NotificationService", () => { | |
describe("handleNotifications", async () => { | ||
it("should handle notifications based on the network response", async () => { | ||
notificationService.sendEmail = sinon.stub(); | ||
notificationService.db.getNotificationsByMonitorId.resolves([ | ||
{ type: "email", address: "www.google.com" }, | ||
]); | ||
await notificationService.handleNotifications({ monitorId: "123" }); | ||
expect(notificationService.sendEmail.calledOnce).to.be.true; | ||
const res = await notificationService.handleNotifications({ | ||
monitor: { | ||
type: "email", | ||
address: "www.google.com", | ||
}, | ||
}); | ||
expect(res).to.be.true; | ||
}); | ||
it("should handle hardware notifications", async () => { | ||
notificationService.sendEmail = sinon.stub(); | ||
const res = await notificationService.handleNotifications({ | ||
monitor: { | ||
type: "hardware", | ||
address: "www.google.com", | ||
}, | ||
}); | ||
expect(res).to.be.true; | ||
}); | ||
|
||
it("should handle an error when getting notifications", async () => { | ||
|
@@ -92,4 +104,184 @@ describe("NotificationService", () => { | |
expect(notificationService.logger.warn.calledOnce).to.be.true; | ||
}); | ||
}); | ||
|
||
describe("sendHardwareEmail", async () => { | ||
let networkResponse, address, alerts; | ||
beforeEach(() => { | ||
networkResponse = { | ||
monitor: { | ||
name: "Test Monitor", | ||
url: "http://test.com", | ||
}, | ||
status: true, | ||
prevStatus: false, | ||
}; | ||
address = "[email protected]"; | ||
alerts = ["test"]; | ||
}); | ||
|
||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
it("should send an email notification with Hardware Template", async () => { | ||
emailService.buildAndSendEmail.resolves(true); | ||
const res = await notificationService.sendHardwareEmail( | ||
networkResponse, | ||
address, | ||
alerts | ||
); | ||
expect(res).to.be.true; | ||
}); | ||
it("should return false if no alerts are provided", async () => { | ||
alerts = []; | ||
emailService.buildAndSendEmail.resolves(true); | ||
const res = await notificationService.sendHardwareEmail( | ||
networkResponse, | ||
address, | ||
alerts | ||
); | ||
expect(res).to.be.false; | ||
}); | ||
}); | ||
describe("handleStatusNotifications", async () => { | ||
let networkResponse; | ||
beforeEach(() => { | ||
networkResponse = { | ||
monitor: { | ||
name: "Test Monitor", | ||
url: "http://test.com", | ||
}, | ||
statusChanged: true, | ||
status: true, | ||
prevStatus: false, | ||
}; | ||
}); | ||
|
||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
|
||
it("should handle status notifications", async () => { | ||
db.getNotificationsByMonitorId.resolves([ | ||
{ type: "email", address: "[email protected]" }, | ||
]); | ||
const res = await notificationService.handleStatusNotifications(networkResponse); | ||
expect(res).to.be.true; | ||
}); | ||
it("should return false if status hasn't changed", async () => { | ||
networkResponse.statusChanged = false; | ||
const res = await notificationService.handleStatusNotifications(networkResponse); | ||
expect(res).to.be.false; | ||
}); | ||
it("should return false if prevStatus is undefined", async () => { | ||
networkResponse.prevStatus = undefined; | ||
const res = await notificationService.handleStatusNotifications(networkResponse); | ||
expect(res).to.be.false; | ||
}); | ||
it("should handle an error", async () => { | ||
const testError = new Error("Test Error"); | ||
db.getNotificationsByMonitorId.rejects(testError); | ||
try { | ||
await notificationService.handleStatusNotifications(networkResponse); | ||
} catch (error) { | ||
expect(error).to.be.an.instanceOf(Error); | ||
expect(error.message).to.equal("Test Error"); | ||
} | ||
}); | ||
}); | ||
|
||
describe("handleHardwareNotifications", async () => { | ||
let networkResponse; | ||
beforeEach(() => { | ||
networkResponse = { | ||
monitor: { | ||
name: "Test Monitor", | ||
url: "http://test.com", | ||
thresholds: { | ||
usage_cpu: 1, | ||
usage_memory: 1, | ||
usage_disk: 1, | ||
}, | ||
}, | ||
payload: { | ||
data: { | ||
cpu: { | ||
usage_percent: 0.655, | ||
}, | ||
memory: { | ||
usage_percent: 0.783, | ||
}, | ||
disk: [ | ||
{ | ||
name: "/dev/sda1", | ||
usage_percent: 0.452, | ||
}, | ||
{ | ||
name: "/dev/sdb1", | ||
usage_percent: 0.627, | ||
}, | ||
], | ||
}, | ||
}, | ||
}; | ||
}); | ||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
|
||
describe("it should return false if no thresholds are set", () => { | ||
it("should return false if no thresholds are set", async () => { | ||
networkResponse.monitor.thresholds = undefined; | ||
const res = | ||
await notificationService.handleHardwareNotifications(networkResponse); | ||
expect(res).to.be.false; | ||
}); | ||
|
||
it("should return false if metrics are null", async () => { | ||
networkResponse.payload.data = null; | ||
const res = | ||
await notificationService.handleHardwareNotifications(networkResponse); | ||
expect(res).to.be.false; | ||
}); | ||
|
||
it("should return true if request is well formed and thresholds > 0", async () => { | ||
db.getNotificationsByMonitorId.resolves([ | ||
{ | ||
type: "email", | ||
address: "[email protected]", | ||
alertThreshold: 1, | ||
cpuAlertThreshold: 1, | ||
memoryAlertThreshold: 1, | ||
diskAlertThreshold: 1, | ||
save: sinon.stub().resolves(), | ||
}, | ||
]); | ||
const res = | ||
await notificationService.handleHardwareNotifications(networkResponse); | ||
expect(res).to.be.true; | ||
}); | ||
|
||
it("should return true if thresholds are exceeded", async () => { | ||
db.getNotificationsByMonitorId.resolves([ | ||
{ | ||
type: "email", | ||
address: "[email protected]", | ||
alertThreshold: 1, | ||
cpuAlertThreshold: 1, | ||
memoryAlertThreshold: 1, | ||
diskAlertThreshold: 1, | ||
save: sinon.stub().resolves(), | ||
}, | ||
]); | ||
networkResponse.monitor.thresholds = { | ||
usage_cpu: 0.01, | ||
usage_memory: 0.01, | ||
usage_disk: 0.01, | ||
}; | ||
const res = | ||
await notificationService.handleHardwareNotifications(networkResponse); | ||
expect(res).to.be.true; | ||
}); | ||
}); | ||
}); | ||
}); |