0

我正在使用“智能表”并将使用他们的示例插件,其中复选框选择表中的一行:http: //lorenzofox3.github.io/smart-table-website/#section-custom

我正在为此指令编写单元测试,代码如下,这是失败的。是否有人为此代码编写了单元测试,或者可以帮助指导我哪里出错以及我是否真的在测试正确的逻辑?

指示:

myApp.directive('csSelect', function () {
    return {
        require: '^stTable',
        template: '',
        scope: {
            row: '=csSelect'
        },
        link: function (scope, element, attr, ctrl) {

            element.bind('change', function (evt) {
                scope.$apply(function () {
                    ctrl.select(scope.row, 'multiple');
                });
            });

            scope.$watch('row.isSelected', function (newValue, oldValue) {
                if (newValue === true) {
                    element.parent().addClass('st-selected');
                } else {
                    element.parent().removeClass('st-selected');
                }
            });
        }
    };
});

单元测试:

 describe('csSelect',function(){
        var scope, element, attr, ctrl;
       beforeEach(module('myApp.selectorresult'));
             beforeEach(inject(function($rootScope, $compile) {
                elm = angular.element(
                    '<td cs-select="row" class="ng-isolate-scope">' +
                    '<input type="checkbox">' +
                    '</td>');
                scope = $rootScope;
                $compile(elm)(scope);
                scope.$digest();
              }));
       it('should create selectable input',function(){
            console.log(elm.find('input'));
            var checkbox = elm.find('input');
            expect(checkbox.length).toBe(1);
      });
    });
4

2 回答 2

0

在设置 beforeEach(inject...

查看分页指令的测试规范(https://github.com/lorenzofox3/Smart-Table/blob/master/test/spec/stPagination.spec.js),它也需要“stTable”。这是一个很好的例子,说明如何为“stTableController”提供你需要的功能。

于 2015-04-24T22:05:46.550 回答
0

对于任何仍然有这个问题的人。我希望这有帮助。我为此苦苦挣扎了很久。我尝试模拟 stTableController,尝试将供应商文件添加到 karma.conf.js 文件中,但无法通过任何测试。当我删除require: '^stTable'时,测试似乎没有问题,但是有了它,所有测试都会失败。我无法删除它,因为这会破坏我的代码。

所以我最终发现我所要做的就是将 st-table 添加到我的 spec.js 文件中的元素中。

所以如果我的元素是 var element = angular.element('<my-component></my-component'); 我必须做到 var element = angular.element('<my-component st-table></my-component>');

在那之后,所有的测试都通过了。

于 2018-10-16T10:34:15.267 回答