我有一个指令,它的行为应该有所不同,具体取决于自初始化以来经过的时间:
am.directive('showText', () => ({
restrict: 'E',
replace: true,
scope: {
value: '@'
},
controller: ($scope, $timeout) => {
console.log('timeout triggered');
$scope.textVisible = false;
let visibilityCheckTimeout = $timeout(() => {
if (parseInt($scope.value, 10) < 100) {
$scope.textVisible = true;
}
}, 330);
// Clear timeout upon directive destruction
$scope.$on('$destroy', $timeout.cancel(visibilityCheckTimeout));
},
}));
问题是,当我尝试用 Jasmine 测试它时,我似乎找不到以任何方式触发此超时的方法。已经尝试了$timeout.flush()
和$timeout.verifyNoPendingTasks()
(如果我在电话flush
发表评论,这实际上会引发错误)。但它仍然没有触发超时的回调执行
describe('showText.', () => {
let $compile;
let $rootScope;
let $scope;
let $timeout;
const compileElement = (rootScope, value = 0) => {
$scope = rootScope.$new();
$scope.value = value;
const element = $compile(`
<show-text
value="value"
></show-text>
`)($scope);
$scope.$digest();
return element;
};
beforeEach(() => {
module('app.directives.showText');
inject((_$compile_, _$rootScope_, _$timeout_) => {
$compile = _$compile_;
$rootScope = _$rootScope_;
$timeout = _$timeout_;
});
});
it(`Process lasts > 0.33s. Should show text.`, () => {
const VALUE = 30;
const element = compileElement($rootScope, VALUE);
const elementContent = element.find('.show-text__content');
$timeout.flush(1000);
$timeout.verifyNoPendingTasks();
$rootScope.$digest();
expect(element.isolateScope().textVisible).toBeTruthy();
expect(elementContent.length).toEqual(1);
expect(elementContent.text().trim()).toBe('Example text');
});
});
测试失败。
找不到我做错了什么。关于如何正确测试这种情况的任何提示?
谢谢。
UPD经过一些调查,我发现在这个特定的测试用例中,在compileElement
函数中,value
属性未被$compile
服务评估。等于"value"
.我已经使用了相同的函数 10 次,但无法得到,为什么它不像以前那样采用$scope.value
的属性。
发生这种情况的原因是$timeout.cancel(visibilityCheckTimeout)
无条件且立即启动。相反,它应该是
$scope.$on('$destroy', () => $timeout.cancel(visibilityCheckTimeout));
可以做一些事情来提高可测试性(除了$timeout
在这里作为一次性范围观察器工作并要求替换为一个之外)。
$timeout
可以成功窥探:
beforeEach(module('app', ($provide) => {
$provide.decorator('$timeout', ($delegate) => {
var timeoutSpy = jasmine.createSpy().and.returnValue($delegate);
angular.extend(timeoutSpy, $delegate);
spyOn(timeoutSpy, 'cancel').and.callThrough();
return timeoutSpy;
});
}));
专用$timeout
回调可以公开到范围。
$scope._visibilityCheckHandler = () => {
if (parseInt($scope.value, 10) < 100) {
$scope.textVisible = true;
}
};
$timeout($scope._visibilityCheckHandler, 330);
这样,可以监视所有呼叫并获得全面覆盖:
let directiveScope;
...
const element = $compile(`...`)($scope);
directiveScope = element.isolateScope();
spyOn(directiveScope, '_visibilityCheckHandler').and.callThrough();
$scope.$digest();
...
expect($timeout).toHaveBeenCalledWith(directiveScope._visibilityCheckHandler, 330);
expect($timeout.cancel).not.toHaveBeenCalled();
在这种情况下,这里不需要为">= 0.33s"和"<0.33s"单独设置延迟参数flush
,$timeout
的内部工作已经在 Angular 规范中进行了测试。此外,回调逻辑可以独立于规范进行测试$timeout
。