mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 01:25:38 -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>
69 lines
1.9 KiB
TypeScript
69 lines
1.9 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 { formatOptions, Option } from 'vs/platform/environment/node/argv';
|
|
import { addArg } from 'vs/platform/environment/node/argvHelper';
|
|
|
|
suite('formatOptions', () => {
|
|
|
|
function o(description: string): Option<any> {
|
|
return {
|
|
description, type: 'string'
|
|
};
|
|
}
|
|
|
|
test('Text should display small columns correctly', () => {
|
|
assert.deepStrictEqual(
|
|
formatOptions({
|
|
'add': o('bar')
|
|
}, 80),
|
|
[' --add bar']
|
|
);
|
|
assert.deepStrictEqual(
|
|
formatOptions({
|
|
'add': o('bar'),
|
|
'wait': o('ba'),
|
|
'trace': o('b')
|
|
}, 80),
|
|
[
|
|
' --add bar',
|
|
' --wait ba',
|
|
' --trace b'
|
|
]);
|
|
});
|
|
|
|
test('Text should wrap', () => {
|
|
assert.deepStrictEqual(
|
|
formatOptions({
|
|
'add': o((<any>'bar ').repeat(9))
|
|
}, 40),
|
|
[
|
|
' --add bar bar bar bar bar bar bar bar',
|
|
' bar'
|
|
]);
|
|
});
|
|
|
|
test('Text should revert to the condensed view when the terminal is too narrow', () => {
|
|
assert.deepStrictEqual(
|
|
formatOptions({
|
|
'add': o((<any>'bar ').repeat(9))
|
|
}, 30),
|
|
[
|
|
' --add',
|
|
' bar bar bar bar bar bar bar bar bar '
|
|
]);
|
|
});
|
|
|
|
test('addArg', () => {
|
|
assert.deepStrictEqual(addArg([], 'foo'), ['foo']);
|
|
assert.deepStrictEqual(addArg([], 'foo', 'bar'), ['foo', 'bar']);
|
|
assert.deepStrictEqual(addArg(['foo'], 'bar'), ['foo', 'bar']);
|
|
assert.deepStrictEqual(addArg(['--wait'], 'bar'), ['--wait', 'bar']);
|
|
assert.deepStrictEqual(addArg(['--wait', '--', '--foo'], 'bar'), ['--wait', 'bar', '--', '--foo']);
|
|
assert.deepStrictEqual(addArg(['--', '--foo'], 'bar'), ['bar', '--', '--foo']);
|
|
});
|
|
});
|