本文整理汇总了TypeScript中vs/workbench/services/label/common/labelService.LabelService类的典型用法代码示例。如果您正苦于以下问题:TypeScript LabelService类的具体用法?TypeScript LabelService怎么用?TypeScript LabelService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LabelService类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: suite
suite('URI Label', () => {
let labelService: LabelService;
setup(() => {
labelService = new LabelService(TestEnvironmentService, new TestContextService(), new TestWindowService());
});
test('file scheme', function () {
labelService.registerFormatter({
scheme: 'file',
formatting: {
label: '${path}',
separator: nativeSep,
tildify: !isWindows,
normalizeDriveLetter: isWindows
}
});
const uri1 = TestWorkspace.folders[0].uri.with({ path: TestWorkspace.folders[0].uri.path.concat('/a/b/c/d') });
assert.equal(labelService.getUriLabel(uri1, { relative: true }), isWindows ? 'a\\b\\c\\d' : 'a/b/c/d');
assert.equal(labelService.getUriLabel(uri1, { relative: false }), isWindows ? 'C:\\testWorkspace\\a\\b\\c\\d' : '/testWorkspace/a/b/c/d');
const uri2 = URI.file('c:\\1/2/3');
assert.equal(labelService.getUriLabel(uri2, { relative: false }), isWindows ? 'C:\\1\\2\\3' : '/c:\\1/2/3');
});
test('custom scheme', function () {
labelService.registerFormatter({
scheme: 'vscode',
formatting: {
label: 'LABEL/${path}/${authority}/END',
separator: '/',
tildify: true,
normalizeDriveLetter: true
}
});
const uri1 = URI.parse('vscode://microsoft.com/1/2/3/4/5');
assert.equal(labelService.getUriLabel(uri1, { relative: false }), 'LABEL//1/2/3/4/5/microsoft.com/END');
});
test('custom authority', function () {
labelService.registerFormatter({
scheme: 'vscode',
authority: 'micro*',
formatting: {
label: 'LABEL/${path}/${authority}/END',
separator: '/'
}
});
const uri1 = URI.parse('vscode://microsoft.com/1/2/3/4/5');
assert.equal(labelService.getUriLabel(uri1, { relative: false }), 'LABEL//1/2/3/4/5/microsoft.com/END');
});
test('mulitple authority', function () {
labelService.registerFormatter({
scheme: 'vscode',
authority: 'not_matching_but_long',
formatting: {
label: 'first',
separator: '/'
}
});
labelService.registerFormatter({
scheme: 'vscode',
authority: 'microsof*',
formatting: {
label: 'second',
separator: '/'
}
});
labelService.registerFormatter({
scheme: 'vscode',
authority: 'mi*',
formatting: {
label: 'third',
separator: '/'
}
});
// Make sure the most specific authority is picked
const uri1 = URI.parse('vscode://microsoft.com/1/2/3/4/5');
assert.equal(labelService.getUriLabel(uri1, { relative: false }), 'second');
});
});
示例2: function
test('mulitple authority', function () {
labelService.registerFormatter({
scheme: 'vscode',
authority: 'not_matching_but_long',
formatting: {
label: 'first',
separator: '/'
}
});
labelService.registerFormatter({
scheme: 'vscode',
authority: 'microsof*',
formatting: {
label: 'second',
separator: '/'
}
});
labelService.registerFormatter({
scheme: 'vscode',
authority: 'mi*',
formatting: {
label: 'third',
separator: '/'
}
});
// Make sure the most specific authority is picked
const uri1 = URI.parse('vscode://microsoft.com/1/2/3/4/5');
assert.equal(labelService.getUriLabel(uri1, { relative: false }), 'second');
});