2016-10-19 16:41:04 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {NgModule, Testability, destroyPlatform} from '@angular/core';
|
2016-11-16 04:04:56 -05:00
|
|
|
import {NgZone} from '@angular/core/src/zone/ng_zone';
|
2016-10-19 16:41:04 -04:00
|
|
|
import {fakeAsync, tick} from '@angular/core/testing';
|
|
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
feat(upgrade): return a function (instead of array) from `downgradeInjectable()` (#14037)
This makes it more consistent with the dynamic version of `upgrade` and makes it
possible to share code between the dynamic and static versions.
This commit also refactors the file layout, moving common and dynamic-specific
files to `common/` and `dynamic/` directories respectively and renaming `aot/`
to `static/`.
Some private keys, used as AngularJS DI tokens, have also been renamed, but this
should not affect apps, since these keys are undocumented and not supposed to
be used externally.
BREAKING CHANGE:
Previously, `upgrade/static/downgradeInjectable` returned an array of the form:
```js
['dep1', 'dep2', ..., function factory(dep1, dep2, ...) { ... }]
```
Now it returns a function with an `$inject` property:
```js
factory.$inject = ['dep1', 'dep2', ...];
function factory(dep1, dep2, ...) { ... }
```
It shouldn't affect the behavior of apps, since both forms are equally suitable
to be used for registering AngularJS injectable services, but it is possible
that type-checking might fail or that current code breaks if it relies on the
returned value being an array.
2017-01-13 09:20:28 -05:00
|
|
|
import * as angular from '@angular/upgrade/src/common/angular1';
|
2016-10-20 22:35:35 -04:00
|
|
|
import {UpgradeModule} from '@angular/upgrade/static';
|
2016-10-19 16:41:04 -04:00
|
|
|
|
|
|
|
import {bootstrap, html} from '../test_helpers';
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('testability', () => {
|
|
|
|
|
|
|
|
beforeEach(() => destroyPlatform());
|
|
|
|
afterEach(() => destroyPlatform());
|
|
|
|
|
|
|
|
@NgModule({imports: [BrowserModule, UpgradeModule]})
|
|
|
|
class Ng2Module {
|
|
|
|
ngDoBootstrap() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
it('should handle deferred bootstrap', fakeAsync(() => {
|
|
|
|
let applicationRunning = false;
|
2016-11-16 04:04:56 -05:00
|
|
|
let stayedInTheZone: boolean;
|
|
|
|
const ng1Module = angular.module('ng1', []).run(() => {
|
|
|
|
applicationRunning = true;
|
|
|
|
stayedInTheZone = NgZone.isInAngularZone();
|
|
|
|
});
|
2016-10-19 16:41:04 -04:00
|
|
|
|
|
|
|
const element = html('<div></div>');
|
|
|
|
window.name = 'NG_DEFER_BOOTSTRAP!' + window.name;
|
|
|
|
|
|
|
|
bootstrap(platformBrowserDynamic(), Ng2Module, element, ng1Module);
|
|
|
|
|
|
|
|
setTimeout(() => { (<any>window).angular.resumeBootstrap(); }, 100);
|
|
|
|
|
|
|
|
expect(applicationRunning).toEqual(false);
|
|
|
|
tick(100);
|
|
|
|
expect(applicationRunning).toEqual(true);
|
2016-11-16 04:04:56 -05:00
|
|
|
expect(stayedInTheZone).toEqual(true);
|
2016-10-19 16:41:04 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('should wait for ng2 testability', fakeAsync(() => {
|
|
|
|
const ng1Module = angular.module('ng1', []);
|
|
|
|
const element = html('<div></div>');
|
|
|
|
|
|
|
|
bootstrap(platformBrowserDynamic(), Ng2Module, element, ng1Module).then((upgrade) => {
|
|
|
|
|
|
|
|
const ng2Testability: Testability = upgrade.injector.get(Testability);
|
|
|
|
ng2Testability.increasePendingRequestCount();
|
|
|
|
let ng2Stable = false;
|
|
|
|
let ng1Stable = false;
|
|
|
|
|
|
|
|
angular.getTestability(element).whenStable(() => { ng1Stable = true; });
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
ng2Stable = true;
|
|
|
|
ng2Testability.decreasePendingRequestCount();
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
expect(ng1Stable).toEqual(false);
|
|
|
|
expect(ng2Stable).toEqual(false);
|
|
|
|
tick(100);
|
|
|
|
expect(ng1Stable).toEqual(true);
|
|
|
|
expect(ng2Stable).toEqual(true);
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
2016-10-20 22:35:35 -04:00
|
|
|
}
|