unit-testing - 单元测试 typescript 指令模板 karma-jasmine,未定义 html

标签 unit-testing typescript jasmine karma-runner angular-directive

最近我开始使用 karma-jasmine 对我的 typescript 代码进行单元测试。在为服务和简单​​指令创建并运行测试用例后,我为自定义指令创建了一个测试用例,它有一个 Controller (注入(inject)一项服务)并使用 4 个范围变量与外界通信。

这是一个简单的单元测试用例,用于检查指令是否呈现其模板。

在运行这个单元测试用例时,karma 抛出一些错误

09 03 2016 19:59:27.056:INFO [framework.browserify]: bundle built
09 03 2016 19:59:27.063:INFO [karma]: Karma v0.13.21 server started at http://localhost:9876/
09 03 2016 19:59:29.964:INFO [Chrome 49.0.2623 (Linux 0.0.0)]: Connected on socket /#4OCi116hP6TDqCsmAAAA with id manual-1348
LOG: Object{0: <normal-directive></normal-directive>, length: 1}
Chrome 49.0.2623 (Linux 0.0.0) normal should render the template FAILED
Error: [$injector:unpr] Unknown provider: FacadeServiceProvider <- FacadeService
http://errors.angularjs.org/1.5.0/$injector/unpr?p0=FacadeServiceProvider%20%3C-%20FacadeService

//some reference to file
TypeError: Cannot read property 'html' of undefined
    at Object.<anonymous> (/tmp/5c59a59c62f48798a123b52b0468515b.browserify:476:23

在调试它时,我了解到它正在将“normal-directive”视为普通文本而不是 html 标签。

normal-directive.spec.ts

import {appName} from '../../../../main';
import NormalController from '../../../../components/normalManager/normalList/NormalController';

describe('normalManager.normalList', () => {
    let $compile:angular.ICompileService,
        $rootScope:any,
        template:angular.IAugmentedJQuery,
        element:angular.IAugmentedJQuery,
        controller:NormalController,
        controllerSpy:jasmine.Spy;

    beforeEach(() => {
        angular.mock.module(appName);

        inject((_$compile_:ng.ICompileService, _$rootScope_:ng.IRootScopeService) => {
            $compile = _$compile_;
            $rootScope = _$rootScope_;
        });

        template = angular.element('<div normal-directive></div>');
        element = $compile(template)($rootScope);//getting error on this line.
        controller = element.controller('normalList');

        $rootScope.$digest();
    });

    it('should render the component', () => {
        expect(element.html()).toContain('<!-- normalManager.normalList -->');
    });
});

normal-directive.ts

import * as angular from 'angular';
import {normalController} from './normalController';
import {html} from './normal.html'

module normal {
    "use strict";
    export class normal {
        public link: (scope: ng.IScope, element: ng.IAugmentedJQuery, attrs: ng.IAttributes) => void;
        public template = html;
        public scope = {
            ngNormalVariables: '=',
            ngNormalData: '=',
            ngDifferentType: '=',
            ngType: '='
        };
        public restrict: string = 'EA';
        public controller =  normalController;
        public controllerAs: string =  'vm';
        public bindToController:boolean =  true;

        constructor() {
            normal.prototype.link = (scope: ng.IScope, element: ng.IAugmentedJQuery, attrs: ng.IAttributes) => {

            };
        }

        public static Factory() {
            var directive = () => {
                return new normal();
            };

            directive['$inject'] = [];
            return directive;
        }
    }
}

export default normal;

normalController.ts

import {IfcNormalFacadeService} from '../../../normal_core/services/NormalFacadeService/IfcNormalFacadeService'
export class normalController {
    //Variable injection
    private normalFacadeService: IfcNormalFacadeService;

    public xVariableVal = null;
    public yVariableVal = null;

    //Scope variables
    private ngNormalData = {x:null, y:null, t:null, z:null};
    private ngNormalVariables = {x: [], y:[], t:[], z:[]};
    private ngType = null;
    private ngDifferentType = null;

    constructor(normalFacadeService: IfcNormalFacadeService) {
        console.log("Inside Normal controller");
        this.normalFacadeService = normalFacadeService;
    }

    ....//Remaining code
}

我指的是 this repo 编写测试用例和 typescript 自定义指令代码。

如果您需要更多信息,请告诉我。如果你知道任何具体的博客/网站来了解更多关于 typescript 的 karma-jasmine 单元测试,请告诉我。

感谢您抽出宝贵时间阅读。

问候

阿杰

最佳答案

我需要为 facadeService 做一个模拟。

演示 mocks.ts

import {IfcFacadeService} from 'filePath'

export const facadeServiceMock: IfcFacadeService {

    methodName: (): any => {}; 

}

要使用这个模拟,导入它

演示 .html.spec.ts

import {facadeServiceMock} from 'mockPathName'

beforeEach(()=>{
angular.mock.module(appName), {FacadeService: facadeServiceMock});
})

关于unit-testing - 单元测试 typescript 指令模板 karma-jasmine,未定义 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35895268/

相关文章:

reactjs - 调用 Jest 模拟函数。但模拟的状态没有更新?

typescript - 错误的功能分配

javascript - ionic 中 onTap 和 popUp 上 'this' 的范围是 'undefined'

javascript - Jasmine:返回 promise 的测试是一个具体的异常

php - 如何跳过 PHPUnit 中的错误测试?

java - 具有双值的 hashMap 的 Junit 测试

每个项目的键之间具有相同泛型类型的类数组类型

javascript - DRY Jasmine 测试 - 在多个 .js 文件之间共享代码

angular - Protractor typescript 页面对象属性未定义

unit-testing - 如何在.NET中伪造Azure表存储以进行单元测试?