【问题标题】:Using Sinon.js and preventing a call to my app server使用 Sinon.js 并阻止对我的应用服务器的调用
【发布时间】:2012-06-13 23:43:07
【问题描述】:

足够简单的问题:

我希望我们 sinon.js 测试一段 javascript 以确保它在做两件事时调用$.ajax 方法:

  1. 我不想真正访问服务器
  2. 我想模拟来自服务器的响应

这是 JS:

  $.ajax
    url: "/tickets/id.json"
    dataType: 'json'

  .done (data) =>
    HandlebarsTemplates["tickets/popup_title"] data

这是我的测试:

describe 'PopupDisplayer', ->

  beforeEach ->
    loadFixtures 'popup_displayer'
    new PopupDisplayer

    @title_stub = sinon.stub( HandlebarsTemplates, "tickets/popup_title")

    @jquery_stub = sinon.stub(jQuery, 'ajax').yieldsTo('done', {})

    //This triggers the ajax call
    $('.popupable .title').mouseenter()

  afterEach ->
    HandlebarsTemplates['tickets/popup_title'].restore()
    HandlebarsTemplates['tickets/popup_content'].restore()

    jQuery.ajax.restore()

    @server.restore()

  it 'renders the title with the data returned from the server', ->
    expect(@title_stub).toHaveBeenCalledWith( {})  

此测试失败,但出现以下异常:

TypeError: ajax expected to yield to 'done', but no object with such a property was passed. Received [[object Object]]

所以我想我想知道我是否可以模拟一个 jQuery 请求以获得可以成功响应 .done 调用的响应,显然我不太了解 defferedObject()

【问题讨论】:

标签: jquery coffeescript jquery-deferred sinon


【解决方案1】:

要模拟服务器的响应,您需要存根 $.ajax 的返回值:

  ...
  @jquery_stub = sinon.stub(jQuery, 'ajax').returns
    done: (callback) -> callback {...} # your object here
  ...

请注意,这只会存根 done 回调。如果您想测试其他行为,您可能需要实现其他处理程序(failthen 等)。

你也可以返回一个实际的 jQuery Deferred 对象:

  ...    
  @deferred = new jQuery.Deferred
  @jquery_stub = sinon.stub(jQuery, 'ajax').returns(deferred)
  ...

在这种情况下,您必须在进行测试之前显式触发返回的 Deferred:

  ...    
  @deferred.resolveWith(null, [{}]) # your object here
  ...

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-05-16
    • 1970-01-01
    • 2010-10-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多