单元测试自定义文件输入指令

时间:2016-03-15 17:36:25

标签: javascript angularjs unit-testing angularjs-directive jasmine

我遇到了一个很大的问题,让单元测试用于角度1.5.0和Jasmine 2.4的自定义文件指令,我看了

How to provide mock files to change event of <input type='file'> for unit testing

然而,这似乎只适用于原始输入文件字段而不是自定义指令。

首先是指令,相当直接的模型赋值。我还在范围上触发了一个外部函数,我确保它在单元测试中,并且不会从中获得任何错误。我只是因为我的生活不能强制在文件输入上发生更改事件。

app.directive('fileModel', fileModel);
fileModel.$inject = ['$parse', '$log'];

function fileModel ($parse, $log) {
    return {
        restrict: 'A',
        link: function(scope, element, attrs) {
            var model = $parse(attrs.fileModel);
            var modelSetter = model.assign;

            element.bind('change', function(){

                scope.$apply(function(){
                    modelSetter(scope, element[0].files);
                    scope.parseFolder(scope.myFolder);
                });
            });
        }
    };
}

这是单元测试,现在我正试图通过一个按钮触发和事件,因为我无法获得手动事件触发器,但这也不起作用。

describe('fileModel', function () {

    var $compile, $rootScope, directiveElem;

    beforeEach(module("LocalModule"));

    beforeEach(function(){

        inject(function(_$compile_, _$rootScope_){
            $compile = _$compile_;
            $rootScope = _$rootScope_;
        });

        directiveElem = getCompiledElement();
    });

    function getCompiledElement(){
        var element = angular.element('<div ng-controller="UploadCtrl as upload"><input id ="upload" type="file" file-model="myFolder"/><button type="button" id="button" ng-click="clickUpload()">Upload</button></div>');
        var compiledElement = $compile(element)($rootScope);
        $rootScope.clickUpload = function(){
            angular.element('#upload').trigger('click');
        };
        $rootScope.$digest();
        return compiledElement;
    }

    it('should have input element', function () {
        var inputElement = directiveElem.find('input');
        expect(inputElement).toBeDefined();
    });

    it('watched the change function', function () {
        var file = {
            name: "test.png",
            size: 500001,
            type: "image/png"
        };

        var fileList = {
            0: file,
            length: 1,
            item: function (index) { return file; }
        };
        var inputElement = directiveElem.find('input');
        var buttonElement = directiveElem.find('#button');
        inputElement.files = fileList;
        directiveElem.triggerHandler({
            type: 'change',
            target: {
                files: fileList
            }
        });
        $rootScope.$digest();
        buttonElement.triggerHandler('click');
    }); 


});

1 个答案:

答案 0 :(得分:1)

我遇到了类似的问题,并遇到了这个问题。我可以通过在$rootScope.$apply();方法之后而不是triggerHandler之后调用$rootScope.$digest();来使其工作。