| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   afterEach, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   SpyObject | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							| 
									
										
										
										
											2015-08-20 14:28:25 -07:00
										 |  |  | import {ObservableWrapper} from 'angular2/src/core/facade/async'; | 
					
						
							|  |  |  | import {BrowserJsonp} from 'angular2/src/http/backends/browser_jsonp'; | 
					
						
							|  |  |  | import {JSONPConnection, JSONPBackend} from 'angular2/src/http/backends/jsonp_backend'; | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  | import {bind, Injector} from 'angular2/di'; | 
					
						
							| 
									
										
										
										
											2015-08-20 14:28:25 -07:00
										 |  |  | import {isPresent, StringWrapper} from 'angular2/src/core/facade/lang'; | 
					
						
							|  |  |  | import {TimerWrapper} from 'angular2/src/core/facade/async'; | 
					
						
							|  |  |  | import {Request} from 'angular2/src/http/static_request'; | 
					
						
							|  |  |  | import {Response} from 'angular2/src/http/static_response'; | 
					
						
							|  |  |  | import {Map} from 'angular2/src/core/facade/collection'; | 
					
						
							|  |  |  | import {RequestOptions, BaseRequestOptions} from 'angular2/src/http/base_request_options'; | 
					
						
							|  |  |  | import {BaseResponseOptions, ResponseOptions} from 'angular2/src/http/base_response_options'; | 
					
						
							|  |  |  | import {ResponseTypes, ReadyStates, RequestMethods} from 'angular2/src/http/enums'; | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | var addEventListenerSpy; | 
					
						
							|  |  |  | var existingScripts = []; | 
					
						
							| 
									
										
										
										
											2015-07-07 20:03:00 -07:00
										 |  |  | var unused: Response; | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | class MockBrowserJsonp extends BrowserJsonp { | 
					
						
							|  |  |  |   src: string; | 
					
						
							|  |  |  |   callbacks: Map<string, (data: any) => any>; | 
					
						
							|  |  |  |   constructor() { | 
					
						
							|  |  |  |     super(); | 
					
						
							|  |  |  |     this.callbacks = new Map(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   addEventListener(type: string, cb: (data: any) => any) { this.callbacks.set(type, cb); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   dispatchEvent(type: string, argument?: any) { | 
					
						
							|  |  |  |     if (!isPresent(argument)) { | 
					
						
							|  |  |  |       argument = {}; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     this.callbacks.get(type)(argument); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   build(url: string) { | 
					
						
							|  |  |  |     var script = new MockBrowserJsonp(); | 
					
						
							|  |  |  |     script.src = url; | 
					
						
							|  |  |  |     existingScripts.push(script); | 
					
						
							|  |  |  |     return script; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   send(node: any) { /* noop */ | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   cleanup(node: any) { /* noop */ | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('JSONPBackend', () => { | 
					
						
							|  |  |  |     let backend; | 
					
						
							|  |  |  |     let sampleRequest; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       let injector = Injector.resolveAndCreate([ | 
					
						
							|  |  |  |         bind(ResponseOptions) | 
					
						
							|  |  |  |             .toClass(BaseResponseOptions), | 
					
						
							|  |  |  |         bind(BrowserJsonp).toClass(MockBrowserJsonp), | 
					
						
							|  |  |  |         JSONPBackend | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       backend = injector.get(JSONPBackend); | 
					
						
							|  |  |  |       let base = new BaseRequestOptions(); | 
					
						
							|  |  |  |       sampleRequest = new Request(base.merge(new RequestOptions({url: 'https://google.com'}))); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     afterEach(() => { existingScripts = []; }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should create a connection', () => { | 
					
						
							|  |  |  |       var instance; | 
					
						
							|  |  |  |       expect(() => instance = backend.createConnection(sampleRequest)).not.toThrow(); | 
					
						
							|  |  |  |       expect(instance).toBeAnInstanceOf(JSONPConnection); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('JSONPConnection', () => { | 
					
						
							|  |  |  |       it('should use the injected BaseResponseOptions to create the response', | 
					
						
							|  |  |  |          inject([AsyncTestCompleter], async => { | 
					
						
							|  |  |  |            let connection = new JSONPConnection(sampleRequest, new MockBrowserJsonp(), | 
					
						
							|  |  |  |                                                 new ResponseOptions({type: ResponseTypes.Error})); | 
					
						
							| 
									
										
										
										
											2015-07-07 20:03:00 -07:00
										 |  |  |            ObservableWrapper.subscribe<Response>(connection.response, res => { | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  |              expect(res.type).toBe(ResponseTypes.Error); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            connection.finished(); | 
					
						
							|  |  |  |            existingScripts[0].dispatchEvent('load'); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should ignore load/callback when disposed', inject([AsyncTestCompleter], async => { | 
					
						
							|  |  |  |            var connection = new JSONPConnection(sampleRequest, new MockBrowserJsonp()); | 
					
						
							|  |  |  |            let spy = new SpyObject(); | 
					
						
							|  |  |  |            let loadSpy = spy.spy('load'); | 
					
						
							|  |  |  |            let errorSpy = spy.spy('error'); | 
					
						
							|  |  |  |            let returnSpy = spy.spy('cancelled'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            ObservableWrapper.subscribe(connection.response, loadSpy, errorSpy, returnSpy); | 
					
						
							|  |  |  |            connection.dispose(); | 
					
						
							| 
									
										
										
										
											2015-08-26 13:40:12 -07:00
										 |  |  |            expect(connection.readyState).toBe(ReadyStates.Cancelled); | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |            connection.finished('Fake data'); | 
					
						
							|  |  |  |            existingScripts[0].dispatchEvent('load'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            TimerWrapper.setTimeout(() => { | 
					
						
							|  |  |  |              expect(loadSpy).not.toHaveBeenCalled(); | 
					
						
							|  |  |  |              expect(errorSpy).not.toHaveBeenCalled(); | 
					
						
							|  |  |  |              expect(returnSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            }, 10); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should report error if loaded without invoking callback', | 
					
						
							|  |  |  |          inject([AsyncTestCompleter], async => { | 
					
						
							|  |  |  |            let connection = new JSONPConnection(sampleRequest, new MockBrowserJsonp()); | 
					
						
							|  |  |  |            ObservableWrapper.subscribe( | 
					
						
							|  |  |  |                connection.response, | 
					
						
							|  |  |  |                res => { | 
					
						
							|  |  |  |                  expect("response listener called").toBe(false); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }, | 
					
						
							|  |  |  |                err => { | 
					
						
							|  |  |  |                  expect(StringWrapper.contains(err.message, 'did not invoke callback')).toBe(true); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            existingScripts[0].dispatchEvent('load'); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should report error if script contains error', inject([AsyncTestCompleter], async => { | 
					
						
							|  |  |  |            let connection = new JSONPConnection(sampleRequest, new MockBrowserJsonp()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            ObservableWrapper.subscribe(connection.response, | 
					
						
							|  |  |  |                                        res => { | 
					
						
							|  |  |  |                                          expect("response listener called").toBe(false); | 
					
						
							|  |  |  |                                          async.done(); | 
					
						
							|  |  |  |                                        }, | 
					
						
							|  |  |  |                                        err => { | 
					
						
							|  |  |  |                                          expect(err['message']).toBe('Oops!'); | 
					
						
							|  |  |  |                                          async.done(); | 
					
						
							|  |  |  |                                        }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            existingScripts[0].dispatchEvent('error', ({message: "Oops!"})); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should throw if request method is not GET', () => { | 
					
						
							| 
									
										
										
										
											2015-08-26 13:40:12 -07:00
										 |  |  |         [RequestMethods.Post, RequestMethods.Put, RequestMethods.Delete, RequestMethods.Options, | 
					
						
							|  |  |  |          RequestMethods.Head, RequestMethods.Patch] | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  |             .forEach(method => { | 
					
						
							|  |  |  |               let base = new BaseRequestOptions(); | 
					
						
							|  |  |  |               let req = new Request( | 
					
						
							|  |  |  |                   base.merge(new RequestOptions({url: 'https://google.com', method: method}))); | 
					
						
							|  |  |  |               expect(() => new JSONPConnection(req, new MockBrowserJsonp())).toThrowError(); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should respond with data passed to callback', inject([AsyncTestCompleter], async => { | 
					
						
							|  |  |  |            let connection = new JSONPConnection(sampleRequest, new MockBrowserJsonp()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-07 20:03:00 -07:00
										 |  |  |            ObservableWrapper.subscribe<Response>(connection.response, res => { | 
					
						
							| 
									
										
										
										
											2015-07-14 19:53:04 -05:00
										 |  |  |              expect(res.json()).toEqual(({fake_payload: true, blob_id: 12345})); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            connection.finished(({fake_payload: true, blob_id: 12345})); | 
					
						
							|  |  |  |            existingScripts[0].dispatchEvent('load'); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |