我正在关注AngularJS documentation from here
问题是文档只描述了代码的“成功/快乐”分支,并且没有如何测试“失败”分支的示例。
我想要做的是设置触发$scope.status = 'ERROR!'
代码的前提条件。
这是一个最小的例子。
// controller
function MyController($scope, $http) {
this.saveMessage = function(message) {
$scope.status = 'Saving...';
$http.post('/add-msg.py', message).success(function(response) {
$scope.status = '';
}).error(function() {
$scope.status = 'ERROR!';
});
};
}
// testing controller
var $httpBackend;
beforeEach(inject(function($injector) {
$httpBackend = $injector.get('$httpBackend');
}));
it('should send msg to server', function() {
$httpBackend.expectPOST('/add-msg.py', 'message content').respond(500, '');
var controller = scope.$new(MyController);
$httpBackend.flush();
controller.saveMessage('message content');
$httpBackend.flush();
// Here is the question: How to set $httpBackend.expectPOST to trigger
// this condition.
expect(scope.status).toBe('ERROR!');
});
});
答案 0 :(得分:13)
在设置范围属性时,您正在检查controller
的属性。
如果您想在controller.status
来电中测试expect
,则应在控制器内设置this.status
,而不是$scope.status
。
另一方面,如果您在控制器中设置了$scope.status
,则应在scope.status
来电中使用controller.status
代替expect
。
更新:我在Plunker上为您创建了一个可用的版本:
http://plnkr.co/edit/aaQ7JQV9WlXhou0PYHTn?p=preview
所有测试现在都过去了......