2015-04-29 02:07:55 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
2015-06-19 15:14:12 -04:00
|
|
|
afterEach,
|
2015-04-29 02:07:55 -04:00
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit,
|
|
|
|
SpyObject
|
|
|
|
} from 'angular2/test_lib';
|
2015-06-23 23:46:03 -04:00
|
|
|
import {Http} from 'angular2/src/http/http';
|
2015-04-29 02:07:55 -04:00
|
|
|
import {Injector, bind} from 'angular2/di';
|
|
|
|
import {MockBackend} from 'angular2/src/http/backends/mock_backend';
|
|
|
|
import {Response} from 'angular2/src/http/static_response';
|
2015-06-13 18:49:05 -04:00
|
|
|
import {RequestMethods} from 'angular2/src/http/enums';
|
2015-06-19 15:14:12 -04:00
|
|
|
import {BaseRequestOptions, RequestOptions} from 'angular2/src/http/base_request_options';
|
2015-06-24 03:27:07 -04:00
|
|
|
import {ResponseOptions} from 'angular2/src/http/base_response_options';
|
2015-06-13 19:44:32 -04:00
|
|
|
import {Request} from 'angular2/src/http/static_request';
|
2015-06-19 15:14:12 -04:00
|
|
|
import {EventEmitter, ObservableWrapper} from 'angular2/src/facade/async';
|
|
|
|
import {ConnectionBackend} from 'angular2/src/http/interfaces';
|
2015-04-29 02:07:55 -04:00
|
|
|
|
|
|
|
class SpyObserver extends SpyObject {
|
|
|
|
onNext: Function;
|
|
|
|
onError: Function;
|
|
|
|
onCompleted: Function;
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.onNext = this.spy('onNext');
|
|
|
|
this.onError = this.spy('onError');
|
|
|
|
this.onCompleted = this.spy('onCompleted');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('http', () => {
|
|
|
|
var url = 'http://foo.bar';
|
2015-06-19 15:14:12 -04:00
|
|
|
var http: Http;
|
|
|
|
var injector: Injector;
|
2015-04-29 02:07:55 -04:00
|
|
|
var backend: MockBackend;
|
|
|
|
var baseResponse;
|
|
|
|
beforeEach(() => {
|
2015-06-13 18:49:05 -04:00
|
|
|
injector = Injector.resolveAndCreate([
|
|
|
|
BaseRequestOptions,
|
|
|
|
MockBackend,
|
|
|
|
bind(Http).toFactory(
|
2015-06-19 15:14:12 -04:00
|
|
|
function(backend: ConnectionBackend, defaultOptions: BaseRequestOptions) {
|
2015-06-13 18:49:05 -04:00
|
|
|
return new Http(backend, defaultOptions);
|
|
|
|
},
|
|
|
|
[MockBackend, BaseRequestOptions])
|
|
|
|
]);
|
2015-04-29 02:07:55 -04:00
|
|
|
http = injector.get(Http);
|
|
|
|
backend = injector.get(MockBackend);
|
2015-06-24 03:27:07 -04:00
|
|
|
baseResponse = new Response(new ResponseOptions({body: 'base response'}));
|
2015-04-29 02:07:55 -04:00
|
|
|
});
|
|
|
|
|
2015-06-13 18:49:05 -04:00
|
|
|
afterEach(() => backend.verifyNoPendingRequests());
|
2015-04-29 02:07:55 -04:00
|
|
|
|
2015-06-13 18:49:05 -04:00
|
|
|
describe('Http', () => {
|
2015-06-13 19:44:32 -04:00
|
|
|
describe('.request()', () => {
|
2015-06-09 18:18:57 -04:00
|
|
|
it('should return an Observable',
|
2015-06-19 15:14:12 -04:00
|
|
|
() => { expect(ObservableWrapper.isObservable(http.request(url))).toBe(true); });
|
2015-06-13 19:44:32 -04:00
|
|
|
|
|
|
|
|
2015-06-19 15:14:12 -04:00
|
|
|
it('should accept a fully-qualified request as its only parameter',
|
|
|
|
inject([AsyncTestCompleter], (async) => {
|
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
|
|
|
expect(c.request.url).toBe('https://google.com');
|
2015-06-24 03:27:07 -04:00
|
|
|
c.mockRespond(new Response(new ResponseOptions({body: 'Thank you'})));
|
2015-06-19 15:14:12 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
ObservableWrapper.subscribe(
|
|
|
|
http.request(new Request(new RequestOptions({url: 'https://google.com'}))),
|
|
|
|
(res) => {});
|
|
|
|
}));
|
2015-06-13 18:49:05 -04:00
|
|
|
|
|
|
|
|
2015-06-19 15:14:12 -04:00
|
|
|
it('should perform a get request for given url if only passed a string',
|
|
|
|
inject([AsyncTestCompleter], (async) => {
|
|
|
|
ObservableWrapper.subscribe(backend.connections, c => c.mockRespond(baseResponse));
|
|
|
|
ObservableWrapper.subscribe(http.request('http://basic.connection'), res => {
|
|
|
|
expect(res.text()).toBe('base response');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-06-13 18:49:05 -04:00
|
|
|
|
2015-06-19 15:14:12 -04:00
|
|
|
// TODO: make dart not complain about "argument type 'Map' cannot be assigned to the
|
|
|
|
// parameter type 'IRequestOptions'"
|
|
|
|
// xit('should perform a get request for given url if passed a dictionary',
|
|
|
|
// inject([AsyncTestCompleter], async => {
|
|
|
|
// ObservableWrapper.subscribe(backend.connections, c => c.mockRespond(baseResponse));
|
|
|
|
// ObservableWrapper.subscribe(http.request(url, {method: RequestMethods.GET}), res =>
|
|
|
|
// {
|
|
|
|
// expect(res.text()).toBe('base response');
|
|
|
|
// async.done();
|
|
|
|
// });
|
|
|
|
// }));
|
|
|
|
});
|
2015-06-13 18:49:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
describe('.get()', () => {
|
|
|
|
it('should perform a get request for given url', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.method).toBe(RequestMethods.GET);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.get(url), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('.post()', () => {
|
|
|
|
it('should perform a post request for given url', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.method).toBe(RequestMethods.POST);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.post(url, 'post me'), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should attach the provided body to the request', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
var body = 'this is my post body';
|
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.text()).toBe(body);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.post(url, body), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('.put()', () => {
|
|
|
|
it('should perform a put request for given url', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.method).toBe(RequestMethods.PUT);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.put(url, 'put me'), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should attach the provided body to the request', inject([AsyncTestCompleter], async => {
|
|
|
|
var body = 'this is my put body';
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.text()).toBe(body);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.put(url, body), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('.delete()', () => {
|
|
|
|
it('should perform a delete request for given url', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.method).toBe(RequestMethods.DELETE);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.delete(url), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('.patch()', () => {
|
|
|
|
it('should perform a patch request for given url', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.method).toBe(RequestMethods.PATCH);
|
|
|
|
backend.resolveAllConnections();
|
2015-04-29 02:07:55 -04:00
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.patch(url, 'this is my patch body'), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
2015-04-29 02:07:55 -04:00
|
|
|
|
2015-06-13 18:49:05 -04:00
|
|
|
it('should attach the provided body to the request', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
var body = 'this is my patch body';
|
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.text()).toBe(body);
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.patch(url, body), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
});
|
2015-04-29 02:07:55 -04:00
|
|
|
|
2015-06-13 18:49:05 -04:00
|
|
|
|
|
|
|
describe('.head()', () => {
|
|
|
|
it('should perform a head request for given url', inject([AsyncTestCompleter], async => {
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(backend.connections, c => {
|
2015-06-13 18:49:05 -04:00
|
|
|
expect(c.request.method).toBe(RequestMethods.HEAD);
|
|
|
|
backend.resolveAllConnections();
|
2015-04-29 02:07:55 -04:00
|
|
|
async.done();
|
|
|
|
});
|
2015-06-19 15:14:12 -04:00
|
|
|
ObservableWrapper.subscribe(http.head(url), res => {});
|
2015-06-13 18:49:05 -04:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|
2015-04-29 02:07:55 -04:00
|
|
|
});
|
|
|
|
}
|