3

次のスペックをコントローラーにラップしました。私は次のジャスミンスペックを持っています:

 describe 'MyApp.Controller.SomeController', ->
   beforeEach module('mymodule')
   beforeEach inject ($rootScope , $httpBackend, $controller, SomeService) ->
      @scope = $rootScope.$new()
      @httpBackend = $httpBackend
      someService = SomeService
      @someResource = someService.someResource
      $controller 'MyApp.Controller.SomeController', $scope: @scope

   describe "#fetchMethod", ->
     describe "given an object", ->
       beforeEach ->
         @id = 17
         @scope.fetchMethod(@id)
       it "sets due to true", ->
         @httpBackend.whenGET().respond(200, {"someStrings": ["foo", "bar"], otherStrings: ["bar", "goo"]})
         expect(@scope.someStrings).toBeDefined()
         expect(@scope.otherStrings).toBeDefined()

次のコントローラーにラップされています。

 MyApp.Controller.SomeController = (scope, someService) ->

   scope.fetchMethod = (ID)->
      someService.someResource.fetch
      Id: artID
      ,(response) ->
        scope.someStrings = response['someStrings']
        scope.otherStrings = response['otherStrings']
        scope.someStringsExist = true if scope.someStrings
 MyApp.Controller.SomeController.$inject = ['$scope', 'SomeService']

SomeServiceが次のように定義されている場合:

 MyApp.Service.SomeService = (resource) ->
   @someResource = resource '/api/foos/:ID', {},
   fetch:
     method: 'GET'

   @

 MyApp.myModule.service 'SomeService', ['$resource', MyApp.Service.SomeService]

この設定はサイトで機能しているようで、リクエストを正しく実行し、(rails)apiエンドポイントから値を返します。

ただし、ジャスミンの仕様を実行すると、次のように失敗します。

Error: Unexpected request: GET /api/foos/17 No more request expected in http://localhost:3000/assets/helpers/angular-mocks.js?body=1 (line 889)

私は何が欠けていますか?httpBackendがGETリクエストを認識できないのはなぜですか?

scope.initialize =(artifactId、artifactType)-> scope.artifactId = ArtifactId scope.artifactType = ArtifactType scope.currentVersionExists = false scope.attachmentFetcher(scope.artifactId)

MyApp.Controller.SomeController。$inject= ['$ scope'、'SomeService']

4

1 に答える 1

4

リクエストを行う前に、レスポンスをスタブする次の行に移動する必要があります。

@httpBackend.whenGET().respond(200, {"someStrings": ["foo", "bar"], otherStrings: ["bar", "goo"]})
于 2013-03-04T20:01:12.240 に答える