Files
karma/ui/src/Components/SilenceModal/AlertManagerInput/index.test.tsx
2026-03-09 15:41:44 +00:00

283 lines
9.2 KiB
TypeScript

import { act } from "react";
import { render, fireEvent } from "@testing-library/react";
import { MockThemeContext } from "__fixtures__/Theme";
import { AlertStore } from "Stores/AlertStore";
import { SilenceFormStore } from "Stores/SilenceFormStore";
import { ThemeContext } from "Components/Theme";
import { AlertManagerInput } from ".";
import type { APIAlertsResponseUpstreamsT } from "Models/APITypes";
let alertStore: AlertStore;
let silenceFormStore: SilenceFormStore;
const generateUpstreams = (): APIAlertsResponseUpstreamsT => ({
counters: { total: 3, healthy: 3, failed: 0 },
instances: [
{
name: "am1",
uri: "http://am1.example.com",
publicURI: "http://am1.example.com",
readonly: false,
headers: {},
corsCredentials: "include",
error: "",
version: "0.24.0",
cluster: "HA",
clusterMembers: ["am1", "am2"],
},
{
name: "am2",
uri: "http://am2.example.com",
publicURI: "http://am2.example.com",
readonly: false,
headers: {},
corsCredentials: "include",
error: "",
version: "0.24.0",
cluster: "HA",
clusterMembers: ["am1", "am2"],
},
{
name: "am3",
uri: "http://am3.example.com",
publicURI: "http://am3.example.com",
readonly: false,
headers: {},
corsCredentials: "include",
error: "",
version: "0.24.0",
cluster: "am3",
clusterMembers: ["am3"],
},
],
clusters: { HA: ["am1", "am2"], am3: ["am3"] },
});
beforeEach(() => {
alertStore = new AlertStore([]);
alertStore.data.setUpstreams(generateUpstreams());
silenceFormStore = new SilenceFormStore();
});
const renderAlertManagerInput = () => {
return render(
<ThemeContext value={MockThemeContext}>
<AlertManagerInput
alertStore={alertStore}
silenceFormStore={silenceFormStore}
/>
</ThemeContext>,
);
};
const validateSuggestions = () => {
const { container } = renderAlertManagerInput();
// clear all selected instances, they are selected by default
const clear = container.querySelector("div.react-select__clear-indicator");
// https://github.com/JedWatson/react-select/blob/a5f16df18502e6008730969427c6b61a5ffda56f/packages/react-select/src/__tests__/Select.test.tsx#L2722-L2725
fireEvent.mouseDown(clear!, { button: 0 });
// click on the react-select component doesn't seem to trigger options
// rendering in tests, so change the input instead
const input = container.querySelector("input");
fireEvent.change(input!, { target: { value: "am" } });
return container;
};
describe("<AlertManagerInput />", () => {
it("matches snapshot", () => {
const { asFragment } = renderAlertManagerInput();
expect(asFragment()).toMatchSnapshot();
});
it("doesn't render ValidationError after passed validation", () => {
// Verifies no validation error when alertmanagers are selected and validated
const { container } = renderAlertManagerInput();
act(() => {
silenceFormStore.data.setWasValidated(true);
});
expect(container.innerHTML).not.toMatch(/fa-circle-exclamation/);
expect(container.innerHTML).not.toMatch(/Required/);
});
it("renders ValidationError after failed validation", () => {
// Verifies validation error is shown when alertmanagers is empty and validated
const { container } = renderAlertManagerInput();
const removeButtons = container.querySelectorAll(
"div.react-select__multi-value__remove",
);
fireEvent.click(removeButtons[0]);
fireEvent.click(removeButtons[0]);
act(() => {
silenceFormStore.data.setAlertmanagers([]);
silenceFormStore.data.setWasValidated(true);
});
expect(container.innerHTML).toMatch(/fa-circle-exclamation/);
expect(container.innerHTML).toMatch(/Required/);
});
it("all available Alertmanager instances are selected by default", () => {
renderAlertManagerInput();
expect(silenceFormStore.data.alertmanagers).toHaveLength(2);
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "Cluster: HA",
value: ["am1", "am2"],
});
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "am3",
value: ["am3"],
});
});
it("doesn't override last selected Alertmanager instances on mount", () => {
silenceFormStore.data.setAlertmanagers([{ label: "am3", value: ["am3"] }]);
renderAlertManagerInput();
expect(silenceFormStore.data.alertmanagers).toHaveLength(1);
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "am3",
value: ["am3"],
});
});
it("renders all 3 suggestions", () => {
const container = validateSuggestions();
const options = container.querySelectorAll("div.react-select__option");
expect(options).toHaveLength(2);
expect(options[0].textContent).toBe("Cluster: HA");
expect(options[1].textContent).toBe("am3");
});
it("clicking on options appends them to silenceFormStore.data.alertmanagers", () => {
silenceFormStore.data.setAlertmanagers([]);
const container = validateSuggestions();
let options = container.querySelectorAll("div.react-select__option");
fireEvent.click(options[0]);
const input = container.querySelector("input");
fireEvent.change(input!, { target: { value: "am" } });
options = container.querySelectorAll("div.react-select__option");
fireEvent.click(options[0]);
expect(silenceFormStore.data.alertmanagers).toHaveLength(2);
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "Cluster: HA",
value: ["am1", "am2"],
});
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "am3",
value: ["am3"],
});
});
it("silenceFormStore.data.alertmanagers gets updated from alertStore.data.upstreams.instances on mismatch", () => {
// Verifies alertmanagers are updated when clusters change
renderAlertManagerInput();
act(() => {
alertStore.data.setClusters({
amNew: ["amNew"],
});
});
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "amNew",
value: ["amNew"],
});
});
it("is enabled when silenceFormStore.data.silenceID is null", () => {
silenceFormStore.data.setSilenceID(null);
const { container } = renderAlertManagerInput();
expect(container.querySelector(".react-select--is-disabled")).toBeNull();
});
it("is disabled when silenceFormStore.data.silenceID is not null", () => {
silenceFormStore.data.setSilenceID("1234");
const { container } = renderAlertManagerInput();
expect(
container.querySelector(".react-select--is-disabled"),
).toBeInTheDocument();
});
it("removing last options sets silenceFormStore.data.alertmanagers to []", () => {
const { container } = renderAlertManagerInput();
expect(silenceFormStore.data.alertmanagers).toHaveLength(2);
const removeButtons = container.querySelectorAll(
"div.react-select__multi-value__remove",
);
fireEvent.click(removeButtons[0]);
expect(silenceFormStore.data.alertmanagers).toHaveLength(1);
const remainingRemove = container.querySelector(
"div.react-select__multi-value__remove",
);
fireEvent.click(remainingRemove!);
expect(silenceFormStore.data.alertmanagers).toHaveLength(0);
expect(silenceFormStore.data.alertmanagers).toEqual([]);
});
it("doesn't include readonly instances", () => {
// Verifies readonly instances are excluded from alertmanagers
const upstreams = generateUpstreams();
upstreams.instances[0].readonly = true;
upstreams.instances[2].readonly = true;
renderAlertManagerInput();
act(() => {
alertStore.data.setUpstreams(upstreams);
});
expect(silenceFormStore.data.alertmanagers).toHaveLength(1);
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "am2",
value: ["am2"],
});
});
it("uses default alertmanagers to select the cluster", () => {
// Verifies default alertmanagers setting selects the correct cluster
const upstreams = generateUpstreams();
alertStore.settings.setValues({
...alertStore.settings.values,
...{
silenceForm: {
strip: {
labels: [],
},
defaultAlertmanagers: ["am2", "bob"],
},
},
});
renderAlertManagerInput();
act(() => {
alertStore.data.setUpstreams(upstreams);
});
expect(silenceFormStore.data.alertmanagers).toHaveLength(1);
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "Cluster: HA",
value: ["am1", "am2"],
});
});
it("uses default alertmanagers to select the instance", () => {
// Verifies default alertmanagers setting selects the correct instance
const upstreams = generateUpstreams();
alertStore.settings.setValues({
...alertStore.settings.values,
...{
silenceForm: {
strip: {
labels: [],
},
defaultAlertmanagers: ["am0", "am3", "bob"],
},
},
});
renderAlertManagerInput();
act(() => {
alertStore.data.setUpstreams(upstreams);
});
expect(silenceFormStore.data.alertmanagers).toHaveLength(1);
expect(silenceFormStore.data.alertmanagers).toContainEqual({
label: "am3",
value: ["am3"],
});
});
});