716ed9c970adbc379aaca8145d447317570048fa
[jquery.git] / test / unit / ajax.js
1 module("ajax", { teardown: moduleTeardown });
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         jQuery('#foo').ajaxStart(function(){
18                 ok( true, "ajaxStart" );
19         }).ajaxStop(function(){
20                 ok( true, "ajaxStop" );
21                 start();
22         }).ajaxSend(function(){
23                 ok( true, "ajaxSend" );
24         }).ajaxComplete(function(){
25                 ok( true, "ajaxComplete" );
26         }).ajaxError(function(){
27                 ok( false, "ajaxError" );
28         }).ajaxSuccess(function(){
29                 ok( true, "ajaxSuccess" );
30         });
31
32         jQuery.ajax({
33                 url: url("data/name.html"),
34                 beforeSend: function(){ ok(true, "beforeSend"); },
35                 success: function(){ ok(true, "success"); },
36                 error: function(){ ok(false, "error"); },
37                 complete: function(){ ok(true, "complete"); }
38         });
39 });
40
41 test("jQuery.ajax() - success callbacks - (url, options) syntax", function() {
42         expect( 8 );
43
44         jQuery.ajaxSetup({ timeout: 0 });
45
46         stop();
47
48         setTimeout(function(){
49                 jQuery('#foo').ajaxStart(function(){
50                         ok( true, "ajaxStart" );
51                 }).ajaxStop(function(){
52                         ok( true, "ajaxStop" );
53                         start();
54                 }).ajaxSend(function(){
55                         ok( true, "ajaxSend" );
56                 }).ajaxComplete(function(){
57                         ok( true, "ajaxComplete" );
58                 }).ajaxError(function(){
59                         ok( false, "ajaxError" );
60                 }).ajaxSuccess(function(){
61                         ok( true, "ajaxSuccess" );
62                 });
63
64                 jQuery.ajax( url("data/name.html") , {
65                         beforeSend: function(){ ok(true, "beforeSend"); },
66                         success: function(){ ok(true, "success"); },
67                         error: function(){ ok(false, "error"); },
68                         complete: function(){ ok(true, "complete"); }
69                 });
70         }, 13);
71 });
72
73 test("jQuery.ajax() - success callbacks (late binding)", function() {
74         expect( 8 );
75
76         jQuery.ajaxSetup({ timeout: 0 });
77
78         stop();
79
80         setTimeout(function(){
81                 jQuery('#foo').ajaxStart(function(){
82                         ok( true, "ajaxStart" );
83                 }).ajaxStop(function(){
84                         ok( true, "ajaxStop" );
85                         start();
86                 }).ajaxSend(function(){
87                         ok( true, "ajaxSend" );
88                 }).ajaxComplete(function(){
89                         ok( true, "ajaxComplete" );
90                 }).ajaxError(function(){
91                         ok( false, "ajaxError" );
92                 }).ajaxSuccess(function(){
93                         ok( true, "ajaxSuccess" );
94                 });
95
96                 jQuery.ajax({
97                         url: url("data/name.html"),
98                         beforeSend: function(){ ok(true, "beforeSend"); }
99                 })
100                         .complete(function(){ ok(true, "complete"); })
101                         .success(function(){ ok(true, "success"); })
102                         .error(function(){ ok(false, "error"); });
103         }, 13);
104 });
105
106 test("jQuery.ajax() - success callbacks (oncomplete binding)", function() {
107         expect( 8 );
108
109         jQuery.ajaxSetup({ timeout: 0 });
110
111         stop();
112
113         setTimeout(function(){
114                 jQuery('#foo').ajaxStart(function(){
115                         ok( true, "ajaxStart" );
116                 }).ajaxStop(function(){
117                         ok( true, "ajaxStop" );
118                 }).ajaxSend(function(){
119                         ok( true, "ajaxSend" );
120                 }).ajaxComplete(function(){
121                         ok( true, "ajaxComplete" );
122                 }).ajaxError(function(){
123                         ok( false, "ajaxError" );
124                 }).ajaxSuccess(function(){
125                         ok( true, "ajaxSuccess" );
126                 });
127
128                 jQuery.ajax({
129                         url: url("data/name.html"),
130                         beforeSend: function(){ ok(true, "beforeSend"); },
131                         complete: function(xhr) {
132                                 xhr
133                                 .complete(function(){ ok(true, "complete"); })
134                                 .success(function(){ ok(true, "success"); })
135                                 .error(function(){ ok(false, "error"); })
136                                 .complete(function(){ start(); });
137                         }
138                 });
139         }, 13);
140 });
141
142 test("jQuery.ajax() - success callbacks (very late binding)", function() {
143         expect( 8 );
144
145         jQuery.ajaxSetup({ timeout: 0 });
146
147         stop();
148
149         setTimeout(function(){
150                 jQuery('#foo').ajaxStart(function(){
151                         ok( true, "ajaxStart" );
152                 }).ajaxStop(function(){
153                         ok( true, "ajaxStop" );
154                 }).ajaxSend(function(){
155                         ok( true, "ajaxSend" );
156                 }).ajaxComplete(function(){
157                         ok( true, "ajaxComplete" );
158                 }).ajaxError(function(){
159                         ok( false, "ajaxError" );
160                 }).ajaxSuccess(function(){
161                         ok( true, "ajaxSuccess" );
162                 });
163
164                 jQuery.ajax({
165                         url: url("data/name.html"),
166                         beforeSend: function(){ ok(true, "beforeSend"); },
167                         complete: function(xhr) {
168                                 setTimeout (function() {
169                                         xhr
170                                         .complete(function(){ ok(true, "complete"); })
171                                         .success(function(){ ok(true, "success"); })
172                                         .error(function(){ ok(false, "error"); })
173                                         .complete(function(){ start(); });
174                                 },100);
175                         }
176                 });
177         }, 13);
178 });
179
180 test("jQuery.ajax() - success callbacks (order)", function() {
181         expect( 1 );
182
183         jQuery.ajaxSetup({ timeout: 0 });
184
185         stop();
186
187         var testString = "";
188
189         setTimeout(function(){
190                 jQuery.ajax({
191                         url: url("data/name.html"),
192                         success: function( _1 , _2 , xhr ) {
193                                 xhr.success(function() {
194                                         xhr.success(function() {
195                                                 testString += "E";
196                                         });
197                                         testString += "D";
198                                 });
199                                 testString += "A";
200                         },
201                         complete: function() {
202                                 strictEqual(testString, "ABCDE", "Proper order");
203                                 start();
204                         }
205                 }).success(function() {
206                         testString += "B";
207                 }).success(function() {
208                         testString += "C";
209                 });
210         }, 13);
211 });
212
213 test("jQuery.ajax() - error callbacks", function() {
214         expect( 8 );
215         stop();
216
217         jQuery('#foo').ajaxStart(function(){
218                 ok( true, "ajaxStart" );
219         }).ajaxStop(function(){
220                 ok( true, "ajaxStop" );
221                 start();
222         }).ajaxSend(function(){
223                 ok( true, "ajaxSend" );
224         }).ajaxComplete(function(){
225                 ok( true, "ajaxComplete" );
226         }).ajaxError(function(){
227                 ok( true, "ajaxError" );
228         }).ajaxSuccess(function(){
229                 ok( false, "ajaxSuccess" );
230         });
231
232         jQuery.ajaxSetup({ timeout: 500 });
233
234         jQuery.ajax({
235                 url: url("data/name.php?wait=5"),
236                 beforeSend: function(){ ok(true, "beforeSend"); },
237                 success: function(){ ok(false, "success"); },
238                 error: function(){ ok(true, "error"); },
239                 complete: function(){ ok(true, "complete"); }
240         });
241 });
242
243 test("jQuery.ajax() - textStatus and errorThrown values", function() {
244
245         var nb = 2;
246
247         expect( 2 * nb );
248         stop();
249
250         function startN() {
251                 if ( !( --nb ) ) {
252                         start();
253                 }
254         }
255
256         /*
257         Safari 3.x returns "OK" instead of "Not Found"
258         Safari 4.x doesn't have this issue so the test should be re-instated once
259         we drop support for 3.x
260
261         jQuery.ajax({
262                 url: url("data/nonExistingURL"),
263                 error: function( _ , textStatus , errorThrown ){
264                         strictEqual( textStatus, "error", "textStatus is 'error' for 404" );
265                         strictEqual( errorThrown, "Not Found", "errorThrown is 'Not Found' for 404");
266                         startN();
267                 }
268         });
269         */
270
271         jQuery.ajax({
272                 url: url("data/name.php?wait=5"),
273                 error: function( _ , textStatus , errorThrown ){
274                         strictEqual( textStatus, "abort", "textStatus is 'abort' for abort" );
275                         strictEqual( errorThrown, "abort", "errorThrown is 'abort' for abort");
276                         startN();
277                 }
278         }).abort();
279
280         jQuery.ajax({
281                 url: url("data/name.php?wait=5"),
282                 error: function( _ , textStatus , errorThrown ){
283                         strictEqual( textStatus, "mystatus", "textStatus is 'mystatus' for abort('mystatus')" );
284                         strictEqual( errorThrown, "mystatus", "errorThrown is 'mystatus' for abort('mystatus')");
285                         startN();
286                 }
287         }).abort( "mystatus" );
288 });
289
290 test("jQuery.ajax() - responseText on error", function() {
291
292         expect( 1 );
293
294         stop();
295
296         jQuery.ajax({
297                 url: url("data/errorWithText.php"),
298                 error: function(xhr) {
299                         strictEqual( xhr.responseText , "plain text message" , "Test jXHR.responseText is filled for HTTP errors" );
300                 },
301                 complete: function() {
302                         start();
303                 }
304         });
305 });
306
307 test(".ajax() - retry with jQuery.ajax( this )", function() {
308
309         expect( 1 );
310
311         stop();
312
313         var firstTime = 1;
314
315         jQuery.ajax({
316                 url: url("data/errorWithText.php"),
317                 error: function() {
318                         if ( firstTime ) {
319                                 firstTime = 0;
320                                 jQuery.ajax( this );
321                         } else {
322                                 ok( true , "Test retrying with jQuery.ajax(this) works" );
323                                 start();
324                         }
325                 }
326         });
327
328 });
329
330 test(".ajax() - headers" , function() {
331
332         expect( 2 );
333
334         stop();
335
336         var requestHeaders = {
337                 siMPle: "value",
338                 "SometHing-elsE": "other value",
339                 OthEr: "something else"
340                 },
341                 list = [],
342                 i;
343
344         for( i in requestHeaders ) {
345                 list.push( i );
346         }
347
348         jQuery.ajax(url("data/headers.php?keys="+list.join( "_" ) ), {
349                 headers: requestHeaders,
350                 success: function( data , _ , xhr ) {
351                         var tmp = [];
352                         for ( i in requestHeaders ) {
353                                 tmp.push( i , ": " , requestHeaders[ i ] , "\n" );
354                         }
355                         tmp = tmp.join( "" );
356
357                         equals( data , tmp , "Headers were sent" );
358                         equals( xhr.getResponseHeader( "Sample-Header" ) , "Hello World" , "Sample header received" );
359                         start();
360                 },
361                 error: function(){ ok(false, "error"); }
362         });
363
364 });
365
366 test(".ajax() - Accept header" , function() {
367
368         expect( 1 );
369
370         stop();
371
372         jQuery.ajax(url("data/headers.php?keys=accept"), {
373                 headers: {
374                         Accept: "very wrong accept value"
375                 },
376                 beforeSend: function( xhr ) {
377                         xhr.setRequestHeader( "Accept", "*/*" );
378                 },
379                 success: function( data ) {
380                         strictEqual( data , "accept: */*\n" , "Test Accept header is set to last value provided" );
381                         start();
382                 },
383                 error: function(){ ok(false, "error"); }
384         });
385
386 });
387
388 test(".ajax() - contentType" , function() {
389
390         expect( 2 );
391
392         stop();
393
394         var count = 2;
395
396         function restart() {
397                 if ( ! --count ) {
398                         start();
399                 }
400         }
401
402         jQuery.ajax(url("data/headers.php?keys=content-type" ), {
403                 contentType: "test",
404                 success: function( data ) {
405                         strictEqual( data , "content-type: test\n" , "Test content-type is sent when options.contentType is set" );
406                 },
407                 complete: function() {
408                         restart();
409                 }
410         });
411
412         jQuery.ajax(url("data/headers.php?keys=content-type" ), {
413                 contentType: false,
414                 success: function( data ) {
415                         strictEqual( data , "content-type: \n" , "Test content-type is not sent when options.contentType===false" );
416                 },
417                 complete: function() {
418                         restart();
419                 }
420         });
421
422 });
423
424 test(".ajax() - protocol-less urls", function() {
425         expect(1);
426
427         jQuery.ajax({
428                 url: "//somedomain.com",
429                 beforeSend: function( xhr, settings ) {
430                         equals(settings.url, location.protocol + "//somedomain.com", "Make sure that the protocol is added.");
431                         return false;
432                 }
433         });
434 });
435
436 test(".ajax() - hash", function() {
437         expect(3);
438
439         jQuery.ajax({
440                 url: "data/name.html#foo",
441                 beforeSend: function( xhr, settings ) {
442                         equals(settings.url, "data/name.html", "Make sure that the URL is trimmed.");
443                         return false;
444                 }
445         });
446
447         jQuery.ajax({
448                 url: "data/name.html?abc#foo",
449                 beforeSend: function( xhr, settings ) {
450                 equals(settings.url, "data/name.html?abc", "Make sure that the URL is trimmed.");
451                         return false;
452                 }
453         });
454
455         jQuery.ajax({
456                 url: "data/name.html?abc#foo",
457                 data: { "test": 123 },
458                 beforeSend: function( xhr, settings ) {
459                         equals(settings.url, "data/name.html?abc&test=123", "Make sure that the URL is trimmed.");
460                         return false;
461                 }
462         });
463 });
464
465 test("jQuery ajax - cross-domain detection", function() {
466
467         expect( 4 );
468
469         var loc = document.location,
470                 otherPort = loc.port === 666 ? 667 : 666,
471                 otherProtocol = loc.protocol === "http:" ? "https:" : "http:";
472
473         jQuery.ajax({
474                 dataType: "jsonp",
475                 url: otherProtocol + "//" + loc.host,
476                 beforeSend: function( _ , s ) {
477                         ok( s.crossDomain , "Test different protocols are detected as cross-domain" );
478                         return false;
479                 }
480         });
481
482         jQuery.ajax({
483                 dataType: "jsonp",
484                 url: loc.protocol + '//somewebsitethatdoesnotexist-656329477541.com:' + ( loc.port || 80 ),
485                 beforeSend: function( _ , s ) {
486                         ok( s.crossDomain , "Test different hostnames are detected as cross-domain" );
487                         return false;
488                 }
489         });
490
491         jQuery.ajax({
492                 dataType: "jsonp",
493                 url: loc.protocol + "//" + loc.hostname + ":" + otherPort,
494                 beforeSend: function( _ , s ) {
495                         ok( s.crossDomain , "Test different ports are detected as cross-domain" );
496                         return false;
497                 }
498         });
499
500         jQuery.ajax({
501                 dataType: "jsonp",
502                 url: loc.protocol + "//" + loc.host,
503                 crossDomain: true,
504                 beforeSend: function( _ , s ) {
505                         ok( s.crossDomain , "Test forced crossDomain is detected as cross-domain" );
506                         return false;
507                 }
508         });
509
510 });
511
512 test(".ajax() - 304", function() {
513         expect( 1 );
514         stop();
515
516         jQuery.ajax({
517                 url: url("data/notmodified.php"),
518                 success: function(){ ok(true, "304 ok"); },
519                 // Do this because opera simply refuses to implement 304 handling :(
520                 // A feature-driven way of detecting this would be appreciated
521                 // See: http://gist.github.com/599419
522                 error: function(){ ok(jQuery.browser.opera, "304 not ok "); },
523                 complete: function(xhr){ start(); }
524         });
525 });
526
527 test(".load()) - 404 error callbacks", function() {
528         expect( 6 );
529         stop();
530
531         jQuery('#foo').ajaxStart(function(){
532                 ok( true, "ajaxStart" );
533         }).ajaxStop(function(){
534                 ok( true, "ajaxStop" );
535                 start();
536         }).ajaxSend(function(){
537                 ok( true, "ajaxSend" );
538         }).ajaxComplete(function(){
539                 ok( true, "ajaxComplete" );
540         }).ajaxError(function(){
541                 ok( true, "ajaxError" );
542         }).ajaxSuccess(function(){
543                 ok( false, "ajaxSuccess" );
544         });
545
546         jQuery("<div/>").load("data/404.html", function(){
547                 ok(true, "complete");
548         });
549 });
550
551 test("jQuery.ajax() - abort", function() {
552         expect( 8 );
553         stop();
554
555         jQuery('#foo').ajaxStart(function(){
556                 ok( true, "ajaxStart" );
557         }).ajaxStop(function(){
558                 ok( true, "ajaxStop" );
559                 start();
560         }).ajaxSend(function(){
561                 ok( true, "ajaxSend" );
562         }).ajaxComplete(function(){
563                 ok( true, "ajaxComplete" );
564         });
565
566         var xhr = jQuery.ajax({
567                 url: url("data/name.php?wait=5"),
568                 beforeSend: function(){ ok(true, "beforeSend"); },
569                 complete: function(){ ok(true, "complete"); }
570         });
571
572         equals( xhr.readyState, 1, "XHR readyState indicates successful dispatch" );
573
574         xhr.abort();
575         equals( xhr.readyState, 0, "XHR readyState indicates successful abortion" );
576 });
577
578 test("Ajax events with context", function() {
579         expect(14);
580
581         stop();
582         var context = document.createElement("div");
583
584         function event(e){
585                 equals( this, context, e.type );
586         }
587
588         function callback(msg){
589                 return function(){
590                         equals( this, context, "context is preserved on callback " + msg );
591                 };
592         }
593
594         function nocallback(msg){
595                 return function(){
596                         equals( typeof this.url, "string", "context is settings on callback " + msg );
597                 };
598         }
599
600         jQuery('#foo').add(context)
601                         .ajaxSend(event)
602                         .ajaxComplete(event)
603                         .ajaxError(event)
604                         .ajaxSuccess(event);
605
606         jQuery.ajax({
607                 url: url("data/name.html"),
608                 beforeSend: callback("beforeSend"),
609                 success: callback("success"),
610                 error: callback("error"),
611                 complete:function(){
612                         callback("complete").call(this);
613
614                         jQuery.ajax({
615                                 url: url("data/404.html"),
616                                 context: context,
617                                 beforeSend: callback("beforeSend"),
618                                 error: callback("error"),
619                                 complete: function(){
620                                         callback("complete").call(this);
621
622                                         jQuery('#foo').add(context).unbind();
623
624                                         jQuery.ajax({
625                                                 url: url("data/404.html"),
626                                                 beforeSend: nocallback("beforeSend"),
627                                                 error: nocallback("error"),
628                                                 complete: function(){
629                                                         nocallback("complete").call(this);
630                                                         start();
631                                                 }
632                                         });
633                                 }
634                         });
635                 },
636                 context:context
637         });
638 });
639
640 test("jQuery.ajax context modification", function() {
641         expect(1);
642
643         stop();
644
645         var obj = {};
646
647         jQuery.ajax({
648                 url: url("data/name.html"),
649                 context: obj,
650                 beforeSend: function(){
651                         this.test = "foo";
652                 },
653                 complete: function() {
654                         start();
655                 }
656         });
657
658         equals( obj.test, "foo", "Make sure the original object is maintained." );
659 });
660
661 test("jQuery.ajax context modification through ajaxSetup", function() {
662         expect(4);
663
664         stop();
665
666         var obj = {};
667
668         jQuery.ajaxSetup({
669                 context: obj
670         });
671
672         strictEqual( jQuery.ajaxSettings.context, obj, "Make sure the context is properly set in ajaxSettings." );
673
674         jQuery.ajax({
675                 url: url("data/name.html"),
676                 complete: function() {
677                         strictEqual( this, obj, "Make sure the original object is maintained." );
678                         jQuery.ajax({
679                                 url: url("data/name.html"),
680                                 context: {},
681                                 complete: function() {
682                                         ok( this !== obj, "Make sure overidding context is possible." );
683                                         jQuery.ajaxSetup({
684                                                 context: false
685                                         });
686                                         jQuery.ajax({
687                                                 url: url("data/name.html"),
688                                                 beforeSend: function(){
689                                                         this.test = "foo2";
690                                                 },
691                                                 complete: function() {
692                                                         ok( this !== obj, "Make sure unsetting context is possible." );
693                                                         start();
694                                                 }
695                                         });
696                                 }
697                         });
698                 }
699         });
700 });
701
702 test("jQuery.ajax() - disabled globals", function() {
703         expect( 3 );
704         stop();
705
706         jQuery('#foo').ajaxStart(function(){
707                 ok( false, "ajaxStart" );
708         }).ajaxStop(function(){
709                 ok( false, "ajaxStop" );
710         }).ajaxSend(function(){
711                 ok( false, "ajaxSend" );
712         }).ajaxComplete(function(){
713                 ok( false, "ajaxComplete" );
714         }).ajaxError(function(){
715                 ok( false, "ajaxError" );
716         }).ajaxSuccess(function(){
717                 ok( false, "ajaxSuccess" );
718         });
719
720         jQuery.ajax({
721                 global: false,
722                 url: url("data/name.html"),
723                 beforeSend: function(){ ok(true, "beforeSend"); },
724                 success: function(){ ok(true, "success"); },
725                 error: function(){ ok(false, "error"); },
726                 complete: function(){
727                   ok(true, "complete");
728                   setTimeout(function(){ start(); }, 13);
729                 }
730         });
731 });
732
733 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
734         expect(3);
735         stop();
736         jQuery.ajax({
737           url: url("data/with_fries.xml"),
738           dataType: "xml",
739           success: function(resp) {
740                 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
741                 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
742                 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
743                 start();
744           }
745         });
746 });
747
748 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements (over JSONP)", function() {
749         expect(3);
750         stop();
751         jQuery.ajax({
752           url: url("data/with_fries_over_jsonp.php"),
753           dataType: "jsonp xml",
754           success: function(resp) {
755                 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
756                 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
757                 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
758                 start();
759           },
760           error: function(_1,_2,error) {
761                 ok( false, error );
762                 start();
763           }
764         });
765 });
766
767 test("jQuery.ajax - HEAD requests", function() {
768         expect(2);
769
770         stop();
771         jQuery.ajax({
772                 url: url("data/name.html"),
773                 type: "HEAD",
774                 success: function(data, status, xhr){
775                         var h = xhr.getAllResponseHeaders();
776                         ok( /Date/i.test(h), 'No Date in HEAD response' );
777
778                         jQuery.ajax({
779                                 url: url("data/name.html"),
780                                 data: { whip_it: "good" },
781                                 type: "HEAD",
782                                 success: function(data, status, xhr){
783                                         var h = xhr.getAllResponseHeaders();
784                                         ok( /Date/i.test(h), 'No Date in HEAD response with data' );
785                                         start();
786                                 }
787                         });
788                 }
789         });
790
791 });
792
793 test("jQuery.ajax - beforeSend", function() {
794         expect(1);
795         stop();
796
797         var check = false;
798
799         jQuery.ajaxSetup({ timeout: 0 });
800
801         jQuery.ajax({
802                 url: url("data/name.html"),
803                 beforeSend: function(xml) {
804                         check = true;
805                 },
806                 success: function(data) {
807                         ok( check, "check beforeSend was executed" );
808                         start();
809                 }
810         });
811 });
812
813 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
814         expect(2);
815         var request = jQuery.ajax({
816                 url: url("data/name.html"),
817                 beforeSend: function() {
818                         ok( true, "beforeSend got called, canceling" );
819                         return false;
820                 },
821                 success: function() {
822                         ok( false, "request didn't get canceled" );
823                 },
824                 complete: function() {
825                         ok( false, "request didn't get canceled" );
826                 },
827                 error: function() {
828                         ok( false, "request didn't get canceled" );
829                 }
830         });
831         ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
832 });
833
834 test("jQuery.ajax - beforeSend, cancel request manually", function() {
835         expect(2);
836         var request = jQuery.ajax({
837                 url: url("data/name.html"),
838                 beforeSend: function(xhr) {
839                         ok( true, "beforeSend got called, canceling" );
840                         xhr.abort();
841                 },
842                 success: function() {
843                         ok( false, "request didn't get canceled" );
844                 },
845                 complete: function() {
846                         ok( false, "request didn't get canceled" );
847                 },
848                 error: function() {
849                         ok( false, "request didn't get canceled" );
850                 }
851         });
852         ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
853 });
854
855 window.foobar = null;
856 window.testFoo = undefined;
857
858 test("jQuery.ajax - dataType html", function() {
859         expect(5);
860         stop();
861
862         var verifyEvaluation = function() {
863                 equals( testFoo, "foo", 'Check if script was evaluated for datatype html' );
864                 equals( foobar, "bar", 'Check if script src was evaluated for datatype html' );
865
866                 start();
867         };
868
869         jQuery.ajax({
870           dataType: "html",
871           url: url("data/test.html"),
872           success: function(data) {
873                 jQuery("#ap").html(data);
874                 ok( data.match(/^html text/), 'Check content for datatype html' );
875                 setTimeout(verifyEvaluation, 600);
876           }
877         });
878 });
879
880 test("serialize()", function() {
881         expect(5);
882
883         // Add html5 elements only for serialize because selector can't yet find them on non-html5 browsers
884         jQuery("#search").after(
885                 '<input type="email" id="html5email" name="email" value="dave@jquery.com" />'+
886                 '<input type="number" id="html5number" name="number" value="43" />'
887         );
888
889         equals( jQuery('#form').serialize(),
890                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3",
891                 'Check form serialization as query string');
892
893         equals( jQuery('#form :input').serialize(),
894                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3",
895                 'Check input serialization as query string');
896
897         equals( jQuery('#testForm').serialize(),
898                 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
899                 'Check form serialization as query string');
900
901         equals( jQuery('#testForm :input').serialize(),
902                 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
903                 'Check input serialization as query string');
904
905         equals( jQuery('#form, #testForm').serialize(),
906                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3&T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
907                 'Multiple form serialization as query string');
908
909   /* Temporarily disabled. Opera 10 has problems with form serialization.
910         equals( jQuery('#form, #testForm :input').serialize(),
911                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
912                 'Mixed form/input serialization as query string');
913         */
914         jQuery("#html5email, #html5number").remove();
915 });
916
917 test("jQuery.param()", function() {
918         expect(23);
919
920         equals( !jQuery.ajaxSettings.traditional, true, "traditional flag, falsy by default" );
921
922         var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
923         equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
924
925         params = {someName: [1, 2, 3], regularThing: "blah" };
926         equals( jQuery.param(params), "someName%5B%5D=1&someName%5B%5D=2&someName%5B%5D=3&regularThing=blah", "with array" );
927
928         params = {foo: ['a', 'b', 'c']};
929         equals( jQuery.param(params), "foo%5B%5D=a&foo%5B%5D=b&foo%5B%5D=c", "with array of strings" );
930
931         params = {foo: ["baz", 42, "All your base are belong to us"] };
932         equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
933
934         params = {foo: { bar: 'baz', beep: 42, quux: 'All your base are belong to us' } };
935         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" );
936
937         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?" };
938         equals( decodeURIComponent( jQuery.param(params) ), "a[]=1&a[]=2&b[c]=3&b[d][]=4&b[d][]=5&b[e][x][]=6&b[e][y]=7&b[e][z][]=8&b[e][z][]=9&b[f]=true&b[g]=false&b[h]=undefined&i[]=10&i[]=11&j=true&k=false&l[]=undefined&l[]=0&m=cowboy+hat?", "huge structure" );
939
940         params = { a: [ 0, [ 1, 2 ], [ 3, [ 4, 5 ], [ 6 ] ], { b: [ 7, [ 8, 9 ], [ { c: 10, d: 11 } ], [ [ 12 ] ], [ [ [ 13 ] ] ], { e: { f: { g: [ 14, [ 15 ] ] } } }, 16 ] }, 17 ] };
941         equals( decodeURIComponent( jQuery.param(params) ), "a[]=0&a[1][]=1&a[1][]=2&a[2][]=3&a[2][1][]=4&a[2][1][]=5&a[2][2][]=6&a[3][b][]=7&a[3][b][1][]=8&a[3][b][1][]=9&a[3][b][2][0][c]=10&a[3][b][2][0][d]=11&a[3][b][3][0][]=12&a[3][b][4][0][0][]=13&a[3][b][5][e][f][g][]=14&a[3][b][5][e][f][g][1][]=15&a[3][b][]=16&a[]=17", "nested arrays" );
942
943         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?" };
944         equals( jQuery.param(params,true), "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, forced traditional" );
945
946         equals( decodeURIComponent( jQuery.param({ a: [1,2,3], 'b[]': [4,5,6], 'c[d]': [7,8,9], e: { f: [10], g: [11,12], h: 13 } }) ), "a[]=1&a[]=2&a[]=3&b[]=4&b[]=5&b[]=6&c[d][]=7&c[d][]=8&c[d][]=9&e[f][]=10&e[g][]=11&e[g][]=12&e[h]=13", "Make sure params are not double-encoded." );
947
948         // Make sure empty arrays and objects are handled #6481
949         equals( jQuery.param({"foo": {"bar": []} }), "foo%5Bbar%5D=", "Empty array param" );
950         equals( jQuery.param({"foo": {"bar": [], foo: 1} }), "foo%5Bbar%5D=&foo%5Bfoo%5D=1", "Empty array param" );
951         equals( jQuery.param({"foo": {"bar": {}} }), "foo%5Bbar%5D=", "Empty object param" );
952
953         jQuery.ajaxSetup({ traditional: true });
954
955         var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
956         equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
957
958         params = {someName: [1, 2, 3], regularThing: "blah" };
959         equals( jQuery.param(params), "someName=1&someName=2&someName=3&regularThing=blah", "with array" );
960
961         params = {foo: ['a', 'b', 'c']};
962         equals( jQuery.param(params), "foo=a&foo=b&foo=c", "with array of strings" );
963
964         params = {"foo[]":["baz", 42, "All your base are belong to us"]};
965         equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
966
967         params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
968         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" );
969
970         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?" };
971         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" );
972
973         params = { a: [ 0, [ 1, 2 ], [ 3, [ 4, 5 ], [ 6 ] ], { b: [ 7, [ 8, 9 ], [ { c: 10, d: 11 } ], [ [ 12 ] ], [ [ [ 13 ] ] ], { e: { f: { g: [ 14, [ 15 ] ] } } }, 16 ] }, 17 ] };
974         equals( jQuery.param(params), "a=0&a=1%2C2&a=3%2C4%2C5%2C6&a=%5Bobject+Object%5D&a=17", "nested arrays (not possible when jQuery.param.traditional == true)" );
975
976         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?" };
977         equals( decodeURIComponent( jQuery.param(params,false) ), "a[]=1&a[]=2&b[c]=3&b[d][]=4&b[d][]=5&b[e][x][]=6&b[e][y]=7&b[e][z][]=8&b[e][z][]=9&b[f]=true&b[g]=false&b[h]=undefined&i[]=10&i[]=11&j=true&k=false&l[]=undefined&l[]=0&m=cowboy+hat?", "huge structure, forced not traditional" );
978
979         params = { param1: null };
980         equals( jQuery.param(params,false), "param1=null", "Make sure that null params aren't traversed." );
981
982         params = {'test': {'length': 3, 'foo': 'bar'} };
983         equals( jQuery.param( params, false ), "test%5Blength%5D=3&test%5Bfoo%5D=bar", "Sub-object with a length property" );
984 });
985
986 test("synchronous request", function() {
987         expect(1);
988         ok( /^{ "data"/.test( jQuery.ajax({url: url("data/json_obj.js"), dataType: "text", async: false}).responseText ), "check returned text" );
989 });
990
991 test("synchronous request with callbacks", function() {
992         expect(2);
993         var result;
994         jQuery.ajax({url: url("data/json_obj.js"), async: false, dataType: "text", success: function(data) { ok(true, "sucess callback executed"); result = data; } });
995         ok( /^{ "data"/.test( result ), "check returned text" );
996 });
997
998 test("pass-through request object", function() {
999         expect(8);
1000         stop();
1001
1002         var target = "data/name.html";
1003         var successCount = 0;
1004         var errorCount = 0;
1005         var errorEx = "";
1006         var success = function() {
1007                 successCount++;
1008         };
1009         jQuery("#foo").ajaxError(function (e, xml, s, ex) {
1010                 errorCount++;
1011                 errorEx += ": " + xml.status;
1012         });
1013         jQuery("#foo").one('ajaxStop', function () {
1014                 equals(successCount, 5, "Check all ajax calls successful");
1015                 equals(errorCount, 0, "Check no ajax errors (status" + errorEx + ")");
1016                 jQuery("#foo").unbind('ajaxError');
1017
1018                 start();
1019         });
1020
1021         ok( jQuery.get(url(target), success), "get" );
1022         ok( jQuery.post(url(target), success), "post" );
1023         ok( jQuery.getScript(url("data/test.js"), success), "script" );
1024         ok( jQuery.getJSON(url("data/json_obj.js"), success), "json" );
1025         ok( jQuery.ajax({url: url(target), success: success}), "generic" );
1026 });
1027
1028 test("ajax cache", function () {
1029         expect(18);
1030
1031         stop();
1032
1033         var count = 0;
1034
1035         jQuery("#firstp").bind("ajaxSuccess", function (e, xml, s) {
1036                 var re = /_=(.*?)(&|$)/g;
1037                 var oldOne = null;
1038                 for (var i = 0; i < 6; i++) {
1039                         var ret = re.exec(s.url);
1040                         if (!ret) {
1041                                 break;
1042                         }
1043                         oldOne = ret[1];
1044                 }
1045                 equals(i, 1, "Test to make sure only one 'no-cache' parameter is there");
1046                 ok(oldOne != "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
1047                 if(++count == 6)
1048                         start();
1049         });
1050
1051         ok( jQuery.ajax({url: "data/text.php", cache:false}), "test with no parameters" );
1052         ok( jQuery.ajax({url: "data/text.php?pizza=true", cache:false}), "test with 1 parameter" );
1053         ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555", cache:false}), "test with _= parameter" );
1054         ok( jQuery.ajax({url: "data/text.php?pizza=true&_=tobereplaced555", cache:false}), "test with 1 parameter plus _= one" );
1055         ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555&tv=false", cache:false}), "test with 1 parameter plus _= one before it" );
1056         ok( jQuery.ajax({url: "data/text.php?name=David&_=tobereplaced555&washere=true", cache:false}), "test with 2 parameters surrounding _= one" );
1057 });
1058
1059 /*
1060  * Test disabled.
1061  * The assertions expect that the passed-in object will be modified,
1062  * which shouldn't be the case. Fixes #5439.
1063 test("global ajaxSettings", function() {
1064         expect(2);
1065
1066         var tmp = jQuery.extend({}, jQuery.ajaxSettings);
1067         var orig = { url: "data/with_fries.xml" };
1068         var t;
1069
1070         jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
1071
1072         t = jQuery.extend({}, orig);
1073         t.data = {};
1074         jQuery.ajax(t);
1075         ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
1076
1077         t = jQuery.extend({}, orig);
1078         t.data = { zoo: 'a', ping: 'b' };
1079         jQuery.ajax(t);
1080         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' }" );
1081
1082         jQuery.ajaxSettings = tmp;
1083 });
1084 */
1085
1086 test("load(String)", function() {
1087         expect(1);
1088         stop(); // check if load can be called with only url
1089         jQuery('#first').load("data/name.html", start);
1090 });
1091
1092 test("load('url selector')", function() {
1093         expect(1);
1094         stop(); // check if load can be called with only url
1095         jQuery('#first').load("data/test3.html div.user", function(){
1096                 equals( jQuery(this).children("div").length, 2, "Verify that specific elements were injected" );
1097                 start();
1098         });
1099 });
1100
1101 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
1102         expect(1);
1103         stop();
1104         jQuery.ajaxSetup({ dataType: "json" });
1105         jQuery("#first").ajaxComplete(function (e, xml, s) {
1106                 equals( s.dataType, "html", "Verify the load() dataType was html" );
1107                 jQuery("#first").unbind("ajaxComplete");
1108                 jQuery.ajaxSetup({ dataType: "" });
1109                 start();
1110         });
1111         jQuery('#first').load("data/test3.html");
1112 });
1113
1114 test("load(String, Function) - simple: inject text into DOM", function() {
1115         expect(2);
1116         stop();
1117         jQuery('#first').load(url("data/name.html"), function() {
1118                 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
1119                 start();
1120         });
1121 });
1122
1123 test("load(String, Function) - check scripts", function() {
1124         expect(7);
1125         stop();
1126
1127         var verifyEvaluation = function() {
1128                 equals( foobar, "bar", 'Check if script src was evaluated after load' );
1129                 equals( jQuery('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
1130
1131                 start();
1132         };
1133         jQuery('#first').load(url('data/test.html'), function() {
1134                 ok( jQuery('#first').html().match(/^html text/), 'Check content after loading html' );
1135                 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1136                 equals( testFoo, "foo", 'Check if script was evaluated after load' );
1137                 setTimeout(verifyEvaluation, 600);
1138         });
1139 });
1140
1141 test("load(String, Function) - check file with only a script tag", function() {
1142         expect(3);
1143         stop();
1144
1145         jQuery('#first').load(url('data/test2.html'), function() {
1146                 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1147                 equals( testFoo, "foo", 'Check if script was evaluated after load' );
1148
1149                 start();
1150         });
1151 });
1152
1153 test("load(String, Function) - dataFilter in ajaxSettings", function() {
1154         expect(2);
1155         stop();
1156         jQuery.ajaxSetup({ dataFilter: function() { return "Hello World"; } });
1157         var div = jQuery("<div/>").load(url("data/name.html"), function(responseText) {
1158                 strictEqual( div.html(), "Hello World" , "Test div was filled with filtered data" );
1159                 strictEqual( responseText, "Hello World" , "Test callback receives filtered data" );
1160                 jQuery.ajaxSetup({ dataFilter: 0 });
1161                 start();
1162         });
1163 });
1164
1165 test("load(String, Object, Function)", function() {
1166         expect(2);
1167         stop();
1168
1169         jQuery('<div />').load(url('data/params_html.php'), { foo:3, bar:'ok' }, function() {
1170                 var $post = jQuery(this).find('#post');
1171                 equals( $post.find('#foo').text(), '3', 'Check if a hash of data is passed correctly');
1172                 equals( $post.find('#bar').text(), 'ok', 'Check if a hash of data is passed correctly');
1173                 start();
1174         });
1175 });
1176
1177 test("load(String, String, Function)", function() {
1178         expect(2);
1179         stop();
1180
1181         jQuery('<div />').load(url('data/params_html.php'), 'foo=3&bar=ok', function() {
1182                 var $get = jQuery(this).find('#get');
1183                 equals( $get.find('#foo').text(), '3', 'Check if a string of data is passed correctly');
1184                 equals( $get.find('#bar').text(), 'ok', 'Check if a      of data is passed correctly');
1185                 start();
1186         });
1187 });
1188
1189 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
1190         expect(2);
1191         stop();
1192         jQuery.get(url('data/dashboard.xml'), function(xml) {
1193                 var content = [];
1194                 jQuery('tab', xml).each(function() {
1195                         content.push(jQuery(this).text());
1196                 });
1197                 equals( content[0], 'blabla', 'Check first tab');
1198                 equals( content[1], 'blublu', 'Check second tab');
1199                 start();
1200         });
1201 });
1202
1203 test("jQuery.getScript(String, Function) - with callback", function() {
1204         expect(3);
1205         stop();
1206         jQuery.getScript(url("data/test.js"), function( data, _, jXHR ) {
1207                 equals( foobar, "bar", 'Check if script was evaluated' );
1208                 strictEqual( data, jXHR.responseText, "Same-domain script requests returns the source of the script (#8082)" );
1209                 setTimeout(start, 100);
1210         });
1211 });
1212
1213 test("jQuery.getScript(String, Function) - no callback", function() {
1214         expect(1);
1215         stop();
1216         jQuery.getScript(url("data/test.js"), function(){
1217                 start();
1218         });
1219 });
1220
1221 jQuery.each( [ "Same Domain", "Cross Domain" ] , function( crossDomain , label ) {
1222
1223         test("jQuery.ajax() - JSONP, " + label, function() {
1224                 expect(16);
1225
1226                 var count = 0;
1227                 function plus(){ if ( ++count == 16 ) start(); }
1228
1229                 stop();
1230
1231                 jQuery.ajax({
1232                         url: "data/jsonp.php",
1233                         dataType: "jsonp",
1234                         crossDomain: crossDomain,
1235                         success: function(data){
1236                                 ok( data.data, "JSON results returned (GET, no callback)" );
1237                                 plus();
1238                         },
1239                         error: function(data){
1240                                 ok( false, "Ajax error JSON (GET, no callback)" );
1241                                 plus();
1242                         }
1243                 });
1244
1245                 jQuery.ajax({
1246                         url: "data/jsonp.php?callback=?",
1247                         dataType: "jsonp",
1248                         crossDomain: crossDomain,
1249                         success: function(data){
1250                                 ok( data.data, "JSON results returned (GET, url callback)" );
1251                                 plus();
1252                         },
1253                         error: function(data){
1254                                 ok( false, "Ajax error JSON (GET, url callback)" );
1255                                 plus();
1256                         }
1257                 });
1258
1259                 jQuery.ajax({
1260                         url: "data/jsonp.php",
1261                         dataType: "jsonp",
1262                         crossDomain: crossDomain,
1263                         data: "callback=?",
1264                         success: function(data){
1265                                 ok( data.data, "JSON results returned (GET, data callback)" );
1266                                 plus();
1267                         },
1268                         error: function(data){
1269                                 ok( false, "Ajax error JSON (GET, data callback)" );
1270                                 plus();
1271                         }
1272                 });
1273
1274                 jQuery.ajax({
1275                         url: "data/jsonp.php?callback=??",
1276                         dataType: "jsonp",
1277                         crossDomain: crossDomain,
1278                         success: function(data){
1279                                 ok( data.data, "JSON results returned (GET, url context-free callback)" );
1280                                 plus();
1281                         },
1282                         error: function(data){
1283                                 ok( false, "Ajax error JSON (GET, url context-free callback)" );
1284                                 plus();
1285                         }
1286                 });
1287
1288                 jQuery.ajax({
1289                         url: "data/jsonp.php",
1290                         dataType: "jsonp",
1291                         crossDomain: crossDomain,
1292                         data: "callback=??",
1293                         success: function(data){
1294                                 ok( data.data, "JSON results returned (GET, data context-free callback)" );
1295                                 plus();
1296                         },
1297                         error: function(data){
1298                                 ok( false, "Ajax error JSON (GET, data context-free callback)" );
1299                                 plus();
1300                         }
1301                 });
1302
1303                 jQuery.ajax({
1304                         url: "data/jsonp.php/??",
1305                         dataType: "jsonp",
1306                         crossDomain: crossDomain,
1307                         success: function(data){
1308                                 ok( data.data, "JSON results returned (GET, REST-like)" );
1309                                 plus();
1310                         },
1311                         error: function(data){
1312                                 ok( false, "Ajax error JSON (GET, REST-like)" );
1313                                 plus();
1314                         }
1315                 });
1316
1317                 jQuery.ajax({
1318                         url: "data/jsonp.php/???json=1",
1319                         dataType: "jsonp",
1320                         crossDomain: crossDomain,
1321                         success: function(data){
1322                                 strictEqual( jQuery.type(data), "array", "JSON results returned (GET, REST-like with param)" );
1323                                 plus();
1324                         },
1325                         error: function(data){
1326                                 ok( false, "Ajax error JSON (GET, REST-like with param)" );
1327                                 plus();
1328                         }
1329                 });
1330
1331                 jQuery.ajax({
1332                         url: "data/jsonp.php",
1333                         dataType: "jsonp",
1334                         crossDomain: crossDomain,
1335                         jsonp: "callback",
1336                         success: function(data){
1337                                 ok( data.data, "JSON results returned (GET, data obj callback)" );
1338                                 plus();
1339                         },
1340                         error: function(data){
1341                                 ok( false, "Ajax error JSON (GET, data obj callback)" );
1342                                 plus();
1343                         }
1344                 });
1345
1346                 window.jsonpResults = function(data) {
1347                         ok( data.data, "JSON results returned (GET, custom callback function)" );
1348                         window.jsonpResults = undefined;
1349                         plus();
1350                 };
1351
1352                 jQuery.ajax({
1353                         url: "data/jsonp.php",
1354                         dataType: "jsonp",
1355                         crossDomain: crossDomain,
1356                         jsonpCallback: "jsonpResults",
1357                         success: function(data){
1358                                 ok( data.data, "JSON results returned (GET, custom callback name)" );
1359                                 plus();
1360                         },
1361                         error: function(data){
1362                                 ok( false, "Ajax error JSON (GET, custom callback name)" );
1363                                 plus();
1364                         }
1365                 });
1366
1367                 jQuery.ajax({
1368                         type: "POST",
1369                         url: "data/jsonp.php",
1370                         dataType: "jsonp",
1371                         crossDomain: crossDomain,
1372                         success: function(data){
1373                                 ok( data.data, "JSON results returned (POST, no callback)" );
1374                                 plus();
1375                         },
1376                         error: function(data){
1377                                 ok( false, "Ajax error JSON (GET, data obj callback)" );
1378                                 plus();
1379                         }
1380                 });
1381
1382                 jQuery.ajax({
1383                         type: "POST",
1384                         url: "data/jsonp.php",
1385                         data: "callback=?",
1386                         dataType: "jsonp",
1387                         crossDomain: crossDomain,
1388                         success: function(data){
1389                                 ok( data.data, "JSON results returned (POST, data callback)" );
1390                                 plus();
1391                         },
1392                         error: function(data){
1393                                 ok( false, "Ajax error JSON (POST, data callback)" );
1394                                 plus();
1395                         }
1396                 });
1397
1398                 jQuery.ajax({
1399                         type: "POST",
1400                         url: "data/jsonp.php",
1401                         jsonp: "callback",
1402                         dataType: "jsonp",
1403                         crossDomain: crossDomain,
1404                         success: function(data){
1405                                 ok( data.data, "JSON results returned (POST, data obj callback)" );
1406                                 plus();
1407                         },
1408                         error: function(data){
1409                                 ok( false, "Ajax error JSON (POST, data obj callback)" );
1410                                 plus();
1411                         }
1412                 });
1413
1414                 //#7578
1415                 jQuery.ajax({
1416                         url: "data/jsonp.php",
1417                         dataType: "jsonp",
1418                         crossDomain: crossDomain,
1419                         beforeSend: function(){
1420                                 strictEqual( this.cache, false, "cache must be false on JSON request" );
1421                                 plus();
1422                                 return false;
1423                         }
1424                 });
1425
1426                 jQuery.ajax({
1427                         url: "data/jsonp.php?callback=XXX",
1428                         dataType: "jsonp",
1429                         jsonp: false,
1430                         jsonpCallback: "XXX",
1431                         crossDomain: crossDomain,
1432                         beforeSend: function() {
1433                                 ok( /^data\/jsonp.php\?callback=XXX&_=\d+$/.test( this.url ) ,
1434                                         "The URL wasn't messed with (GET, custom callback name with no url manipulation)" );
1435                                 plus();
1436                         },
1437                         success: function(data){
1438                                 ok( data.data, "JSON results returned (GET, custom callback name with no url manipulation)" );
1439                                 plus();
1440                         },
1441                         error: function(data){
1442                                 ok( false, "Ajax error JSON (GET, custom callback name with no url manipulation)" );
1443                                 plus();
1444                         }
1445                 });
1446
1447         });
1448 });
1449
1450 test("jQuery.ajax() - script, Remote", function() {
1451         expect(2);
1452
1453         var base = window.location.href.replace(/[^\/]*$/, "");
1454
1455         stop();
1456
1457         jQuery.ajax({
1458                 url: base + "data/test.js",
1459                 dataType: "script",
1460                 success: function(data){
1461                         ok( foobar, "Script results returned (GET, no callback)" );
1462                         start();
1463                 }
1464         });
1465 });
1466
1467 test("jQuery.ajax() - script, Remote with POST", function() {
1468         expect(3);
1469
1470         var base = window.location.href.replace(/[^\/]*$/, "");
1471
1472         stop();
1473
1474         jQuery.ajax({
1475                 url: base + "data/test.js",
1476                 type: "POST",
1477                 dataType: "script",
1478                 success: function(data, status){
1479                         ok( foobar, "Script results returned (POST, no callback)" );
1480                         equals( status, "success", "Script results returned (POST, no callback)" );
1481                         start();
1482                 },
1483                 error: function(xhr) {
1484                         ok( false, "ajax error, status code: " + xhr.status );
1485                         start();
1486                 }
1487         });
1488 });
1489
1490 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
1491         expect(2);
1492
1493         var base = window.location.href.replace(/[^\/]*$/, "");
1494         base = base.replace(/^.*?\/\//, "//");
1495
1496         stop();
1497
1498         jQuery.ajax({
1499                 url: base + "data/test.js",
1500                 dataType: "script",
1501                 success: function(data){
1502                         ok( foobar, "Script results returned (GET, no callback)" );
1503                         start();
1504                 }
1505         });
1506 });
1507
1508 test("jQuery.ajax() - malformed JSON", function() {
1509         expect(2);
1510
1511         stop();
1512
1513         jQuery.ajax({
1514                 url: "data/badjson.js",
1515                 dataType: "json",
1516                 success: function(){
1517                         ok( false, "Success." );
1518                         start();
1519                 },
1520                 error: function(xhr, msg, detailedMsg) {
1521                         equals( "parsererror", msg, "A parse error occurred." );
1522                         ok( /^Invalid JSON/.test(detailedMsg), "Detailed parsererror message provided" );
1523                         start();
1524                 }
1525         });
1526 });
1527
1528 test("jQuery.ajax() - script by content-type", function() {
1529         expect(1);
1530
1531         stop();
1532
1533         jQuery.ajax({
1534                 url: "data/script.php",
1535                 data: { header: "script" },
1536                 success: function() {
1537                         start();
1538                 }
1539         });
1540 });
1541
1542 test("jQuery.ajax() - json by content-type", function() {
1543         expect(5);
1544
1545         stop();
1546
1547         jQuery.ajax({
1548                 url: "data/json.php",
1549                 data: { header: "json", json: "array" },
1550                 success: function( json ) {
1551                         ok( json.length >= 2, "Check length");
1552                         equals( json[0].name, 'John', 'Check JSON: first, name' );
1553                         equals( json[0].age, 21, 'Check JSON: first, age' );
1554                         equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1555                         equals( json[1].age, 25, 'Check JSON: second, age' );
1556                         start();
1557                 }
1558         });
1559 });
1560
1561 test("jQuery.ajax() - json by content-type disabled with options", function() {
1562         expect(6);
1563
1564         stop();
1565
1566         jQuery.ajax({
1567                 url: url("data/json.php"),
1568                 data: { header: "json", json: "array" },
1569                 contents: {
1570                         json: false
1571                 },
1572                 success: function( text ) {
1573                         equals( typeof text , "string" , "json wasn't auto-determined" );
1574                         var json = jQuery.parseJSON( text );
1575                         ok( json.length >= 2, "Check length");
1576                         equals( json[0].name, 'John', 'Check JSON: first, name' );
1577                         equals( json[0].age, 21, 'Check JSON: first, age' );
1578                         equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1579                         equals( json[1].age, 25, 'Check JSON: second, age' );
1580                         start();
1581                 }
1582         });
1583 });
1584
1585 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
1586         expect(5);
1587         stop();
1588         jQuery.getJSON(url("data/json.php"), {json: "array"}, function(json) {
1589           ok( json.length >= 2, "Check length");
1590           equals( json[0].name, 'John', 'Check JSON: first, name' );
1591           equals( json[0].age, 21, 'Check JSON: first, age' );
1592           equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1593           equals( json[1].age, 25, 'Check JSON: second, age' );
1594           start();
1595         });
1596 });
1597
1598 test("jQuery.getJSON(String, Function) - JSON object", function() {
1599         expect(2);
1600         stop();
1601         jQuery.getJSON(url("data/json.php"), function(json) {
1602           if (json && json.data) {
1603                   equals( json.data.lang, 'en', 'Check JSON: lang' );
1604                   equals( json.data.length, 25, 'Check JSON: length' );
1605           }
1606           start();
1607         });
1608 });
1609
1610 test("jQuery.getJSON - Using Native JSON", function() {
1611         expect(2);
1612
1613         var old = window.JSON;
1614         JSON = {
1615                 parse: function(str){
1616                         ok( true, "Verifying that parse method was run" );
1617                         return true;
1618                 }
1619         };
1620
1621         stop();
1622         jQuery.getJSON(url("data/json.php"), function(json) {
1623                 window.JSON = old;
1624                 equals( json, true, "Verifying return value" );
1625                 start();
1626         });
1627 });
1628
1629 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
1630         expect(2);
1631
1632         var base = window.location.href.replace(/[^\/]*$/, "");
1633
1634         stop();
1635         jQuery.getJSON(url(base + "data/json.php"), function(json) {
1636           equals( json.data.lang, 'en', 'Check JSON: lang' );
1637           equals( json.data.length, 25, 'Check JSON: length' );
1638           start();
1639         });
1640 });
1641
1642 test("jQuery.post - data", 3, function() {
1643         stop();
1644
1645         jQuery.when(
1646                 jQuery.post( url( "data/name.php" ), { xml: "5-2", length: 3 }, function( xml ) {
1647                         jQuery( 'math', xml ).each( function() {
1648                                 equals( jQuery( 'calculation', this ).text(), '5-2', 'Check for XML' );
1649                                 equals( jQuery( 'result', this ).text(), '3', 'Check for XML' );
1650                         })
1651                 }),
1652
1653                 jQuery.ajax({
1654                         url: url('data/echoData.php'),
1655                         type: "POST",
1656                         data: {
1657                                 'test': {
1658                                         'length': 7,
1659                                                 'foo': 'bar'
1660                                 }
1661                         },
1662                         success: function( data ) {
1663                                 strictEqual( data, 'test%5Blength%5D=7&test%5Bfoo%5D=bar', 'Check if a sub-object with a length param is serialized correctly');
1664                         }
1665                 })
1666         ).then( start, start );
1667
1668 });
1669
1670 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
1671         expect(4);
1672         stop();
1673         var done = 0;
1674
1675         jQuery.post(url("data/name.php"), {xml: "5-2"}, function(xml){
1676           jQuery('math', xml).each(function() {
1677                         equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1678                         equals( jQuery('result', this).text(), '3', 'Check for XML' );
1679                  });
1680           if ( ++done === 2 ) start();
1681         });
1682
1683         jQuery.post(url("data/name.php?xml=5-2"), {}, function(xml){
1684           jQuery('math', xml).each(function() {
1685                         equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1686                         equals( jQuery('result', this).text(), '3', 'Check for XML' );
1687                  });
1688           if ( ++done === 2 ) start();
1689         });
1690 });
1691
1692 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
1693         stop();
1694
1695         var passed = 0;
1696
1697         jQuery.ajaxSetup({timeout: 1000});
1698
1699         var pass = function() {
1700                 passed++;
1701                 if ( passed == 2 ) {
1702                         ok( true, 'Check local and global callbacks after timeout' );
1703                         jQuery('#main').unbind("ajaxError");
1704                         start();
1705                 }
1706         };
1707
1708         var fail = function(a,b,c) {
1709                 ok( false, 'Check for timeout failed ' + a + ' ' + b );
1710                 start();
1711         };
1712
1713         jQuery('#main').ajaxError(pass);
1714
1715         jQuery.ajax({
1716           type: "GET",
1717           url: url("data/name.php?wait=5"),
1718           error: pass,
1719           success: fail
1720         });
1721
1722         // reset timeout
1723         jQuery.ajaxSetup({timeout: 0});
1724 });
1725
1726 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
1727         stop();
1728         jQuery.ajaxSetup({timeout: 50});
1729
1730         jQuery.ajax({
1731           type: "GET",
1732           timeout: 15000,
1733           url: url("data/name.php?wait=1"),
1734           error: function() {
1735                    ok( false, 'Check for local timeout failed' );
1736                    start();
1737           },
1738           success: function() {
1739                 ok( true, 'Check for local timeout' );
1740                 start();
1741           }
1742         });
1743
1744         // reset timeout
1745         jQuery.ajaxSetup({timeout: 0});
1746 });
1747
1748 test("jQuery.ajax - simple get", function() {
1749         expect(1);
1750         stop();
1751         jQuery.ajax({
1752           type: "GET",
1753           url: url("data/name.php?name=foo"),
1754           success: function(msg){
1755                 equals( msg, 'bar', 'Check for GET' );
1756                 start();
1757           }
1758         });
1759 });
1760
1761 test("jQuery.ajax - simple post", function() {
1762         expect(1);
1763         stop();
1764         jQuery.ajax({
1765           type: "POST",
1766           url: url("data/name.php"),
1767           data: "name=peter",
1768           success: function(msg){
1769                 equals( msg, 'pan', 'Check for POST' );
1770                 start();
1771           }
1772         });
1773 });
1774
1775 test("ajaxSetup()", function() {
1776         expect(1);
1777         stop();
1778         jQuery.ajaxSetup({
1779                 url: url("data/name.php?name=foo"),
1780                 success: function(msg){
1781                         equals( msg, 'bar', 'Check for GET' );
1782                         start();
1783                 }
1784         });
1785         jQuery.ajax();
1786 });
1787
1788 /*
1789 test("custom timeout does not set error message when timeout occurs, see #970", function() {
1790         stop();
1791         jQuery.ajax({
1792                 url: "data/name.php?wait=1",
1793                 timeout: 500,
1794                 error: function(request, status) {
1795                         ok( status != null, "status shouldn't be null in error handler" );
1796                         equals( "timeout", status );
1797                         start();
1798                 }
1799         });
1800 });
1801 */
1802
1803 test("data option: evaluate function values (#2806)", function() {
1804         stop();
1805         jQuery.ajax({
1806                 url: "data/echoQuery.php",
1807                 data: {
1808                         key: function() {
1809                                 return "value";
1810                         }
1811                 },
1812                 success: function(result) {
1813                         equals( result, "key=value" );
1814                         start();
1815                 }
1816         });
1817 });
1818
1819 test("data option: empty bodies for non-GET requests", function() {
1820         stop();
1821         jQuery.ajax({
1822                 url: "data/echoData.php",
1823                 data: undefined,
1824                 type: "post",
1825                 success: function(result) {
1826                         equals( result, "" );
1827                         start();
1828                 }
1829         });
1830 });
1831
1832 test("jQuery.ajax - If-Modified-Since support", function() {
1833         expect( 3 );
1834
1835         stop();
1836
1837         var url = "data/if_modified_since.php?ts=" + new Date();
1838
1839         jQuery.ajax({
1840                 url: url,
1841                 ifModified: true,
1842                 success: function(data, status) {
1843                         equals(status, "success");
1844
1845                         jQuery.ajax({
1846                                 url: url,
1847                                 ifModified: true,
1848                                 success: function(data, status) {
1849                                         if ( data === "FAIL" ) {
1850                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1851                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1852                                         } else {
1853                                                 equals(status, "notmodified");
1854                                                 ok(data == null, "response body should be empty");
1855                                         }
1856                                         start();
1857                         },
1858                                 error: function() {
1859                                         // Do this because opera simply refuses to implement 304 handling :(
1860                                         // A feature-driven way of detecting this would be appreciated
1861                                         // See: http://gist.github.com/599419
1862                                         ok(jQuery.browser.opera, "error");
1863                                         ok(jQuery.browser.opera, "error");
1864                                         start();
1865                         }
1866                         });
1867                 },
1868                 error: function() {
1869                         equals(false, "error");
1870                         // Do this because opera simply refuses to implement 304 handling :(
1871                         // A feature-driven way of detecting this would be appreciated
1872                         // See: http://gist.github.com/599419
1873                         ok(jQuery.browser.opera, "error");
1874                         start();
1875                 }
1876         });
1877 });
1878
1879 test("jQuery.ajax - Etag support", function() {
1880         expect( 3 );
1881
1882         stop();
1883
1884         var url = "data/etag.php?ts=" + new Date();
1885
1886         jQuery.ajax({
1887                 url: url,
1888                 ifModified: true,
1889                 success: function(data, status) {
1890                         equals(status, "success");
1891
1892                         jQuery.ajax({
1893                                 url: url,
1894                                 ifModified: true,
1895                                 success: function(data, status) {
1896                                         if ( data === "FAIL" ) {
1897                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1898                                                 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1899                                         } else {
1900                                                 equals(status, "notmodified");
1901                                                 ok(data == null, "response body should be empty");
1902                                         }
1903                                         start();
1904                         },
1905                         error: function() {
1906                                         // Do this because opera simply refuses to implement 304 handling :(
1907                                         // A feature-driven way of detecting this would be appreciated
1908                                         // See: http://gist.github.com/599419
1909                                         ok(jQuery.browser.opera, "error");
1910                                         ok(jQuery.browser.opera, "error");
1911                                         start();
1912                                 }
1913                         });
1914                 },
1915                 error: function() {
1916                         // Do this because opera simply refuses to implement 304 handling :(
1917                         // A feature-driven way of detecting this would be appreciated
1918                         // See: http://gist.github.com/599419
1919                         ok(jQuery.browser.opera, "error");
1920                         start();
1921                 }
1922         });
1923 });
1924
1925 test("jQuery ajax - failing cross-domain", function() {
1926
1927         expect( 2 );
1928
1929         stop();
1930
1931         var i = 2;
1932
1933         jQuery.ajax({
1934                 url: 'http://somewebsitethatdoesnotexist-67864863574657654.com',
1935                 success: function(){ ok( false , "success" ); },
1936                 error: function(xhr,_,e){ ok( true , "file not found: " + xhr.status + " => " + e ); },
1937                 complete: function() { if ( ! --i ) start(); }
1938         });
1939
1940         jQuery.ajax({
1941                 url: 'http://www.google.com',
1942                 success: function(){ ok( false , "success" ); },
1943                 error: function(xhr,_,e){ ok( true , "access denied: " + xhr.status + " => " + e ); },
1944                 complete: function() { if ( ! --i ) start(); }
1945         });
1946
1947 });
1948
1949 test("jQuery ajax - atom+xml", function() {
1950
1951         stop();
1952
1953         jQuery.ajax({
1954                 url: url( 'data/atom+xml.php' ),
1955                 success: function(){ ok( true , "success" ); },
1956                 error: function(){ ok( false , "error" ); },
1957                 complete: function() { start(); }
1958         });
1959
1960 });
1961
1962 test( "jQuery.ajax - Location object as url (#7531)", 1, function () {
1963         var success = false;
1964         try {
1965                 var xhr = jQuery.ajax({ url: window.location });
1966                 success = true;
1967                 xhr.abort();
1968         } catch (e) {}
1969
1970         ok( success, "document.location did not generate exception" );
1971 });
1972
1973 test( "jQuery.ajax - statusCode" , function() {
1974
1975         var count = 12;
1976
1977         expect( 20 );
1978         stop();
1979
1980         function countComplete() {
1981                 if ( ! --count ) {
1982                         start();
1983                 }
1984         }
1985
1986         function createStatusCodes( name , isSuccess ) {
1987                 name = "Test " + name + " " + ( isSuccess ? "success" : "error" );
1988                 return {
1989                         200: function() {
1990                                 ok( isSuccess , name );
1991                         },
1992                         404: function() {
1993                                 ok( ! isSuccess , name );
1994                         }
1995                 };
1996         }
1997
1998         jQuery.each( {
1999                 "data/name.html": true,
2000                 "data/someFileThatDoesNotExist.html": false
2001         } , function( uri , isSuccess ) {
2002
2003                 jQuery.ajax( url( uri ) , {
2004                         statusCode: createStatusCodes( "in options" , isSuccess ),
2005                         complete: countComplete
2006                 });
2007
2008                 jQuery.ajax( url( uri ) , {
2009                         complete: countComplete
2010                 }).statusCode( createStatusCodes( "immediately with method" , isSuccess ) );
2011
2012                 jQuery.ajax( url( uri ) , {
2013                         complete: function(jXHR) {
2014                                 jXHR.statusCode( createStatusCodes( "on complete" , isSuccess ) );
2015                                 countComplete();
2016                         }
2017                 });
2018
2019                 jQuery.ajax( url( uri ) , {
2020                         complete: function(jXHR) {
2021                                 setTimeout( function() {
2022                                         jXHR.statusCode( createStatusCodes( "very late binding" , isSuccess ) );
2023                                         countComplete();
2024                                 } , 100 );
2025                         }
2026                 });
2027
2028                 jQuery.ajax( url( uri ) , {
2029                         statusCode: createStatusCodes( "all (options)" , isSuccess ),
2030                         complete: function(jXHR) {
2031                                 jXHR.statusCode( createStatusCodes( "all (on complete)" , isSuccess ) );
2032                                 setTimeout( function() {
2033                                         jXHR.statusCode( createStatusCodes( "all (very late binding)" , isSuccess ) );
2034                                         countComplete();
2035                                 } , 100 );
2036                         }
2037                 }).statusCode( createStatusCodes( "all (immediately with method)" , isSuccess ) );
2038
2039                 var testString = "";
2040
2041                 jQuery.ajax( url( uri ), {
2042                         success: function( a , b , jXHR ) {
2043                                 ok( isSuccess , "success" );
2044                                 var statusCode = {};
2045                                 statusCode[ jXHR.status ] = function() {
2046                                         testString += "B";
2047                                 };
2048                                 jXHR.statusCode( statusCode );
2049                                 testString += "A";
2050                         },
2051                         error: function( jXHR ) {
2052                                 ok( ! isSuccess , "error" );
2053                                 var statusCode = {};
2054                                 statusCode[ jXHR.status ] = function() {
2055                                         testString += "B";
2056                                 };
2057                                 jXHR.statusCode( statusCode );
2058                                 testString += "A";
2059                         },
2060                         complete: function() {
2061                                 strictEqual( testString , "AB" , "Test statusCode callbacks are ordered like " +
2062                                                 ( isSuccess ? "success" :  "error" ) + " callbacks" );
2063                                 countComplete();
2064                         }
2065                 } );
2066
2067         });
2068 });
2069
2070 test("jQuery.ajax - transitive conversions", function() {
2071
2072         expect( 8 );
2073
2074         stop();
2075
2076         jQuery.when(
2077
2078                 jQuery.ajax( url("data/json.php") , {
2079                         converters: {
2080                                 "json myjson": function( data ) {
2081                                         ok( true , "converter called" );
2082                                         return data;
2083                                 }
2084                         },
2085                         dataType: "myjson",
2086                         success: function() {
2087                                 ok( true , "Transitive conversion worked" );
2088                                 strictEqual( this.dataTypes[0] , "text" , "response was retrieved as text" );
2089                                 strictEqual( this.dataTypes[1] , "myjson" , "request expected myjson dataType" );
2090                         }
2091                 }),
2092
2093                 jQuery.ajax( url("data/json.php") , {
2094                         converters: {
2095                                 "json myjson": function( data ) {
2096                                         ok( true , "converter called (*)" );
2097                                         return data;
2098                                 }
2099                         },
2100                         contents: false, /* headers are wrong so we ignore them */
2101                         dataType: "* myjson",
2102                         success: function() {
2103                                 ok( true , "Transitive conversion worked (*)" );
2104                                 strictEqual( this.dataTypes[0] , "text" , "response was retrieved as text (*)" );
2105                                 strictEqual( this.dataTypes[1] , "myjson" , "request expected myjson dataType (*)" );
2106                         }
2107                 })
2108
2109         ).then( start , start );
2110
2111 });
2112
2113 test("jQuery.ajax - active counter", function() {
2114     ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );
2115 });
2116
2117 }
2118
2119 //}