| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   afterEach, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   xit | 
					
						
							|  |  |  | } from 'angular2/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-04-14 12:35:24 -07:00
										 |  |  | import {Injector, provide, ReflectiveInjector} from 'angular2/core'; | 
					
						
							| 
									
										
										
										
											2015-08-20 14:28:25 -07:00
										 |  |  | import {MockBackend, MockConnection} from 'angular2/src/http/backends/mock_backend'; | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   BaseRequestOptions, | 
					
						
							|  |  |  |   ConnectionBackend, | 
					
						
							|  |  |  |   Request, | 
					
						
							|  |  |  |   RequestMethod, | 
					
						
							|  |  |  |   RequestOptions, | 
					
						
							|  |  |  |   Response, | 
					
						
							|  |  |  |   ResponseOptions, | 
					
						
							|  |  |  |   URLSearchParams, | 
					
						
							|  |  |  |   JSONP_PROVIDERS, | 
					
						
							|  |  |  |   HTTP_PROVIDERS, | 
					
						
							|  |  |  |   XHRBackend, | 
					
						
							|  |  |  |   JSONPBackend, | 
					
						
							|  |  |  |   Http, | 
					
						
							|  |  |  |   Jsonp | 
					
						
							|  |  |  | } from 'angular2/http'; | 
					
						
							| 
									
										
										
										
											2015-11-30 17:22:52 -08:00
										 |  |  | import {Observable} from 'rxjs/Observable'; | 
					
						
							|  |  |  | import {Subject} from 'rxjs/Subject'; | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  |   describe('injectables', () => { | 
					
						
							|  |  |  |     var url = 'http://foo.bar'; | 
					
						
							|  |  |  |     var http: Http; | 
					
						
							| 
									
										
										
										
											2016-04-14 12:35:24 -07:00
										 |  |  |     var parentInjector: ReflectiveInjector; | 
					
						
							|  |  |  |     var childInjector: ReflectiveInjector; | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  |     var jsonpBackend: MockBackend; | 
					
						
							|  |  |  |     var xhrBackend: MockBackend; | 
					
						
							|  |  |  |     var jsonp: Jsonp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should allow using jsonpInjectables and httpInjectables in same injector', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2016-04-14 12:35:24 -07:00
										 |  |  |          parentInjector = ReflectiveInjector.resolveAndCreate([ | 
					
						
							| 
									
										
										
										
											2015-10-12 11:30:34 -07:00
										 |  |  |            provide(XHRBackend, {useClass: MockBackend}), | 
					
						
							|  |  |  |            provide(JSONPBackend, {useClass: MockBackend}) | 
					
						
							| 
									
										
										
										
											2015-10-10 22:11:13 -07:00
										 |  |  |          ]); | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |          childInjector = parentInjector.resolveAndCreateChild([ | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |            HTTP_PROVIDERS, | 
					
						
							|  |  |  |            JSONP_PROVIDERS, | 
					
						
							|  |  |  |            provide(XHRBackend, {useClass: MockBackend}), | 
					
						
							| 
									
										
										
										
											2015-10-12 11:30:34 -07:00
										 |  |  |            provide(JSONPBackend, {useClass: MockBackend}) | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  |          ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          http = childInjector.get(Http); | 
					
						
							|  |  |  |          jsonp = childInjector.get(Jsonp); | 
					
						
							|  |  |  |          jsonpBackend = childInjector.get(JSONPBackend); | 
					
						
							|  |  |  |          xhrBackend = childInjector.get(XHRBackend); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          var xhrCreatedConnections = 0; | 
					
						
							|  |  |  |          var jsonpCreatedConnections = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |          xhrBackend.connections.subscribe(() => { | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  |            xhrCreatedConnections++; | 
					
						
							|  |  |  |            expect(xhrCreatedConnections).toEqual(1); | 
					
						
							|  |  |  |            if (jsonpCreatedConnections) { | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |          http.get(url).subscribe(() => {}); | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |          jsonpBackend.connections.subscribe(() => { | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  |            jsonpCreatedConnections++; | 
					
						
							|  |  |  |            expect(jsonpCreatedConnections).toEqual(1); | 
					
						
							|  |  |  |            if (xhrCreatedConnections) { | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |          jsonp.request(url).subscribe(() => {}); | 
					
						
							| 
									
										
										
										
											2015-07-30 16:29:16 +02:00
										 |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |   describe('http', () => { | 
					
						
							|  |  |  |     var url = 'http://foo.bar'; | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |     var http: Http; | 
					
						
							|  |  |  |     var injector: Injector; | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |     var backend: MockBackend; | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |     var baseResponse: Response; | 
					
						
							| 
									
										
										
										
											2015-09-18 13:30:05 -07:00
										 |  |  |     var jsonp: Jsonp; | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2016-04-14 12:35:24 -07:00
										 |  |  |       injector = ReflectiveInjector.resolveAndCreate([ | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |         BaseRequestOptions, | 
					
						
							|  |  |  |         MockBackend, | 
					
						
							|  |  |  |         provide( | 
					
						
							|  |  |  |             Http, | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               useFactory: function(backend: ConnectionBackend, defaultOptions: BaseRequestOptions) { | 
					
						
							|  |  |  |                 return new Http(backend, defaultOptions); | 
					
						
							|  |  |  |               }, | 
					
						
							|  |  |  |               deps: [MockBackend, BaseRequestOptions] | 
					
						
							|  |  |  |             }), | 
					
						
							|  |  |  |         provide( | 
					
						
							|  |  |  |             Jsonp, | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               useFactory: function(backend: ConnectionBackend, defaultOptions: BaseRequestOptions) { | 
					
						
							|  |  |  |                 return new Jsonp(backend, defaultOptions); | 
					
						
							|  |  |  |               }, | 
					
						
							|  |  |  |               deps: [MockBackend, BaseRequestOptions] | 
					
						
							|  |  |  |             }) | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |       ]); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |       http = injector.get(Http); | 
					
						
							| 
									
										
										
										
											2015-09-18 13:30:05 -07:00
										 |  |  |       jsonp = injector.get(Jsonp); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |       backend = injector.get(MockBackend); | 
					
						
							| 
									
										
										
										
											2015-06-24 00:27:07 -07:00
										 |  |  |       baseResponse = new Response(new ResponseOptions({body: 'base response'})); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |     afterEach(() => backend.verifyNoPendingRequests()); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |     describe('Http', () => { | 
					
						
							| 
									
										
										
										
											2015-06-13 16:44:32 -07:00
										 |  |  |       describe('.request()', () => { | 
					
						
							| 
									
										
										
										
											2015-06-09 15:18:57 -07:00
										 |  |  |         it('should return an Observable', | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |            () => { expect(http.request(url)).toBeAnInstanceOf(Observable); }); | 
					
						
							| 
									
										
										
										
											2015-06-13 16:44:32 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |         it('should accept a fully-qualified request as its only parameter', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |                expect(c.request.url).toBe('https://google.com'); | 
					
						
							| 
									
										
										
										
											2015-06-24 00:27:07 -07:00
										 |  |  |                c.mockRespond(new Response(new ResponseOptions({body: 'Thank you'}))); | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |              http.request(new Request(new RequestOptions({url: 'https://google.com'}))) | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |                  .subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |         it('should accept a fully-qualified request as its only parameter', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |                expect(c.request.url).toBe('https://google.com'); | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Post); | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |                c.mockRespond(new Response(new ResponseOptions({body: 'Thank you'}))); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |              http.request(new Request(new RequestOptions( | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                               {url: 'https://google.com', method: RequestMethod.Post}))) | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |                  .subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |         it('should perform a get request for given url if only passed a string', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => c.mockRespond(baseResponse)); | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |              http.request('http://basic.connection') | 
					
						
							|  |  |  |                  .subscribe((res: Response) => { | 
					
						
							|  |  |  |                    expect(res.text()).toBe('base response'); | 
					
						
							|  |  |  |                    async.done(); | 
					
						
							|  |  |  |                  }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |         it('should perform a post request for given url if options include a method', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toEqual(RequestMethod.Post); | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |                c.mockRespond(baseResponse); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |              let requestOptions = new RequestOptions({method: RequestMethod.Post}); | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |              http.request('http://basic.connection', requestOptions) | 
					
						
							|  |  |  |                  .subscribe((res: Response) => { | 
					
						
							|  |  |  |                    expect(res.text()).toBe('base response'); | 
					
						
							|  |  |  |                    async.done(); | 
					
						
							|  |  |  |                  }); | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should perform a post request for given url if options include a method', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toEqual(RequestMethod.Post); | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |                c.mockRespond(baseResponse); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |              let requestOptions = {method: RequestMethod.Post}; | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |              http.request('http://basic.connection', requestOptions) | 
					
						
							|  |  |  |                  .subscribe((res: Response) => { | 
					
						
							|  |  |  |                    expect(res.text()).toBe('base response'); | 
					
						
							|  |  |  |                    async.done(); | 
					
						
							|  |  |  |                  }); | 
					
						
							| 
									
										
										
										
											2015-11-19 19:54:23 -08:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |         it('should perform a get request and complete the response', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => c.mockRespond(baseResponse)); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |              http.request('http://basic.connection') | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |                  .subscribe((res: Response) => { expect(res.text()).toBe('base response'); }, null, | 
					
						
							|  |  |  |                             () => { async.done(); }); | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |         it('should perform multiple get requests and complete the responses', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => c.mockRespond(baseResponse)); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              http.request('http://basic.connection') | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |                  .subscribe((res: Response) => { expect(res.text()).toBe('base response'); }); | 
					
						
							|  |  |  |              http.request('http://basic.connection') | 
					
						
							|  |  |  |                  .subscribe((res: Response) => { expect(res.text()).toBe('base response'); }, null, | 
					
						
							|  |  |  |                             () => { async.done(); }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-09-18 13:30:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('should throw if url is not a string or Request', () => { | 
					
						
							|  |  |  |           var req = <Request>{}; | 
					
						
							|  |  |  |           expect(() => http.request(req)) | 
					
						
							|  |  |  |               .toThrowError('First argument must be a url string or Request instance.'); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('.get()', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should perform a get request for given url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Get); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.get(url).subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('.post()', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should perform a post request for given url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Post); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.post(url, 'post me').subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should attach the provided body to the request', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |              var body = 'this is my post body'; | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                expect(c.request.text()).toBe(body); | 
					
						
							|  |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.post(url, body).subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('.put()', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should perform a put request for given url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Put); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.put(url, 'put me').subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should attach the provided body to the request', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |              var body = 'this is my put body'; | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                expect(c.request.text()).toBe(body); | 
					
						
							|  |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.put(url, body).subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('.delete()', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should perform a delete request for given url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Delete); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.delete(url).subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('.patch()', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should perform a patch request for given url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Patch); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                backend.resolveAllConnections(); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.patch(url, 'this is my patch body').subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should attach the provided body to the request', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-06-19 12:14:12 -07:00
										 |  |  |              var body = 'this is my patch body'; | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                expect(c.request.text()).toBe(body); | 
					
						
							|  |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.patch(url, body).subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe('.head()', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should perform a head request for given url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-12-03 22:44:14 +01:00
										 |  |  |                expect(c.request.method).toBe(RequestMethod.Head); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |                backend.resolveAllConnections(); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              http.head(url).subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('searchParams', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should append search params to url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |              var params = new URLSearchParams(); | 
					
						
							|  |  |  |              params.append('q', 'puppies'); | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |                expect(c.request.url).toEqual('https://www.google.com?q=puppies'); | 
					
						
							|  |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |              http.get('https://www.google.com', new RequestOptions({search: params})) | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |                  .subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |         it('should append string search params to url', | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |                expect(c.request.url).toEqual('https://www.google.com?q=piggies'); | 
					
						
							|  |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |              http.get('https://www.google.com', new RequestOptions({search: 'q=piggies'})) | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |                  .subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should produce valid url when url already contains a query', | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |            inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |              backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |                expect(c.request.url).toEqual('https://www.google.com?q=angular&as_eq=1.x'); | 
					
						
							|  |  |  |                backend.resolveAllConnections(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |              http.get('https://www.google.com?q=angular', new RequestOptions({search: 'as_eq=1.x'})) | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |                  .subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-07-13 14:47:10 -04:00
										 |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-09-21 10:46:16 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe('string method names', () => { | 
					
						
							|  |  |  |         it('should allow case insensitive strings for method names', () => { | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |           inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |             backend.connections.subscribe((c: MockConnection) => { | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |               expect(c.request.method) | 
					
						
							|  |  |  |                   .toBe(RequestMethod.Post) | 
					
						
							|  |  |  |                       c.mockRespond(new Response(new ResponseOptions({body: 'Thank you'}))); | 
					
						
							| 
									
										
										
										
											2015-09-21 10:46:16 +03:00
										 |  |  |               async.done(); | 
					
						
							|  |  |  |             }); | 
					
						
							| 
									
										
										
										
											2015-10-01 16:04:20 -07:00
										 |  |  |             http.request( | 
					
						
							|  |  |  |                     new Request(new RequestOptions({url: 'https://google.com', method: 'PosT'}))) | 
					
						
							| 
									
										
										
										
											2016-02-01 17:05:50 -08:00
										 |  |  |                 .subscribe((res: Response) => {}); | 
					
						
							| 
									
										
										
										
											2015-09-21 10:46:16 +03:00
										 |  |  |           }); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should throw when invalid string parameter is passed for method name', () => { | 
					
						
							|  |  |  |           expect(() => { | 
					
						
							|  |  |  |             http.request( | 
					
						
							|  |  |  |                 new Request(new RequestOptions({url: 'https://google.com', method: 'Invalid'}))); | 
					
						
							|  |  |  |           }).toThrowError('Invalid request method. The method "Invalid" is not supported.'); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-13 15:49:05 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-09-18 13:30:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     describe('Jsonp', () => { | 
					
						
							|  |  |  |       describe('.request()', () => { | 
					
						
							|  |  |  |         it('should throw if url is not a string or Request', () => { | 
					
						
							|  |  |  |           var req = <Request>{}; | 
					
						
							|  |  |  |           expect(() => jsonp.request(req)) | 
					
						
							|  |  |  |               .toThrowError('First argument must be a url string or Request instance.'); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-04-28 23:07:55 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | } |