2015-09-04 01:01:36 -04:00
|
|
|
import {bind, Binding} from 'angular2/src/core/di';
|
|
|
|
import {DEFAULT_PIPES} from 'angular2/src/core/pipes';
|
2015-08-28 17:39:34 -04:00
|
|
|
import {AnimationBuilder} from 'angular2/src/animate/animation_builder';
|
|
|
|
import {MockAnimationBuilder} from 'angular2/src/mock/animation_builder_mock';
|
2015-03-30 10:37:33 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
import {Compiler, CompilerCache} from 'angular2/src/core/compiler/compiler';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {Reflector, reflector} from 'angular2/src/core/reflection/reflection';
|
2015-05-20 20:19:46 -04:00
|
|
|
import {
|
|
|
|
Parser,
|
|
|
|
Lexer,
|
|
|
|
ChangeDetection,
|
|
|
|
DynamicChangeDetection,
|
2015-07-31 15:23:50 -04:00
|
|
|
IterableDiffers,
|
|
|
|
defaultIterableDiffers,
|
|
|
|
KeyValueDiffers,
|
|
|
|
defaultKeyValueDiffers
|
2015-08-20 17:28:25 -04:00
|
|
|
} from 'angular2/src/core/change_detection/change_detection';
|
2015-09-10 18:25:36 -04:00
|
|
|
import {ExceptionHandler} from 'angular2/src/core/facade/exceptions';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {ViewLoader} from 'angular2/src/core/render/dom/compiler/view_loader';
|
2015-06-24 04:54:04 -04:00
|
|
|
import {ViewResolver} from 'angular2/src/core/compiler/view_resolver';
|
2015-05-11 20:59:39 -04:00
|
|
|
import {DirectiveResolver} from 'angular2/src/core/compiler/directive_resolver';
|
2015-08-07 14:41:38 -04:00
|
|
|
import {PipeResolver} from 'angular2/src/core/compiler/pipe_resolver';
|
2015-04-06 16:19:30 -04:00
|
|
|
import {DynamicComponentLoader} from 'angular2/src/core/compiler/dynamic_component_loader';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {XHR} from 'angular2/src/core/render/xhr';
|
2015-03-13 06:10:11 -04:00
|
|
|
import {ComponentUrlMapper} from 'angular2/src/core/compiler/component_url_mapper';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {UrlResolver} from 'angular2/src/core/services/url_resolver';
|
|
|
|
import {AppRootUrl} from 'angular2/src/core/services/app_root_url';
|
|
|
|
import {AnchorBasedAppRootUrl} from 'angular2/src/core/services/anchor_based_app_root_url';
|
|
|
|
import {StyleUrlResolver} from 'angular2/src/core/render/dom/compiler/style_url_resolver';
|
|
|
|
import {StyleInliner} from 'angular2/src/core/render/dom/compiler/style_inliner';
|
2015-05-07 09:38:57 -04:00
|
|
|
import {NgZone} from 'angular2/src/core/zone/ng_zone';
|
2015-03-30 10:37:33 -04:00
|
|
|
|
2015-08-20 17:28:25 -04:00
|
|
|
import {DOM} from 'angular2/src/core/dom/dom_adapter';
|
2015-03-30 10:37:33 -04:00
|
|
|
|
2015-09-04 17:23:13 -04:00
|
|
|
import {
|
|
|
|
EventManager,
|
|
|
|
DomEventsPlugin,
|
|
|
|
EVENT_MANAGER_PLUGINS
|
|
|
|
} from 'angular2/src/core/render/dom/events/event_manager';
|
2015-03-30 10:37:33 -04:00
|
|
|
|
2015-09-08 13:14:57 -04:00
|
|
|
import {MockDirectiveResolver} from 'angular2/src/mock/directive_resolver_mock';
|
2015-06-24 04:54:04 -04:00
|
|
|
import {MockViewResolver} from 'angular2/src/mock/view_resolver_mock';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {MockXHR} from 'angular2/src/core/render/xhr_mock';
|
2015-06-22 15:14:19 -04:00
|
|
|
import {MockLocationStrategy} from 'angular2/src/mock/mock_location_strategy';
|
|
|
|
import {LocationStrategy} from 'angular2/src/router/location_strategy';
|
2015-05-07 09:38:57 -04:00
|
|
|
import {MockNgZone} from 'angular2/src/mock/ng_zone_mock';
|
2015-03-30 10:37:33 -04:00
|
|
|
|
2015-05-15 19:42:52 -04:00
|
|
|
import {TestComponentBuilder} from './test_component_builder';
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-09-04 01:01:36 -04:00
|
|
|
import {Injector} from 'angular2/src/core/di';
|
|
|
|
import {ELEMENT_PROBE_BINDINGS} from 'angular2/src/core/debug';
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-08-28 14:29:19 -04:00
|
|
|
import {ListWrapper} from 'angular2/src/core/facade/collection';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {FunctionWrapper, Type} from 'angular2/src/core/facade/lang';
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-04-24 20:53:06 -04:00
|
|
|
import {AppViewPool, APP_VIEW_POOL_CAPACITY} from 'angular2/src/core/compiler/view_pool';
|
|
|
|
import {AppViewManager} from 'angular2/src/core/compiler/view_manager';
|
|
|
|
import {AppViewManagerUtils} from 'angular2/src/core/compiler/view_manager_utils';
|
2015-04-07 23:54:20 -04:00
|
|
|
import {ProtoViewFactory} from 'angular2/src/core/compiler/proto_view_factory';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {RenderCompiler, Renderer} from 'angular2/src/core/render/api';
|
2015-07-15 13:55:44 -04:00
|
|
|
import {
|
|
|
|
DomRenderer,
|
2015-08-11 00:42:47 -04:00
|
|
|
DOCUMENT,
|
2015-07-24 18:28:44 -04:00
|
|
|
DefaultDomCompiler,
|
2015-08-11 00:42:47 -04:00
|
|
|
APP_ID,
|
2015-07-24 18:28:44 -04:00
|
|
|
SharedStylesHost,
|
2015-07-31 13:58:24 -04:00
|
|
|
DomSharedStylesHost,
|
2015-08-11 00:42:47 -04:00
|
|
|
MAX_IN_MEMORY_ELEMENTS_PER_TEMPLATE,
|
2015-07-31 13:58:24 -04:00
|
|
|
TemplateCloner
|
2015-08-20 17:28:25 -04:00
|
|
|
} from 'angular2/src/core/render/render';
|
|
|
|
import {ElementSchemaRegistry} from 'angular2/src/core/render/dom/schema/element_schema_registry';
|
|
|
|
import {
|
|
|
|
DomElementSchemaRegistry
|
|
|
|
} from 'angular2/src/core/render/dom/schema/dom_element_schema_registry';
|
2015-08-21 15:21:29 -04:00
|
|
|
import {Serializer} from "angular2/src/web_workers/shared/serializer";
|
2015-07-15 16:26:02 -04:00
|
|
|
import {Log} from './utils';
|
2015-09-18 13:33:23 -04:00
|
|
|
import {compilerBindings} from 'angular2/src/compiler/compiler';
|
2015-04-07 23:54:20 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
/**
|
|
|
|
* Returns the root injector bindings.
|
|
|
|
*
|
|
|
|
* This must be kept in sync with the _rootBindings in application.js
|
|
|
|
*
|
2015-04-10 06:45:02 -04:00
|
|
|
* @returns {any[]}
|
2015-03-13 06:10:11 -04:00
|
|
|
*/
|
|
|
|
function _getRootBindings() {
|
|
|
|
return [
|
2015-05-20 20:19:46 -04:00
|
|
|
bind(Reflector)
|
|
|
|
.toValue(reflector),
|
2015-03-13 06:10:11 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the application injector bindings.
|
|
|
|
*
|
|
|
|
* This must be kept in sync with _injectorBindings() in application.js
|
|
|
|
*
|
2015-04-10 06:45:02 -04:00
|
|
|
* @returns {any[]}
|
2015-03-13 06:10:11 -04:00
|
|
|
*/
|
|
|
|
function _getAppBindings() {
|
2015-03-30 10:37:33 -04:00
|
|
|
var appDoc;
|
|
|
|
|
|
|
|
// The document is only available in browser environment
|
|
|
|
try {
|
2015-08-06 06:28:36 -04:00
|
|
|
appDoc = DOM.defaultDoc();
|
2015-05-20 20:19:46 -04:00
|
|
|
} catch (e) {
|
2015-03-30 10:37:33 -04:00
|
|
|
appDoc = null;
|
|
|
|
}
|
2015-07-10 19:09:18 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
return [
|
2015-09-18 13:33:23 -04:00
|
|
|
compilerBindings(),
|
|
|
|
bind(DOCUMENT).toValue(appDoc),
|
2015-05-06 13:49:42 -04:00
|
|
|
DomRenderer,
|
|
|
|
bind(Renderer).toAlias(DomRenderer),
|
2015-08-11 00:42:47 -04:00
|
|
|
bind(APP_ID).toValue('a'),
|
2015-07-31 13:58:24 -04:00
|
|
|
TemplateCloner,
|
2015-08-11 00:42:47 -04:00
|
|
|
bind(MAX_IN_MEMORY_ELEMENTS_PER_TEMPLATE).toValue(-1),
|
2015-07-24 18:28:44 -04:00
|
|
|
DefaultDomCompiler,
|
2015-05-06 13:49:42 -04:00
|
|
|
bind(RenderCompiler).toAlias(DefaultDomCompiler),
|
2015-07-29 08:01:18 -04:00
|
|
|
bind(ElementSchemaRegistry).toValue(new DomElementSchemaRegistry()),
|
2015-07-24 18:28:44 -04:00
|
|
|
DomSharedStylesHost,
|
|
|
|
bind(SharedStylesHost).toAlias(DomSharedStylesHost),
|
2015-04-07 23:54:20 -04:00
|
|
|
ProtoViewFactory,
|
2015-04-24 20:53:06 -04:00
|
|
|
AppViewPool,
|
|
|
|
AppViewManager,
|
|
|
|
AppViewManagerUtils,
|
2015-07-10 19:09:18 -04:00
|
|
|
Serializer,
|
2015-08-18 17:46:35 -04:00
|
|
|
ELEMENT_PROBE_BINDINGS,
|
2015-04-24 20:53:06 -04:00
|
|
|
bind(APP_VIEW_POOL_CAPACITY).toValue(500),
|
2015-03-13 06:10:11 -04:00
|
|
|
Compiler,
|
|
|
|
CompilerCache,
|
2015-09-08 13:14:57 -04:00
|
|
|
bind(DirectiveResolver).toClass(MockDirectiveResolver),
|
2015-06-24 04:54:04 -04:00
|
|
|
bind(ViewResolver).toClass(MockViewResolver),
|
2015-08-07 14:41:38 -04:00
|
|
|
DEFAULT_PIPES,
|
2015-07-31 15:23:50 -04:00
|
|
|
bind(IterableDiffers).toValue(defaultIterableDiffers),
|
|
|
|
bind(KeyValueDiffers).toValue(defaultKeyValueDiffers),
|
2015-08-20 18:11:12 -04:00
|
|
|
bind(ChangeDetection).toValue(new DynamicChangeDetection()),
|
2015-07-31 15:23:50 -04:00
|
|
|
Log,
|
2015-06-24 04:43:36 -04:00
|
|
|
ViewLoader,
|
2015-04-06 16:19:30 -04:00
|
|
|
DynamicComponentLoader,
|
2015-08-07 14:41:38 -04:00
|
|
|
PipeResolver,
|
2015-03-13 06:10:11 -04:00
|
|
|
Parser,
|
|
|
|
Lexer,
|
2015-07-23 21:00:19 -04:00
|
|
|
bind(ExceptionHandler).toValue(new ExceptionHandler(DOM)),
|
2015-06-22 15:14:19 -04:00
|
|
|
bind(LocationStrategy).toClass(MockLocationStrategy),
|
2015-03-31 10:55:46 -04:00
|
|
|
bind(XHR).toClass(MockXHR),
|
2015-03-13 06:10:11 -04:00
|
|
|
ComponentUrlMapper,
|
|
|
|
UrlResolver,
|
2015-07-10 19:09:18 -04:00
|
|
|
AnchorBasedAppRootUrl,
|
|
|
|
bind(AppRootUrl).toAlias(AnchorBasedAppRootUrl),
|
2015-03-13 06:10:11 -04:00
|
|
|
StyleUrlResolver,
|
2015-03-30 10:37:33 -04:00
|
|
|
StyleInliner,
|
2015-05-15 19:42:52 -04:00
|
|
|
TestComponentBuilder,
|
2015-05-07 09:38:57 -04:00
|
|
|
bind(NgZone).toClass(MockNgZone),
|
2015-08-28 17:39:34 -04:00
|
|
|
bind(AnimationBuilder).toClass(MockAnimationBuilder),
|
2015-09-04 17:23:13 -04:00
|
|
|
EventManager,
|
|
|
|
new Binding(EVENT_MANAGER_PLUGINS, {toClass: DomEventsPlugin, multi: true})
|
2015-03-13 06:10:11 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-08-28 14:29:19 -04:00
|
|
|
export function createTestInjector(bindings: Array<Type | Binding | any[]>): Injector {
|
2015-04-10 20:05:31 -04:00
|
|
|
var rootInjector = Injector.resolveAndCreate(_getRootBindings());
|
|
|
|
return rootInjector.resolveAndCreateChild(ListWrapper.concat(_getAppBindings(), bindings));
|
2015-03-13 06:10:11 -04:00
|
|
|
}
|
|
|
|
|
2015-03-13 16:52:59 -04:00
|
|
|
/**
|
2015-03-13 13:48:29 -04:00
|
|
|
* Allows injecting dependencies in `beforeEach()` and `it()`.
|
2015-03-13 06:10:11 -04:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
2015-03-13 13:48:29 -04:00
|
|
|
* ```
|
|
|
|
* beforeEach(inject([Dependency, AClass], (dep, object) => {
|
|
|
|
* // some code that uses `dep` and `object`
|
|
|
|
* // ...
|
|
|
|
* }));
|
2015-03-13 06:10:11 -04:00
|
|
|
*
|
2015-03-13 13:48:29 -04:00
|
|
|
* it('...', inject([AClass, AsyncTestCompleter], (object, async) => {
|
|
|
|
* object.doSomething().then(() => {
|
|
|
|
* expect(...);
|
|
|
|
* async.done();
|
|
|
|
* });
|
|
|
|
* })
|
|
|
|
* ```
|
2015-03-13 06:10:11 -04:00
|
|
|
*
|
|
|
|
* Notes:
|
|
|
|
* - injecting an `AsyncTestCompleter` allow completing async tests - this is the equivalent of
|
|
|
|
* adding a `done` parameter in Jasmine,
|
|
|
|
* - inject is currently a function because of some Traceur limitation the syntax should eventually
|
|
|
|
* becomes `it('...', @Inject (object: AClass, async: AsyncTestCompleter) => { ... });`
|
|
|
|
*
|
|
|
|
* @param {Array} tokens
|
|
|
|
* @param {Function} fn
|
|
|
|
* @return {FunctionWithParamTokens}
|
|
|
|
*/
|
2015-08-28 14:29:19 -04:00
|
|
|
export function inject(tokens: any[], fn: Function): FunctionWithParamTokens {
|
2015-03-13 06:10:11 -04:00
|
|
|
return new FunctionWithParamTokens(tokens, fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
export class FunctionWithParamTokens {
|
2015-08-28 19:23:28 -04:00
|
|
|
constructor(private _tokens: any[], private _fn: Function) {}
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-07-17 18:00:52 -04:00
|
|
|
/**
|
|
|
|
* Returns the value of the executed function.
|
|
|
|
*/
|
|
|
|
execute(injector: Injector): any {
|
2015-03-13 06:10:11 -04:00
|
|
|
var params = ListWrapper.map(this._tokens, (t) => injector.get(t));
|
2015-07-17 18:00:52 -04:00
|
|
|
return FunctionWrapper.apply(this._fn, params);
|
2015-03-13 06:10:11 -04:00
|
|
|
}
|
2015-08-28 19:23:28 -04:00
|
|
|
|
|
|
|
hasToken(token: any): boolean { return this._tokens.indexOf(token) > -1; }
|
2015-03-13 06:10:11 -04:00
|
|
|
}
|