我有一个单元测试,其中唯一的期望是进行了http调用。我为此使用$ httpBackend.expect()。这样可以正常工作,如果没有发出这个http请求(好的话),单元测试就会失败,如果发出http请求就会通过。
问题在于,即使它已经过去了,Jasmine规范的跑步者表示" SPEC没有任何期望"对于这个单元测试,这让我觉得我没有使用推荐的方法来测试是否进行了http调用。如何避免看到此消息?
示例测试:
it('should call sessioncheck api', function () {
inject(function ($injector, SessionTrackerService) {
$httpBackend = $injector.get('$httpBackend');
var mockResponse = { IsAuthenticated: true, secondsRemaining: 100 };
$httpBackend.expect('GET', 'API/authentication/sessioncheck')
.respond(200, mockResponse);
SessionTrackerService.Start();
jasmine.clock().tick(30001);
$httpBackend.flush();
});
});
答案 0 :(得分:17)
我将调用包装为flush,如下所示:
expect($httpBackend.flush).not.toThrow();
我更喜欢这种方法,因为测试代码清楚地说明应该'应该'在调用flush时发生。例如:
it('should call expected url', inject(function($http) {
// arrange
$httpBackend.expectGET('http://localhost/1').respond(200);
// act
$http.get('http://localhost/1');
// assert
expect($httpBackend.flush).not.toThrow();
}));
答案 1 :(得分:-1)
尝试删除jasmine.clock()。tick(30001);
如果在SessionTrackerService.Start方法
中没有超时,则此代码中的内容过多