mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 09:42:34 -05:00
* Merge from vscode a348d103d1256a06a2c9b3f9b406298a9fef6898 * Fixes and cleanup * Distro * Fix hygiene yarn * delete no yarn lock changes file * Fix hygiene * Fix layer check * Fix CI * Skip lib checks * Remove tests deleted in vs code * Fix tests * Distro * Fix tests and add removed extension point * Skip failing notebook tests for now * Disable broken tests and cleanup build folder * Update yarn.lock and fix smoke tests * Bump sqlite * fix contributed actions and file spacing * Fix user data path * Update yarn.locks Co-authored-by: ADS Merger <karlb@microsoft.com>
179 lines
6.7 KiB
TypeScript
179 lines
6.7 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 * as assert from 'assert';
|
|
import { URI } from 'vs/base/common/uri';
|
|
import { mock } from 'vs/base/test/common/mock';
|
|
import { IExtensionDescription } from 'vs/platform/extensions/common/extensions';
|
|
import { NullLogService } from 'vs/platform/log/common/log';
|
|
import { MainThreadWebviewManager } from 'vs/workbench/api/browser/mainThreadWebviewManager';
|
|
import { IExtHostContext } from 'vs/workbench/api/common/extHost.protocol';
|
|
import { NullApiDeprecationService } from 'vs/workbench/api/common/extHostApiDeprecationService';
|
|
import { IExtHostRpcService } from 'vs/workbench/api/common/extHostRpcService';
|
|
import { ExtHostWebviews } from 'vs/workbench/api/common/extHostWebview';
|
|
import { ExtHostWebviewPanels } from 'vs/workbench/api/common/extHostWebviewPanels';
|
|
import { EditorGroupColumn } from 'vs/workbench/common/editor';
|
|
import type * as vscode from 'vscode';
|
|
import { SingleProxyRPCProtocol } from './testRPCProtocol';
|
|
|
|
suite('ExtHostWebview', () => {
|
|
|
|
let rpcProtocol: (IExtHostRpcService & IExtHostContext) | undefined;
|
|
|
|
setup(() => {
|
|
const shape = createNoopMainThreadWebviews();
|
|
rpcProtocol = SingleProxyRPCProtocol(shape);
|
|
});
|
|
|
|
test('Cannot register multiple serializers for the same view type', async () => {
|
|
const viewType = 'view.type';
|
|
|
|
const extHostWebviews = new ExtHostWebviews(rpcProtocol!, {
|
|
webviewCspSource: '',
|
|
webviewResourceRoot: '',
|
|
isExtensionDevelopmentDebug: false,
|
|
}, undefined, new NullLogService(), NullApiDeprecationService);
|
|
|
|
const extHostWebviewPanels = new ExtHostWebviewPanels(rpcProtocol!, extHostWebviews, undefined);
|
|
|
|
let lastInvokedDeserializer: vscode.WebviewPanelSerializer | undefined = undefined;
|
|
|
|
class NoopSerializer implements vscode.WebviewPanelSerializer {
|
|
async deserializeWebviewPanel(_webview: vscode.WebviewPanel, _state: any): Promise<void> {
|
|
lastInvokedDeserializer = this;
|
|
}
|
|
}
|
|
|
|
const extension = {} as IExtensionDescription;
|
|
|
|
const serializerA = new NoopSerializer();
|
|
const serializerB = new NoopSerializer();
|
|
|
|
const serializerARegistration = extHostWebviewPanels.registerWebviewPanelSerializer(extension, viewType, serializerA);
|
|
|
|
await extHostWebviewPanels.$deserializeWebviewPanel('x', viewType, {
|
|
title: 'title',
|
|
state: {},
|
|
panelOptions: {},
|
|
webviewOptions: {}
|
|
}, 0 as EditorGroupColumn);
|
|
assert.strictEqual(lastInvokedDeserializer, serializerA);
|
|
|
|
assert.throws(
|
|
() => extHostWebviewPanels.registerWebviewPanelSerializer(extension, viewType, serializerB),
|
|
'Should throw when registering two serializers for the same view');
|
|
|
|
serializerARegistration.dispose();
|
|
|
|
extHostWebviewPanels.registerWebviewPanelSerializer(extension, viewType, serializerB);
|
|
|
|
await extHostWebviewPanels.$deserializeWebviewPanel('x', viewType, {
|
|
title: 'title',
|
|
state: {},
|
|
panelOptions: {},
|
|
webviewOptions: {}
|
|
}, 0 as EditorGroupColumn);
|
|
assert.strictEqual(lastInvokedDeserializer, serializerB);
|
|
});
|
|
|
|
test('asWebviewUri for desktop vscode-resource scheme', () => {
|
|
const extHostWebviews = new ExtHostWebviews(rpcProtocol!, {
|
|
webviewCspSource: '',
|
|
webviewResourceRoot: 'vscode-resource://{{resource}}',
|
|
isExtensionDevelopmentDebug: false,
|
|
}, undefined, new NullLogService(), NullApiDeprecationService);
|
|
|
|
const extHostWebviewPanels = new ExtHostWebviewPanels(rpcProtocol!, extHostWebviews, undefined);
|
|
|
|
const webview = extHostWebviewPanels.createWebviewPanel({} as any, 'type', 'title', 1, {});
|
|
|
|
assert.strictEqual(
|
|
webview.webview.asWebviewUri(URI.parse('file:///Users/codey/file.html')).toString(),
|
|
'vscode-resource://file///Users/codey/file.html',
|
|
'Unix basic'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
webview.webview.asWebviewUri(URI.parse('file:///Users/codey/file.html#frag')).toString(),
|
|
'vscode-resource://file///Users/codey/file.html#frag',
|
|
'Unix should preserve fragment'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
webview.webview.asWebviewUri(URI.parse('file:///Users/codey/f%20ile.html')).toString(),
|
|
'vscode-resource://file///Users/codey/f%20ile.html',
|
|
'Unix with encoding'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
webview.webview.asWebviewUri(URI.parse('file://localhost/Users/codey/file.html')).toString(),
|
|
'vscode-resource://file//localhost/Users/codey/file.html',
|
|
'Unix should preserve authority'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
webview.webview.asWebviewUri(URI.parse('file:///c:/codey/file.txt')).toString(),
|
|
'vscode-resource://file///c%3A/codey/file.txt',
|
|
'Windows C drive'
|
|
);
|
|
});
|
|
|
|
test('asWebviewUri for web endpoint', () => {
|
|
const extHostWebviews = new ExtHostWebviews(rpcProtocol!, {
|
|
webviewCspSource: '',
|
|
webviewResourceRoot: `https://{{uuid}}.webview.contoso.com/commit/{{resource}}`,
|
|
isExtensionDevelopmentDebug: false,
|
|
}, undefined, new NullLogService(), NullApiDeprecationService);
|
|
|
|
const extHostWebviewPanels = new ExtHostWebviewPanels(rpcProtocol!, extHostWebviews, undefined);
|
|
|
|
const webview = extHostWebviewPanels.createWebviewPanel({} as any, 'type', 'title', 1, {});
|
|
|
|
function stripEndpointUuid(input: string) {
|
|
return input.replace(/^https:\/\/[^\.]+?\./, '');
|
|
}
|
|
|
|
assert.strictEqual(
|
|
stripEndpointUuid(webview.webview.asWebviewUri(URI.parse('file:///Users/codey/file.html')).toString()),
|
|
'webview.contoso.com/commit/file///Users/codey/file.html',
|
|
'Unix basic'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
stripEndpointUuid(webview.webview.asWebviewUri(URI.parse('file:///Users/codey/file.html#frag')).toString()),
|
|
'webview.contoso.com/commit/file///Users/codey/file.html#frag',
|
|
'Unix should preserve fragment'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
stripEndpointUuid(webview.webview.asWebviewUri(URI.parse('file:///Users/codey/f%20ile.html')).toString()),
|
|
'webview.contoso.com/commit/file///Users/codey/f%20ile.html',
|
|
'Unix with encoding'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
stripEndpointUuid(webview.webview.asWebviewUri(URI.parse('file://localhost/Users/codey/file.html')).toString()),
|
|
'webview.contoso.com/commit/file//localhost/Users/codey/file.html',
|
|
'Unix should preserve authority'
|
|
);
|
|
|
|
assert.strictEqual(
|
|
stripEndpointUuid(webview.webview.asWebviewUri(URI.parse('file:///c:/codey/file.txt')).toString()),
|
|
'webview.contoso.com/commit/file///c%3A/codey/file.txt',
|
|
'Windows C drive'
|
|
);
|
|
});
|
|
});
|
|
|
|
|
|
function createNoopMainThreadWebviews() {
|
|
return new class extends mock<MainThreadWebviewManager>() {
|
|
$createWebviewPanel() { /* noop */ }
|
|
$registerSerializer() { /* noop */ }
|
|
$unregisterSerializer() { /* noop */ }
|
|
};
|
|
}
|
|
|