X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fajax.js;h=942f9bee7fe942114e3ff1ae4040640984e8f6e3;hb=6504751006e6848369c9bfa5758f06b5ff40ba58;hp=fbff2d82e535a339602ec72e230b97738368f815;hpb=90a87c03b4943d75c24bc5e6246630231d12d933;p=jquery.git diff --git a/test/unit/ajax.js b/test/unit/ajax.js index fbff2d8..942f9be 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -874,6 +874,68 @@ test("data option: evaluate function values (#2806)", function() { }) }); +test("jQuery.ajax - If-Modified-Since support", function() { + expect( 3 ); + + stop(); + + var url = "data/if_modified_since.php?ts=" + new Date(); + + jQuery.ajax({ + url: url, + ifModified: true, + success: function(data, status) { + equals(status, "success"); + + jQuery.ajax({ + url: url, + ifModified: true, + success: function(data, status) { + if ( data === "FAIL" ) { + ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since')."); + ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since')."); + } else { + equals(status, "notmodified"); + ok(data == null, "response body should be empty") + } + start(); + } + }); + } + }); +}); + +test("jQuery.ajax - Etag support", function() { + expect( 3 ); + + stop(); + + var url = "data/etag.php?ts=" + new Date(); + + jQuery.ajax({ + url: url, + ifModified: true, + success: function(data, status) { + equals(status, "success"); + + jQuery.ajax({ + url: url, + ifModified: true, + success: function(data, status) { + if ( data === "FAIL" ) { + ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match')."); + ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match')."); + } else { + equals(status, "notmodified"); + ok(data == null, "response body should be empty") + } + start(); + } + }); + } + }); +}); + } //}