This is a special angular injector builder for unit testing purposes.
It creates an injector configuration that automatically mocks all dependencies of tested unit with moq.ts.
It can be used with angular TestBed class and with a regular injector.
Here is adapted test configuration example from the official angular documentation.
import "reflect-metadata";
import { moqInjectorProviders, resolveMock } from "ng-auto-moq";
import { MoqAPI } from "moq.ts";
@Injectable()
export class MasterService {
constructor(private valueService: ValueService) { }
getValue() { return this.valueService.getValue(); }
}
@Injectable()
export class ValueService {
getValue() { return 10; }
}
let masterService: MasterService;
let valueService: ValueService;
beforeEach(() => {
TestBed.configureTestingModule({
providers: moqInjectorProviders(MasterService)
});
masterService = TestBed.get(MasterService);
valueService = TestBed.get(ValueService);
(valueService[MoqAPI] as IMock<ValueService>)
.setup(instance => instance.getValue())
.returns(-1);
resolveMock(ValueService, TestBed.get(Injector))
.setup(instance => instance.getValue())
.returns(-1);
});
Services testing could be also done in simplified manner with a regular injector. With this approach tests
could be performed in nodejs environment without involving a browser. It gives performance improvement and less dependencies should be install, suits well for CI environment.
If you are using jasmine
just run it from command prompt with the following command:
jasmine *.spec.js
import "reflect-metadata";
import { moqInjectorProviders, resolveMock } from "ng-auto-moq";
import {It} from "moq.ts";
import { Injectable, Injector } from "@angular/core";
@Injectable()
export class ValueService {
getValue(options: { value: number }) {
return options.value * 10;
}
}
@Injectable()
export class MasterService {
constructor(private valueService: ValueService) {
}
getValue(value: number) {
return this.valueService.getValue({value});
}
}
describe("Integration test", () => {
let injector: Injector;
beforeEach(() => {
const providers = moqInjectorProviders(MasterService);
injector = Injector.create({providers});
});
it("Returns provided value", () => {
resolveMock(ValueService, injector)
.setup(instance => instance.getValue(It.Is(opt => expect(opt).toEqual({value: 1}))))
.returns(-1);
const tested = injector.get(MasterService);
const actual = tested.getValue(1);
expect(actual).toBe(-1);
});
});
With options of moqInjectorProviders you can control how dependencies are configured.
Let's say you have a class with @Optional dependency, and you want to test both cases when
the dependency is available and when it isn't.
import "reflect-metadata";
import { moqInjectorProviders, DefaultProviderFactory, IParameter, ProviderFactory } from "ng-auto-moq";
@Injectable()
export class MasterService {
constructor(@Optional() private valueService: ValueService) { }
getValue() { return this.valueService ? this.valueService.getValue() : -1; }
}
it("Returns provided value when optional dependencies are not available", ()=>{
const providerFactory: ProviderFactory = (parameter: IParameter, mocked: Type<any>, defaultProviderFactory: DefaultProviderFactory) => {
if (parameter.optional === true) {
return undefined;
}
return defaultProviderFactory(parameter, mocked);
};
const providers = moqInjectorProviders(MasterService, {providerFactory});
const injector = Injector.create({providers});
const tested = injector.get(MasterService);
const actual = tested.getValue();
expect(actual).toBe(-1);
})
Another option is mockFactory that allows to customize the dependency mocking process. You can pre configure the mock
and decide to throw an exception when interaction with the mocked object is not expected.
import "reflect-metadata";
import { moqInjectorProviders, MockFactory, IParameter, DefaultMockFactory } from "ng-auto-moq";
import { It } from "moq.ts";
let injector: Injector;
beforeEach(() => {
const mockFactory: MockFactory = (parameter: IParameter, defaultMockFactory: DefaultMockFactory) =>{
return defaultMockFactory(parameter)
.setup(() => It.IsAny())
.throws(new Error("setup is missed"));
};
injector = Injector.create(moqInjectorProviders(MasterService, {mockFactory}));
});
it("Throws an exception", ()=>{
const tested = injector.get(MasterService);
expect(()=> tested.getValue()).toThrow();
})