Fixed #1999 by replacing the 'no-cache' parameter if it is there instead of just...
[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("$.ajax() - success callbacks", function() {
11         expect( 8 );
12         
13         $.ajaxSetup({ timeout: 0 });
14         
15         stop();
16         
17         setTimeout(function(){  
18         $('#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         $.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("$.ajax() - error callbacks", function() {
44     expect( 8 );
45     stop();
46     
47     $('#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     $.ajaxSetup({ timeout: 500 });
63     
64     $.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() - disabled globals", function() {
74         expect( 3 );
75         stop();
76         
77         $('#foo').ajaxStart(function(){
78                 ok( false, "ajaxStart" );
79         }).ajaxStop(function(){
80                 ok( false, "ajaxStop" );
81         }).ajaxSend(function(){
82                 ok( false, "ajaxSend" );
83         }).ajaxComplete(function(){
84                 ok( false, "ajaxComplete" );
85         }).ajaxError(function(){
86                 ok( false, "ajaxError" );
87         }).ajaxSuccess(function(){
88                 ok( false, "ajaxSuccess" );
89         });
90         
91         $.ajax({
92                 global: false,
93                 url: url("data/name.html"),
94                 beforeSend: function(){ ok(true, "beforeSend"); },
95                 success: function(){ ok(true, "success"); },
96                 error: function(){ ok(false, "error"); },
97                 complete: function(){
98                   ok(true, "complete");
99                   setTimeout(function(){ start(); }, 13);
100         }
101         });
102 });
103
104 test("$.ajax - xml: non-namespace elements inside namespaced elements", function() {
105         expect(3);
106         stop();
107         $.ajax({
108           url: url("data/with_fries.xml"),
109           dataType: "xml",
110           success: function(resp) {
111             equals( $("properties", resp).length, 1, 'properties in responseXML' );
112             equals( $("jsconf", resp).length, 1, 'jsconf in responseXML' );
113             equals( $("thing", resp).length, 2, 'things in responseXML' );
114             start();
115           }
116         });
117 });
118
119 test("$.ajax - beforeSend", function() {
120         expect(1);
121         stop();
122         
123         var check = false;
124         
125         $.ajaxSetup({ timeout: 0 });
126         
127         $.ajax({
128                 url: url("data/name.html"), 
129                 beforeSend: function(xml) {
130                         check = true;
131                 },
132                 success: function(data) {
133                         ok( check, "check beforeSend was executed" );
134                         start();
135                 }
136         });
137 });
138
139 var foobar;
140
141 test("$.ajax - dataType html", function() {
142         expect(5);
143         stop();
144         
145         foobar = null;
146         testFoo = undefined;
147
148         var verifyEvaluation = function() {
149           ok( testFoo == "foo", 'Check if script was evaluated for datatype html' );
150           ok( foobar == "bar", 'Check if script src was evaluated for datatype html' );
151           start();
152         };
153
154         $.ajax({
155           dataType: "html",
156           url: url("data/test.html"),
157           success: function(data) {
158                 $("#ap").html(data);
159             ok( data.match(/^html text/), 'Check content for datatype html' );
160             setTimeout(verifyEvaluation, 600);
161           }
162         });
163 });
164
165 test("serialize()", function() {
166         expect(6);
167         
168         equals( $('#form').serialize(),
169                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&select1=&select2=3&select3=1&select3=2",
170                 'Check form serialization as query string');
171                 
172         equals( $('#form :input').serialize(),
173                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&select1=&select2=3&select3=1&select3=2",
174                 'Check input serialization as query string');
175         
176         equals( $('#testForm').serialize(), 
177                 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=', 
178                 'Check form serialization as query string');
179                 
180         equals( $('#testForm :input').serialize(), 
181                 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=', 
182                 'Check input serialization as query string');
183                 
184         equals( $('#form, #testForm').serialize(),
185                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&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=",
186                 'Multiple form serialization as query string');
187                 
188         equals( $('#form, #testForm :input').serialize(),
189                 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&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=",
190                 'Mixed form/input serialization as query string');
191 });
192
193 test("$.param()", function() {
194         expect(4);
195         var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
196         equals( $.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
197         
198         params = {someName: [1, 2, 3], regularThing: "blah" };
199         equals( $.param(params), "someName=1&someName=2&someName=3&regularThing=blah", "with array" );
200         
201         params = {"foo[]":["baz", 42, "All your base are belong to us"]};
202         equals( $.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
203         
204         params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
205         equals( $.param(params), "foo%5Bbar%5D=baz&foo%5Bbeep%5D=42&foo%5Bquux%5D=All+your+base+are+belong+to+us", "even more arrays" );
206 });
207
208 test("synchronous request", function() {
209         expect(1);
210         ok( /^{ "data"/.test( $.ajax({url: url("data/json_obj.js"), async: false}).responseText ), "check returned text" );
211 });
212
213 test("synchronous request with callbacks", function() {
214         expect(2);
215         var result;
216         $.ajax({url: url("data/json_obj.js"), async: false, success: function(data) { ok(true, "sucess callback executed"); result = data; } });
217         ok( /^{ "data"/.test( result ), "check returned text" );
218 });
219
220 test("pass-through request object", function() {
221         expect(6);
222         stop(true);
223         
224         var target = "data/name.html";
225         var count = 0;
226         var success = function() {
227                 // Re-enabled because a bug was found in the unit test that probably caused the problem
228                 if(++count == 5)
229                         start();
230         };
231         
232         ok( $.get(url(target), success), "get" );
233         ok( $.post(url(target), success), "post" );
234         ok( $.getScript(url("data/test.js"), success), "script" );
235         ok( $.getJSON(url("data/json_obj.js"), success), "json" );
236         ok( $.ajax({url: url(target), success: success}), "generic" );
237 });
238
239 test("ajax cache", function () {
240         expect(18);
241         stop();
242         
243         var count = 0;
244
245         $("#firstp").bind("ajaxSuccess", function (e, xml, s) {
246                 var re = /_=(.*?)(&|$)/g;
247     var oldOne = null;
248                 for (var i = 0; i < 6; i++) {
249       var ret = re.exec(s.url);
250                         if (!ret) {
251                                 break;
252                         }
253       oldOne = ret[1];
254                 }
255                 equals(i, 1, "Test to make sure only one 'no-cache' parameter is there");
256                 ok(oldOne != "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
257                 if(++count == 6)
258                         start();
259         });
260
261         ok( $.ajax({url: "data/text.php", cache:false}), "test with no parameters" );
262         ok( $.ajax({url: "data/text.php?pizza=true", cache:false}), "test with 1 parameter" );
263         ok( $.ajax({url: "data/text.php?_=tobereplaced555", cache:false}), "test with _= parameter" );
264         ok( $.ajax({url: "data/text.php?pizza=true&_=tobereplaced555", cache:false}), "test with 1 parameter plus _= one" );
265         ok( $.ajax({url: "data/text.php?_=tobereplaced555&tv=false", cache:false}), "test with 1 parameter plus _= one before it" );
266         ok( $.ajax({url: "data/text.php?name=David&_=tobereplaced555&washere=true", cache:false}), "test with 2 parameters surrounding _= one" );
267 });
268
269 test("global ajaxSettings", function() {
270         expect(3);
271
272         var tmp = jQuery.extend({}, jQuery.ajaxSettings);
273     var orig = { url: "data/with_fries.xml", data: null };
274         var t;
275
276         $.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
277
278     t = jQuery.extend({}, orig);
279     $.ajax(t);
280         ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending null" );
281
282     t = jQuery.extend({}, orig);
283         t.data = {};
284     $.ajax(t);
285         ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
286
287     t = jQuery.extend({}, orig);
288         t.data = { zoo: 'a', ping: 'b' };
289     $.ajax(t);
290         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' }" );
291         
292         jQuery.ajaxSettings = tmp;
293 });
294
295 test("load(String)", function() {
296         expect(1);
297         stop(true); // check if load can be called with only url
298         $('#first').load("data/name.html", start);
299 });
300
301 test("load('url selector')", function() {
302         expect(1);
303         stop(true); // check if load can be called with only url
304         $('#first').load("data/test3.html div.user", function(){
305                 equals( $(this).children("div").length, 2, "Verify that specific elements were injected" );
306                 start();
307         });
308 });
309
310 test("load(String, Function) - simple: inject text into DOM", function() {
311         expect(2);
312         stop();
313         $('#first').load(url("data/name.html"), function() {
314                 ok( /^ERROR/.test($('#first').text()), 'Check if content was injected into the DOM' );
315                 start();
316         });
317 });
318
319 test("load(String, Function) - check scripts", function() {
320         expect(7);
321         stop();
322         window.testFoo = undefined;
323         window.foobar = null;
324         var verifyEvaluation = function() {
325           equals( foobar, "bar", 'Check if script src was evaluated after load' );
326           equals( $('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
327           start();
328         };
329         $('#first').load(url('data/test.html'), function() {
330           ok( $('#first').html().match(/^html text/), 'Check content after loading html' );
331           equals( $('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
332           equals( testFoo, "foo", 'Check if script was evaluated after load' );
333           setTimeout(verifyEvaluation, 600);
334         });
335 });
336
337 test("load(String, Function) - check file with only a script tag", function() {
338         expect(3);
339         stop();
340         testFoo = undefined;
341         $('#first').load(url('data/test2.html'), function() {
342           ok( $('#foo').html() == 'foo', 'Check if script evaluation has modified DOM');
343           ok( testFoo == "foo", 'Check if script was evaluated after load' );
344           start();
345         });
346 });
347
348 test("$.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
349         expect(2);
350         stop();
351         $.get(url('data/dashboard.xml'), function(xml) {
352                 var content = [];
353                 $('tab', xml).each(function() {
354                         content.push($(this).text());
355                 });
356                 equals( content[0], 'blabla', 'Check first tab');
357                 equals( content[1], 'blublu', 'Check second tab');
358                 start();
359         });
360 });
361
362 test("$.getScript(String, Function) - with callback", function() {
363         expect(2);
364         stop();
365         $.getScript(url("data/test.js"), function() {
366                 equals( foobar, "bar", 'Check if script was evaluated' );
367                 setTimeout(start, 100);
368         });
369 });
370
371 test("$.getScript(String, Function) - no callback", function() {
372         expect(1);
373         stop(true);
374         $.getScript(url("data/test.js"), start);
375 });
376
377 test("$.ajax() - JSONP, Local", function() {
378         expect(7);
379
380         var count = 0;
381         function plus(){ if ( ++count == 7 ) start(); }
382
383         stop();
384
385         $.ajax({
386                 url: "data/jsonp.php",
387                 dataType: "jsonp",
388                 success: function(data){
389                         ok( data.data, "JSON results returned (GET, no callback)" );
390                         plus();
391                 }
392         });
393
394         $.ajax({
395                 url: "data/jsonp.php?callback=?",
396                 dataType: "jsonp",
397                 success: function(data){
398                         ok( data.data, "JSON results returned (GET, url callback)" );
399                         plus();
400                 }
401         });
402
403         $.ajax({
404                 url: "data/jsonp.php",
405                 dataType: "jsonp",
406                 data: "callback=?",
407                 success: function(data){
408                         ok( data.data, "JSON results returned (GET, data callback)" );
409                         plus();
410                 }
411         });
412
413         $.ajax({
414                 url: "data/jsonp.php",
415                 dataType: "jsonp",
416                 data: { callback: "?" },
417                 success: function(data){
418                         ok( data.data, "JSON results returned (GET, data obj callback)" );
419                         plus();
420                 }
421         });
422
423         $.ajax({
424                 type: "POST",
425                 url: "data/jsonp.php",
426                 dataType: "jsonp",
427                 success: function(data){
428                         ok( data.data, "JSON results returned (POST, no callback)" );
429                         plus();
430                 }
431         });
432
433         $.ajax({
434                 type: "POST",
435                 url: "data/jsonp.php",
436                 data: "callback=?",
437                 dataType: "jsonp",
438                 success: function(data){
439                         ok( data.data, "JSON results returned (POST, data callback)" );
440                         plus();
441                 }
442         });
443
444         $.ajax({
445                 type: "POST",
446                 url: "data/jsonp.php",
447                 data: { callback: "?" },
448                 dataType: "jsonp",
449                 success: function(data){
450                         ok( data.data, "JSON results returned (POST, data obj callback)" );
451                         plus();
452                 }
453         });
454 });
455
456 test("$.ajax() - JSONP, Remote", function() {
457         expect(4);
458
459         var count = 0;
460         function plus(){ if ( ++count == 4 ) start(); }
461
462         var base = window.location.href.replace(/\?.*$/, "");
463
464         stop();
465
466         $.ajax({
467                 url: base + "data/jsonp.php",
468                 dataType: "jsonp",
469                 success: function(data){
470                         ok( data.data, "JSON results returned (GET, no callback)" );
471                         plus();
472                 }
473         });
474
475         $.ajax({
476                 url: base + "data/jsonp.php?callback=?",
477                 dataType: "jsonp",
478                 success: function(data){
479                         ok( data.data, "JSON results returned (GET, url callback)" );
480                         plus();
481                 }
482         });
483
484         $.ajax({
485                 url: base + "data/jsonp.php",
486                 dataType: "jsonp",
487                 data: "callback=?",
488                 success: function(data){
489                         ok( data.data, "JSON results returned (GET, data callback)" );
490                         plus();
491                 }
492         });
493
494         $.ajax({
495                 url: base + "data/jsonp.php",
496                 dataType: "jsonp",
497                 data: { callback: "?" },
498                 success: function(data){
499                         ok( data.data, "JSON results returned (GET, data obj callback)" );
500                         plus();
501                 }
502         });
503 });
504
505 test("$.ajax() - script, Remote", function() {
506         expect(2);
507
508         var base = window.location.href.replace(/\?.*$/, "");
509
510         stop();
511
512         $.ajax({
513                 url: base + "data/test.js",
514                 dataType: "script",
515                 success: function(data){
516                         ok( foobar, "Script results returned (GET, no callback)" );
517                         start();
518                 }
519         });
520 });
521
522 test("$.getJSON(String, Hash, Function) - JSON array", function() {
523         expect(4);
524         stop();
525         $.getJSON(url("data/json.php"), {json: "array"}, function(json) {
526           ok( json[0].name == 'John', 'Check JSON: first, name' );
527           ok( json[0].age == 21, 'Check JSON: first, age' );
528           ok( json[1].name == 'Peter', 'Check JSON: second, name' );
529           ok( json[1].age == 25, 'Check JSON: second, age' );
530           start();
531         });
532 });
533
534 test("$.getJSON(String, Function) - JSON object", function() {
535         expect(2);
536         stop();
537         $.getJSON(url("data/json.php"), function(json) {
538           ok( json.data.lang == 'en', 'Check JSON: lang' );
539           ok( json.data.length == 25, 'Check JSON: length' );
540           start();
541         });
542 });
543
544 test("$.getJSON(String, Function) - Remote JSON object with assignment", function() {
545         expect(2);
546
547         var base = window.location.href.replace(/\?.*$/, "");
548
549         stop();
550         $.getJSON(base + "data/json_assigned_obj.js", function() {
551           ok( typeof json_assigned_obj == "object", 'Check JSON loaded' );
552           equals( json_assigned_obj.test, "worked", 'Check JSON obj.test' );
553           start();
554         });
555 });
556
557 test("$.post(String, Hash, Function) - simple with xml", function() {
558         expect(4);
559         stop();
560         $.post(url("data/name.php"), {xml: "5-2"}, function(xml){
561           $('math', xml).each(function() {
562                     ok( $('calculation', this).text() == '5-2', 'Check for XML' );
563                     ok( $('result', this).text() == '3', 'Check for XML' );
564                  });
565         });
566
567         $.post(url("data/name.php?xml=5-2"), {}, function(xml){
568           $('math', xml).each(function() {
569                     ok( $('calculation', this).text() == '5-2', 'Check for XML' );
570                     ok( $('result', this).text() == '3', 'Check for XML' );
571                  });
572           start();
573         });
574 });
575
576 test("$.ajaxSetup({timeout: Number}) - with global timeout", function() {
577         stop();
578         
579         var passed = 0;
580
581         $.ajaxSetup({timeout: 1000});
582         
583         var pass = function() {
584                 passed++;
585                 if ( passed == 2 ) {
586                         ok( true, 'Check local and global callbacks after timeout' );
587                 $('#main').unbind("ajaxError");
588                         start();
589                 }
590         };
591         
592         var fail = function(a,b,c) {
593                 ok( false, 'Check for timeout failed ' + a + ' ' + b );
594                 start();
595         };
596         
597         $('#main').ajaxError(pass);
598         
599         $.ajax({
600           type: "GET",
601           url: url("data/name.php?wait=5"),
602           error: pass,
603           success: fail
604         });
605         
606         // reset timeout
607         $.ajaxSetup({timeout: 0});
608 });
609
610 test("$.ajaxSetup({timeout: Number}) with localtimeout", function() {
611         stop();
612         $.ajaxSetup({timeout: 50});
613
614         $.ajax({
615           type: "GET",
616           timeout: 5000,
617           url: url("data/name.php?wait=1"),
618           error: function() {
619                    ok( false, 'Check for local timeout failed' );
620                    start();
621           },
622           success: function() {
623             ok( true, 'Check for local timeout' );
624             start();
625           }
626         });
627
628         // reset timeout
629         $.ajaxSetup({timeout: 0});
630 });
631
632 test("$.ajax - simple get", function() {
633         expect(1);
634         stop();
635         $.ajax({
636           type: "GET",
637           url: url("data/name.php?name=foo"),
638           success: function(msg){
639             ok( msg == 'bar', 'Check for GET' );
640             start();
641           }
642         });
643 });
644
645 test("$.ajax - simple post", function() {
646         expect(1);
647         stop();
648         $.ajax({
649           type: "POST",
650           url: url("data/name.php"),
651           data: "name=peter",
652           success: function(msg){
653             ok( msg == 'pan', 'Check for POST' );
654             start();
655           }
656         });
657 });
658
659 test("ajaxSetup()", function() {
660         expect(1);
661         stop();
662         $.ajaxSetup({
663                 url: url("data/name.php?name=foo"),
664                 success: function(msg){
665                 ok( msg == 'bar', 'Check for GET' );
666                         start();
667                 }
668         });
669         $.ajax();
670 });
671
672 test("custom timeout does not set error message when timeout occurs, see #970", function() {
673         stop();
674         $.ajax({
675                 url: "data/name.php?wait=10",
676                 timeout: 500,
677                 error: function(request, status) {
678                         ok( status != null, "status shouldn't be null in error handler" );
679                         equals( "timeout", status );
680                         start();
681                 }
682         });
683 });
684
685 }
686
687 //}