我使用$resource
设置一些API调用,在测试时我采用了注入$q
然后执行
mockMyService.doSomethingAsync.andReturnValue($q.when(successResponse))
这已经很好了,但是,我有一个类似于以下的方法:
# MyService
MyService.doSomethingAsync(params).$promise.then ->
$scope.isLoading = false
# MyService Spec
mockMyService =
doSomethingAsync: jasmine.createSpy('doSomethingAsync')
it 'calls service #doSomethingAsync', ->
inject ($q) -> mockMyService.doSomethingAsync.and.returnValue($q.when(response))
controller.methodThatWrapsServiceCall()
scope.$apply()
expect(mockMyService.doSomethingAsync).toHaveBeenCalled()
不幸的是,当$promise.then
最终被链接时,上面列出的模拟策略似乎不起作用。我最终得到以下错误:
TypeError: 'undefined' is not an object (evaluating 'MyService.doSomethingAsync(params).$promise.then')
简单地以doSomethingAsync().$promise
结尾的方法使用此模拟策略可以毫无问题地通过测试。
(其他信息:这些是与Karma和PhantomJS一起运行的Jasmine测试)
答案 0 :(得分:6)
实际上,想通了!
我刚刚更改了模拟以返回and.returnValue( { $promise: $q.when(response) } )