在karma,Mocha chai和sinon中尝试了一个测试用例。
使用该服务后出现错误。这是我的错误。请任何帮助。
AssertionError: expected undefined to deeply equal 'strong'
at /var/www/html/Testing/mocha/node_modules/chai/chai.js:210
at assertEql (/var/www/html/Testing/mocha/node_modules/chai/chai.js:784)
at /var/www/html/Testing/mocha/node_modules/chai/chai.js:3854
at /var/www/html/Testing/mocha/www/index-controller.test.js:22
PhantomJS 1.9.8 (Linux 0.0.0): Executed 1 of 1 (1 FAILED) ERROR (0.043 secs / 0.002 secs)
这是我的indexcontroller.js
'use strict';
angular.module('beatso.index-controller', [])
.controller('IndexController', function(
commanService) {
(function(vm){
angular.extend(vm, {
checkPassword: checkPassword
})
vm.headingTop = "Beatso A Music Fanatic Group";
vm.password = "verystrogpassword";
function checkPassword() {
return commanService.passwordValidator("vm.password");
}
})(this);
});
这是我对indexcontroller的测试。 indeccontroller.test.js
describe('Index Controller', function() {
var indexController;
var commanServiceMock;
var commanService;
beforeEach(module('beatso.index-controller'));
beforeEach(module(initMocks));
beforeEach(inject(initIndexController));
it('should return strong if password length is greater than equal to 8', function() {
expect(indexController.checkPassword()).to.eql('strong');
expect(commanServiceMock.passwordValidator.calledOnce).to.eql(true);
});
function initMocks ($provide){
commanServiceMock = {
passwordValidator: sinon.spy()
};
$provide.service('commanService', function(){
return commanServiceMock;
})
}
function initIndexController($controller) {
indexController = $controller('IndexController');
}
});
这是我的常用服务
'use strict';
angular.module('beatso-comman.service', [])
.factory('commanService', function(){
var service = {
passwordValidator: passwordValidator
}
function passwordValidator(password){
if(password.length >= 8) {
return 'strong'
}else {
return 'weak'
}
}
return service;
})
这是我对该服务的测试。
'use strict'
describe('Test for my comman service', function(){
var cService;
beforeEach(module('beatso-comman.service'));
beforeEach(inject(initCommanService));
it('It should check the password strength', function(){
expect(cService.passwordValidator('amtoverystrongpassword')).to.eql('strong');
});
function initCommanService(commanService){
cService = commanService;
}
})
答案 0 :(得分:1)
你的commanService mock没有方法" passwordValidator",所以试着调用它会引发一个" undefined"错误。
如果你想测试你的服务,你不应该嘲笑它,但实际上真的要测试它。您可以通过注入来获取对服务的引用(请参阅Jasmine中的inject()函数)。
这是我项目中的一段代码:
// inject the service itself
beforeEach(inject(function(nfcService){
service = nfcService;
}));
显然,"服务"是我用来执行单元测试的变量(并且真正测试我的服务)。
编辑 - 详情: 我的意思是,你的控制器的测试不应该测试你的服务......控制器的测试应该测试你的控制器。它应该最终使用你的服务模拟(使用所需方法的间谍),检查是否已调用适当的方法。
例如:
myServiceMock = {
expectedMethod: jasmine.createSpy('expectedMethod spy')
}
在你的测试中:
expect(myServiceMock.expectedMethod).toHaveBeenCalled();
使用$controller
实例化控制器时,可以将它(在第二个参数中)传递给提供其依赖项的对象文字。这样,你可以给它你想要的模拟。
一个例子,仍然来自我的项目:
menuCtrl = $controller('MenuController', {
// where 'uiFeedbackService' is the name of the dependency
'uiFeedbackService': uiFeedbackServiceMock
});
注意:关于服务的声明,您可以直接return
一个Object文字,而不是创建一个变量,声明一个私有函数(passwordValidator),然后返回变量。
angular.module('beatso-comman.service', [])
.factory('commanService', function(){
return {
passwordValidator: function(password){
if(password.length >= 8) {
return 'strong'
}else {
return 'weak'
}
}
}
})