我试图解释我的问题的简单版本。
1)我正在为控制器(myController)方法(减法)编写单元测试。
2) 使用 httpbackend 模拟 http 我想在减法中向 http 的成功函数返回 200 的响应,以降低其在任何虚拟 DELETE url 的成功函数中的值(在测试环境之外总是成功的)。
3)但我认为 expect(scope.testvalue) 仅为 5。任何帮助表示赞赏。
'use strict';
describe('MyController UNIT TEST specs ', function () {
var scope, http, location, ctrl, httpBackend;
beforeEach(module('myApp', 'ui.router'));
beforeEach(inject(function ($rootScope, $http, $controller, $httpBackend) {
scope = $rootScope.$new();
http = $http;
httpBackend = $httpBackend;
ctrl = $controller('myController', { $scope: scope, $http: http});
httpBackend.when('DELETE', 'url').respond(200, 'fsdf');
}));
afterEach(function () {
httpBackend.verifyNoOutstandingExpectation();
httpBackend.verifyNoOutstandingRequest();
});
it('test 1 : Subtract 1 from a value enter code here` using subtract method in myController', function () {
httpBackend.when('DELETE', 'url').respond(200);
var testvalue = 5;
scope.subtract(testvalue);
expect(testvalue).toBe(4);
});
});
angular.module("myApp").controller("myController", function ($scope, $http) {
$scope.subtract = function (testValue) {
$http({
method: 'DELETE',
url: 'url'
}).then(function (data) { //success
//irrespective of data subtract 1 here
testValue - 1 = 4;
}, function (errResult) { //fail
console.log(errResult);
});
}
})
我看到的错误是(预期的) 错误:预期的错误为真。