How do I verify jQuery AJAX events with Jasmine? How do I verify jQuery AJAX events with Jasmine? javascript javascript

How do I verify jQuery AJAX events with Jasmine?


I guess there are two types of tests you can do:

  1. Unit tests that fake the AJAX request (using Jasmine's spies), enabling you to test all of your code that runs just before the AJAX request, and just afterwards. You can even use Jasmine to fake a response from the server. These tests would be faster - and they would not need to handle asynchronous behaviour - since there isn't any real AJAX going on.
  2. Integration tests that perform real AJAX requests. These would need to be asynchronous.

Jasmine can help you do both kinds of tests.

Here is a sample of how you can fake the AJAX request, and then write a unit test to verify that the faked AJAX request was going to the correct URL:

it("should make an AJAX request to the correct URL", function() {    spyOn($, "ajax");    getProduct(123);    expect($.ajax.mostRecentCall.args[0]["url"]).toEqual("/products/123");});function getProduct(id) {    $.ajax({        type: "GET",        url: "/products/" + id,        contentType: "application/json; charset=utf-8",        dataType: "json"    });}

For Jasmine 2.0 use instead:

expect($.ajax.calls.mostRecent().args[0]["url"]).toEqual("/products/123");

as noted in this answer

Here is a similar unit test that verifies your callback was executed, upon an AJAX request completing successfully:

it("should execute the callback function on success", function () {    spyOn($, "ajax").andCallFake(function(options) {        options.success();    });    var callback = jasmine.createSpy();    getProduct(123, callback);    expect(callback).toHaveBeenCalled();});function getProduct(id, callback) {    $.ajax({        type: "GET",        url: "/products/" + id,        contentType: "application/json; charset=utf-8",        dataType: "json",        success: callback    });}

For Jasmine 2.0 use instead:

spyOn($, "ajax").and.callFake(function(options) {

as noted in this answer

Finally, you have hinted elsewhere that you might want to write integration tests that make real AJAX requests - for integration purposes. This can be done using Jasmine's asyncronous features: waits(), waitsFor() and runs():

it("should make a real AJAX request", function () {    var callback = jasmine.createSpy();    getProduct(123, callback);    waitsFor(function() {        return callback.callCount > 0;    });    runs(function() {        expect(callback).toHaveBeenCalled();    });});function getProduct(id, callback) {    $.ajax({        type: "GET",        url: "data.json",        contentType: "application/json; charset=utf-8"        dataType: "json",        success: callback    });}


Look at the jasmine-ajax project: http://github.com/pivotal/jasmine-ajax.

It's a drop-in helper that (for either jQuery or Prototype.js) stubs at the XHR layer so that requests never go out. You can then expect all you want about the request.

Then it lets you provide fixture responses for all your cases and then write tests for each response that you want: success, failure, unauthorized, etc.

It takes Ajax calls out of the realm of asynchronous tests and provides you a lot of flexibility for testing how your actual response handlers should work.


here is a simple example test suitefor an app js like this

var app = {               fire: function(url, sfn, efn) {                   $.ajax({                       url:url,                       success:sfn,                       error:efn                   });                }         };

a sample test suite, which will call callback based on url regexp

describe("ajax calls returns", function() { var successFn, errorFn; beforeEach(function () {    successFn = jasmine.createSpy("successFn");    errorFn = jasmine.createSpy("errorFn");    jQuery.ajax = spyOn(jQuery, "ajax").andCallFake(      function (options) {          if(/.*success.*/.test(options.url)) {              options.success();          } else {              options.error();          }      }    ); }); it("success", function () {     app.fire("success/url", successFn, errorFn);     expect(successFn).toHaveBeenCalled(); }); it("error response", function () {     app.fire("error/url", successFn, errorFn);     expect(errorFn).toHaveBeenCalled(); });});