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


TypeScript IHttpBackendService.expectGET方法代碼示例

本文整理匯總了TypeScript中angular.IHttpBackendService.expectGET方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript IHttpBackendService.expectGET方法的具體用法?TypeScript IHttpBackendService.expectGET怎麽用?TypeScript IHttpBackendService.expectGET使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在angular.IHttpBackendService的用法示例。


在下文中一共展示了IHttpBackendService.expectGET方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

    it('should reject the promise if a 429 response is received', () => {
      const url = [SETTINGS.gateUrl, 'applications', 'deck', 'pipelines?limit=3&expand=false'].join('/');

      $httpBackend.expectGET(url).respond(429, []);

      const responsePromise = executionService.getExecutions('deck');

      $httpBackend.flush();

      responsePromise
        .then(result => {
          expect(result).toBeUndefined();
        })
        .catch(result => {
          expect(result).toBeDefined(); // only reject should be called
        });
    });
開發者ID:emjburns,項目名稱:deck,代碼行數:17,代碼來源:execution.service.spec.ts

示例2: it

  it('should retrieve a list of running builds', () => {
    const repoType = 'r_rt';
    const projectKey = 'r_pk';
    const repoSlug = 'r_rs';
    $http.expectGET(`${CI_BUILD_URL}?repoType=${repoType}&projectKey=${projectKey}&repoSlug=${repoSlug}&completionStatus=INCOMPLETE`)
      .respond(200, {data: [getBuild(), getBuild('buildId', 'INCOMPLETE')]});

    let result: ICiBuild[] = null;
    ciBuildReader.getRunningBuilds(repoType, projectKey, repoSlug).then((builds: ICiBuild[]) => result = builds);
    $http.flush();
    expect(result.length).toBe(2);
    result.forEach((build: ICiBuild) => {
      expect(build.startTime).toBe(build.startedAt);
      expect(build.endTime).toBe(build.completedAt);
      expect(build.isRunning).toBe(build.completionStatus === 'INCOMPLETE');
      expect(build.runningTimeInMs).toBeDefined();
    })
  });
開發者ID:brujoand,項目名稱:deck,代碼行數:18,代碼來源:ciBuild.read.service.spec.ts

示例3: it

    it('should resolve the promise if a 200 response is received with empty array', () => {
      const url = [SETTINGS.gateUrl, 'applications', 'deck', 'pipelines?limit=3&expand=false'].join('/');

      $httpBackend.expectGET(url).respond(200, []);

      const responsePromise = executionService.getExecutions('deck');

      $httpBackend.flush();

      responsePromise
        .then(result => {
          expect(result).toBeDefined(); // only success should be called
          expect(result).toEqual([]);
        })
        .catch(reject => {
          expect(reject).toBeUndefined();
        });
    });
開發者ID:mizzy,項目名稱:deck,代碼行數:18,代碼來源:execution.service.spec.ts

示例4: it

    it ('returns file contents with lastUpdated', () => {
      let result: IWhatsNewContents = null;
      const response: IGistApiResponse = {
          'updated_at': '1999',
          files: {},
        };

      response.files[NetflixSettings.whatsNew.fileName] = {
        content: 'expected content',
      };

      $http.expectGET(url).respond(200, response);

      reader.getWhatsNewContents().then((data: IWhatsNewContents) => result = data);
      $http.flush();

      expect(result).not.toBeNull();
      expect(result.lastUpdated).toBe('1999');
      expect(result.contents).toBe('expected content');
    });
開發者ID:brujoand,項目名稱:deck,代碼行數:20,代碼來源:whatsNew.read.service.spec.ts

示例5: it

    it('returns file contents with lastUpdated', () => {
      let result: IWhatsNewContents = null;
      const response: IGistApiResponse = {
        updated_at: '1999',
        files: {},
      };

      response.files[SETTINGS.changelog.fileName] = {
        content: 'expected content',
      };

      $http.expectGET(url).respond(200, response);

      WhatsNewReader.getWhatsNewContents().then(data => (result = data));
      $http.flush();

      expect(result).not.toBeNull();
      expect(result.lastUpdated).toBe('1999');
      expect(result.contents).toBe('expected content');
    });
開發者ID:emjburns,項目名稱:deck,代碼行數:20,代碼來源:whatsNew.read.service.spec.ts


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