/********************************************************************* * Copyright (c) 2019 Red Hat, Inc. * * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 **********************************************************************/ import { CLASSES, Dashboard } from '..'; import { e2eContainer } from '../inversify.config'; import { GetStarted } from '../pageobjects/dashboard/GetStarted'; import { Logger } from '../utils/Logger'; const dashboard: Dashboard = e2eContainer.get(CLASSES.Dashboard); const getStarted: GetStarted = e2eContainer.get(CLASSES.GetStarted); export function createAndOpenWorkspace(stack: string) { test(`Open 'New Workspace' page`, async () => { Logger.trace(`WorkspaceHandlingTests.createAndOpenWorkspace wait for dashboard`); await dashboard.waitPage(); Logger.trace(`WorkspaceHandlingTests.createAndOpenWorkspace click get started button`); await dashboard.clickGetStartedButton(); Logger.trace(`WorkspaceHandlingTests.createAndOpenWorkspace wait for getting started page`); await getStarted.waitPage(); Logger.trace(`WorkspaceHandlingTests.createAndOpenWorkspace click on sample ${stack}`); await getStarted.clickOnSample(stack); }); } export async function stopWorkspace(workspaceName: string ) { await dashboard.stopWorkspaceByUI(workspaceName); } export async function removeWorkspace(workspaceName: string) { await dashboard.deleteWorkspaceByUI(workspaceName); }