Re-wrote context Ajax test to use an element instead of an object (a more realistic...
[jquery.git] / test / unit / ajax.js
1 module("ajax");
2
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 ) {
7
8 if ( !isLocal ) {
9
10 test("jQuery.ajax() - success callbacks", function() {
11         expect( 8 );
12
13         jQuery.ajaxSetup({ timeout: 0 });
14
15         stop();
16
17         setTimeout(function(){
18                 jQuery('#foo').ajaxStart(function(){
19                         ok( true, "ajaxStart" );
20                 }).ajaxStop(function(){
21                         ok( true, "ajaxStop" );
22                         start();
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" );
31                 });
32
33                 jQuery.ajax({
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"); }
39                 });
40         }, 13);
41 });
42
43 test("jQuery.ajax() - error callbacks", function() {
44         expect( 8 );
45         stop();
46
47         jQuery('#foo').ajaxStart(function(){
48                 ok( true, "ajaxStart" );
49         }).ajaxStop(function(){
50                 ok( true, "ajaxStop" );
51                 start();
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" );
60         });
61
62         jQuery.ajaxSetup({ timeout: 500 });
63
64         jQuery.ajax({
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"); }
70         });
71 });
72
73 test("Ajax events with context", function() {
74         expect(6);
75         
76         stop();
77         var context = document.createElement("div");
78         
79         function event(e){
80                 equals( this, context, e.type );
81         }
82
83         function callback(){
84                 equals( this, context, "context is preserved on callback" );
85         }
86         
87         jQuery('#foo').add(context)
88                         .ajaxSend(event)
89                         .ajaxComplete(event)
90                         .ajaxError(event)
91                         .ajaxSuccess(event);
92
93         jQuery.ajax({
94                 url: url("data/name.html"),
95                 beforeSend: callback,
96                 success: callback,
97                 error: callback,
98                 complete:function(){
99                         callback.call(this);
100                         setTimeout(proceed, 300);
101                 },
102                 context:context
103         });
104         
105         function proceed(){
106                 jQuery('#foo').add(context).unbind();
107                 start();
108         }
109 });
110
111 test("jQuery.ajax() - disabled globals", function() {
112         expect( 3 );
113         stop();
114
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" );
127         });
128
129         jQuery.ajax({
130                 global: false,
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);
138                 }
139         });
140 });
141
142 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
143         expect(3);
144         stop();
145         jQuery.ajax({
146           url: url("data/with_fries.xml"),
147           dataType: "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' );
152                 start();
153           }
154         });
155 });
156
157 test("jQuery.ajax - beforeSend", function() {
158         expect(1);
159         stop();
160
161         var check = false;
162
163         jQuery.ajaxSetup({ timeout: 0 });
164
165         jQuery.ajax({
166                 url: url("data/name.html"),
167                 beforeSend: function(xml) {
168                         check = true;
169                 },
170                 success: function(data) {
171                         ok( check, "check beforeSend was executed" );
172                         start();
173                 }
174         });
175 });
176
177 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
178         expect(2);
179         var request = jQuery.ajax({
180                 url: url("data/name.html"),
181                 beforeSend: function() {
182                         ok( true, "beforeSend got called, canceling" );
183                         return false;
184                 },
185                 success: function() {
186                         ok( false, "request didn't get canceled" );
187                 },
188                 complete: function() {
189                         ok( false, "request didn't get canceled" );
190                 },
191                 error: function() {
192                         ok( false, "request didn't get canceled" );
193                 }
194         });
195         ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
196 });
197
198 window.foobar = null;
199 window.testFoo = undefined;
200
201 test("jQuery.ajax - dataType html", function() {
202         expect(5);
203         stop();
204
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' );
208
209                 start();
210         };
211
212         jQuery.ajax({
213           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);
219           }
220         });
221 });
222
223 test("serialize()", function() {
224         expect(5);
225
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');
229
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');
233
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');
237
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');
241
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');
245
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');
250         */
251 });
252
253 test("jQuery.param()", function() {
254         expect(13);
255         
256   equals( jQuery.param.traditional, undefined, "traditional flag, undefined by default" );
257   
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" );
260
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&regularThing=blah", "with array" );
263
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" );
266
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" );
269
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" );
272         
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" );
275         
276         jQuery.param.traditional = true;
277         
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" );
280
281         params = {someName: [1, 2, 3], regularThing: "blah" };
282         equals( jQuery.param(params), "someName=1&someName=2&someName=3&regularThing=blah", "with array" );
283
284         params = {foo: ['a', 'b', 'c']};
285         equals( jQuery.param(params), "foo=a&foo=b&foo=c", "with array of strings" );
286
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" );
289
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" );
292         
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" );
295
296 });
297
298 test("synchronous request", function() {
299         expect(1);
300         ok( /^{ "data"/.test( jQuery.ajax({url: url("data/json_obj.js"), async: false}).responseText ), "check returned text" );
301 });
302
303 test("synchronous request with callbacks", function() {
304         expect(2);
305         var result;
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" );
308 });
309
310 test("pass-through request object", function() {
311         expect(8);
312         stop();
313
314         var target = "data/name.html";
315         var successCount = 0;
316         var errorCount = 0;
317         var errorEx = "";
318         var success = function() {
319                 successCount++;
320         };
321         jQuery("#foo").ajaxError(function (e, xml, s, ex) {
322                 errorCount++;
323                 errorEx += ": " + xml.status;
324         });
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');
329
330                 start();
331         });
332
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" );
338 });
339
340 test("ajax cache", function () {
341         expect(18);
342         
343         stop();
344
345         var count = 0;
346
347         jQuery("#firstp").bind("ajaxSuccess", function (e, xml, s) {
348                 var re = /_=(.*?)(&|$)/g;
349                 var oldOne = null;
350                 for (var i = 0; i < 6; i++) {
351                         var ret = re.exec(s.url);
352                         if (!ret) {
353                                 break;
354                         }
355                         oldOne = ret[1];
356                 }
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");
359                 if(++count == 6)
360                         start();
361         });
362
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" );
369 });
370
371 /*
372  * Test disabled.
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() {
376         expect(2);
377
378         var tmp = jQuery.extend({}, jQuery.ajaxSettings);
379         var orig = { url: "data/with_fries.xml" };
380         var t;
381
382         jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
383
384         t = jQuery.extend({}, orig);
385         t.data = {};
386         jQuery.ajax(t);
387         ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
388
389         t = jQuery.extend({}, orig);
390         t.data = { zoo: 'a', ping: 'b' };
391         jQuery.ajax(t);
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' }" );
393
394         jQuery.ajaxSettings = tmp;
395 });
396 */
397
398 test("load(String)", function() {
399         expect(1);
400         stop(); // check if load can be called with only url
401         jQuery('#first').load("data/name.html", start);
402 });
403
404 test("load('url selector')", function() {
405         expect(1);
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" );
409                 start();
410         });
411 });
412
413 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
414         expect(1);
415         stop();
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: "" });
421                 start();
422         });
423         jQuery('#first').load("data/test3.html");
424 });
425
426 test("load(String, Function) - simple: inject text into DOM", function() {
427         expect(2);
428         stop();
429         jQuery('#first').load(url("data/name.html"), function() {
430                 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
431                 start();
432         });
433 });
434
435 test("load(String, Function) - check scripts", function() {
436         expect(7);
437         stop();
438
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');
442
443                 start();
444         };
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);
450         });
451 });
452
453 test("load(String, Function) - check file with only a script tag", function() {
454         expect(3);
455         stop();
456
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' );
460
461                 start();
462         });
463 });
464
465 test("load(String, Object, Function)", function() {
466         expect(2);
467         stop();
468
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');
473                 start();
474         });
475 });
476
477 test("load(String, String, Function)", function() {
478         expect(2);
479         stop();
480
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');
485                 start();
486         });
487 });
488
489 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
490         expect(2);
491         stop();
492         jQuery.get(url('data/dashboard.xml'), function(xml) {
493                 var content = [];
494                 jQuery('tab', xml).each(function() {
495                         content.push(jQuery(this).text());
496                 });
497                 equals( content[0], 'blabla', 'Check first tab');
498                 equals( content[1], 'blublu', 'Check second tab');
499                 start();
500         });
501 });
502
503 test("jQuery.getScript(String, Function) - with callback", function() {
504         expect(2);
505         stop();
506         jQuery.getScript(url("data/test.js"), function() {
507                 equals( foobar, "bar", 'Check if script was evaluated' );
508                 setTimeout(start, 100);
509         });
510 });
511
512 test("jQuery.getScript(String, Function) - no callback", function() {
513         expect(1);
514         stop();
515         jQuery.getScript(url("data/test.js"), function(){
516                 start();
517         });
518 });
519
520 test("jQuery.ajax() - JSONP, Local", function() {
521         expect(7);
522
523         var count = 0;
524         function plus(){ if ( ++count == 7 ) start(); }
525
526         stop();
527
528         jQuery.ajax({
529                 url: "data/jsonp.php",
530                 dataType: "jsonp",
531                 success: function(data){
532                         ok( data.data, "JSON results returned (GET, no callback)" );
533                         plus();
534                 },
535                 error: function(data){
536                         ok( false, "Ajax error JSON (GET, no callback)" );
537                         plus();
538                 }
539         });
540
541         jQuery.ajax({
542                 url: "data/jsonp.php?callback=?",
543                 dataType: "jsonp",
544                 success: function(data){
545                         ok( data.data, "JSON results returned (GET, url callback)" );
546                         plus();
547                 },
548                 error: function(data){
549                         ok( false, "Ajax error JSON (GET, url callback)" );
550                         plus();
551                 }
552         });
553
554         jQuery.ajax({
555                 url: "data/jsonp.php",
556                 dataType: "jsonp",
557                 data: "callback=?",
558                 success: function(data){
559                         ok( data.data, "JSON results returned (GET, data callback)" );
560                         plus();
561                 },
562                 error: function(data){
563                         ok( false, "Ajax error JSON (GET, data callback)" );
564                         plus();
565                 }
566         });
567
568         jQuery.ajax({
569                 url: "data/jsonp.php",
570                 dataType: "jsonp",
571                 jsonp: "callback",
572                 success: function(data){
573                         ok( data.data, "JSON results returned (GET, data obj callback)" );
574                         plus();
575                 },
576                 error: function(data){
577                         ok( false, "Ajax error JSON (GET, data obj callback)" );
578                         plus();
579                 }
580         });
581
582         jQuery.ajax({
583                 type: "POST",
584                 url: "data/jsonp.php",
585                 dataType: "jsonp",
586                 success: function(data){
587                         ok( data.data, "JSON results returned (POST, no callback)" );
588                         plus();
589                 },
590                 error: function(data){
591                         ok( false, "Ajax error JSON (GET, data obj callback)" );
592                         plus();
593                 }
594         });
595
596         jQuery.ajax({
597                 type: "POST",
598                 url: "data/jsonp.php",
599                 data: "callback=?",
600                 dataType: "jsonp",
601                 success: function(data){
602                         ok( data.data, "JSON results returned (POST, data callback)" );
603                         plus();
604                 },
605                 error: function(data){
606                         ok( false, "Ajax error JSON (POST, data callback)" );
607                         plus();
608                 }
609         });
610
611         jQuery.ajax({
612                 type: "POST",
613                 url: "data/jsonp.php",
614                 jsonp: "callback",
615                 dataType: "jsonp",
616                 success: function(data){
617                         ok( data.data, "JSON results returned (POST, data obj callback)" );
618                         plus();
619                 },
620                 error: function(data){
621                         ok( false, "Ajax error JSON (POST, data obj callback)" );
622                         plus();
623                 }
624         });
625 });
626
627 test("jQuery.ajax() - JSONP, Remote", function() {
628         expect(4);
629
630         var count = 0;
631         function plus(){ if ( ++count == 4 ) start(); }
632
633         var base = window.location.href.replace(/\?.*$/, "");
634
635         stop();
636
637         jQuery.ajax({
638                 url: base + "data/jsonp.php",
639                 dataType: "jsonp",
640                 success: function(data){
641                         ok( data.data, "JSON results returned (GET, no callback)" );
642                         plus();
643                 },
644                 error: function(data){
645                         ok( false, "Ajax error JSON (GET, no callback)" );
646                         plus();
647                 }
648         });
649
650         jQuery.ajax({
651                 url: base + "data/jsonp.php?callback=?",
652                 dataType: "jsonp",
653                 success: function(data){
654                         ok( data.data, "JSON results returned (GET, url callback)" );
655                         plus();
656                 },
657                 error: function(data){
658                         ok( false, "Ajax error JSON (GET, url callback)" );
659                         plus();
660                 }
661         });
662
663         jQuery.ajax({
664                 url: base + "data/jsonp.php",
665                 dataType: "jsonp",
666                 data: "callback=?",
667                 success: function(data){
668                         ok( data.data, "JSON results returned (GET, data callback)" );
669                         plus();
670                 },
671                 error: function(data){
672                         ok( false, "Ajax error JSON (GET, data callback)" );
673                         plus();
674                 }
675         });
676
677         jQuery.ajax({
678                 url: base + "data/jsonp.php",
679                 dataType: "jsonp",
680                 jsonp: "callback",
681                 success: function(data){
682                         ok( data.data, "JSON results returned (GET, data obj callback)" );
683                         plus();
684                 },
685                 error: function(data){
686                         ok( false, "Ajax error JSON (GET, data obj callback)" );
687                         plus();
688                 }
689         });
690 });
691
692 test("jQuery.ajax() - script, Remote", function() {
693         expect(2);
694
695         var base = window.location.href.replace(/\?.*$/, "");
696
697         stop();
698
699         jQuery.ajax({
700                 url: base + "data/test.js",
701                 dataType: "script",
702                 success: function(data){
703                         ok( foobar, "Script results returned (GET, no callback)" );
704                         start();
705                 }
706         });
707 });
708
709 test("jQuery.ajax() - script, Remote with POST", function() {
710         expect(3);
711
712         var base = window.location.href.replace(/\?.*$/, "");
713
714         stop();
715
716         jQuery.ajax({
717                 url: base + "data/test.js",
718                 type: "POST",
719                 dataType: "script",
720                 success: function(data, status){
721                         ok( foobar, "Script results returned (POST, no callback)" );
722                         equals( status, "success", "Script results returned (POST, no callback)" );
723                         start();
724                 },
725                 error: function(xhr) {
726                         ok( false, "ajax error, status code: " + xhr.status );
727                         start();
728                 }
729         });
730 });
731
732 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
733         expect(2);
734
735         var base = window.location.href.replace(/\?.*$/, "");
736         base = base.replace(/^.*?\/\//, "//");
737
738         stop();
739
740         jQuery.ajax({
741                 url: base + "data/test.js",
742                 dataType: "script",
743                 success: function(data){
744                         ok( foobar, "Script results returned (GET, no callback)" );
745                         start();
746                 }
747         });
748 });
749
750 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
751         expect(5);
752         stop();
753         jQuery.getJSON(url("data/json.php"), {json: "array"}, function(json) {
754           ok( json.length >= 2, "Check length");
755           equals( json[0].name, 'John', 'Check JSON: first, name' );
756           equals( json[0].age, 21, 'Check JSON: first, age' );
757           equals( json[1].name, 'Peter', 'Check JSON: second, name' );
758           equals( json[1].age, 25, 'Check JSON: second, age' );
759           start();
760         });
761 });
762
763 test("jQuery.getJSON(String, Function) - JSON object", function() {
764         expect(2);
765         stop();
766         jQuery.getJSON(url("data/json.php"), function(json) {
767           if (json && json.data) {
768                   equals( json.data.lang, 'en', 'Check JSON: lang' );
769                   equals( json.data.length, 25, 'Check JSON: length' );
770           }
771           start();
772         });
773 });
774
775 test("jQuery.getJSON - Using Native JSON", function() {
776         expect(2);
777         
778         var old = window.JSON;
779         JSON = {
780                 parse: function(str){
781                         ok( true, "Verifying that parse method was run" );
782                         return true;
783                 }
784         };
785
786         stop();
787         jQuery.getJSON(url("data/json.php"), function(json) {
788                 if (!old)
789                         delete window.JSON
790                 else
791                         window.JSON = old;
792           equals( json, true, "Verifying return value" );
793           start();
794         });
795 });
796
797 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
798         expect(2);
799
800         var base = window.location.href.replace(/\?.*$/, "");
801
802         stop();
803         jQuery.getJSON(url(base + "data/json.php"), function(json) {
804           equals( json.data.lang, 'en', 'Check JSON: lang' );
805           equals( json.data.length, 25, 'Check JSON: length' );
806           start();
807         });
808 });
809
810 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
811         expect(4);
812         stop();
813         var done = 0;
814
815         jQuery.post(url("data/name.php"), {xml: "5-2"}, function(xml){
816           jQuery('math', xml).each(function() {
817                         equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
818                         equals( jQuery('result', this).text(), '3', 'Check for XML' );
819                  });
820           if ( ++done === 2 ) start();
821         });
822
823         jQuery.post(url("data/name.php?xml=5-2"), {}, function(xml){
824           jQuery('math', xml).each(function() {
825                         equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
826                         equals( jQuery('result', this).text(), '3', 'Check for XML' );
827                  });
828           if ( ++done === 2 ) start();
829         });
830 });
831
832 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
833         stop();
834
835         var passed = 0;
836
837         jQuery.ajaxSetup({timeout: 1000});
838
839         var pass = function() {
840                 passed++;
841                 if ( passed == 2 ) {
842                         ok( true, 'Check local and global callbacks after timeout' );
843                         jQuery('#main').unbind("ajaxError");
844                         start();
845                 }
846         };
847
848         var fail = function(a,b,c) {
849                 ok( false, 'Check for timeout failed ' + a + ' ' + b );
850                 start();
851         };
852
853         jQuery('#main').ajaxError(pass);
854
855         jQuery.ajax({
856           type: "GET",
857           url: url("data/name.php?wait=5"),
858           error: pass,
859           success: fail
860         });
861
862         // reset timeout
863         jQuery.ajaxSetup({timeout: 0});
864 });
865
866 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
867         stop();
868         jQuery.ajaxSetup({timeout: 50});
869
870         jQuery.ajax({
871           type: "GET",
872           timeout: 15000,
873           url: url("data/name.php?wait=1"),
874           error: function() {
875                    ok( false, 'Check for local timeout failed' );
876                    start();
877           },
878           success: function() {
879                 ok( true, 'Check for local timeout' );
880                 start();
881           }
882         });
883
884         // reset timeout
885         jQuery.ajaxSetup({timeout: 0});
886 });
887
888 test("jQuery.ajax - simple get", function() {
889         expect(1);
890         stop();
891         jQuery.ajax({
892           type: "GET",
893           url: url("data/name.php?name=foo"),
894           success: function(msg){
895                 equals( msg, 'bar', 'Check for GET' );
896                 start();
897           }
898         });
899 });
900
901 test("jQuery.ajax - simple post", function() {
902         expect(1);
903         stop();
904         jQuery.ajax({
905           type: "POST",
906           url: url("data/name.php"),
907           data: "name=peter",
908           success: function(msg){
909                 equals( msg, 'pan', 'Check for POST' );
910                 start();
911           }
912         });
913 });
914
915 test("ajaxSetup()", function() {
916         expect(1);
917         stop();
918         jQuery.ajaxSetup({
919                 url: url("data/name.php?name=foo"),
920                 success: function(msg){
921                         equals( msg, 'bar', 'Check for GET' );
922                         start();
923                 }
924         });
925         jQuery.ajax();
926 });
927
928 /*
929 test("custom timeout does not set error message when timeout occurs, see #970", function() {
930         stop();
931         jQuery.ajax({
932                 url: "data/name.php?wait=1",
933                 timeout: 500,
934                 error: function(request, status) {
935                         ok( status != null, "status shouldn't be null in error handler" );
936                         equals( "timeout", status );
937                         start();
938                 }
939         });
940 });
941 */
942
943 test("data option: evaluate function values (#2806)", function() {
944         stop();
945         jQuery.ajax({
946                 url: "data/echoQuery.php",
947                 data: {
948                         key: function() {
949                                 return "value";
950                         }
951                 },
952                 success: function(result) {
953                         equals( result, "key=value" );
954                         start();
955                 }
956         })
957 });
958
959 test("jQuery.ajax - If-Modified-Since support", function() {
960         expect( 3 );
961
962         stop();
963
964         var url = "data/if_modified_since.php?ts=" + new Date();
965
966         jQuery.ajax({
967                 url: url,
968                 ifModified: true,
969                 success: function(data, status) { 
970                         equals(status, "success");
971                         
972                         jQuery.ajax({
973                                 url: url,
974                                 ifModified: true,
975                                 success: function(data, status) { 
976                                         if ( data === "FAIL" ) {
977                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
978                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
979                                         } else {
980                                                 equals(status, "notmodified");
981                                                 ok(data == null, "response body should be empty")
982                                         }
983                                         start();
984                                 }
985                         });
986                 }
987         });
988 });
989
990 test("jQuery.ajax - Etag support", function() {
991         expect( 3 );
992
993         stop();
994
995         var url = "data/etag.php?ts=" + new Date();
996
997         jQuery.ajax({
998                 url: url,
999                 ifModified: true,
1000                 success: function(data, status) { 
1001                         equals(status, "success");
1002                         
1003                         jQuery.ajax({
1004                                 url: url,
1005                                 ifModified: true,
1006                                 success: function(data, status) { 
1007                                         if ( data === "FAIL" ) {
1008                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1009                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1010                                         } else {
1011                                                 equals(status, "notmodified");
1012                                                 ok(data == null, "response body should be empty")
1013                                         }
1014                                         start();
1015                                 }
1016                         });
1017                 }
1018         });
1019 });
1020
1021 }
1022
1023 //}