本文整理汇总了TypeScript中vs/base/common/uri.create函数的典型用法代码示例。如果您正苦于以下问题:TypeScript create函数的具体用法?TypeScript create怎么用?TypeScript create使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了create函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('http#toString', () => {
assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
assert.equal(URI.create('http', 'www.MSFT.com', '/my/path').toString(), 'http://www.msft.com/my/path');
assert.equal(URI.create('http', '', 'my/path').toString(), 'http:my/path');
assert.equal(URI.create('http', '', '/my/path').toString(), 'http:/my/path');
assert.equal(URI.create('', '', 'my/path').toString(), 'my/path');
assert.equal(URI.create('', '', '/my/path').toString(), '/my/path');
//http://a-test-site.com/#test=true
assert.equal(URI.create('http', 'a-test-site.com', '/', 'test=true').toString(), 'http://a-test-site.com/?test%3Dtrue');
assert.equal(URI.create('http', 'a-test-site.com', '/', '', 'test=true').toString(), 'http://a-test-site.com/#test%3Dtrue');
});
示例2: createMockModelService
export function createMockModelService(): IModelService {
let contextService = new BaseWorkspaceContextService({
resource: URI.create('inmemory', 'model', '/'),
id: null,
name: null,
uid: null,
mtime: null
}, {});
let eventService = new EventService();
let configurationService = new MockConfigurationService(contextService, eventService);
var threadService = NULL_THREAD_SERVICE;
var pluginService = new MockPluginService();
var modeService = new MockModeService(threadService, pluginService);
var modelService = new MockModelService(threadService, null, modeService, configurationService);
var inst = createInstantiationService({
threadService: threadService,
pluginService: pluginService,
modeService: modeService,
contextService: contextService,
eventService: eventService,
configurationService: configurationService
});
threadService.setInstantiationService(inst);
return modelService;
}
示例3: createMockModelService
export function createMockModelService(): IModelService {
let contextService = new BaseWorkspaceContextService({
resource: URI.create('inmemory', 'model', '/'),
id: null,
name: null,
uid: null,
mtime: null
}, {});
let eventService = new EventService();
let configurationService = new MockConfigurationService(contextService, eventService);
var threadService = NULL_THREAD_SERVICE;
var extensionService = new MockExtensionService();
var modeService = new MockModeService(threadService, extensionService);
var modelService = new MockModelService(threadService, null, modeService, configurationService, null);
var services = new ServiceCollection();
services.set(IThreadService, threadService);
services.set(IExtensionService, extensionService);
services.set(IModeService, modeService);
services.set(IWorkspaceContextService, contextService);
services.set(IEventService, eventService);
services.set(IConfigurationService, configurationService);
var inst = new InstantiationService(services);
threadService.setInstantiationService(inst);
return modelService;
}
示例4: test
test('http#toString', () => {
assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
assert.equal(URI.create('http', 'www.msft.com', '/my/path').toString(), 'http://www.msft.com/my/path');
assert.equal(URI.create('http', 'www.MSFT.com', '/my/path').toString(), 'http://www.msft.com/my/path');
assert.equal(URI.create('http', '', 'my/path').toString(), 'http:my/path');
assert.equal(URI.create('http', '', '/my/path').toString(), 'http:/my/path');
assert.equal(URI.create('', '', 'my/path').toString(), 'my/path');
assert.equal(URI.create('', '', '/my/path').toString(), '/my/path');
});
示例5: test
test('with', () => {
assert.equal(URI.create().withScheme('http').withPath('/api/files/test.me').withQuery('t=1234').toString(), 'http:/api/files/test.me?t%3D1234');
assert.equal(URI.create().with('http', '', '/api/files/test.me', 't=1234', '').toString(), 'http:/api/files/test.me?t%3D1234');
assert.equal(URI.create().with('https', '', '/api/files/test.me', 't=1234', '').toString(), 'https:/api/files/test.me?t%3D1234');
assert.equal(URI.create().with('HTTP', '', '/api/files/test.me', 't=1234', '').toString(), 'HTTP:/api/files/test.me?t%3D1234');
assert.equal(URI.create().with('HTTPS', '', '/api/files/test.me', 't=1234', '').toString(), 'HTTPS:/api/files/test.me?t%3D1234');
assert.equal(URI.create().with('boo', '', '/api/files/test.me', 't=1234', '').toString(), 'boo:/api/files/test.me?t%3D1234');
});
示例6: with
public with(scheme: string, authority: string, path: string, query: string, fragment: string): URI {
return URI.create(scheme, authority, path, query, fragment);
}
示例7: withFragment
public withFragment(value: string): URI {
return URI.create(this.scheme, this.authority, this.fsPath, this.query, value);
}