我的控制器有如下代码:
$q.all([qService.getData($scope.id), dService.getData(), qTService.get()])
.then(function (allData) {
$scope.data1 = allData[0];
$scope.data2 = allData[1];
$scope.data3 = allData[2];
});
在我的单元测试中,我正在做这样的事情:
beforeEach(inject(function($rootScope, $q, $location){// and other dependencies...
qServiceSpy = spyOn(_qService, 'getData').andCallFake(function () {
var data1 = {
id: 1,
sellingProperty: 1,
};
var d = $q.defer();
d.resolve(data1);
return d.promise;
});
dServiceSpy = spyOn(_dService, 'getData').andCallFake(function () {
var data2 = [{ "id": "1", "anotherProp": 123 }];
var d = $q.defer();
d.resolve(data2);
return d.promise;
});
qTServiceSpy = spyOn(_qTService, 'get').andCallFake(function () {
var data3 = [{ id: 0, name: 'Rahul' }];
var d = $q.defer();
d.resolve(data3);
return d.promise;
});
rootScope = $rootScope;
});
现在在我的测试中,我正在检查是否调用了服务,并且data1,data2未定义..
it('check if qService' got called, function() {
expect(scope.data1).toBeUndefined();
rootScope.$digest();
expect(_quoteService.getQuote).toHaveBeenCalled();
});
it('check if "data1" is defined', function () {
expect(scope.data1).toBeUndefined();
rootScope.$digest();
expect(scope.data1).toBeDefined();
});
我的问题是,这个工作正常,直到我用q.all替换我在控制器中的各个服务调用,并用scope.$apply
替换rootScope.$digest
。使用q.all和rootScope.$digest
(尝试使用scope.$apply
)两个测试都失败并出现错误:
达到10 $ digest()次迭代。中止!
如果我删除rootScope.$digest
,则承诺永远不会得到解决,测试失败说
预期未定义的定义。
任何帮助我应该如何用q.all
单位测试代码?
遇到了this post
但这也无济于事,因为我已经尝试使用$digest
。
答案 0 :(得分:62)
您可以尝试将$rootScope.$apply()
放入afterEach()
回调函数中。承诺在Angular中$apply()
解决。
afterEach(function(){
rootScope.$apply();
});