| 
									
										
										
										
											2016-06-23 09:47:54 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | import {beforeEach, ddescribe, describe, expect, iit, inject, it,} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {AsyncTestCompleter} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-06-23 15:52:18 -07:00
										 |  |  | import {MockXHR} from '@angular/compiler/testing/xhr_mock'; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {PromiseWrapper} from '../src/facade/async'; | 
					
						
							|  |  |  | import {isPresent} from '../src/facade/lang'; | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2015-03-31 16:55:46 +02:00
										 |  |  |   describe('MockXHR', () => { | 
					
						
							| 
									
										
										
										
											2015-06-11 18:50:41 -07:00
										 |  |  |     var xhr: MockXHR; | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |     beforeEach(() => { xhr = new MockXHR(); }); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     function expectResponse( | 
					
						
							|  |  |  |         request: Promise<string>, url: string, response: string, | 
					
						
							|  |  |  |         done: any /** TODO #9100 */ = null) { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |       function onResponse(text: string): string { | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |         if (response === null) { | 
					
						
							|  |  |  |           throw `Unexpected response ${url} -> ${text}`; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |           expect(text).toEqual(response); | 
					
						
							|  |  |  |           if (isPresent(done)) done(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |         return text; | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |       function onError(error: string): string { | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |         if (response !== null) { | 
					
						
							|  |  |  |           throw `Unexpected error ${url}`; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |           expect(error).toEqual(`Failed to load ${url}`); | 
					
						
							|  |  |  |           if (isPresent(done)) done(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |         return error; | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       PromiseWrapper.then(request, onResponse, onError); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should return a response from the definitions', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          var url = '/foo'; | 
					
						
							|  |  |  |          var response = 'bar'; | 
					
						
							|  |  |  |          xhr.when(url, response); | 
					
						
							|  |  |  |          expectResponse(xhr.get(url), url, response, () => async.done()); | 
					
						
							|  |  |  |          xhr.flush(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should return an error from the definitions', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          var url = '/foo'; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:45:15 -07:00
										 |  |  |          var response: any /** TODO #9100 */ = null; | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          xhr.when(url, response); | 
					
						
							|  |  |  |          expectResponse(xhr.get(url), url, response, () => async.done()); | 
					
						
							|  |  |  |          xhr.flush(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should return a response from the expectations', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          var url = '/foo'; | 
					
						
							|  |  |  |          var response = 'bar'; | 
					
						
							|  |  |  |          xhr.expect(url, response); | 
					
						
							|  |  |  |          expectResponse(xhr.get(url), url, response, () => async.done()); | 
					
						
							|  |  |  |          xhr.flush(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should return an error from the expectations', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          var url = '/foo'; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:45:15 -07:00
										 |  |  |          var response: any /** TODO #9100 */ = null; | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          xhr.expect(url, response); | 
					
						
							|  |  |  |          expectResponse(xhr.get(url), url, response, () => async.done()); | 
					
						
							|  |  |  |          xhr.flush(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should not reuse expectations', () => { | 
					
						
							|  |  |  |       var url = '/foo'; | 
					
						
							|  |  |  |       var response = 'bar'; | 
					
						
							|  |  |  |       xhr.expect(url, response); | 
					
						
							|  |  |  |       xhr.get(url); | 
					
						
							|  |  |  |       xhr.get(url); | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |       expect(() => { xhr.flush(); }).toThrowError('Unexpected request /foo'); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should return expectations before definitions', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          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(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should throw when there is no definitions or expectations', () => { | 
					
						
							|  |  |  |       xhr.get('/foo'); | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |       expect(() => { xhr.flush(); }).toThrowError('Unexpected request /foo'); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |     it('should throw when flush is called without any pending requests', | 
					
						
							|  |  |  |        () => { expect(() => { xhr.flush(); }).toThrowError('No pending requests to flush'); }); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 15:47:48 +08:00
										 |  |  |     it('should throw on unsatisfied expectations', () => { | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |       xhr.expect('/foo', 'bar'); | 
					
						
							|  |  |  |       xhr.when('/bar', 'foo'); | 
					
						
							|  |  |  |       xhr.get('/bar'); | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |       expect(() => { xhr.flush(); }).toThrowError('Unsatisfied requests: /foo'); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |