1

当我运行此规范输出时,我得到“预期 0 等于 2”。2 是我的夹具中模型对象的正确长度,因此 Sinon 的 fakeServer 正确响应了模拟响应。我无法弄清楚为什么我的 Collection 在 fetch 之后有零个对象。任何帮助将非常感激!

仅供参考:这是来自此处的 Backbone Sinon + Jasmine 教程:http: //tinnedfruit.com/2011/03/25/testing-backbone-apps-with-jasmine-sinon-2.html

规格:

describe "Todos collection", ->

  describe "when fetching models from the server", ->
    beforeEach ->
      @todo = sinon.stub(window, "Todo")
      @todos = new Todos()
      @fixture = @fixtures.Todos.valid
      @server = sinon.fakeServer.create()
      @server.respondWith "GET", "/todos", @validResponse(@fixture)

    afterEach ->
      @todo.restore()
      @server.restore()

    it "should parse todos from the response", ->
      @todos.fetch()
      @server.respond()
      expect(@todos.length).toEqual @fixture.response.todos.length

模型:

class window.Todos extends Backbone.Collection
  model: window.Todo
  url: "/todos"
  comparator: (todo) ->
    todo.get('priority')
  parse: (res) ->
    res.response.todos

编辑:

下面的 Buck Doyle 帮助我看到没有规格问题。我的 Jasmine Headless Webkit 配置存在某种问题,如果规范与 Jasmine 独立运行,它们就通过了。

4

1 回答 1

2

理论:在检查结果之前,您需要等待“服务器”响应请求。模拟响应是不够的:fetch仍然是异步的。

尝试https://github.com/pivotal/jasmine/wiki/Asynchronous-specs中描述waits的更复杂但更优雅的方法waitsFor

于 2012-05-09T17:53:56.983 回答