| 
									
										
										
										
											2015-03-13 11:10:11 +01:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   el, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   IS_DARTIUM, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							| 
									
										
										
										
											2015-06-09 10:21:25 -07:00
										 |  |  | import {MockXHR} from 'angular2/src/render/xhr_mock'; | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | import {PromiseWrapper, Promise} from 'angular2/src/facade/async'; | 
					
						
							|  |  |  | import {isPresent} from 'angular2/src/facade/lang'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |     function expectResponse(request: Promise<string>, url: string, response: string, done = null) { | 
					
						
							|  |  |  |       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); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-13 11:10:11 +01:00
										 |  |  |     it('should return a response from the definitions', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-13 11:10:11 +01:00
										 |  |  |     it('should return an error from the definitions', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          var url = '/foo'; | 
					
						
							|  |  |  |          var response = null; | 
					
						
							|  |  |  |          xhr.when(url, response); | 
					
						
							|  |  |  |          expectResponse(xhr.get(url), url, response, () => async.done()); | 
					
						
							|  |  |  |          xhr.flush(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-01-30 09:43:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-13 11:10:11 +01:00
										 |  |  |     it('should return a response from the expectations', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-13 11:10:11 +01:00
										 |  |  |     it('should return an error from the expectations', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-06-02 17:41:44 -07:00
										 |  |  |          var url = '/foo'; | 
					
						
							|  |  |  |          var response = null; | 
					
						
							|  |  |  |          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
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-13 11:10:11 +01:00
										 |  |  |     it('should return expectations before definitions', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should throw on unstatisfied expectations', () => { | 
					
						
							|  |  |  |       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
										 |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |