2016-06-23 12:47:54 -04: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
|
|
|
|
*/
|
|
|
|
|
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 15:33:29 -04:00
|
|
|
import {Injector} from '@angular/core';
|
2017-03-02 15:12:46 -05:00
|
|
|
import {AsyncTestCompleter, beforeEach, describe, inject, it, xit} from '@angular/core/testing/src/testing_internal';
|
2017-12-17 18:10:54 -05:00
|
|
|
import {BaseRequestOptions, RequestOptions} from '@angular/http/src/base_request_options';
|
|
|
|
import {BaseResponseOptions, ResponseOptions} from '@angular/http/src/base_response_options';
|
|
|
|
import {Request} from '@angular/http/src/static_request';
|
|
|
|
import {Response} from '@angular/http/src/static_response';
|
|
|
|
import {MockBackend, MockConnection} from '@angular/http/testing/src/mock_backend';
|
2017-03-02 15:12:46 -05:00
|
|
|
import {expect} from '@angular/platform-browser/testing/src/matchers';
|
2018-02-27 17:06:06 -05:00
|
|
|
import {ReplaySubject} from 'rxjs';
|
2016-08-02 18:53:34 -04:00
|
|
|
|
2017-12-16 17:42:55 -05:00
|
|
|
{
|
2015-10-01 19:04:20 -04:00
|
|
|
describe('MockBackend', () => {
|
|
|
|
|
2016-11-12 08:08:58 -05:00
|
|
|
let backend: MockBackend;
|
|
|
|
let sampleRequest1: Request;
|
|
|
|
let sampleResponse1: Response;
|
|
|
|
let sampleRequest2: Request;
|
|
|
|
let sampleResponse2: Response;
|
2015-10-01 19:04:20 -04:00
|
|
|
|
|
|
|
beforeEach(() => {
|
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 15:33:29 -04:00
|
|
|
const injector = Injector.create([
|
|
|
|
{provide: ResponseOptions, useClass: BaseResponseOptions, deps: []},
|
|
|
|
{provide: MockBackend, deps: []}
|
|
|
|
]);
|
2015-10-01 19:04:20 -04:00
|
|
|
backend = injector.get(MockBackend);
|
2016-11-12 08:08:58 -05:00
|
|
|
const base = new BaseRequestOptions();
|
2017-04-17 14:12:53 -04:00
|
|
|
sampleRequest1 =
|
|
|
|
new Request(base.merge(new RequestOptions({url: 'https://google.com'})) as any);
|
2015-10-01 19:04:20 -04:00
|
|
|
sampleResponse1 = new Response(new ResponseOptions({body: 'response1'}));
|
2017-04-17 14:12:53 -04:00
|
|
|
sampleRequest2 =
|
|
|
|
new Request(base.merge(new RequestOptions({url: 'https://google.com'})) as any);
|
2015-10-01 19:04:20 -04:00
|
|
|
sampleResponse2 = new Response(new ResponseOptions({body: 'response2'}));
|
|
|
|
});
|
|
|
|
|
2016-07-21 20:12:00 -04:00
|
|
|
it('should create a new MockBackend', () => { expect(backend).toBeAnInstanceOf(MockBackend); });
|
2015-10-01 19:04:20 -04:00
|
|
|
|
2016-07-21 20:12:00 -04:00
|
|
|
it('should create a new MockConnection', () => {
|
|
|
|
expect(backend.createConnection(sampleRequest1)).toBeAnInstanceOf(MockConnection);
|
|
|
|
});
|
2015-10-01 19:04:20 -04:00
|
|
|
|
|
|
|
it('should create a new connection and allow subscription', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection: MockConnection = backend.createConnection(sampleRequest1);
|
2015-10-01 19:04:20 -04:00
|
|
|
connection.response.subscribe(() => {});
|
|
|
|
});
|
|
|
|
|
2016-02-01 20:05:50 -05:00
|
|
|
it('should allow responding after subscription',
|
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection: MockConnection = backend.createConnection(sampleRequest1);
|
2016-02-01 20:05:50 -05:00
|
|
|
connection.response.subscribe(() => { async.done(); });
|
2015-10-01 19:04:20 -04:00
|
|
|
connection.mockRespond(sampleResponse1);
|
|
|
|
}));
|
|
|
|
|
2016-02-01 20:05:50 -05:00
|
|
|
it('should allow subscribing after responding',
|
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection: MockConnection = backend.createConnection(sampleRequest1);
|
2015-10-01 19:04:20 -04:00
|
|
|
connection.mockRespond(sampleResponse1);
|
2016-02-01 20:05:50 -05:00
|
|
|
connection.response.subscribe(() => { async.done(); });
|
2015-10-01 19:04:20 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should allow responding after subscription with an error',
|
2016-02-01 20:05:50 -05:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection: MockConnection = backend.createConnection(sampleRequest1);
|
2017-04-17 14:12:53 -04:00
|
|
|
connection.response.subscribe(null !, () => { async.done(); });
|
2015-10-01 19:04:20 -04:00
|
|
|
connection.mockError(new Error('nope'));
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should not throw when there are no unresolved requests',
|
2016-02-01 20:05:50 -05:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection: MockConnection = backend.createConnection(sampleRequest1);
|
2015-10-01 19:04:20 -04:00
|
|
|
connection.response.subscribe(() => { async.done(); });
|
|
|
|
connection.mockRespond(sampleResponse1);
|
|
|
|
backend.verifyNoPendingRequests();
|
|
|
|
}));
|
|
|
|
|
2016-02-01 20:05:50 -05:00
|
|
|
xit('should throw when there are unresolved requests',
|
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection: MockConnection = backend.createConnection(sampleRequest1);
|
2015-10-01 19:04:20 -04:00
|
|
|
connection.response.subscribe(() => { async.done(); });
|
|
|
|
backend.verifyNoPendingRequests();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should work when requests are resolved out of order',
|
2016-02-01 20:05:50 -05:00
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection1: MockConnection = backend.createConnection(sampleRequest1);
|
|
|
|
const connection2: MockConnection = backend.createConnection(sampleRequest1);
|
2015-10-01 19:04:20 -04:00
|
|
|
connection1.response.subscribe(() => { async.done(); });
|
|
|
|
connection2.response.subscribe(() => {});
|
|
|
|
connection2.mockRespond(sampleResponse1);
|
|
|
|
connection1.mockRespond(sampleResponse1);
|
|
|
|
backend.verifyNoPendingRequests();
|
|
|
|
}));
|
|
|
|
|
2016-02-01 20:05:50 -05:00
|
|
|
xit('should allow double subscribing',
|
|
|
|
inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const responses: Response[] = [sampleResponse1, sampleResponse2];
|
2017-04-17 14:12:53 -04:00
|
|
|
backend.connections.subscribe((c: MockConnection) => c.mockRespond(responses.shift() !));
|
2016-11-12 08:08:58 -05:00
|
|
|
const responseObservable: ReplaySubject<Response> =
|
2016-02-01 20:05:50 -05:00
|
|
|
backend.createConnection(sampleRequest1).response;
|
2015-10-01 19:04:20 -04:00
|
|
|
responseObservable.subscribe(res => expect(res.text()).toBe('response1'));
|
2016-06-08 19:38:52 -04:00
|
|
|
responseObservable.subscribe(
|
2017-04-17 14:12:53 -04:00
|
|
|
res => expect(res.text()).toBe('response2'), null !, async.done);
|
2015-10-01 19:04:20 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
// TODO(robwormald): readyStates are leaving?
|
|
|
|
it('should allow resolution of requests manually', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const connection1: MockConnection = backend.createConnection(sampleRequest1);
|
|
|
|
const connection2: MockConnection = backend.createConnection(sampleRequest1);
|
2015-10-01 19:04:20 -04:00
|
|
|
connection1.response.subscribe(() => {});
|
|
|
|
connection2.response.subscribe(() => {});
|
|
|
|
backend.resolveAllConnections();
|
|
|
|
backend.verifyNoPendingRequests();
|
|
|
|
});
|
|
|
|
});
|
2015-12-03 16:44:14 -05:00
|
|
|
}
|