11

我如何为此编写 QUnit 测试:

function doSomethingWithAjax() {
    $.ajax({
        url: '/GetHelloWorld',
        success: function(data) { $("#responseFromServer").text(data); },
    });
}

Mockjax+qunit 需要在 ajax complete() 方法中调用 start()。

4

3 回答 3

16
test("should mock ajax", function() {

    $.ajax = function(options) {
        equals(options.url, "/GetHelloWorld");
        options.success("Hello");
    };

    doSomethingWithAjax();

    equal($("#responseFromServer").text(), "Hello");
});
于 2012-02-22T18:11:47.593 回答
1

jasmine-ajax库允许您为所有 ajax 调用定义模拟响应,而无需触及调用本身。

于 2012-02-21T20:03:35.577 回答
0

这个问题已经有几年了,对于新版本的 jQuery 和 Jasmine 已经发生了一些变化。

如果您不想使用 jasmine-ajax,可以尝试Michael Falaga 的方法

  function ajax_response(response) {
    var deferred = $.Deferred().resolve(response);
    return deferred.promise();
  }

  describe("Test test", function() {
    beforeEach(function() {
      spyOn($, 'ajax').and.returnValue(
        ajax_response([1, 2, 3])
      );
    });
    it("is it [1, 2, 3]", function() {
      var response;
      $.ajax('GET', 'some/url/i/fancy').done(function(data) {
        response = data;
      });
      expect(response).toEqual([1, 2, 3]);
    });
  });
于 2015-04-16T15:40:23.757 回答