mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Adding tests
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
57622e33a1
commit
27150bd487
@ -331,6 +331,14 @@ utils.describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => {
|
|||||||
await cleanup();
|
await cleanup();
|
||||||
}, 10*60*1000);
|
}, 10*60*1000);
|
||||||
|
|
||||||
|
it("shows cluster context menu in sidebar", async () => {
|
||||||
|
await frame.click(`[data-testid="sidebar-cluster-dropdown"]`);
|
||||||
|
await frame.waitForSelector(`.Menu >> text="Add to Hotbar"`);
|
||||||
|
await frame.waitForSelector(`.Menu >> text="Settings"`);
|
||||||
|
await frame.waitForSelector(`.Menu >> text="Disconnect"`);
|
||||||
|
await frame.waitForSelector(`.Menu >> text="Delete"`);
|
||||||
|
});
|
||||||
|
|
||||||
it("should navigate around common cluster pages", async () => {
|
it("should navigate around common cluster pages", async () => {
|
||||||
for (const test of commonPageTests) {
|
for (const test of commonPageTests) {
|
||||||
if (isTopPageTest(test)) {
|
if (isTopPageTest(test)) {
|
||||||
@ -362,6 +370,8 @@ utils.describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => {
|
|||||||
}
|
}
|
||||||
}, 10*60*1000);
|
}, 10*60*1000);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
it("show logs and highlight the log search entries", async () => {
|
it("show logs and highlight the log search entries", async () => {
|
||||||
await frame.click(`a[href="/workloads"]`);
|
await frame.click(`a[href="/workloads"]`);
|
||||||
await frame.click(`a[href="/pods"]`);
|
await frame.click(`a[href="/pods"]`);
|
||||||
|
|||||||
@ -0,0 +1,75 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2021 OpenLens Authors
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
* this software and associated documentation files (the "Software"), to deal in
|
||||||
|
* the Software without restriction, including without limitation the rights to
|
||||||
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
* subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in all
|
||||||
|
* copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
import "@testing-library/jest-dom/extend-expect";
|
||||||
|
import { render, fireEvent } from "@testing-library/react";
|
||||||
|
import { SidebarCluster } from "../sidebar-cluster";
|
||||||
|
import { KubernetesCluster } from "../../../../common/catalog-entities";
|
||||||
|
|
||||||
|
jest.mock("../../../../common/hotbar-store", () => ({
|
||||||
|
HotbarStore: {
|
||||||
|
getInstance: () => ({
|
||||||
|
isAddedToActive: jest.fn(),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
const clusterEntity = new KubernetesCluster({
|
||||||
|
metadata: {
|
||||||
|
uid: "test-uid",
|
||||||
|
name: "test-cluster",
|
||||||
|
source: "local",
|
||||||
|
labels: {},
|
||||||
|
},
|
||||||
|
spec: {
|
||||||
|
kubeconfigPath: "",
|
||||||
|
kubeconfigContext: "",
|
||||||
|
},
|
||||||
|
status: {
|
||||||
|
phase: "connected",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("<SidebarCluster/>", () => {
|
||||||
|
it("renders w/o errors", () => {
|
||||||
|
const { container } = render(<SidebarCluster clusterEntity={clusterEntity}/>);
|
||||||
|
|
||||||
|
expect(container).toBeInstanceOf(HTMLElement);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("renders cluster avatar and name", () => {
|
||||||
|
const { getByText } = render(<SidebarCluster clusterEntity={clusterEntity}/>);
|
||||||
|
|
||||||
|
expect(getByText("tc")).toBeInTheDocument();
|
||||||
|
expect(getByText("test-cluster")).toBeInTheDocument();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("renders cluster menu", async () => {
|
||||||
|
const { getByTestId, getByText } = render(<SidebarCluster clusterEntity={clusterEntity}/>);
|
||||||
|
const link = getByTestId("sidebar-cluster-dropdown");
|
||||||
|
|
||||||
|
// HotbarStore.createInstance();
|
||||||
|
fireEvent.click(link);
|
||||||
|
expect(await getByText("Add to Hotbar")).toBeInTheDocument();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
@ -97,7 +97,14 @@ export function SidebarCluster({ clusterEntity }: { clusterEntity: CatalogEntity
|
|||||||
const id = `cluster-${metadata.uid}`;
|
const id = `cluster-${metadata.uid}`;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.SidebarCluster} tabIndex={0} id={id} onKeyDown={onKeyDown} role="menubar">
|
<div
|
||||||
|
id={id}
|
||||||
|
className={styles.SidebarCluster}
|
||||||
|
tabIndex={0}
|
||||||
|
onKeyDown={onKeyDown}
|
||||||
|
role="menubar"
|
||||||
|
data-testid="sidebar-cluster-dropdown"
|
||||||
|
>
|
||||||
<Avatar
|
<Avatar
|
||||||
title={metadata.name}
|
title={metadata.name}
|
||||||
colorHash={`${metadata.name}-${metadata.source}`}
|
colorHash={`${metadata.name}-${metadata.source}`}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user