3 // Safari 3 randomly crashes when running these tests,
4 // but only in the full suite - you can run just the Ajax
5 // tests and they'll pass
6 //if ( !jQuery.browser.safari ) {
10 test("jQuery.ajax() - success callbacks", function() {
13 jQuery.ajaxSetup({ timeout: 0 });
17 setTimeout(function(){
18 jQuery('#foo').ajaxStart(function(){
19 ok( true, "ajaxStart" );
20 }).ajaxStop(function(){
21 ok( true, "ajaxStop" );
23 }).ajaxSend(function(){
24 ok( true, "ajaxSend" );
25 }).ajaxComplete(function(){
26 ok( true, "ajaxComplete" );
27 }).ajaxError(function(){
28 ok( false, "ajaxError" );
29 }).ajaxSuccess(function(){
30 ok( true, "ajaxSuccess" );
34 url: url("data/name.html"),
35 beforeSend: function(){ ok(true, "beforeSend"); },
36 success: function(){ ok(true, "success"); },
37 error: function(){ ok(false, "error"); },
38 complete: function(){ ok(true, "complete"); }
43 test("jQuery.ajax() - error callbacks", function() {
47 jQuery('#foo').ajaxStart(function(){
48 ok( true, "ajaxStart" );
49 }).ajaxStop(function(){
50 ok( true, "ajaxStop" );
52 }).ajaxSend(function(){
53 ok( true, "ajaxSend" );
54 }).ajaxComplete(function(){
55 ok( true, "ajaxComplete" );
56 }).ajaxError(function(){
57 ok( true, "ajaxError" );
58 }).ajaxSuccess(function(){
59 ok( false, "ajaxSuccess" );
62 jQuery.ajaxSetup({ timeout: 500 });
65 url: url("data/name.php?wait=5"),
66 beforeSend: function(){ ok(true, "beforeSend"); },
67 success: function(){ ok(false, "success"); },
68 error: function(){ ok(true, "error"); },
69 complete: function(){ ok(true, "complete"); }
73 test("Ajax events with context", function() {
77 var context = document.createElement("div");
80 equals( this, context, e.type );
84 equals( this, context, "context is preserved on callback" );
87 jQuery('#foo').add(context)
94 url: url("data/name.html"),
100 setTimeout(proceed, 300);
106 jQuery('#foo').add(context).unbind();
111 test("jQuery.ajax() - disabled globals", function() {
115 jQuery('#foo').ajaxStart(function(){
116 ok( false, "ajaxStart" );
117 }).ajaxStop(function(){
118 ok( false, "ajaxStop" );
119 }).ajaxSend(function(){
120 ok( false, "ajaxSend" );
121 }).ajaxComplete(function(){
122 ok( false, "ajaxComplete" );
123 }).ajaxError(function(){
124 ok( false, "ajaxError" );
125 }).ajaxSuccess(function(){
126 ok( false, "ajaxSuccess" );
131 url: url("data/name.html"),
132 beforeSend: function(){ ok(true, "beforeSend"); },
133 success: function(){ ok(true, "success"); },
134 error: function(){ ok(false, "error"); },
135 complete: function(){
136 ok(true, "complete");
137 setTimeout(function(){ start(); }, 13);
142 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
146 url: url("data/with_fries.xml"),
148 success: function(resp) {
149 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
150 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
151 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
157 test("jQuery.ajax - beforeSend", function() {
163 jQuery.ajaxSetup({ timeout: 0 });
166 url: url("data/name.html"),
167 beforeSend: function(xml) {
170 success: function(data) {
171 ok( check, "check beforeSend was executed" );
177 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
179 var request = jQuery.ajax({
180 url: url("data/name.html"),
181 beforeSend: function() {
182 ok( true, "beforeSend got called, canceling" );
185 success: function() {
186 ok( false, "request didn't get canceled" );
188 complete: function() {
189 ok( false, "request didn't get canceled" );
192 ok( false, "request didn't get canceled" );
195 ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
198 window.foobar = null;
199 window.testFoo = undefined;
201 test("jQuery.ajax - dataType html", function() {
205 var verifyEvaluation = function() {
206 equals( testFoo, "foo", 'Check if script was evaluated for datatype html' );
207 equals( foobar, "bar", 'Check if script src was evaluated for datatype html' );
214 url: url("data/test.html"),
215 success: function(data) {
216 jQuery("#ap").html(data);
217 ok( data.match(/^html text/), 'Check content for datatype html' );
218 setTimeout(verifyEvaluation, 600);
223 test("serialize()", function() {
226 equals( jQuery('#form').serialize(),
227 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&select1=&select2=3&select3=1&select3=2",
228 'Check form serialization as query string');
230 equals( jQuery('#form :input').serialize(),
231 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&select1=&select2=3&select3=1&select3=2",
232 'Check input serialization as query string');
234 equals( jQuery('#testForm').serialize(),
235 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
236 'Check form serialization as query string');
238 equals( jQuery('#testForm :input').serialize(),
239 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
240 'Check input serialization as query string');
242 equals( jQuery('#form, #testForm').serialize(),
243 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&select1=&select2=3&select3=1&select3=2&T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
244 'Multiple form serialization as query string');
246 /* Temporarily disabled. Opera 10 has problems with form serialization.
247 equals( jQuery('#form, #testForm :input').serialize(),
248 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&select1=&select2=3&select3=1&select3=2&T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
249 'Mixed form/input serialization as query string');
253 test("jQuery.param()", function() {
256 equals( jQuery.param.traditional, undefined, "traditional flag, undefined by default" );
258 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
259 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
261 params = {someName: [1, 2, 3], regularThing: "blah" };
262 equals( jQuery.param(params), "someName%5B%5D=1&someName%5B%5D=2&someName%5B%5D=3®ularThing=blah", "with array" );
264 params = {foo: ['a', 'b', 'c']};
265 equals( jQuery.param(params), "foo%5B%5D=a&foo%5B%5D=b&foo%5B%5D=c", "with array of strings" );
267 params = {foo: ["baz", 42, "All your base are belong to us"] };
268 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
270 params = {foo: { bar: 'baz', beep: 42, quux: 'All your base are belong to us' } };
271 equals( jQuery.param(params), "foo%5Bbar%5D=baz&foo%5Bbeep%5D=42&foo%5Bquux%5D=All+your+base+are+belong+to+us", "even more arrays" );
273 params = { a:[1,2], b:{ c:3, d:[4,5], e:{ x:[6], y:7, z:[8,9] }, f:true, g:false, h:undefined }, i:[10,11], j:true, k:false, l:[undefined,0], m:"cowboy hat?" };
274 equals( jQuery.param(params), "a%5B%5D=1&a%5B%5D=2&b%5Bc%5D=3&b%5Bd%5D%5B%5D=4&b%5Bd%5D%5B%5D=5&b%5Be%5D%5Bx%5D%5B%5D=6&b%5Be%5D%5By%5D=7&b%5Be%5D%5Bz%5D%5B%5D=8&b%5Be%5D%5Bz%5D%5B%5D=9&b%5Bf%5D=true&b%5Bg%5D=false&b%5Bh%5D=undefined&i%5B%5D=10&i%5B%5D=11&j=true&k=false&l%5B%5D=undefined&l%5B%5D=0&m=cowboy+hat%3F", "huge structure" );
276 jQuery.param.traditional = true;
278 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
279 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
281 params = {someName: [1, 2, 3], regularThing: "blah" };
282 equals( jQuery.param(params), "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
284 params = {foo: ['a', 'b', 'c']};
285 equals( jQuery.param(params), "foo=a&foo=b&foo=c", "with array of strings" );
287 params = {"foo[]":["baz", 42, "All your base are belong to us"]};
288 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
290 params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
291 equals( jQuery.param(params), "foo%5Bbar%5D=baz&foo%5Bbeep%5D=42&foo%5Bquux%5D=All+your+base+are+belong+to+us", "even more arrays" );
293 params = { a:[1,2], b:{ c:3, d:[4,5], e:{ x:[6], y:7, z:[8,9] }, f:true, g:false, h:undefined }, i:[10,11], j:true, k:false, l:[undefined,0], m:"cowboy hat?" };
294 equals( jQuery.param(params), "a=1&a=2&b=%5Bobject+Object%5D&i=10&i=11&j=true&k=false&l=undefined&l=0&m=cowboy+hat%3F", "huge structure" );
298 test("synchronous request", function() {
300 ok( /^{ "data"/.test( jQuery.ajax({url: url("data/json_obj.js"), async: false}).responseText ), "check returned text" );
303 test("synchronous request with callbacks", function() {
306 jQuery.ajax({url: url("data/json_obj.js"), async: false, success: function(data) { ok(true, "sucess callback executed"); result = data; } });
307 ok( /^{ "data"/.test( result ), "check returned text" );
310 test("pass-through request object", function() {
314 var target = "data/name.html";
315 var successCount = 0;
318 var success = function() {
321 jQuery("#foo").ajaxError(function (e, xml, s, ex) {
323 errorEx += ": " + xml.status;
325 jQuery("#foo").one('ajaxStop', function () {
326 equals(successCount, 5, "Check all ajax calls successful");
327 equals(errorCount, 0, "Check no ajax errors (status" + errorEx + ")");
328 jQuery("#foo").unbind('ajaxError');
333 ok( jQuery.get(url(target), success), "get" );
334 ok( jQuery.post(url(target), success), "post" );
335 ok( jQuery.getScript(url("data/test.js"), success), "script" );
336 ok( jQuery.getJSON(url("data/json_obj.js"), success), "json" );
337 ok( jQuery.ajax({url: url(target), success: success}), "generic" );
340 test("ajax cache", function () {
347 jQuery("#firstp").bind("ajaxSuccess", function (e, xml, s) {
348 var re = /_=(.*?)(&|$)/g;
350 for (var i = 0; i < 6; i++) {
351 var ret = re.exec(s.url);
357 equals(i, 1, "Test to make sure only one 'no-cache' parameter is there");
358 ok(oldOne != "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
363 ok( jQuery.ajax({url: "data/text.php", cache:false}), "test with no parameters" );
364 ok( jQuery.ajax({url: "data/text.php?pizza=true", cache:false}), "test with 1 parameter" );
365 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555", cache:false}), "test with _= parameter" );
366 ok( jQuery.ajax({url: "data/text.php?pizza=true&_=tobereplaced555", cache:false}), "test with 1 parameter plus _= one" );
367 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555&tv=false", cache:false}), "test with 1 parameter plus _= one before it" );
368 ok( jQuery.ajax({url: "data/text.php?name=David&_=tobereplaced555&washere=true", cache:false}), "test with 2 parameters surrounding _= one" );
373 * The assertions expect that the passed-in object will be modified,
374 * which shouldn't be the case. Fixes #5439.
375 test("global ajaxSettings", function() {
378 var tmp = jQuery.extend({}, jQuery.ajaxSettings);
379 var orig = { url: "data/with_fries.xml" };
382 jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
384 t = jQuery.extend({}, orig);
387 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
389 t = jQuery.extend({}, orig);
390 t.data = { zoo: 'a', ping: 'b' };
392 ok( t.url.indexOf('ping') > -1 && t.url.indexOf('zoo') > -1 && t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending { zoo: 'a', ping: 'b' }" );
394 jQuery.ajaxSettings = tmp;
398 test("load(String)", function() {
400 stop(); // check if load can be called with only url
401 jQuery('#first').load("data/name.html", start);
404 test("load('url selector')", function() {
406 stop(); // check if load can be called with only url
407 jQuery('#first').load("data/test3.html div.user", function(){
408 equals( jQuery(this).children("div").length, 2, "Verify that specific elements were injected" );
413 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
416 jQuery.ajaxSetup({ dataType: "json" });
417 jQuery("#first").ajaxComplete(function (e, xml, s) {
418 equals( s.dataType, "html", "Verify the load() dataType was html" );
419 jQuery("#first").unbind("ajaxComplete");
420 jQuery.ajaxSetup({ dataType: "" });
423 jQuery('#first').load("data/test3.html");
426 test("load(String, Function) - simple: inject text into DOM", function() {
429 jQuery('#first').load(url("data/name.html"), function() {
430 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
435 test("load(String, Function) - check scripts", function() {
439 var verifyEvaluation = function() {
440 equals( foobar, "bar", 'Check if script src was evaluated after load' );
441 equals( jQuery('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
445 jQuery('#first').load(url('data/test.html'), function() {
446 ok( jQuery('#first').html().match(/^html text/), 'Check content after loading html' );
447 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
448 equals( testFoo, "foo", 'Check if script was evaluated after load' );
449 setTimeout(verifyEvaluation, 600);
453 test("load(String, Function) - check file with only a script tag", function() {
457 jQuery('#first').load(url('data/test2.html'), function() {
458 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
459 equals( testFoo, "foo", 'Check if script was evaluated after load' );
465 test("load(String, Object, Function)", function() {
469 jQuery('<div />').load(url('data/params_html.php'), { foo:3, bar:'ok' }, function() {
470 var $post = jQuery(this).find('#post');
471 equals( $post.find('#foo').text(), '3', 'Check if a hash of data is passed correctly');
472 equals( $post.find('#bar').text(), 'ok', 'Check if a hash of data is passed correctly');
477 test("load(String, String, Function)", function() {
481 jQuery('<div />').load(url('data/params_html.php'), 'foo=3&bar=ok', function() {
482 var $get = jQuery(this).find('#get');
483 equals( $get.find('#foo').text(), '3', 'Check if a string of data is passed correctly');
484 equals( $get.find('#bar').text(), 'ok', 'Check if a of data is passed correctly');
489 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
492 jQuery.get(url('data/dashboard.xml'), function(xml) {
494 jQuery('tab', xml).each(function() {
495 content.push(jQuery(this).text());
497 equals( content[0], 'blabla', 'Check first tab');
498 equals( content[1], 'blublu', 'Check second tab');
503 test("jQuery.getScript(String, Function) - with callback", function() {
506 jQuery.getScript(url("data/test.js"), function() {
507 equals( foobar, "bar", 'Check if script was evaluated' );
508 setTimeout(start, 100);
512 test("jQuery.getScript(String, Function) - no callback", function() {
515 jQuery.getScript(url("data/test.js"), function(){
520 test("jQuery.ajax() - JSONP, Local", function() {
524 function plus(){ if ( ++count == 8 ) start(); }
529 url: "data/jsonp.php",
531 success: function(data){
532 ok( data.data, "JSON results returned (GET, no callback)" );
535 error: function(data){
536 ok( false, "Ajax error JSON (GET, no callback)" );
542 url: "data/jsonp.php?callback=?",
544 success: function(data){
545 ok( data.data, "JSON results returned (GET, url callback)" );
548 error: function(data){
549 ok( false, "Ajax error JSON (GET, url callback)" );
555 url: "data/jsonp.php",
558 success: function(data){
559 ok( data.data, "JSON results returned (GET, data callback)" );
562 error: function(data){
563 ok( false, "Ajax error JSON (GET, data callback)" );
569 url: "data/jsonp.php",
572 success: function(data){
573 ok( data.data, "JSON results returned (GET, data obj callback)" );
576 error: function(data){
577 ok( false, "Ajax error JSON (GET, data obj callback)" );
583 url: "data/jsonp.php",
585 jsonpCallback: "jsonpResults",
586 success: function(data){
587 ok( data.data, "JSON results returned (GET, custom callback name)" );
590 error: function(data){
591 ok( false, "Ajax error JSON (GET, custom callback name)" );
598 url: "data/jsonp.php",
600 success: function(data){
601 ok( data.data, "JSON results returned (POST, no callback)" );
604 error: function(data){
605 ok( false, "Ajax error JSON (GET, data obj callback)" );
612 url: "data/jsonp.php",
615 success: function(data){
616 ok( data.data, "JSON results returned (POST, data callback)" );
619 error: function(data){
620 ok( false, "Ajax error JSON (POST, data callback)" );
627 url: "data/jsonp.php",
630 success: function(data){
631 ok( data.data, "JSON results returned (POST, data obj callback)" );
634 error: function(data){
635 ok( false, "Ajax error JSON (POST, data obj callback)" );
641 test("JSONP - Custom JSONP Callback", function() {
645 window.jsonpResults = function(data) {
646 ok( data.data, "JSON results returned (GET, custom callback function)" );
651 url: "data/jsonp.php",
653 jsonpCallback: "jsonpResults"
657 test("jQuery.ajax() - JSONP, Remote", function() {
661 function plus(){ if ( ++count == 4 ) start(); }
663 var base = window.location.href.replace(/\?.*$/, "");
668 url: base + "data/jsonp.php",
670 success: function(data){
671 ok( data.data, "JSON results returned (GET, no callback)" );
674 error: function(data){
675 ok( false, "Ajax error JSON (GET, no callback)" );
681 url: base + "data/jsonp.php?callback=?",
683 success: function(data){
684 ok( data.data, "JSON results returned (GET, url callback)" );
687 error: function(data){
688 ok( false, "Ajax error JSON (GET, url callback)" );
694 url: base + "data/jsonp.php",
697 success: function(data){
698 ok( data.data, "JSON results returned (GET, data callback)" );
701 error: function(data){
702 ok( false, "Ajax error JSON (GET, data callback)" );
708 url: base + "data/jsonp.php",
711 success: function(data){
712 ok( data.data, "JSON results returned (GET, data obj callback)" );
715 error: function(data){
716 ok( false, "Ajax error JSON (GET, data obj callback)" );
722 test("jQuery.ajax() - script, Remote", function() {
725 var base = window.location.href.replace(/\?.*$/, "");
730 url: base + "data/test.js",
732 success: function(data){
733 ok( foobar, "Script results returned (GET, no callback)" );
739 test("jQuery.ajax() - script, Remote with POST", function() {
742 var base = window.location.href.replace(/\?.*$/, "");
747 url: base + "data/test.js",
750 success: function(data, status){
751 ok( foobar, "Script results returned (POST, no callback)" );
752 equals( status, "success", "Script results returned (POST, no callback)" );
755 error: function(xhr) {
756 ok( false, "ajax error, status code: " + xhr.status );
762 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
765 var base = window.location.href.replace(/\?.*$/, "");
766 base = base.replace(/^.*?\/\//, "//");
771 url: base + "data/test.js",
773 success: function(data){
774 ok( foobar, "Script results returned (GET, no callback)" );
780 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
783 jQuery.getJSON(url("data/json.php"), {json: "array"}, function(json) {
784 ok( json.length >= 2, "Check length");
785 equals( json[0].name, 'John', 'Check JSON: first, name' );
786 equals( json[0].age, 21, 'Check JSON: first, age' );
787 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
788 equals( json[1].age, 25, 'Check JSON: second, age' );
793 test("jQuery.getJSON(String, Function) - JSON object", function() {
796 jQuery.getJSON(url("data/json.php"), function(json) {
797 if (json && json.data) {
798 equals( json.data.lang, 'en', 'Check JSON: lang' );
799 equals( json.data.length, 25, 'Check JSON: length' );
805 test("jQuery.getJSON - Using Native JSON", function() {
808 var old = window.JSON;
810 parse: function(str){
811 ok( true, "Verifying that parse method was run" );
817 jQuery.getJSON(url("data/json.php"), function(json) {
819 equals( json, true, "Verifying return value" );
824 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
827 var base = window.location.href.replace(/\?.*$/, "");
830 jQuery.getJSON(url(base + "data/json.php"), function(json) {
831 equals( json.data.lang, 'en', 'Check JSON: lang' );
832 equals( json.data.length, 25, 'Check JSON: length' );
837 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
842 jQuery.post(url("data/name.php"), {xml: "5-2"}, function(xml){
843 jQuery('math', xml).each(function() {
844 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
845 equals( jQuery('result', this).text(), '3', 'Check for XML' );
847 if ( ++done === 2 ) start();
850 jQuery.post(url("data/name.php?xml=5-2"), {}, function(xml){
851 jQuery('math', xml).each(function() {
852 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
853 equals( jQuery('result', this).text(), '3', 'Check for XML' );
855 if ( ++done === 2 ) start();
859 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
864 jQuery.ajaxSetup({timeout: 1000});
866 var pass = function() {
869 ok( true, 'Check local and global callbacks after timeout' );
870 jQuery('#main').unbind("ajaxError");
875 var fail = function(a,b,c) {
876 ok( false, 'Check for timeout failed ' + a + ' ' + b );
880 jQuery('#main').ajaxError(pass);
884 url: url("data/name.php?wait=5"),
890 jQuery.ajaxSetup({timeout: 0});
893 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
895 jQuery.ajaxSetup({timeout: 50});
900 url: url("data/name.php?wait=1"),
902 ok( false, 'Check for local timeout failed' );
905 success: function() {
906 ok( true, 'Check for local timeout' );
912 jQuery.ajaxSetup({timeout: 0});
915 test("jQuery.ajax - simple get", function() {
920 url: url("data/name.php?name=foo"),
921 success: function(msg){
922 equals( msg, 'bar', 'Check for GET' );
928 test("jQuery.ajax - simple post", function() {
933 url: url("data/name.php"),
935 success: function(msg){
936 equals( msg, 'pan', 'Check for POST' );
942 test("ajaxSetup()", function() {
946 url: url("data/name.php?name=foo"),
947 success: function(msg){
948 equals( msg, 'bar', 'Check for GET' );
956 test("custom timeout does not set error message when timeout occurs, see #970", function() {
959 url: "data/name.php?wait=1",
961 error: function(request, status) {
962 ok( status != null, "status shouldn't be null in error handler" );
963 equals( "timeout", status );
970 test("data option: evaluate function values (#2806)", function() {
973 url: "data/echoQuery.php",
979 success: function(result) {
980 equals( result, "key=value" );
986 test("jQuery.ajax - If-Modified-Since support", function() {
991 var url = "data/if_modified_since.php?ts=" + new Date();
996 success: function(data, status) {
997 equals(status, "success");
1002 success: function(data, status) {
1003 if ( data === "FAIL" ) {
1004 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1005 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1007 equals(status, "notmodified");
1008 ok(data == null, "response body should be empty")
1017 test("jQuery.ajax - Etag support", function() {
1022 var url = "data/etag.php?ts=" + new Date();
1027 success: function(data, status) {
1028 equals(status, "success");
1033 success: function(data, status) {
1034 if ( data === "FAIL" ) {
1035 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1036 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1038 equals(status, "notmodified");
1039 ok(data == null, "response body should be empty")