X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fajax.js;h=b0c399b302e98f1524b80022f7640162e662175c;hb=2a0c7d702b83a6b2e40eb79a5d6ea94d74f3090d;hp=734465916bd07252be7b34df64ceaa48bc013403;hpb=09022e0b09db71259751e7146bb64727615028af;p=jquery.git diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 7344659..b0c399b 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -137,7 +137,7 @@ test(".load()) - 404 error callbacks", function() { }); test("jQuery.ajax() - abort", function() { - expect( 6 ); + expect( 8 ); stop(); jQuery('#foo').ajaxStart(function(){ @@ -157,7 +157,10 @@ test("jQuery.ajax() - abort", function() { complete: function(){ ok(true, "complete"); } }); + equals( xhr.readyState, 1, "XHR readyState indicates successful dispatch" ); + xhr.abort(); + equals( xhr.readyState, 0, "XHR readyState indicates successful abortion" ); }); test("Ajax events with context", function() { @@ -825,21 +828,6 @@ test("jQuery.ajax() - JSONP, Local", function() { plus(); } }); - - // Supports Ticket #5803 - jQuery.ajax({ - url: "data/jsonp.php", - jsonpCallback: "jsonpResults", - success: function(data){ - ok( data.data, "JSON results returned without dataType:jsonp when jsonpCallback is defined" ); - plus(); - }, - error: function(data){ - ok( false, "Ajax error JSON (GET, custom callback name)" ); - plus(); - } - }); - }); test("JSONP - Custom JSONP Callback", function() { @@ -1362,6 +1350,16 @@ test("jQuery.ajax - active counter", function() { ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active ); }); +test( "jQuery.ajax - Location object as url (#7531)", 1, function () { + var success = false; + try { + var xhr = jQuery.ajax({ url: document.location }); + success = true; + xhr.abort(); + } catch (e) {} + + ok( success, "document.location did not generate exception" ); +}); }