2015-05-20 20:19:46 -04:00
|
|
|
import {bind, Binding} from 'angular2/di';
|
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';
|
|
|
|
import {Reflector, reflector} from 'angular2/src/reflection/reflection';
|
2015-05-20 20:19:46 -04:00
|
|
|
import {
|
|
|
|
Parser,
|
|
|
|
Lexer,
|
|
|
|
ChangeDetection,
|
|
|
|
DynamicChangeDetection,
|
2015-07-09 13:34:51 -04:00
|
|
|
Pipes,
|
|
|
|
defaultPipes
|
2015-07-11 11:26:48 -04:00
|
|
|
} from 'angular2/src/change_detection/change_detection';
|
2015-03-13 06:10:11 -04:00
|
|
|
import {ExceptionHandler} from 'angular2/src/core/exception_handler';
|
2015-06-24 04:43:36 -04:00
|
|
|
import {ViewLoader} from 'angular2/src/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-04-06 16:19:30 -04:00
|
|
|
import {DynamicComponentLoader} from 'angular2/src/core/compiler/dynamic_component_loader';
|
2015-06-09 13:21:25 -04:00
|
|
|
import {XHR} from 'angular2/src/render/xhr';
|
2015-03-13 06:10:11 -04:00
|
|
|
import {ComponentUrlMapper} from 'angular2/src/core/compiler/component_url_mapper';
|
2015-04-02 12:52:00 -04:00
|
|
|
import {UrlResolver} from 'angular2/src/services/url_resolver';
|
2015-06-23 05:28:06 -04:00
|
|
|
import {AppRootUrl} from 'angular2/src/services/app_root_url';
|
2015-07-10 19:09:18 -04:00
|
|
|
import {AnchorBasedAppRootUrl} from 'angular2/src/services/anchor_based_app_root_url';
|
2015-06-15 09:57:42 -04:00
|
|
|
import {StyleUrlResolver} from 'angular2/src/render/dom/compiler/style_url_resolver';
|
|
|
|
import {StyleInliner} from 'angular2/src/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
|
|
|
|
|
|
|
import {DOM} from 'angular2/src/dom/dom_adapter';
|
|
|
|
|
|
|
|
import {EventManager, DomEventsPlugin} from 'angular2/src/render/dom/events/event_manager';
|
|
|
|
|
2015-06-24 04:54:04 -04:00
|
|
|
import {MockViewResolver} from 'angular2/src/mock/view_resolver_mock';
|
2015-06-09 13:21:25 -04:00
|
|
|
import {MockXHR} from 'angular2/src/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
|
|
|
|
|
|
|
import {Injector} from 'angular2/di';
|
|
|
|
|
|
|
|
import {List, ListWrapper} from 'angular2/src/facade/collection';
|
2015-05-20 20:19:46 -04:00
|
|
|
import {FunctionWrapper, Type} from 'angular2/src/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-05-28 18:02:20 -04:00
|
|
|
import {ELEMENT_PROBE_CONFIG} from 'angular2/debug';
|
2015-04-07 23:54:20 -04:00
|
|
|
import {ProtoViewFactory} from 'angular2/src/core/compiler/proto_view_factory';
|
2015-05-06 13:17:38 -04:00
|
|
|
import {RenderCompiler, Renderer} from 'angular2/src/render/api';
|
2015-07-15 13:55:44 -04:00
|
|
|
import {
|
|
|
|
DomRenderer,
|
|
|
|
DOCUMENT_TOKEN,
|
2015-07-24 18:28:44 -04:00
|
|
|
DOM_REFLECT_PROPERTIES_AS_ATTRIBUTES,
|
|
|
|
DefaultDomCompiler,
|
|
|
|
APP_ID_TOKEN,
|
|
|
|
SharedStylesHost,
|
|
|
|
DomSharedStylesHost
|
|
|
|
} from 'angular2/src/render/render';
|
2015-07-29 08:01:18 -04:00
|
|
|
import {ElementSchemaRegistry} from 'angular2/src/render/dom/schema/element_schema_registry';
|
|
|
|
import {DomElementSchemaRegistry} from 'angular2/src/render/dom/schema/dom_element_schema_registry';
|
2015-07-10 19:09:18 -04:00
|
|
|
import {Serializer} from "angular2/src/web-workers/shared/serializer";
|
2015-07-15 16:26:02 -04:00
|
|
|
import {Log} from './utils';
|
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-07-22 13:18:04 -04:00
|
|
|
appDoc = DOM.createHtmlDocument();
|
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-05-20 20:19:46 -04:00
|
|
|
bind(DOCUMENT_TOKEN)
|
|
|
|
.toValue(appDoc),
|
2015-05-06 13:49:42 -04:00
|
|
|
DomRenderer,
|
|
|
|
bind(Renderer).toAlias(DomRenderer),
|
2015-07-24 18:28:44 -04:00
|
|
|
bind(APP_ID_TOKEN).toValue('a'),
|
|
|
|
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),
|
|
|
|
bind(DOM_REFLECT_PROPERTIES_AS_ATTRIBUTES).toValue(false),
|
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-05-28 18:02:20 -04:00
|
|
|
ELEMENT_PROBE_CONFIG,
|
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-06-24 04:54:04 -04:00
|
|
|
bind(ViewResolver).toClass(MockViewResolver),
|
2015-07-09 13:34:51 -04:00
|
|
|
bind(Pipes).toValue(defaultPipes),
|
2015-07-15 16:26:02 -04:00
|
|
|
Log,
|
2015-04-13 12:50:02 -04:00
|
|
|
bind(ChangeDetection).toClass(DynamicChangeDetection),
|
2015-06-24 04:43:36 -04:00
|
|
|
ViewLoader,
|
2015-04-06 16:19:30 -04:00
|
|
|
DynamicComponentLoader,
|
2015-05-11 20:59:39 -04:00
|
|
|
DirectiveResolver,
|
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-05-20 20:19:46 -04:00
|
|
|
bind(EventManager)
|
2015-06-03 16:42:57 -04:00
|
|
|
.toFactory(
|
|
|
|
(zone) => {
|
|
|
|
var plugins = [
|
|
|
|
new DomEventsPlugin(),
|
|
|
|
];
|
|
|
|
return new EventManager(plugins, zone);
|
|
|
|
},
|
|
|
|
[NgZone]),
|
2015-03-13 06:10:11 -04:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-05-20 20:19:46 -04:00
|
|
|
export function createTestInjector(bindings: List<Type | Binding | List<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-05-20 20:19:46 -04:00
|
|
|
export function inject(tokens: List<any>, fn: Function): FunctionWithParamTokens {
|
2015-03-13 06:10:11 -04:00
|
|
|
return new FunctionWithParamTokens(tokens, fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
export class FunctionWithParamTokens {
|
2015-05-20 20:19:46 -04:00
|
|
|
_tokens: List<any>;
|
2015-03-13 06:10:11 -04:00
|
|
|
_fn: Function;
|
|
|
|
|
2015-05-20 20:19:46 -04:00
|
|
|
constructor(tokens: List<any>, fn: Function) {
|
2015-03-13 06:10:11 -04:00
|
|
|
this._tokens = tokens;
|
|
|
|
this._fn = fn;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|