本文整理匯總了TypeScript中@jupyterlab/services/src.ServerConnection.makeSettings方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ServerConnection.makeSettings方法的具體用法?TypeScript ServerConnection.makeSettings怎麽用?TypeScript ServerConnection.makeSettings使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@jupyterlab/services/src.ServerConnection
的用法示例。
在下文中一共展示了ServerConnection.makeSettings方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should get the server settings', () => {
manager.dispose();
const serverSettings = ServerConnection.makeSettings();
const token = serverSettings.token;
manager = new SessionManager({ serverSettings });
expect(manager.serverSettings.token).to.equal(token);
});
示例2: describe
describe('#getDownloadUrl()', () => {
const settings = ServerConnection.makeSettings({
baseUrl: 'http://foo'
});
it('should get the url of a file', async () => {
const drive = new Drive({ serverSettings: settings });
const test1 = drive.getDownloadUrl('bar.txt');
const test2 = drive.getDownloadUrl('fizz/buzz/bar.txt');
const test3 = drive.getDownloadUrl('/bar.txt');
const urls = await Promise.all([test1, test2, test3]);
expect(urls[0]).to.equal('http://foo/files/bar.txt');
expect(urls[1]).to.equal('http://foo/files/fizz/buzz/bar.txt');
expect(urls[2]).to.equal('http://foo/files/bar.txt');
});
it('should encode characters', async () => {
const drive = new Drive({ serverSettings: settings });
const url = await drive.getDownloadUrl('b ar?3.txt');
expect(url).to.equal('http://foo/files/b%20ar%3F3.txt');
});
it('should not handle relative paths', async () => {
const drive = new Drive({ serverSettings: settings });
const url = await drive.getDownloadUrl('fizz/../bar.txt');
expect(url).to.equal('http://foo/files/fizz/../bar.txt');
});
});
示例3: it
it('should use baseUrl for wsUrl', () => {
const conf: Partial<ServerConnection.ISettings> = {
baseUrl: 'https://host/path'
};
const settings = ServerConnection.makeSettings(conf);
expect(settings.baseUrl).to.equal(conf.baseUrl);
expect(settings.wsUrl).to.equal('wss://host/path');
});
示例4: describe
describe('SettingManager', () => {
const manager = new SettingManager({
serverSettings: ServerConnection.makeSettings({ pageUrl: 'lab' })
});
describe('#constructor()', () => {
it('should accept no options', () => {
const manager = new SettingManager();
expect(manager).to.be.an.instanceof(SettingManager);
});
it('should accept options', () => {
const manager = new SettingManager({
serverSettings: ServerConnection.makeSettings()
});
expect(manager).to.be.an.instanceof(SettingManager);
});
});
describe('#serverSettings', () => {
it('should be the server settings', () => {
const baseUrl = 'foo';
const serverSettings = ServerConnection.makeSettings({ baseUrl });
const manager = new SettingManager({ serverSettings });
expect(manager.serverSettings.baseUrl).to.equal(baseUrl);
});
});
describe('#fetch()', () => {
it('should fetch settings for an extension', async () => {
const id = '@jupyterlab/apputils-extension:themes';
expect((await manager.fetch(id)).id).to.equal(id);
});
});
describe('#save()', () => {
it('should save a setting', async () => {
const id = '@jupyterlab/apputils-extension:themes';
const theme = 'Foo Theme';
const raw = `{"theme": "${theme}"}`;
await manager.save(id, raw);
expect(JSON.parse((await manager.fetch(id)).raw).theme).to.equal(theme);
});
});
});