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


TypeScript testing.MockXHR類代碼示例

本文整理匯總了TypeScript中@angular/compiler/testing.MockXHR的典型用法代碼示例。如果您正苦於以下問題:TypeScript MockXHR類的具體用法?TypeScript MockXHR怎麽用?TypeScript MockXHR使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: describe

  describe('MockXHR', () => {
    var xhr: MockXHR;

    beforeEach(() => { xhr = new MockXHR(); });

    function expectResponse(request: Promise<string>, url: string, response: string, done: any /** TODO #9100 */ = null) {
      function onResponse(text: string): string {
        if (response === null) {
          throw `Unexpected response ${url} -> ${text}`;
        } else {
          expect(text).toEqual(response);
          if (isPresent(done)) done();
        }
        return text;
      }

      function onError(error: string): string {
        if (response !== null) {
          throw `Unexpected error ${url}`;
        } else {
          expect(error).toEqual(`Failed to load ${url}`);
          if (isPresent(done)) done();
        }
        return error;
      }

      PromiseWrapper.then(request, onResponse, onError);
    }

    it('should return a response from the definitions', inject([AsyncTestCompleter], (async: any /** TODO #9100 */) => {
         var url = '/foo';
         var response = 'bar';
         xhr.when(url, response);
         expectResponse(xhr.get(url), url, response, () => async.done());
         xhr.flush();
       }));

    it('should return an error from the definitions', inject([AsyncTestCompleter], (async: any /** TODO #9100 */) => {
         var url = '/foo';
         var response: any /** TODO #9100 */ = null;
         xhr.when(url, response);
         expectResponse(xhr.get(url), url, response, () => async.done());
         xhr.flush();
       }));

    it('should return a response from the expectations', inject([AsyncTestCompleter], (async: any /** TODO #9100 */) => {
         var url = '/foo';
         var response = 'bar';
         xhr.expect(url, response);
         expectResponse(xhr.get(url), url, response, () => async.done());
         xhr.flush();
       }));

    it('should return an error from the expectations', inject([AsyncTestCompleter], (async: any /** TODO #9100 */) => {
         var url = '/foo';
         var response: any /** TODO #9100 */ = null;
         xhr.expect(url, response);
         expectResponse(xhr.get(url), url, response, () => async.done());
         xhr.flush();
       }));

    it('should not reuse expectations', () => {
      var url = '/foo';
      var response = 'bar';
      xhr.expect(url, response);
      xhr.get(url);
      xhr.get(url);
      expect(() => { xhr.flush(); }).toThrowError('Unexpected request /foo');
    });

    it('should return expectations before definitions', inject([AsyncTestCompleter], (async: any /** TODO #9100 */) => {
         var url = '/foo';
         xhr.when(url, 'when');
         xhr.expect(url, 'expect');
         expectResponse(xhr.get(url), url, 'expect');
         expectResponse(xhr.get(url), url, 'when', () => async.done());
         xhr.flush();
       }));

    it('should throw when there is no definitions or expectations', () => {
      xhr.get('/foo');
      expect(() => { xhr.flush(); }).toThrowError('Unexpected request /foo');
    });

    it('should throw when flush is called without any pending requests',
       () => { expect(() => { xhr.flush(); }).toThrowError('No pending requests to flush'); });

    it('should throw on unsatisfied expectations', () => {
      xhr.expect('/foo', 'bar');
      xhr.when('/bar', 'foo');
      xhr.get('/bar');
      expect(() => { xhr.flush(); }).toThrowError('Unsatisfied requests: /foo');
    });
  });
開發者ID:aftab10662,項目名稱:angular,代碼行數:94,代碼來源:xhr_mock_spec.ts

示例2: expect

 expect(() => { xhr.flush(); }).toThrowError('Unsatisfied requests: /foo');
開發者ID:BharatBhatiya,項目名稱:test,代碼行數:1,代碼來源:xhr_mock_spec.ts

示例3: it

 it('should throw on unsatisfied expectations', () => {
   xhr.expect('/foo', 'bar');
   xhr.when('/bar', 'foo');
   xhr.get('/bar');
   expect(() => { xhr.flush(); }).toThrowError('Unsatisfied requests: /foo');
 });
開發者ID:BharatBhatiya,項目名稱:test,代碼行數:6,代碼來源:xhr_mock_spec.ts

示例4: it

 it('should throw when there is no definitions or expectations', () => {
   xhr.get('/foo');
   expect(() => { xhr.flush(); }).toThrowError('Unexpected request /foo');
 });
開發者ID:aftab10662,項目名稱:angular,代碼行數:4,代碼來源:xhr_mock_spec.ts


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