uptime-kuma/test/component/Status.spec.js

58 lines
2 KiB
JavaScript
Raw Normal View History

2024-11-20 13:48:13 +00:00
import { describe, it, expect } from "vitest";
import { mount } from "@vue/test-utils";
import Status from "../../src/components/Status.vue";
import { UP, DOWN, PENDING, MAINTENANCE } from "../../src/util";
describe("Status.vue", () => {
const mountStatus = (status) => {
return mount(Status, {
props: {
status
2024-11-20 13:58:15 +00:00
},
global: {
mocks: {
$t: (key) => key // Mock translation function
}
2024-11-20 13:48:13 +00:00
}
});
};
it("renders UP status correctly", () => {
2024-11-20 13:58:15 +00:00
const wrapper = mountStatus(1); // UP status
expect(wrapper.find(".badge").classes()).toContain("bg-primary");
expect(wrapper.text()).toBe("Up");
2024-11-20 13:48:13 +00:00
});
it("renders DOWN status correctly", () => {
2024-11-20 13:58:15 +00:00
const wrapper = mountStatus(0); // DOWN status
2024-11-20 13:48:13 +00:00
expect(wrapper.find(".badge").classes()).toContain("bg-danger");
2024-11-20 13:58:15 +00:00
expect(wrapper.text()).toBe("Down");
2024-11-20 13:48:13 +00:00
});
it("renders PENDING status correctly", () => {
2024-11-20 13:58:15 +00:00
const wrapper = mountStatus(2); // PENDING status
2024-11-20 13:48:13 +00:00
expect(wrapper.find(".badge").classes()).toContain("bg-warning");
2024-11-20 13:58:15 +00:00
expect(wrapper.text()).toBe("Pending");
2024-11-20 13:48:13 +00:00
});
it("renders MAINTENANCE status correctly", () => {
2024-11-20 13:58:15 +00:00
const wrapper = mountStatus(3); // MAINTENANCE status
expect(wrapper.find(".badge").classes()).toContain("bg-maintenance");
expect(wrapper.text()).toBe("statusMaintenance");
2024-11-20 13:48:13 +00:00
});
it("handles unknown status gracefully", () => {
2024-11-20 13:58:15 +00:00
const wrapper = mountStatus(999); // Unknown status
2024-11-20 13:48:13 +00:00
expect(wrapper.find(".badge").classes()).toContain("bg-secondary");
2024-11-20 13:58:15 +00:00
expect(wrapper.text()).toBe("Unknown");
2024-11-20 13:48:13 +00:00
});
it("updates when status prop changes", async () => {
2024-11-20 13:58:15 +00:00
const wrapper = mountStatus(1); // UP status
expect(wrapper.find(".badge").classes()).toContain("bg-primary");
2024-11-20 13:48:13 +00:00
2024-11-20 13:58:15 +00:00
await wrapper.setProps({ status: 0 }); // Change to DOWN status
2024-11-20 13:48:13 +00:00
expect(wrapper.find(".badge").classes()).toContain("bg-danger");
});
});