mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Fix cluster frame display issue - Add some defensive code to prevent this sort of infinite loop - Add some unit tests Signed-off-by: Sebastian Malton <sebastian@malton.name> * fix unit tests Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix build Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix lint Signed-off-by: Sebastian Malton <sebastian@malton.name> * Factor out injectable for getting of cluster config data Signed-off-by: Sebastian Malton <sebastian@malton.name>
121 lines
3.8 KiB
TypeScript
121 lines
3.8 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { getInjectable } from "@ogre-tools/injectable";
|
|
import type { RenderResult } from "@testing-library/react";
|
|
import type { SidebarItemRegistration } from "../../renderer/components/layout/sidebar-items.injectable";
|
|
import { sidebarItemsInjectionToken } from "../../renderer/components/layout/sidebar-items.injectable";
|
|
import { computed } from "mobx";
|
|
import { routeSpecificComponentInjectionToken } from "../../renderer/routes/route-specific-component-injection-token";
|
|
import React from "react";
|
|
import isAllowedResourceInjectable from "../../common/utils/is-allowed-resource.injectable";
|
|
import { frontEndRouteInjectionToken } from "../../common/front-end-routing/front-end-route-injection-token";
|
|
import type { ApplicationBuilder } from "../../renderer/components/test-utils/get-application-builder";
|
|
import { getApplicationBuilder } from "../../renderer/components/test-utils/get-application-builder";
|
|
import { navigateToRouteInjectionToken } from "../../common/front-end-routing/navigate-to-route-injection-token";
|
|
|
|
describe("cluster - visibility of sidebar items", () => {
|
|
let applicationBuilder: ApplicationBuilder;
|
|
let rendered: RenderResult;
|
|
|
|
beforeEach(() => {
|
|
applicationBuilder = getApplicationBuilder();
|
|
|
|
applicationBuilder.setEnvironmentToClusterFrame();
|
|
|
|
applicationBuilder.beforeApplicationStart(({ rendererDi }) => {
|
|
rendererDi.register(testRouteInjectable);
|
|
rendererDi.register(testRouteComponentInjectable);
|
|
rendererDi.register(testSidebarItemsInjectable);
|
|
});
|
|
});
|
|
|
|
describe("given kube resource for route is not allowed", () => {
|
|
beforeEach(async () => {
|
|
rendered = await applicationBuilder.render();
|
|
});
|
|
|
|
it("renders", () => {
|
|
expect(rendered.container).toMatchSnapshot();
|
|
});
|
|
|
|
it("related sidebar item does not exist", () => {
|
|
const item = rendered.queryByTestId("sidebar-item-some-item-id");
|
|
|
|
expect(item).toBeNull();
|
|
});
|
|
|
|
describe("when kube resource becomes allowed", () => {
|
|
beforeEach(() => {
|
|
applicationBuilder.allowKubeResource("namespaces");
|
|
});
|
|
|
|
it("renders", () => {
|
|
expect(rendered.container).toMatchSnapshot();
|
|
});
|
|
|
|
it("related sidebar item exists", () => {
|
|
const item = rendered.queryByTestId("sidebar-item-some-item-id");
|
|
|
|
expect(item).not.toBeNull();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
const testRouteInjectable = getInjectable({
|
|
id: "some-route-injectable-id",
|
|
|
|
instantiate: (di) => {
|
|
const someKubeResourceName = "namespaces";
|
|
|
|
const kubeResourceIsAllowed = di.inject(
|
|
isAllowedResourceInjectable,
|
|
someKubeResourceName,
|
|
);
|
|
|
|
return {
|
|
path: "/some-child-page",
|
|
isEnabled: kubeResourceIsAllowed,
|
|
clusterFrame: true,
|
|
};
|
|
},
|
|
|
|
injectionToken: frontEndRouteInjectionToken,
|
|
});
|
|
|
|
const testRouteComponentInjectable = getInjectable({
|
|
id: "some-child-page-route-component-injectable",
|
|
|
|
instantiate: (di) => ({
|
|
route: di.inject(testRouteInjectable),
|
|
Component: () => <div data-testid="some-child-page" />,
|
|
}),
|
|
|
|
injectionToken: routeSpecificComponentInjectionToken,
|
|
});
|
|
|
|
const testSidebarItemsInjectable = getInjectable({
|
|
id: "some-sidebar-item-injectable",
|
|
|
|
instantiate: (di) => {
|
|
const testRoute = di.inject(testRouteInjectable);
|
|
const navigateToRoute = di.inject(navigateToRouteInjectionToken);
|
|
|
|
return computed((): SidebarItemRegistration[] => [
|
|
{
|
|
id: "some-item-id",
|
|
parentId: null,
|
|
title: "Some item",
|
|
onClick: () => navigateToRoute(testRoute),
|
|
isVisible: testRoute.isEnabled,
|
|
orderNumber: 42,
|
|
},
|
|
]);
|
|
},
|
|
|
|
injectionToken: sidebarItemsInjectionToken,
|
|
});
|
|
|