當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ServerConnection.makeSettings方法代碼示例

本文整理匯總了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);
 });
開發者ID:AlbertHilb,項目名稱:jupyterlab,代碼行數:7,代碼來源:manager.spec.ts

示例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');
    });
  });
開發者ID:AlbertHilb,項目名稱:jupyterlab,代碼行數:28,代碼來源:index.spec.ts

示例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');
 });
開發者ID:AlbertHilb,項目名稱:jupyterlab,代碼行數:8,代碼來源:serverconnection.spec.ts

示例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);
      });
    });
  });
開發者ID:AlbertHilb,項目名稱:jupyterlab,代碼行數:47,代碼來源:manager.spec.ts


注:本文中的@jupyterlab/services/src.ServerConnection.makeSettings方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。