当前位置: 首页>>代码示例>>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;未经允许,请勿转载。