mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
368 lines
10 KiB
TypeScript
368 lines
10 KiB
TypeScript
import { mount } from "enzyme";
|
|
|
|
import { mockMatchMedia } from "__fixtures__/matchMedia";
|
|
import type { UIDefaults, ThemeT } from "Models/UI";
|
|
import { SilenceFormStore, NewEmptyMatcher } from "Stores/SilenceFormStore";
|
|
import { StringToOption } from "Common/Select";
|
|
import { App } from "./App";
|
|
|
|
declare let global: any;
|
|
declare let window: any;
|
|
|
|
const uiDefaults: UIDefaults = {
|
|
Refresh: 30 * 1000 * 1000 * 1000,
|
|
HideFiltersWhenIdle: true,
|
|
ColorTitlebar: false,
|
|
MinimalGroupWidth: 420,
|
|
AlertsPerGroup: 5,
|
|
CollapseGroups: "collapsedOnMobile",
|
|
Theme: "auto",
|
|
Animations: true,
|
|
MultiGridLabel: "cluster",
|
|
MultiGridSortReverse: false,
|
|
};
|
|
|
|
beforeEach(() => {
|
|
// createing App instance will push current filters into window.location
|
|
// ensure it's wiped after each test
|
|
window.history.pushState({}, "App", "/");
|
|
|
|
// matchMedia needs mocking
|
|
window.matchMedia = mockMatchMedia({});
|
|
|
|
global.ResizeObserver = jest.fn(() => ({
|
|
observe: jest.fn(),
|
|
disconnect: jest.fn(),
|
|
}));
|
|
global.ResizeObserverEntry = jest.fn();
|
|
});
|
|
|
|
afterEach(() => {
|
|
localStorage.setItem("savedFilters", "");
|
|
localStorage.setItem("themeConfig", "");
|
|
jest.restoreAllMocks();
|
|
window.history.pushState({}, "App", "/");
|
|
global.window.location.href = "http://localhost/";
|
|
global.window.location.search = "";
|
|
});
|
|
|
|
describe("<App />", () => {
|
|
it("uses passed default filters if there's no query args or saved filters", () => {
|
|
expect(window.location.search).toBe("");
|
|
mount(<App defaultFilters={["foo=bar"]} uiDefaults={uiDefaults} />);
|
|
expect(window.location.search).toBe("?q=foo%3Dbar");
|
|
});
|
|
|
|
it("uses saved filters if there's no query args (ignoring passed defaults)", () => {
|
|
expect(window.location.search).toBe("");
|
|
localStorage.setItem(
|
|
"savedFilters",
|
|
JSON.stringify({
|
|
filters: ["bar=baz", "abc!=cba"],
|
|
present: true,
|
|
})
|
|
);
|
|
|
|
// https://github.com/facebook/jest/issues/6798#issuecomment-412871616
|
|
const getItemSpy: any = jest.spyOn(Storage.prototype, "getItem");
|
|
|
|
mount(<App defaultFilters={["ignore=defaults"]} uiDefaults={uiDefaults} />);
|
|
|
|
expect(getItemSpy).toHaveBeenCalledWith("savedFilters");
|
|
expect(window.location.search).toBe("?q=bar%3Dbaz&q=abc%21%3Dcba");
|
|
|
|
getItemSpy.mockRestore();
|
|
});
|
|
|
|
it("ignores saved filters if 'present' key is falsey (use passed defaults)", () => {
|
|
expect(window.location.search).toBe("");
|
|
localStorage.setItem(
|
|
"savedFilters",
|
|
JSON.stringify({
|
|
filters: ["ignore=saved"],
|
|
present: false,
|
|
})
|
|
);
|
|
|
|
// https://github.com/facebook/jest/issues/6798#issuecomment-412871616
|
|
const getItemSpy: any = jest.spyOn(Storage.prototype, "getItem");
|
|
|
|
mount(<App defaultFilters={["use=defaults"]} uiDefaults={uiDefaults} />);
|
|
|
|
expect(getItemSpy).toHaveBeenCalledWith("savedFilters");
|
|
expect(window.location.search).toBe("?q=use%3Ddefaults");
|
|
|
|
getItemSpy.mockRestore();
|
|
});
|
|
|
|
it("uses filters passed via ?q= query args (ignoring saved filters and passed defaults)", () => {
|
|
expect(window.location.search).toBe("");
|
|
localStorage.setItem(
|
|
"savedFilters",
|
|
JSON.stringify({
|
|
filters: ["ignore=saved"],
|
|
present: true,
|
|
})
|
|
);
|
|
|
|
window.history.pushState({}, "App", "/?q=use%3Dquery");
|
|
|
|
mount(<App defaultFilters={["ignore=defaults"]} uiDefaults={uiDefaults} />);
|
|
|
|
expect(window.location.search).toBe("?q=use%3Dquery");
|
|
});
|
|
|
|
it("popstate event updates alertStore filters", () => {
|
|
mount(<App defaultFilters={["foo"]} uiDefaults={uiDefaults} />);
|
|
expect(window.location.search).toBe("?q=foo");
|
|
|
|
delete global.window.location;
|
|
global.window.location = {
|
|
href: "http://localhost/?q=bar",
|
|
search: "?q=bar",
|
|
};
|
|
|
|
const event = new PopStateEvent("popstate");
|
|
window.dispatchEvent(event);
|
|
|
|
expect(window.location.search).toBe("?q=bar");
|
|
});
|
|
|
|
it("unmounts without crashing", () => {
|
|
const tree = mount(
|
|
<App defaultFilters={["foo=bar"]} uiDefaults={uiDefaults} />
|
|
);
|
|
tree.unmount();
|
|
|
|
const event = new PopStateEvent("popstate");
|
|
window.dispatchEvent(event);
|
|
});
|
|
|
|
it("populates silence from from 'm' query arg", () => {
|
|
const m1 = NewEmptyMatcher();
|
|
m1.name = "foo";
|
|
m1.isRegex = true;
|
|
m1.values = [StringToOption("bar")];
|
|
const m2 = NewEmptyMatcher();
|
|
m2.name = "bar";
|
|
m2.isRegex = false;
|
|
m2.values = [StringToOption("foo"), StringToOption("baz")];
|
|
const store = new SilenceFormStore();
|
|
store.data.setMatchers([m1, m2]);
|
|
store.data.setComment("base64");
|
|
const m = store.data.toBase64;
|
|
|
|
global.window.location = {
|
|
href: `http://localhost/?q=bar&m=${m}`,
|
|
search: `?q=bar&m=${m}`,
|
|
};
|
|
|
|
mount(<App defaultFilters={[]} uiDefaults={uiDefaults} />);
|
|
});
|
|
|
|
it("doesn't crash on invalid 'm' value", () => {
|
|
const consoleSpy = jest
|
|
.spyOn(console, "error")
|
|
.mockImplementation(jest.fn());
|
|
|
|
global.window.location = {
|
|
href: "http://localhost/?q=bar&m=foo",
|
|
search: "?q=bar&m=foo",
|
|
};
|
|
|
|
mount(<App defaultFilters={[]} uiDefaults={uiDefaults} />);
|
|
expect(consoleSpy).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it("doesn't crash on truncated 'm' value", () => {
|
|
const consoleSpy = jest
|
|
.spyOn(console, "error")
|
|
.mockImplementation(jest.fn());
|
|
|
|
const m1 = NewEmptyMatcher();
|
|
m1.name = "foo";
|
|
m1.isRegex = true;
|
|
m1.values = [StringToOption("bar")];
|
|
const m2 = NewEmptyMatcher();
|
|
m2.name = "bar";
|
|
m2.isRegex = false;
|
|
m2.values = [StringToOption("foo"), StringToOption("baz")];
|
|
const store = new SilenceFormStore();
|
|
store.data.setMatchers([m1, m2]);
|
|
store.data.setComment("base64");
|
|
const m = store.data.toBase64;
|
|
|
|
global.window.location = {
|
|
href: `http://localhost/?q=bar&m=${m}`,
|
|
search: `?q=bar&m=${m.slice(0, m.length - 2)}`,
|
|
};
|
|
|
|
mount(<App defaultFilters={[]} uiDefaults={uiDefaults} />);
|
|
expect(consoleSpy).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
|
|
describe("<App /> theme", () => {
|
|
const getApp = (theme: ThemeT) =>
|
|
mount(
|
|
<App
|
|
defaultFilters={["foo=bar"]}
|
|
uiDefaults={Object.assign({}, uiDefaults, { Theme: theme })}
|
|
/>
|
|
);
|
|
|
|
it("configures light theme when uiDefaults passes it", () => {
|
|
const tree = getApp("light");
|
|
expect(tree.find("span").at(0).html()).toBe(
|
|
'<span data-theme="light"></span>'
|
|
);
|
|
tree.unmount();
|
|
});
|
|
|
|
it("configures dark theme when uiDefaults passes it", () => {
|
|
const tree = getApp("dark");
|
|
expect(tree.find("span").at(0).html()).toBe(
|
|
'<span data-theme="dark"></span>'
|
|
);
|
|
tree.unmount();
|
|
});
|
|
|
|
it("configures automatic theme when uiDefaults passes it", () => {
|
|
const tree = getApp("auto");
|
|
expect(tree.find("span").at(0).html()).toBe(
|
|
'<span data-theme="auto"></span>'
|
|
);
|
|
tree.unmount();
|
|
});
|
|
|
|
it("configures automatic theme when uiDefaults doesn't pass any value", () => {
|
|
const tree = mount(<App defaultFilters={["foo=bar"]} uiDefaults={null} />);
|
|
expect(tree.find("span").at(0).html()).toBe(
|
|
'<span data-theme="auto"></span>'
|
|
);
|
|
tree.unmount();
|
|
});
|
|
|
|
it("applies light theme when theme=auto and browser doesn't support prefers-color-scheme", () => {
|
|
window.matchMedia = mockMatchMedia({});
|
|
const tree = getApp("auto");
|
|
expect(tree.find("LightTheme")).toHaveLength(1);
|
|
tree.unmount();
|
|
});
|
|
|
|
const lightMatch = () => ({
|
|
"(prefers-color-scheme)": {
|
|
media: "(prefers-color-scheme)",
|
|
matches: true,
|
|
},
|
|
"(prefers-color-scheme: light)": {
|
|
media: "(prefers-color-scheme: light)",
|
|
matches: true,
|
|
},
|
|
"(prefers-color-scheme: dark)": {
|
|
media: "(prefers-color-scheme: dark)",
|
|
matches: false,
|
|
},
|
|
});
|
|
|
|
const darkMatch = () => ({
|
|
"(prefers-color-scheme)": {
|
|
media: "(prefers-color-scheme)",
|
|
matches: true,
|
|
},
|
|
"(prefers-color-scheme: light)": {
|
|
media: "(prefers-color-scheme: light)",
|
|
matches: false,
|
|
},
|
|
"(prefers-color-scheme: dark)": {
|
|
media: "(prefers-color-scheme: dark)",
|
|
matches: true,
|
|
},
|
|
});
|
|
|
|
interface testCaseT {
|
|
name: string;
|
|
settings: ThemeT;
|
|
matchMedia: any;
|
|
theme: string;
|
|
}
|
|
|
|
const testCases: testCaseT[] = [
|
|
{
|
|
name: "applies LightTheme when config=auto and browser doesn't support prefers-color-scheme",
|
|
settings: "auto",
|
|
matchMedia: {},
|
|
theme: "LightTheme",
|
|
},
|
|
{
|
|
name: "applies LightTheme when config=auto and browser prefers-color-scheme:light matches",
|
|
settings: "auto",
|
|
matchMedia: lightMatch(),
|
|
theme: "LightTheme",
|
|
},
|
|
{
|
|
name: "applies DarkTheme when config=auto and browser prefers-color-scheme:dark matches",
|
|
settings: "auto",
|
|
matchMedia: darkMatch(),
|
|
theme: "DarkTheme",
|
|
},
|
|
|
|
{
|
|
name: "applies LightTheme when config=light and browser doesn't support prefers-color-scheme",
|
|
settings: "light",
|
|
matchMedia: {},
|
|
theme: "LightTheme",
|
|
},
|
|
{
|
|
name: "applies LightTheme when config=light and browser prefers-color-scheme:light matches",
|
|
settings: "light",
|
|
matchMedia: lightMatch(),
|
|
theme: "LightTheme",
|
|
},
|
|
|
|
{
|
|
name: "applies DarkTheme when config=dark and browser doesn't support prefers-color-scheme",
|
|
settings: "dark",
|
|
matchMedia: {},
|
|
theme: "DarkTheme",
|
|
},
|
|
{
|
|
name: "applies DarkTheme when config=dark and browser prefers-color-scheme:dark matches",
|
|
settings: "dark",
|
|
matchMedia: darkMatch(),
|
|
theme: "DarkTheme",
|
|
},
|
|
];
|
|
for (const testCase of testCases) {
|
|
it(`${testCase.name}`, () => {
|
|
window.matchMedia = mockMatchMedia(testCase.matchMedia);
|
|
const tree = getApp(testCase.settings);
|
|
expect(tree.find(testCase.theme)).toHaveLength(1);
|
|
tree.unmount();
|
|
window.matchMedia.mockRestore();
|
|
});
|
|
}
|
|
});
|
|
|
|
describe("<App /> animations", () => {
|
|
const getApp = (animations: boolean) =>
|
|
mount(
|
|
<App
|
|
defaultFilters={["foo=bar"]}
|
|
uiDefaults={Object.assign({}, uiDefaults, { Animations: animations })}
|
|
/>
|
|
);
|
|
|
|
it("enables animations in the context when set via UI defaults", () => {
|
|
const tree = getApp(true);
|
|
expect(tree.find("Transition").at(0).prop("timeout")).toBe(500);
|
|
tree.unmount();
|
|
});
|
|
|
|
it("disables animations in the context when disabled via UI defaults", () => {
|
|
const tree = getApp(false);
|
|
expect(tree.find("Transition").at(0).prop("timeout")).toBe(0);
|
|
tree.unmount();
|
|
});
|
|
});
|