// This file is part of MinIO Console Server // Copyright (c) 2022 MinIO, Inc. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . import { Selector } from "testcafe"; import { IAM_PAGES } from "../../src/common/SecureComponent/permissions"; //---------------------------------------------------- // General sidebar element //---------------------------------------------------- export const sidebarItem = Selector(".MuiPaper-root").find("ul").child("a"); export const logoutItem = Selector(".MuiPaper-root").find("ul").child("div"); //---------------------------------------------------- // Specific sidebar elements //---------------------------------------------------- export const monitoringElement = Selector(".MuiPaper-root") .find("ul") .child("#tools"); export const monitoringChildren = Selector("#tools-children"); export const dashboardElement = monitoringChildren .find("a") .withAttribute("href", IAM_PAGES.DASHBOARD); export const logsElement = monitoringChildren .find("a") .withAttribute("href", "/tools/logs"); export const traceElement = monitoringChildren .find("a") .withAttribute("href", "/tools/trace"); export const drivesElement = monitoringChildren .find("a") .withAttribute("href", "/tools/heal"); export const watchElement = monitoringChildren .find("a") .withAttribute("href", "/tools/watch"); export const bucketsElement = sidebarItem.withAttribute("href", "/buckets"); export const identityElement = Selector(".MuiPaper-root") .find("ul") .child("#identity"); export const identityChildren = Selector("#identity-children"); export const usersElement = identityChildren .find("a") .withAttribute("href", "/identity/users"); export const groupsElement = identityChildren .find("a") .withAttribute("href", "/identity/groups"); export const serviceAcctsElement = identityChildren .find("a") .withAttribute("href", "/identity/account"); export const iamPoliciesElement = sidebarItem.withAttribute( "href", "/access/policies" ); export const configurationsElement = Selector(".MuiPaper-root") .find("ul") .child("#configurations"); export const notificationEndpointsElement = Selector(".MuiPaper-root") .find("ul") .child("#lambda"); export const tiersElement = Selector(".MuiPaper-root") .find("ul") .child("#tiers"); export const supportElement = Selector(".MuiPaper-root") .find("ul") .child("#support"); export const supportChildren = Selector("#support-children"); export const registerElement = supportChildren .find("a") .withAttribute("href", "/support/register"); export const diagnosticsElement = supportChildren .find("a") .withAttribute("href", "/support/diagnostics"); export const performanceElement = supportChildren .find("a") .withAttribute("href", "/support/speedtest"); export const callHomeElement = supportChildren .find("a") .withAttribute("href", "/support/call-home"); export const profileElement = supportChildren .find("a") .withAttribute("href", "/support/profile"); export const licenseElement = sidebarItem.withAttribute("href", "/license");