如何使用$ promise.then在jasmine规范中模拟AngularJS $资源

时间:2015-03-24 14:13:59

标签: angularjs unit-testing jasmine promise

我使用$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测试)

1 个答案:

答案 0 :(得分:6)

实际上,想通了!

我刚刚更改了模拟以返回and.returnValue( { $promise: $q.when(response) } )