mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
238 lines
7.3 KiB
TypeScript
238 lines
7.3 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { IDisposable, toDisposable } from 'vs/base/common/lifecycle';
|
|
import { IWindowDriver, IElement, WindowDriverChannel, WindowDriverRegistryChannelClient } from 'vs/platform/driver/node/driver';
|
|
import { IInstantiationService, ServicesAccessor } from 'vs/platform/instantiation/common/instantiation';
|
|
import { IMainProcessService } from 'vs/platform/ipc/electron-browser/mainProcessService';
|
|
import { getTopLeftOffset, getClientArea } from 'vs/base/browser/dom';
|
|
import * as electron from 'electron';
|
|
import { IWindowService } from 'vs/platform/windows/common/windows';
|
|
import { Terminal } from 'vscode-xterm';
|
|
import { timeout } from 'vs/base/common/async';
|
|
import { coalesce } from 'vs/base/common/arrays';
|
|
|
|
function serializeElement(element: Element, recursive: boolean): IElement {
|
|
const attributes = Object.create(null);
|
|
|
|
for (let j = 0; j < element.attributes.length; j++) {
|
|
const attr = element.attributes.item(j);
|
|
if (attr) {
|
|
attributes[attr.name] = attr.value;
|
|
}
|
|
}
|
|
|
|
const children: IElement[] = [];
|
|
|
|
if (recursive) {
|
|
for (let i = 0; i < element.children.length; i++) {
|
|
const child = element.children.item(i);
|
|
if (child) {
|
|
children.push(serializeElement(child, true));
|
|
}
|
|
}
|
|
}
|
|
|
|
const { left, top } = getTopLeftOffset(element as HTMLElement);
|
|
|
|
return {
|
|
tagName: element.tagName,
|
|
className: element.className,
|
|
textContent: element.textContent || '',
|
|
attributes,
|
|
children,
|
|
left,
|
|
top
|
|
};
|
|
}
|
|
|
|
class WindowDriver implements IWindowDriver {
|
|
|
|
constructor(
|
|
@IWindowService private readonly windowService: IWindowService
|
|
) { }
|
|
|
|
click(selector: string, xoffset?: number, yoffset?: number): Promise<void> {
|
|
const offset = typeof xoffset === 'number' && typeof yoffset === 'number' ? { x: xoffset, y: yoffset } : undefined;
|
|
return this._click(selector, 1, offset);
|
|
}
|
|
|
|
doubleClick(selector: string): Promise<void> {
|
|
return this._click(selector, 2);
|
|
}
|
|
|
|
private async _getElementXY(selector: string, offset?: { x: number, y: number }): Promise<{ x: number; y: number; }> {
|
|
const element = document.querySelector(selector);
|
|
|
|
if (!element) {
|
|
return Promise.reject(new Error(`Element not found: ${selector}`));
|
|
}
|
|
|
|
const { left, top } = getTopLeftOffset(element as HTMLElement);
|
|
const { width, height } = getClientArea(element as HTMLElement);
|
|
let x: number, y: number;
|
|
|
|
if (offset) {
|
|
x = left + offset.x;
|
|
y = top + offset.y;
|
|
} else {
|
|
x = left + (width / 2);
|
|
y = top + (height / 2);
|
|
}
|
|
|
|
x = Math.round(x);
|
|
y = Math.round(y);
|
|
|
|
return { x, y };
|
|
}
|
|
|
|
private async _click(selector: string, clickCount: number, offset?: { x: number, y: number }): Promise<void> {
|
|
const { x, y } = await this._getElementXY(selector, offset);
|
|
|
|
const webContents: electron.WebContents = (electron as any).remote.getCurrentWebContents();
|
|
webContents.sendInputEvent({ type: 'mouseDown', x, y, button: 'left', clickCount } as any);
|
|
await timeout(10);
|
|
|
|
webContents.sendInputEvent({ type: 'mouseUp', x, y, button: 'left', clickCount } as any);
|
|
await timeout(100);
|
|
}
|
|
|
|
async setValue(selector: string, text: string): Promise<void> {
|
|
const element = document.querySelector(selector);
|
|
|
|
if (!element) {
|
|
return Promise.reject(new Error(`Element not found: ${selector}`));
|
|
}
|
|
|
|
const inputElement = element as HTMLInputElement;
|
|
inputElement.value = text;
|
|
|
|
const event = new Event('input', { bubbles: true, cancelable: true });
|
|
inputElement.dispatchEvent(event);
|
|
}
|
|
|
|
async getTitle(): Promise<string> {
|
|
return document.title;
|
|
}
|
|
|
|
async isActiveElement(selector: string): Promise<boolean> {
|
|
const element = document.querySelector(selector);
|
|
|
|
if (element !== document.activeElement) {
|
|
const chain: string[] = [];
|
|
let el = document.activeElement;
|
|
|
|
while (el) {
|
|
const tagName = el.tagName;
|
|
const id = el.id ? `#${el.id}` : '';
|
|
const classes = coalesce(el.className.split(/\s+/g).map(c => c.trim())).map(c => `.${c}`).join('');
|
|
chain.unshift(`${tagName}${id}${classes}`);
|
|
|
|
el = el.parentElement;
|
|
}
|
|
|
|
throw new Error(`Active element not found. Current active element is '${chain.join(' > ')}'. Looking for ${selector}`);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
async getElements(selector: string, recursive: boolean): Promise<IElement[]> {
|
|
const query = document.querySelectorAll(selector);
|
|
const result: IElement[] = [];
|
|
|
|
for (let i = 0; i < query.length; i++) {
|
|
const element = query.item(i);
|
|
result.push(serializeElement(element, recursive));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
async typeInEditor(selector: string, text: string): Promise<void> {
|
|
const element = document.querySelector(selector);
|
|
|
|
if (!element) {
|
|
throw new Error(`Editor not found: ${selector}`);
|
|
}
|
|
|
|
const textarea = element as HTMLTextAreaElement;
|
|
const start = textarea.selectionStart;
|
|
const newStart = start + text.length;
|
|
const value = textarea.value;
|
|
const newValue = value.substr(0, start) + text + value.substr(start);
|
|
|
|
textarea.value = newValue;
|
|
textarea.setSelectionRange(newStart, newStart);
|
|
|
|
const event = new Event('input', { 'bubbles': true, 'cancelable': true });
|
|
textarea.dispatchEvent(event);
|
|
}
|
|
|
|
async getTerminalBuffer(selector: string): Promise<string[]> {
|
|
const element = document.querySelector(selector);
|
|
|
|
if (!element) {
|
|
throw new Error(`Terminal not found: ${selector}`);
|
|
}
|
|
|
|
const xterm: Terminal = (element as any).xterm;
|
|
|
|
if (!xterm) {
|
|
throw new Error(`Xterm not found: ${selector}`);
|
|
}
|
|
|
|
const lines: string[] = [];
|
|
|
|
for (let i = 0; i < xterm._core.buffer.lines.length; i++) {
|
|
lines.push(xterm._core.buffer.translateBufferLineToString(i, true));
|
|
}
|
|
|
|
return lines;
|
|
}
|
|
|
|
async writeInTerminal(selector: string, text: string): Promise<void> {
|
|
const element = document.querySelector(selector);
|
|
|
|
if (!element) {
|
|
throw new Error(`Element not found: ${selector}`);
|
|
}
|
|
|
|
const xterm: Terminal = (element as any).xterm;
|
|
|
|
if (!xterm) {
|
|
throw new Error(`Xterm not found: ${selector}`);
|
|
}
|
|
|
|
xterm._core.handler(text);
|
|
}
|
|
|
|
async openDevTools(): Promise<void> {
|
|
await this.windowService.openDevTools({ mode: 'detach' });
|
|
}
|
|
}
|
|
|
|
export async function registerWindowDriver(accessor: ServicesAccessor): Promise<IDisposable> {
|
|
const instantiationService = accessor.get(IInstantiationService);
|
|
const mainProcessService = accessor.get(IMainProcessService);
|
|
const windowService = accessor.get(IWindowService);
|
|
|
|
const windowDriver = instantiationService.createInstance(WindowDriver);
|
|
const windowDriverChannel = new WindowDriverChannel(windowDriver);
|
|
mainProcessService.registerChannel('windowDriver', windowDriverChannel);
|
|
|
|
const windowDriverRegistryChannel = mainProcessService.getChannel('windowDriverRegistry');
|
|
const windowDriverRegistry = new WindowDriverRegistryChannelClient(windowDriverRegistryChannel);
|
|
|
|
await windowDriverRegistry.registerWindowDriver(windowService.windowId);
|
|
// const options = await windowDriverRegistry.registerWindowDriver(windowId);
|
|
|
|
// if (options.verbose) {
|
|
// windowDriver.openDevTools();
|
|
// }
|
|
|
|
return toDisposable(() => windowDriverRegistry.reloadWindowDriver(windowService.windowId));
|
|
}
|