86 lines
3.3 KiB
TypeScript
86 lines
3.3 KiB
TypeScript
/*********************************************************************
|
|
* 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 { inject, injectable } from 'inversify';
|
|
import { CLASSES } from '../../inversify.types';
|
|
import { TestConstants } from '../../TestConstants';
|
|
import { DriverHelper } from '../../utils/DriverHelper';
|
|
import { By, Key, WebElement, error } from 'selenium-webdriver';
|
|
import { Ide } from './Ide';
|
|
import { Logger } from '../../utils/Logger';
|
|
import { TimeoutConstants } from '../../TimeoutConstants';
|
|
|
|
|
|
@injectable()
|
|
export class DebugView {
|
|
constructor(@inject(CLASSES.DriverHelper) private readonly driverHelper: DriverHelper,
|
|
@inject(CLASSES.Ide) private readonly ide: Ide) { }
|
|
|
|
async clickOnDebugConfigurationDropDown() {
|
|
Logger.debug('DebugView.clickOnDebugConfigurationDropDown');
|
|
|
|
await this.driverHelper.waitAndClick(By.css('select.debug-configuration'));
|
|
}
|
|
|
|
async clickOnDebugConfigurationItem(itemText: string) {
|
|
Logger.debug(`DebugView.clickOnDebugConfigurationItem "${itemText}"`);
|
|
|
|
const configurationItemLocator: By = By.xpath(`//select[contains(@class,'debug-configuration')]//option[text()=\'${itemText}\']`);
|
|
|
|
await this.driverHelper.waitAndClick(configurationItemLocator);
|
|
await this.ide.performKeyCombination(Key.ESCAPE);
|
|
}
|
|
|
|
async clickOnRunDebugButton() {
|
|
Logger.debug('DebugView.clickOnRunDebugButton');
|
|
|
|
const runDebugButtonLocator: By = By.xpath('//span[@title=\'Start Debugging\']');
|
|
|
|
await this.driverHelper.waitAndClick(runDebugButtonLocator, TimeoutConstants.TS_DIALOG_WINDOW_DEFAULT_TIMEOUT);
|
|
}
|
|
|
|
/**
|
|
* Waits for number of threads in "Threads" view to be more than 1 - this should mean that the debugger is connected.
|
|
*
|
|
* @param timeout
|
|
*/
|
|
async waitForDebuggerToConnect(timeout: number = TimeoutConstants.TS_DEBUGGER_CONNECTION_TIMEOUT) {
|
|
await this.driverHelper.getDriver().wait(async () => {
|
|
Logger.debug(`Waiting for debugger to connect (threads to appear in "Threads" view)`);
|
|
|
|
const threadsTreeLocator = `//div[contains(@class, 'theia-debug-thread')]`;
|
|
|
|
try {
|
|
const threadElements: WebElement[] = await this.driverHelper.waitAllPresence(By.xpath(threadsTreeLocator));
|
|
if (threadElements.length > 1) {
|
|
return true;
|
|
}
|
|
|
|
} catch (err) {
|
|
if (!(err instanceof error.TimeoutError)) {
|
|
throw err;
|
|
}
|
|
|
|
return await this.driverHelper.wait(TestConstants.TS_SELENIUM_DEFAULT_POLLING);
|
|
}
|
|
}, timeout);
|
|
}
|
|
|
|
/**
|
|
* Click on "Threads" view title.
|
|
*/
|
|
async clickOnThreadsViewTitle() {
|
|
Logger.debug(`Click on "Threads" view title`);
|
|
|
|
const threadsViewTitleLocator: By = By.xpath('//div[@id="debug:view-container:-1--debug:threads:-1"]/*/span[@title="Threads"]');
|
|
await this.driverHelper.waitAndClick(threadsViewTitleLocator);
|
|
}
|
|
|
|
}
|