mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-17 19:11:36 -04:00
* Build breaks 1 * Build breaks * Build breaks * Build breaks * More build breaks * Build breaks (#2512) * Runtime breaks * Build breaks * Fix dialog location break * Update typescript * Fix ASAR break issue * Unit test breaks * Update distro * Fix breaks in ADO builds (#2513) * Bump to node 16 * Fix hygiene errors * Bump distro * Remove reference to node type * Delete vscode specific extension * Bump to node 16 in CI yaml * Skip integration tests in CI builds (while fixing) * yarn.lock update * Bump moment dependency in remote yarn * Fix drop-down chevron style * Bump to node 16 * Remove playwrite from ci.yaml * Skip building build scripts in hygine check
54 lines
2.4 KiB
TypeScript
54 lines
2.4 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 { Viewlet } from './viewlet';
|
|
import { Code } from './code';
|
|
|
|
const SEARCH_BOX = 'div.extensions-viewlet[id="workbench.view.extensions"] .monaco-editor textarea';
|
|
|
|
export class Extensions extends Viewlet {
|
|
|
|
constructor(code: Code) {
|
|
super(code);
|
|
}
|
|
|
|
async openExtensionsViewlet(): Promise<any> {
|
|
if (process.platform === 'darwin') {
|
|
await this.code.dispatchKeybinding('cmd+shift+x');
|
|
} else {
|
|
await this.code.dispatchKeybinding('ctrl+shift+x');
|
|
}
|
|
|
|
await this.code.waitForActiveElement(SEARCH_BOX);
|
|
}
|
|
|
|
async searchForExtension(id: string): Promise<any> {
|
|
await this.code.waitAndClick(SEARCH_BOX);
|
|
await this.code.waitForActiveElement(SEARCH_BOX);
|
|
await this.code.waitForTypeInEditor(SEARCH_BOX, `@id:${id}`);
|
|
await this.code.waitForTextContent(`div.part.sidebar div.composite.title h2`, 'Extensions: Marketplace');
|
|
await this.code.waitForElement(`div.extensions-viewlet[id="workbench.view.extensions"] .monaco-list-row[data-extension-id="${id}"]`);
|
|
}
|
|
|
|
async openExtension(id: string): Promise<any> {
|
|
await this.searchForExtension(id);
|
|
await this.code.waitAndClick(`div.extensions-viewlet[id="workbench.view.extensions"] .monaco-list-row[data-extension-id="${id}"]`);
|
|
}
|
|
|
|
async closeExtension(title: string): Promise<any> {
|
|
await this.code.waitAndClick(`.tabs-container div.tab[title="Extension: ${title}"] div.tab-actions a.action-label.codicon.codicon-close`);
|
|
}
|
|
|
|
async installExtension(id: string, waitUntilEnabled: boolean): Promise<void> {
|
|
await this.searchForExtension(id);
|
|
await this.code.waitAndClick(`div.extensions-viewlet[id="workbench.view.extensions"] .monaco-list-row[data-extension-id="${id}"] .extension-list-item .monaco-action-bar .action-item:not(.disabled) .extension-action.install`);
|
|
await this.code.waitForElement(`.extension-editor .monaco-action-bar .action-item:not(.disabled) .extension-action.uninstall`);
|
|
if (waitUntilEnabled) {
|
|
await this.code.waitForElement(`.extension-editor .monaco-action-bar .action-item:not(.disabled) .extension-action[title="Disable this extension"]`);
|
|
}
|
|
}
|
|
|
|
}
|