2015-05-22 18:39:28 -04:00
|
|
|
import {isBlank, BaseException, stringify} from 'angular2/src/facade/lang';
|
2015-02-05 16:08:05 -05:00
|
|
|
import {describe, ddescribe, it, iit, expect, beforeEach} from 'angular2/test_lib';
|
2015-05-22 18:39:28 -04:00
|
|
|
import {
|
|
|
|
Injector,
|
|
|
|
bind,
|
|
|
|
ResolvedBinding,
|
|
|
|
Key,
|
|
|
|
forwardRef,
|
|
|
|
DependencyAnnotation,
|
|
|
|
Injectable
|
|
|
|
} from 'angular2/di';
|
|
|
|
import {Optional, Inject, InjectLazy} from 'angular2/src/di/decorators';
|
|
|
|
import * as ann from 'angular2/src/di/annotations_impl';
|
|
|
|
|
|
|
|
class CustomDependencyAnnotation extends DependencyAnnotation {}
|
|
|
|
|
|
|
|
class Engine {}
|
2014-10-07 10:34:07 -04:00
|
|
|
|
2014-10-06 10:13:33 -04:00
|
|
|
class BrokenEngine {
|
2015-05-22 18:39:28 -04:00
|
|
|
constructor() { throw new BaseException("Broken Engine"); }
|
2014-10-06 10:13:33 -04:00
|
|
|
}
|
2014-10-07 10:34:07 -04:00
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
class DashboardSoftware {}
|
2014-10-07 10:34:07 -04:00
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-10-03 17:26:49 -04:00
|
|
|
class Dashboard {
|
2014-10-07 10:34:07 -04:00
|
|
|
constructor(software: DashboardSoftware) {}
|
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
class TurboEngine extends Engine {}
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-09-30 14:56:33 -04:00
|
|
|
class Car {
|
2015-05-22 18:39:28 -04:00
|
|
|
engine: Engine;
|
|
|
|
constructor(engine: Engine) { this.engine = engine; }
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-10-06 13:45:24 -04:00
|
|
|
class CarWithLazyEngine {
|
2014-11-22 00:19:23 -05:00
|
|
|
engineFactory;
|
2015-05-22 18:39:28 -04:00
|
|
|
constructor(@InjectLazy(Engine) engineFactory) { this.engineFactory = engineFactory; }
|
2014-10-06 13:45:24 -04:00
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2015-02-27 10:42:51 -05:00
|
|
|
class CarWithOptionalEngine {
|
|
|
|
engine;
|
2015-05-22 18:39:28 -04:00
|
|
|
constructor(@Optional() engine: Engine) { this.engine = engine; }
|
2015-02-27 10:42:51 -05:00
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-09-30 14:56:33 -04:00
|
|
|
class CarWithDashboard {
|
2015-05-22 18:39:28 -04:00
|
|
|
engine: Engine;
|
|
|
|
dashboard: Dashboard;
|
|
|
|
constructor(engine: Engine, dashboard: Dashboard) {
|
2014-09-30 14:56:33 -04:00
|
|
|
this.engine = engine;
|
|
|
|
this.dashboard = dashboard;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-09-30 14:56:33 -04:00
|
|
|
class SportsCar extends Car {
|
2015-05-22 18:39:28 -04:00
|
|
|
engine: Engine;
|
|
|
|
constructor(engine: Engine) { super(engine); }
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-09-30 14:56:33 -04:00
|
|
|
class CarWithInject {
|
2015-05-22 18:39:28 -04:00
|
|
|
engine: Engine;
|
|
|
|
constructor(@Inject(TurboEngine) engine: Engine) { this.engine = engine; }
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
@Injectable()
|
2014-10-06 10:13:33 -04:00
|
|
|
class CyclicEngine {
|
2015-05-22 18:39:28 -04:00
|
|
|
constructor(car: Car) {}
|
2014-10-06 10:13:33 -04:00
|
|
|
}
|
|
|
|
|
2014-10-05 16:25:42 -04:00
|
|
|
class NoAnnotations {
|
2014-10-07 10:34:07 -04:00
|
|
|
constructor(secretDependency) {}
|
2014-10-05 16:25:42 -04:00
|
|
|
}
|
|
|
|
|
2014-09-30 14:56:33 -04:00
|
|
|
export function main() {
|
2015-05-26 04:55:12 -04:00
|
|
|
describe('injector', () => {
|
2015-04-24 18:19:11 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should instantiate a class without dependencies', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Engine]);
|
2014-09-30 14:56:33 -04:00
|
|
|
var engine = injector.get(Engine);
|
|
|
|
|
|
|
|
expect(engine).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should resolve dependencies based on type information', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Engine, Car]);
|
2014-09-30 14:56:33 -04:00
|
|
|
var car = injector.get(Car);
|
|
|
|
|
|
|
|
expect(car).toBeAnInstanceOf(Car);
|
|
|
|
expect(car.engine).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should resolve dependencies based on @Inject annotation', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([TurboEngine, Engine, CarWithInject]);
|
2014-09-30 14:56:33 -04:00
|
|
|
var car = injector.get(CarWithInject);
|
|
|
|
|
|
|
|
expect(car).toBeAnInstanceOf(CarWithInject);
|
|
|
|
expect(car.engine).toBeAnInstanceOf(TurboEngine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should throw when no type and not @Inject', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
expect(() => Injector.resolveAndCreate([NoAnnotations]))
|
2015-05-18 20:19:54 -04:00
|
|
|
.toThrowError('Cannot resolve all parameters for NoAnnotations(?). ' +
|
2015-05-22 18:39:28 -04:00
|
|
|
'Make sure they all have valid type or annotations.');
|
2014-10-05 16:25:42 -04:00
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should cache instances', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Engine]);
|
2014-09-30 14:56:33 -04:00
|
|
|
|
|
|
|
var e1 = injector.get(Engine);
|
|
|
|
var e2 = injector.get(Engine);
|
|
|
|
|
|
|
|
expect(e1).toBe(e2);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should bind to a value', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([bind(Engine).toValue("fake engine")]);
|
2014-09-30 14:56:33 -04:00
|
|
|
|
|
|
|
var engine = injector.get(Engine);
|
|
|
|
expect(engine).toEqual("fake engine");
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should bind to a factory', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
function sportsCarFactory(e) { return new SportsCar(e); }
|
2014-10-09 11:35:13 -04:00
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector =
|
|
|
|
Injector.resolveAndCreate([Engine, bind(Car).toFactory(sportsCarFactory, [Engine])]);
|
2014-10-09 11:35:13 -04:00
|
|
|
|
|
|
|
var car = injector.get(Car);
|
|
|
|
expect(car).toBeAnInstanceOf(SportsCar);
|
|
|
|
expect(car.engine).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should bind to an alias', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate(
|
|
|
|
[Engine, bind(SportsCar).toClass(SportsCar), bind(Car).toAlias(SportsCar)]);
|
2015-02-21 09:18:06 -05:00
|
|
|
|
|
|
|
var car = injector.get(Car);
|
|
|
|
var sportsCar = injector.get(SportsCar);
|
|
|
|
expect(car).toBeAnInstanceOf(SportsCar);
|
|
|
|
expect(car).toBe(sportsCar);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should throw when the aliased binding does not exist', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([bind('car').toAlias(SportsCar)]);
|
|
|
|
var e = `No provider for ${stringify(SportsCar)}! (car -> ${stringify(SportsCar)})`;
|
|
|
|
expect(() => injector.get('car')).toThrowError(e);
|
2015-02-21 09:18:06 -05:00
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should throw with a meaningful message when the aliased binding is blank', () => {
|
|
|
|
expect(() => bind('car').toAlias(null)).toThrowError('Can not alias car to a blank value!');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should handle forwardRef in toAlias', () => {
|
2015-05-20 16:46:55 -04:00
|
|
|
var injector = Injector.resolveAndCreate([
|
2015-05-22 18:39:28 -04:00
|
|
|
bind('originalEngine')
|
|
|
|
.toClass(forwardRef(() => Engine)),
|
2015-05-20 16:46:55 -04:00
|
|
|
bind('aliasedEngine').toAlias(forwardRef(() => 'originalEngine'))
|
|
|
|
]);
|
|
|
|
expect(injector.get('aliasedEngine')).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should support overriding factory dependencies', () => {
|
2015-06-03 16:42:57 -04:00
|
|
|
var injector = Injector.resolveAndCreate(
|
|
|
|
[Engine, bind(Car).toFactory((e) => new SportsCar(e), [Engine])]);
|
2014-09-30 14:56:33 -04:00
|
|
|
|
|
|
|
var car = injector.get(Car);
|
|
|
|
expect(car).toBeAnInstanceOf(SportsCar);
|
|
|
|
expect(car.engine).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should support optional dependencies', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([CarWithOptionalEngine]);
|
2015-02-27 10:42:51 -05:00
|
|
|
|
|
|
|
var car = injector.get(CarWithOptionalEngine);
|
|
|
|
expect(car.engine).toEqual(null);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it("should flatten passed-in bindings", () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([[[Engine, Car]]]);
|
2014-10-09 12:18:35 -04:00
|
|
|
|
|
|
|
var car = injector.get(Car);
|
|
|
|
expect(car).toBeAnInstanceOf(Car);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it("should use the last binding when there are multiple bindings for same token", () => {
|
2015-06-03 16:42:57 -04:00
|
|
|
var injector = Injector.resolveAndCreate(
|
|
|
|
[bind(Engine).toClass(Engine), bind(Engine).toClass(TurboEngine)]);
|
2015-01-08 12:11:33 -05:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
expect(injector.get(Engine)).toBeAnInstanceOf(TurboEngine);
|
|
|
|
});
|
2015-01-08 12:11:33 -05:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should use non-type tokens', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([bind('token').toValue('value')]);
|
2014-09-30 14:56:33 -04:00
|
|
|
|
|
|
|
expect(injector.get('token')).toEqual('value');
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should throw when given invalid bindings', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
expect(() => Injector.resolveAndCreate(<any>["blah"]))
|
|
|
|
.toThrowError(
|
|
|
|
'Invalid binding - only instances of Binding and Type are allowed, got: blah');
|
|
|
|
expect(() => Injector.resolveAndCreate(<any>[bind("blah")]))
|
|
|
|
.toThrowError('Invalid binding - only instances of Binding and Type are allowed, ' +
|
|
|
|
'got: blah');
|
2014-09-30 14:56:33 -04:00
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should provide itself', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var parent = Injector.resolveAndCreate([]);
|
|
|
|
var child = parent.resolveAndCreateChild([]);
|
2014-09-30 14:56:33 -04:00
|
|
|
|
|
|
|
expect(child.get(Injector)).toBe(child);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should throw when no provider defined', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([]);
|
2014-09-30 14:56:33 -04:00
|
|
|
expect(() => injector.get('NonExisting')).toThrowError('No provider for NonExisting!');
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should show the full path when no provider', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([CarWithDashboard, Engine, Dashboard]);
|
2015-05-22 18:39:28 -04:00
|
|
|
expect(() => injector.get(CarWithDashboard))
|
|
|
|
.toThrowError(
|
|
|
|
`No provider for DashboardSoftware! (${stringify(CarWithDashboard)} -> ${stringify(Dashboard)} -> DashboardSoftware)`);
|
2014-09-30 14:56:33 -04:00
|
|
|
});
|
2014-10-06 10:13:33 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should throw when trying to instantiate a cyclic dependency', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Car, bind(Engine).toClass(CyclicEngine)]);
|
2014-10-06 10:13:33 -04:00
|
|
|
|
|
|
|
expect(() => injector.get(Car))
|
2015-05-22 18:39:28 -04:00
|
|
|
.toThrowError(
|
|
|
|
`Cannot instantiate cyclic dependency! (${stringify(Car)} -> ${stringify(Engine)} -> ${stringify(Car)})`);
|
2014-10-06 16:24:12 -04:00
|
|
|
|
|
|
|
expect(() => injector.asyncGet(Car))
|
2015-05-22 18:39:28 -04:00
|
|
|
.toThrowError(
|
|
|
|
`Cannot instantiate cyclic dependency! (${stringify(Car)} -> ${stringify(Engine)} -> ${stringify(Car)})`);
|
2014-10-06 10:13:33 -04:00
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should show the full path when error happens in a constructor', () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Car, bind(Engine).toClass(BrokenEngine)]);
|
2014-10-06 10:13:33 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
injector.get(Car);
|
|
|
|
throw "Must throw";
|
|
|
|
} catch (e) {
|
2015-05-22 18:39:28 -04:00
|
|
|
expect(e.message)
|
|
|
|
.toContain(`Error during instantiation of Engine! (${stringify(Car)} -> Engine)`);
|
2015-04-20 09:35:16 -04:00
|
|
|
expect(e.cause instanceof BaseException).toBeTruthy();
|
|
|
|
expect(e.causeKey.token).toEqual(Engine);
|
2014-10-06 10:13:33 -04:00
|
|
|
}
|
|
|
|
});
|
2014-10-06 13:45:24 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should instantiate an object after a failed attempt', () => {
|
2014-10-09 11:03:36 -04:00
|
|
|
var isBroken = true;
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate(
|
|
|
|
[Car, bind(Engine).toFactory(() => isBroken ? new BrokenEngine() : new Engine())]);
|
2014-10-09 11:03:36 -04:00
|
|
|
|
2014-10-10 10:00:23 -04:00
|
|
|
expect(() => injector.get(Car)).toThrowError(new RegExp("Error"));
|
2014-10-09 11:03:36 -04:00
|
|
|
|
|
|
|
isBroken = false;
|
|
|
|
|
|
|
|
expect(injector.get(Car)).toBeAnInstanceOf(Car);
|
|
|
|
});
|
|
|
|
|
2015-03-11 10:14:16 -04:00
|
|
|
it('should support null values', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var injector = Injector.resolveAndCreate([bind('null').toValue(null)]);
|
2015-03-11 10:14:16 -04:00
|
|
|
expect(injector.get('null')).toBe(null);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
describe("default bindings", () => {
|
|
|
|
it("should be used when no matching binding found", () => {
|
2015-06-03 16:42:57 -04:00
|
|
|
var injector = Injector.resolveAndCreate([], {defaultBindings: true});
|
2014-10-10 11:36:06 -04:00
|
|
|
|
|
|
|
var car = injector.get(Car);
|
|
|
|
|
|
|
|
expect(car).toBeAnInstanceOf(Car);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it("should use the matching binding when it is available", () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector =
|
|
|
|
Injector.resolveAndCreate([bind(Car).toClass(SportsCar)], {defaultBindings: true});
|
2014-10-10 11:36:06 -04:00
|
|
|
|
|
|
|
var car = injector.get(Car);
|
|
|
|
|
|
|
|
expect(car).toBeAnInstanceOf(SportsCar);
|
|
|
|
});
|
|
|
|
});
|
2014-10-06 13:45:24 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
describe("child", () => {
|
|
|
|
it('should load instances from parent injector', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var parent = Injector.resolveAndCreate([Engine]);
|
|
|
|
var child = parent.resolveAndCreateChild([]);
|
2014-10-06 13:45:24 -04:00
|
|
|
|
|
|
|
var engineFromParent = parent.get(Engine);
|
|
|
|
var engineFromChild = child.get(Engine);
|
|
|
|
|
|
|
|
expect(engineFromChild).toBe(engineFromParent);
|
|
|
|
});
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
it("should not use the child bindings when resolving the dependencies of a parent binding",
|
2015-05-26 04:55:12 -04:00
|
|
|
() => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var parent = Injector.resolveAndCreate([Car, Engine]);
|
|
|
|
var child = parent.resolveAndCreateChild([bind(Engine).toClass(TurboEngine)]);
|
2015-02-05 12:44:50 -05:00
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
var carFromChild = child.get(Car);
|
|
|
|
expect(carFromChild.engine).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
2015-02-05 12:44:50 -05:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should create new instance in a child injector', () => {
|
2015-04-10 20:05:31 -04:00
|
|
|
var parent = Injector.resolveAndCreate([Engine]);
|
2015-05-22 18:39:28 -04:00
|
|
|
var child = parent.resolveAndCreateChild([bind(Engine).toClass(TurboEngine)]);
|
2014-10-06 13:45:24 -04:00
|
|
|
|
|
|
|
var engineFromParent = parent.get(Engine);
|
|
|
|
var engineFromChild = child.get(Engine);
|
|
|
|
|
|
|
|
expect(engineFromParent).not.toBe(engineFromChild);
|
|
|
|
expect(engineFromChild).toBeAnInstanceOf(TurboEngine);
|
|
|
|
});
|
2014-10-10 11:36:06 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it("should create child injectors without default bindings", () => {
|
2015-06-03 16:42:57 -04:00
|
|
|
var parent = Injector.resolveAndCreate([], {defaultBindings: true});
|
2015-04-10 20:05:31 -04:00
|
|
|
var child = parent.resolveAndCreateChild([]);
|
2014-10-10 11:36:06 -04:00
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
// child delegates to parent the creation of Car
|
2014-10-10 11:36:06 -04:00
|
|
|
var childCar = child.get(Car);
|
|
|
|
var parentCar = parent.get(Car);
|
|
|
|
|
|
|
|
expect(childCar).toBe(parentCar);
|
|
|
|
});
|
2015-05-08 19:24:17 -04:00
|
|
|
|
|
|
|
it("should give access to direct parent", () => {
|
|
|
|
var parent = Injector.resolveAndCreate([]);
|
|
|
|
var child = parent.resolveAndCreateChild([]);
|
|
|
|
expect(child.parent).toBe(parent);
|
|
|
|
});
|
2014-10-06 13:45:24 -04:00
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
describe("lazy", () => {
|
|
|
|
it("should create dependencies lazily", () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Engine, CarWithLazyEngine]);
|
2014-10-06 13:45:24 -04:00
|
|
|
|
|
|
|
var car = injector.get(CarWithLazyEngine);
|
|
|
|
expect(car.engineFactory()).toBeAnInstanceOf(Engine);
|
|
|
|
});
|
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it("should cache instance created lazily", () => {
|
2015-05-22 18:39:28 -04:00
|
|
|
var injector = Injector.resolveAndCreate([Engine, CarWithLazyEngine]);
|
2014-10-06 13:45:24 -04:00
|
|
|
|
|
|
|
var car = injector.get(CarWithLazyEngine);
|
|
|
|
var e1 = car.engineFactory();
|
|
|
|
var e2 = car.engineFactory();
|
|
|
|
|
|
|
|
expect(e1).toBe(e2);
|
|
|
|
});
|
|
|
|
});
|
2015-04-11 19:57:42 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
describe('resolve', () => {
|
2015-05-13 18:54:46 -04:00
|
|
|
it('should resolve and flatten', () => {
|
2015-04-11 19:57:42 -04:00
|
|
|
var bindings = Injector.resolve([Engine, [BrokenEngine]]);
|
|
|
|
bindings.forEach(function(b) {
|
|
|
|
if (isBlank(b)) return; // the result is a sparse array
|
|
|
|
expect(b instanceof ResolvedBinding).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
2015-05-13 18:54:46 -04:00
|
|
|
|
|
|
|
it('should resolve forward references', () => {
|
|
|
|
var bindings = Injector.resolve([
|
|
|
|
forwardRef(() => Engine),
|
2015-05-22 18:39:28 -04:00
|
|
|
[bind(forwardRef(() => BrokenEngine)).toClass(forwardRef(() => Engine))],
|
2015-05-13 18:54:46 -04:00
|
|
|
bind(forwardRef(() => String)).toFactory(() => 'OK', [forwardRef(() => Engine)]),
|
2015-05-22 18:39:28 -04:00
|
|
|
bind(forwardRef(() => DashboardSoftware))
|
|
|
|
.toAsyncFactory(() => 123, [forwardRef(() => BrokenEngine)])
|
2015-05-13 18:54:46 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
var engineBinding = bindings[Key.get(Engine).id];
|
|
|
|
var brokenEngineBinding = bindings[Key.get(BrokenEngine).id];
|
|
|
|
var stringBinding = bindings[Key.get(String).id];
|
|
|
|
var dashboardSoftwareBinding = bindings[Key.get(DashboardSoftware).id];
|
|
|
|
|
|
|
|
expect(engineBinding.factory() instanceof Engine).toBe(true);
|
|
|
|
expect(brokenEngineBinding.factory() instanceof Engine).toBe(true);
|
|
|
|
expect(stringBinding.dependencies[0].key).toEqual(Key.get(Engine));
|
|
|
|
expect(dashboardSoftwareBinding.dependencies[0].key).toEqual(Key.get(BrokenEngine));
|
|
|
|
});
|
2015-05-21 11:34:48 -04:00
|
|
|
|
2015-05-26 04:55:12 -04:00
|
|
|
it('should support overriding factory dependencies with dependency annotations', () => {
|
2015-06-03 16:42:57 -04:00
|
|
|
var bindings = Injector.resolve([
|
|
|
|
bind("token")
|
|
|
|
.toFactory((e) => "result",
|
|
|
|
[[new ann.Inject("dep"), new CustomDependencyAnnotation()]])
|
|
|
|
]);
|
2015-05-21 11:34:48 -04:00
|
|
|
var binding = bindings[Key.get("token").id];
|
|
|
|
|
2015-05-22 18:39:28 -04:00
|
|
|
expect(binding.dependencies[0].key.token).toEqual("dep");
|
2015-05-21 11:34:48 -04:00
|
|
|
expect(binding.dependencies[0].properties).toEqual([new CustomDependencyAnnotation()]);
|
|
|
|
});
|
2015-04-11 19:57:42 -04:00
|
|
|
});
|
2014-09-30 14:56:33 -04:00
|
|
|
});
|
2015-02-21 09:18:06 -05:00
|
|
|
}
|