我的webapp正在使用Angular 1.4.8.我有一个指令,使用$validators验证表单输入.只有以数字5,6和9开头且包含8个数字的输入才有效.
angular
.module('directive.customNumber', [])
.directive('customNumber', customNumber);
function customNumber() {
var REGEXP = /^([569][0-9]{7})/;
return {
require: ['ngModel', '^form'],
link: function(scope, elm, attrs, ctrl) {
ctrl.$validators.customNumber = function(modelValue, viewValue) {
if(ctrl.$isEmpty(modelValue)) {
// consider empty models to be valid
return true;
}
return REGEXP.test(viewValue);
};
}
};
}
用法:
<form name="form">
<input type="text" name="myInput" custom-number>
</form>
现在我想使用Jasmine为这个指令编写一个单元测试.这是我的测试用例:
describe('Directive', function() {
var $scope;
beforeEach(function() {
module('directive.customNumber');
inject(function($rootScope, $compile) {
$scope = $rootScope;
var template = '<form name="form"><input type="text" name="myInput" custom-number></form>';
$compile(template)($scope);
$scope.digest();
});
});
it('should not accept invalid input', function() {
var form = $scope.form;
form.myInput.$setViewValue('abc');
expect(form.$valid).toBeFalsy();
expect(form.myInput.$error.mobile).toBeDefined();
});
});
运行此操作会抛出错误“TypeError:无法在此行设置未定义的属性’customNumber’:
ctrl.$validators.customNumber = function(....
我不确定为什么$validators在测试中变得不确定但在正常环境中工作正常.即使我通过在使用前手动创建$validators对象来消除此错误,测试也会失败,因为customNumber验证器永远不会被运行(通过日志记录知道),因此form.$valid始终为true.
我该如何正确测试这个指令?
最佳答案 你的指令ctrl是一个数组whare ctrl [0]是ngModel而ctrl [1]是formController