mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
255 lines
7.2 KiB
TypeScript
255 lines
7.2 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { screen } from "@testing-library/react";
|
|
import userEvent from "@testing-library/user-event";
|
|
import { Catalog } from "./catalog";
|
|
import { mockWindow } from "../../../../__mocks__/windowMock";
|
|
import type { CatalogEntityActionContext, CatalogEntityData } from "../../../common/catalog";
|
|
import { CatalogEntity } from "../../../common/catalog";
|
|
import type { CatalogEntityRegistry } from "../../api/catalog/entity/registry";
|
|
import { CatalogEntityDetailRegistry } from "../../../extensions/registries";
|
|
import type { CatalogEntityStore } from "./catalog-entity-store/catalog-entity.store";
|
|
import { getDiForUnitTesting } from "../../getDiForUnitTesting";
|
|
import type { DiContainer } from "@ogre-tools/injectable";
|
|
import catalogEntityStoreInjectable from "./catalog-entity-store/catalog-entity-store.injectable";
|
|
import catalogEntityRegistryInjectable from "../../api/catalog/entity/registry.injectable";
|
|
import type { DiRender } from "../test-utils/renderFor";
|
|
import { renderFor } from "../test-utils/renderFor";
|
|
import mockFs from "mock-fs";
|
|
import directoryForUserDataInjectable from "../../../common/app-paths/directory-for-user-data/directory-for-user-data.injectable";
|
|
import getConfigurationFileModelInjectable from "../../../common/get-configuration-file-model/get-configuration-file-model.injectable";
|
|
import type { AppEvent } from "../../../common/app-event-bus/event-bus";
|
|
import appEventBusInjectable from "../../../common/app-event-bus/app-event-bus.injectable";
|
|
import { computed } from "mobx";
|
|
import broadcastMessageInjectable from "../../../common/ipc/broadcast-message.injectable";
|
|
|
|
mockWindow();
|
|
jest.mock("electron", () => ({
|
|
app: {
|
|
getVersion: () => "99.99.99",
|
|
getName: () => "lens",
|
|
setName: jest.fn(),
|
|
setPath: jest.fn(),
|
|
getPath: () => "tmp",
|
|
getLocale: () => "en",
|
|
setLoginItemSettings: jest.fn(),
|
|
},
|
|
ipcMain: {
|
|
on: jest.fn(),
|
|
handle: jest.fn(),
|
|
},
|
|
ipcRenderer: {
|
|
on: jest.fn(),
|
|
invoke: jest.fn(),
|
|
},
|
|
}));
|
|
|
|
jest.mock("./hotbar-toggle-menu-item", () => ({
|
|
HotbarToggleMenuItem: () => <div>menu item</div>,
|
|
}));
|
|
|
|
class MockCatalogEntity extends CatalogEntity {
|
|
public apiVersion = "api";
|
|
public kind = "kind";
|
|
|
|
constructor(data: CatalogEntityData, public onRun: (context: CatalogEntityActionContext) => void | Promise<void>) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
function createMockCatalogEntity(onRun: (context: CatalogEntityActionContext) => void | Promise<void>) {
|
|
return new MockCatalogEntity({
|
|
metadata: {
|
|
uid: "a_catalogEntity_uid",
|
|
name: "a catalog entity",
|
|
labels: {
|
|
test: "label",
|
|
},
|
|
},
|
|
status: {
|
|
phase: "",
|
|
},
|
|
spec: {},
|
|
}, onRun);
|
|
}
|
|
|
|
describe("<Catalog />", () => {
|
|
let di: DiContainer;
|
|
let catalogEntityStore: CatalogEntityStore;
|
|
let catalogEntityRegistry: CatalogEntityRegistry;
|
|
let emitEvent: (event: AppEvent) => void;
|
|
let onRun: jest.MockedFunction<(context: CatalogEntityActionContext) => void | Promise<void>>;
|
|
let catalogEntityItem: MockCatalogEntity;
|
|
let render: DiRender;
|
|
|
|
beforeEach(() => {
|
|
di = getDiForUnitTesting({ doGeneralOverrides: true });
|
|
|
|
di.override(directoryForUserDataInjectable, () => "some-directory-for-user-data");
|
|
|
|
di.override(broadcastMessageInjectable, () => async () => {});
|
|
|
|
di.permitSideEffects(getConfigurationFileModelInjectable);
|
|
|
|
mockFs();
|
|
CatalogEntityDetailRegistry.createInstance();
|
|
|
|
render = renderFor(di);
|
|
onRun = jest.fn();
|
|
catalogEntityItem = createMockCatalogEntity(onRun);
|
|
catalogEntityRegistry = di.inject(catalogEntityRegistryInjectable);
|
|
|
|
di.override(catalogEntityRegistryInjectable, () => catalogEntityRegistry);
|
|
|
|
emitEvent = jest.fn();
|
|
|
|
di.override(appEventBusInjectable, () => ({
|
|
emit: emitEvent,
|
|
}));
|
|
|
|
catalogEntityStore = di.inject(catalogEntityStoreInjectable);
|
|
Object.assign(catalogEntityStore, {
|
|
selectedItem: computed(() => catalogEntityItem),
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
CatalogEntityDetailRegistry.resetInstance();
|
|
jest.clearAllMocks();
|
|
jest.restoreAllMocks();
|
|
mockFs.restore();
|
|
});
|
|
|
|
it("can use catalogEntityRegistry.addOnBeforeRun to add hooks for catalog entities", (done) => {
|
|
catalogEntityRegistry.addOnBeforeRun(
|
|
(event) => {
|
|
expect(event.target.getId()).toBe("a_catalogEntity_uid");
|
|
expect(event.target.getName()).toBe("a catalog entity");
|
|
|
|
setTimeout(() => {
|
|
expect(onRun).toHaveBeenCalled();
|
|
done();
|
|
}, 500);
|
|
},
|
|
);
|
|
|
|
render(<Catalog />);
|
|
|
|
userEvent.click(screen.getByTestId("detail-panel-hot-bar-icon"));
|
|
});
|
|
|
|
it("onBeforeRun prevents event => onRun wont be triggered", (done) => {
|
|
catalogEntityRegistry.addOnBeforeRun(
|
|
(e) => {
|
|
setTimeout(() => {
|
|
expect(onRun).not.toHaveBeenCalled();
|
|
done();
|
|
}, 500);
|
|
e.preventDefault();
|
|
},
|
|
);
|
|
|
|
render(<Catalog />);
|
|
|
|
userEvent.click(screen.getByTestId("detail-panel-hot-bar-icon"));
|
|
});
|
|
|
|
it("addOnBeforeRun throw an exception => onRun will be triggered", (done) => {
|
|
catalogEntityRegistry.addOnBeforeRun(
|
|
() => {
|
|
setTimeout(() => {
|
|
expect(onRun).toHaveBeenCalled();
|
|
done();
|
|
}, 500);
|
|
|
|
throw new Error("error!");
|
|
},
|
|
);
|
|
|
|
render(<Catalog />);
|
|
|
|
userEvent.click(screen.getByTestId("detail-panel-hot-bar-icon"));
|
|
});
|
|
|
|
it("addOnRunHook return a promise and does not prevent run event => onRun()", (done) => {
|
|
onRun.mockImplementation(() => done());
|
|
|
|
catalogEntityRegistry.addOnBeforeRun(
|
|
async () => {
|
|
// no op
|
|
},
|
|
);
|
|
|
|
render(<Catalog />);
|
|
|
|
userEvent.click(screen.getByTestId("detail-panel-hot-bar-icon"));
|
|
});
|
|
|
|
it("addOnRunHook return a promise and prevents event wont be triggered", (done) => {
|
|
catalogEntityRegistry.addOnBeforeRun(
|
|
async (e) => {
|
|
expect(onRun).not.toBeCalled();
|
|
|
|
setTimeout(() => {
|
|
expect(onRun).not.toBeCalled();
|
|
done();
|
|
}, 500);
|
|
|
|
e.preventDefault();
|
|
},
|
|
);
|
|
|
|
render(<Catalog />);
|
|
|
|
userEvent.click(screen.getByTestId("detail-panel-hot-bar-icon"));
|
|
});
|
|
|
|
it("addOnRunHook return a promise and reject => onRun will be triggered", (done) => {
|
|
catalogEntityRegistry.addOnBeforeRun(
|
|
async () => {
|
|
setTimeout(() => {
|
|
expect(onRun).toHaveBeenCalled();
|
|
done();
|
|
}, 500);
|
|
|
|
throw new Error("rejection!");
|
|
},
|
|
);
|
|
|
|
render(<Catalog />);
|
|
|
|
userEvent.click(screen.getByTestId("detail-panel-hot-bar-icon"));
|
|
});
|
|
|
|
it("emits catalog open AppEvent", () => {
|
|
render(
|
|
<Catalog />,
|
|
);
|
|
|
|
expect(emitEvent).toHaveBeenCalledWith( {
|
|
action: "open",
|
|
name: "catalog",
|
|
});
|
|
});
|
|
|
|
it("emits catalog change AppEvent when changing the category", () => {
|
|
render(
|
|
<Catalog />,
|
|
);
|
|
|
|
userEvent.click(screen.getByText("Web Links"));
|
|
|
|
expect(emitEvent).toHaveBeenLastCalledWith({
|
|
action: "change-category",
|
|
name: "catalog",
|
|
params: {
|
|
category: "Web Links",
|
|
},
|
|
});
|
|
});
|
|
});
|