我在AngularJS应用程序中使用Jasmine和Karma进行单元测试。我需要检查控制器函数中内部变量的值。
这是我的控制器。
(function() {
'use strict';
angular
.module('testApp',[])
.controller('testController', testController);
function testController($http, $scope, $timeout) {
var vm = this;
vm.getTestValues = getTestValues;
function getTestValues(){
vm.serverError = undefined;
vm.priceList = [];
$http.get('https://example.com/api/getPrice').then(function(response) {
vm.priceList = response.data;
vm.value = vm.priceList[0].itemValue;
vm.totalValue = vm.value * 10;
}).catch(function(e){
vm.serverError = 'Server Error';
});
}
}
})();
这是我的测试代码
describe('Test Controller', function() {
beforeEach(module('testApp'));
var ctrl;
beforeEach(inject(function($rootScope, $controller){
scope = $rootScope.$new();
ctrl = $controller('testController', { $scope: scope });
}));
describe('vm.value', function() {
it('Should be ', function() {
ctrl.getTestValues();
console.log(ctrl.priceList);
});
});
});
console.log(ctrl.priceList);
打印[]
。
如何访问vm.priceList
,vm.value
和vm.totalValue
中的值?
答案 0 :(得分:0)
$http.get
是异步调用。您必须使用$httpBackend
对http服务进行单元测试。
您可以浏览以下链接以了解更多信息。