1 module("ajax", { teardown: moduleTeardown });
3 // Safari 3 randomly crashes when running these tests,
4 // but only in the full suite - you can run just the Ajax
5 // tests and they'll pass
6 //if ( !jQuery.browser.safari ) {
10 test("jQuery.ajax() - success callbacks", function() {
13 jQuery.ajaxSetup({ timeout: 0 });
17 jQuery('#foo').ajaxStart(function(){
18 ok( true, "ajaxStart" );
19 }).ajaxStop(function(){
20 ok( true, "ajaxStop" );
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" );
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"); }
41 test("jQuery.ajax() - success callbacks - (url, options) syntax", function() {
44 jQuery.ajaxSetup({ timeout: 0 });
48 setTimeout(function(){
49 jQuery('#foo').ajaxStart(function(){
50 ok( true, "ajaxStart" );
51 }).ajaxStop(function(){
52 ok( true, "ajaxStop" );
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" );
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"); }
73 test("jQuery.ajax() - success callbacks (late binding)", function() {
76 jQuery.ajaxSetup({ timeout: 0 });
80 setTimeout(function(){
81 jQuery('#foo').ajaxStart(function(){
82 ok( true, "ajaxStart" );
83 }).ajaxStop(function(){
84 ok( true, "ajaxStop" );
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" );
97 url: url("data/name.html"),
98 beforeSend: function(){ ok(true, "beforeSend"); }
100 .complete(function(){ ok(true, "complete"); })
101 .success(function(){ ok(true, "success"); })
102 .error(function(){ ok(false, "error"); });
106 test("jQuery.ajax() - success callbacks (oncomplete binding)", function() {
109 jQuery.ajaxSetup({ timeout: 0 });
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" );
129 url: url("data/name.html"),
130 beforeSend: function(){ ok(true, "beforeSend"); },
131 complete: function(xhr) {
133 .complete(function(){ ok(true, "complete"); })
134 .success(function(){ ok(true, "success"); })
135 .error(function(){ ok(false, "error"); })
136 .complete(function(){ start(); });
142 test("jQuery.ajax() - success callbacks (very late binding)", function() {
145 jQuery.ajaxSetup({ timeout: 0 });
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" );
165 url: url("data/name.html"),
166 beforeSend: function(){ ok(true, "beforeSend"); },
167 complete: function(xhr) {
168 setTimeout (function() {
170 .complete(function(){ ok(true, "complete"); })
171 .success(function(){ ok(true, "success"); })
172 .error(function(){ ok(false, "error"); })
173 .complete(function(){ start(); });
180 test("jQuery.ajax() - success callbacks (order)", function() {
183 jQuery.ajaxSetup({ timeout: 0 });
189 setTimeout(function(){
191 url: url("data/name.html"),
192 success: function( _1 , _2 , xhr ) {
193 xhr.success(function() {
194 xhr.success(function() {
201 complete: function() {
202 strictEqual(testString, "ABCDE", "Proper order");
205 }).success(function() {
207 }).success(function() {
213 test("jQuery.ajax() - error callbacks", function() {
217 jQuery('#foo').ajaxStart(function(){
218 ok( true, "ajaxStart" );
219 }).ajaxStop(function(){
220 ok( true, "ajaxStop" );
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" );
232 jQuery.ajaxSetup({ timeout: 500 });
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"); }
243 test( "jQuery.ajax - multiple method signatures introduced in 1.5 ( #8107)", function() {
250 jQuery.ajax().success(function() { ok( true, 'With no arguments' ); }),
251 jQuery.ajax('data/name.html').success(function() { ok( true, 'With only string URL argument' ); }),
252 jQuery.ajax('data/name.html', {} ).success(function() { ok( true, 'With string URL param and map' ); }),
253 jQuery.ajax({ url: 'data/name.html'} ).success(function() { ok( true, 'With only map' ); })
254 ).then( start, start );
258 test("jQuery.ajax() - textStatus and errorThrown values", function() {
272 Safari 3.x returns "OK" instead of "Not Found"
273 Safari 4.x doesn't have this issue so the test should be re-instated once
274 we drop support for 3.x
277 url: url("data/nonExistingURL"),
278 error: function( _ , textStatus , errorThrown ){
279 strictEqual( textStatus, "error", "textStatus is 'error' for 404" );
280 strictEqual( errorThrown, "Not Found", "errorThrown is 'Not Found' for 404");
287 url: url("data/name.php?wait=5"),
288 error: function( _ , textStatus , errorThrown ){
289 strictEqual( textStatus, "abort", "textStatus is 'abort' for abort" );
290 strictEqual( errorThrown, "abort", "errorThrown is 'abort' for abort");
296 url: url("data/name.php?wait=5"),
297 error: function( _ , textStatus , errorThrown ){
298 strictEqual( textStatus, "mystatus", "textStatus is 'mystatus' for abort('mystatus')" );
299 strictEqual( errorThrown, "mystatus", "errorThrown is 'mystatus' for abort('mystatus')");
302 }).abort( "mystatus" );
305 test("jQuery.ajax() - responseText on error", function() {
312 url: url("data/errorWithText.php"),
313 error: function(xhr) {
314 strictEqual( xhr.responseText , "plain text message" , "Test jqXHR.responseText is filled for HTTP errors" );
316 complete: function() {
322 test(".ajax() - retry with jQuery.ajax( this )", function() {
331 url: url("data/errorWithText.php"),
337 ok( true , "Test retrying with jQuery.ajax(this) works" );
345 test(".ajax() - headers" , function() {
351 jQuery('#foo').ajaxSend(function( evt, xhr ) {
352 xhr.setRequestHeader( "ajax-send", "test" );
355 var requestHeaders = {
357 "SometHing-elsE": "other value",
358 OthEr: "something else"
363 for( i in requestHeaders ) {
366 list.push( "ajax-send" );
368 jQuery.ajax(url("data/headers.php?keys="+list.join( "_" ) ), {
370 headers: requestHeaders,
371 success: function( data , _ , xhr ) {
373 for ( i in requestHeaders ) {
374 tmp.push( i , ": " , requestHeaders[ i ] , "\n" );
376 tmp.push( "ajax-send: test\n" );
377 tmp = tmp.join( "" );
379 equals( data , tmp , "Headers were sent" );
380 equals( xhr.getResponseHeader( "Sample-Header" ) , "Hello World" , "Sample header received" );
382 error: function(){ ok(false, "error"); }
384 }).then( start, start );
388 test(".ajax() - Accept header" , function() {
394 jQuery.ajax(url("data/headers.php?keys=accept"), {
396 Accept: "very wrong accept value"
398 beforeSend: function( xhr ) {
399 xhr.setRequestHeader( "Accept", "*/*" );
401 success: function( data ) {
402 strictEqual( data , "accept: */*\n" , "Test Accept header is set to last value provided" );
405 error: function(){ ok(false, "error"); }
410 test(".ajax() - contentType" , function() {
424 jQuery.ajax(url("data/headers.php?keys=content-type" ), {
426 success: function( data ) {
427 strictEqual( data , "content-type: test\n" , "Test content-type is sent when options.contentType is set" );
429 complete: function() {
434 jQuery.ajax(url("data/headers.php?keys=content-type" ), {
436 success: function( data ) {
437 strictEqual( data , "content-type: \n" , "Test content-type is not sent when options.contentType===false" );
439 complete: function() {
446 test(".ajax() - protocol-less urls", function() {
450 url: "//somedomain.com",
451 beforeSend: function( xhr, settings ) {
452 equals(settings.url, location.protocol + "//somedomain.com", "Make sure that the protocol is added.");
458 test(".ajax() - hash", function() {
462 url: "data/name.html#foo",
463 beforeSend: function( xhr, settings ) {
464 equals(settings.url, "data/name.html", "Make sure that the URL is trimmed.");
470 url: "data/name.html?abc#foo",
471 beforeSend: function( xhr, settings ) {
472 equals(settings.url, "data/name.html?abc", "Make sure that the URL is trimmed.");
478 url: "data/name.html?abc#foo",
479 data: { "test": 123 },
480 beforeSend: function( xhr, settings ) {
481 equals(settings.url, "data/name.html?abc&test=123", "Make sure that the URL is trimmed.");
487 test("jQuery ajax - cross-domain detection", function() {
491 var loc = document.location,
492 otherPort = loc.port === 666 ? 667 : 666,
493 otherProtocol = loc.protocol === "http:" ? "https:" : "http:";
497 url: otherProtocol + "//" + loc.host,
498 beforeSend: function( _ , s ) {
499 ok( s.crossDomain , "Test different protocols are detected as cross-domain" );
506 url: loc.protocol + '//somewebsitethatdoesnotexist-656329477541.com:' + ( loc.port || 80 ),
507 beforeSend: function( _ , s ) {
508 ok( s.crossDomain , "Test different hostnames are detected as cross-domain" );
515 url: loc.protocol + "//" + loc.hostname + ":" + otherPort,
516 beforeSend: function( _ , s ) {
517 ok( s.crossDomain , "Test different ports are detected as cross-domain" );
524 url: loc.protocol + "//" + loc.host,
526 beforeSend: function( _ , s ) {
527 ok( s.crossDomain , "Test forced crossDomain is detected as cross-domain" );
534 test(".load() - 404 error callbacks", function() {
538 jQuery('#foo').ajaxStart(function(){
539 ok( true, "ajaxStart" );
540 }).ajaxStop(function(){
541 ok( true, "ajaxStop" );
543 }).ajaxSend(function(){
544 ok( true, "ajaxSend" );
545 }).ajaxComplete(function(){
546 ok( true, "ajaxComplete" );
547 }).ajaxError(function(){
548 ok( true, "ajaxError" );
549 }).ajaxSuccess(function(){
550 ok( false, "ajaxSuccess" );
553 jQuery("<div/>").load("data/404.html", function(){
554 ok(true, "complete");
558 test("jQuery.ajax() - abort", function() {
562 jQuery('#foo').ajaxStart(function(){
563 ok( true, "ajaxStart" );
564 }).ajaxStop(function(){
565 ok( true, "ajaxStop" );
567 }).ajaxSend(function(){
568 ok( true, "ajaxSend" );
569 }).ajaxComplete(function(){
570 ok( true, "ajaxComplete" );
573 var xhr = jQuery.ajax({
574 url: url("data/name.php?wait=5"),
575 beforeSend: function(){ ok(true, "beforeSend"); },
576 complete: function(){ ok(true, "complete"); }
579 equals( xhr.readyState, 1, "XHR readyState indicates successful dispatch" );
582 equals( xhr.readyState, 0, "XHR readyState indicates successful abortion" );
585 test("Ajax events with context", function() {
589 var context = document.createElement("div");
592 equals( this, context, e.type );
595 function callback(msg){
597 equals( this, context, "context is preserved on callback " + msg );
601 function nocallback(msg){
603 equals( typeof this.url, "string", "context is settings on callback " + msg );
607 jQuery('#foo').add(context)
614 url: url("data/name.html"),
615 beforeSend: callback("beforeSend"),
616 success: callback("success"),
617 error: callback("error"),
619 callback("complete").call(this);
622 url: url("data/404.html"),
624 beforeSend: callback("beforeSend"),
625 error: callback("error"),
626 complete: function(){
627 callback("complete").call(this);
629 jQuery('#foo').add(context).unbind();
632 url: url("data/404.html"),
633 beforeSend: nocallback("beforeSend"),
634 error: nocallback("error"),
635 complete: function(){
636 nocallback("complete").call(this);
647 test("jQuery.ajax context modification", function() {
655 url: url("data/name.html"),
657 beforeSend: function(){
660 complete: function() {
665 equals( obj.test, "foo", "Make sure the original object is maintained." );
668 test("jQuery.ajax context modification through ajaxSetup", function() {
679 strictEqual( jQuery.ajaxSettings.context, obj, "Make sure the context is properly set in ajaxSettings." );
682 url: url("data/name.html"),
683 complete: function() {
684 strictEqual( this, obj, "Make sure the original object is maintained." );
686 url: url("data/name.html"),
688 complete: function() {
689 ok( this !== obj, "Make sure overidding context is possible." );
694 url: url("data/name.html"),
695 beforeSend: function(){
698 complete: function() {
699 ok( this !== obj, "Make sure unsetting context is possible." );
709 test("jQuery.ajax() - disabled globals", function() {
713 jQuery('#foo').ajaxStart(function(){
714 ok( false, "ajaxStart" );
715 }).ajaxStop(function(){
716 ok( false, "ajaxStop" );
717 }).ajaxSend(function(){
718 ok( false, "ajaxSend" );
719 }).ajaxComplete(function(){
720 ok( false, "ajaxComplete" );
721 }).ajaxError(function(){
722 ok( false, "ajaxError" );
723 }).ajaxSuccess(function(){
724 ok( false, "ajaxSuccess" );
729 url: url("data/name.html"),
730 beforeSend: function(){ ok(true, "beforeSend"); },
731 success: function(){ ok(true, "success"); },
732 error: function(){ ok(false, "error"); },
733 complete: function(){
734 ok(true, "complete");
735 setTimeout(function(){ start(); }, 13);
740 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
744 url: url("data/with_fries.xml"),
746 success: function(resp) {
747 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
748 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
749 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
755 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements (over JSONP)", function() {
759 url: url("data/with_fries_over_jsonp.php"),
760 dataType: "jsonp xml",
761 success: function(resp) {
762 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
763 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
764 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
767 error: function(_1,_2,error) {
774 test("jQuery.ajax - HEAD requests", function() {
779 url: url("data/name.html"),
781 success: function(data, status, xhr){
782 var h = xhr.getAllResponseHeaders();
783 ok( /Date/i.test(h), 'No Date in HEAD response' );
786 url: url("data/name.html"),
787 data: { whip_it: "good" },
789 success: function(data, status, xhr){
790 var h = xhr.getAllResponseHeaders();
791 ok( /Date/i.test(h), 'No Date in HEAD response with data' );
800 test("jQuery.ajax - beforeSend", function() {
806 jQuery.ajaxSetup({ timeout: 0 });
809 url: url("data/name.html"),
810 beforeSend: function(xml) {
813 success: function(data) {
814 ok( check, "check beforeSend was executed" );
820 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
822 var request = jQuery.ajax({
823 url: url("data/name.html"),
824 beforeSend: function() {
825 ok( true, "beforeSend got called, canceling" );
828 success: function() {
829 ok( false, "request didn't get canceled" );
831 complete: function() {
832 ok( false, "request didn't get canceled" );
835 ok( false, "request didn't get canceled" );
838 ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
841 test("jQuery.ajax - beforeSend, cancel request manually", function() {
843 var request = jQuery.ajax({
844 url: url("data/name.html"),
845 beforeSend: function(xhr) {
846 ok( true, "beforeSend got called, canceling" );
849 success: function() {
850 ok( false, "request didn't get canceled" );
852 complete: function() {
853 ok( false, "request didn't get canceled" );
856 ok( false, "request didn't get canceled" );
859 ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
862 window.foobar = null;
863 window.testFoo = undefined;
865 test("jQuery.ajax - dataType html", function() {
869 var verifyEvaluation = function() {
870 equals( testFoo, "foo", 'Check if script was evaluated for datatype html' );
871 equals( foobar, "bar", 'Check if script src was evaluated for datatype html' );
878 url: url("data/test.html"),
879 success: function(data) {
880 jQuery("#ap").html(data);
881 ok( data.match(/^html text/), 'Check content for datatype html' );
882 setTimeout(verifyEvaluation, 600);
887 test("serialize()", function() {
890 // Add html5 elements only for serialize because selector can't yet find them on non-html5 browsers
891 jQuery("#search").after(
892 '<input type="email" id="html5email" name="email" value="dave@jquery.com" />'+
893 '<input type="number" id="html5number" name="number" value="43" />'
896 equals( jQuery('#form').serialize(),
897 "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",
898 'Check form serialization as query string');
900 equals( jQuery('#form :input').serialize(),
901 "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",
902 'Check input serialization as query string');
904 equals( jQuery('#testForm').serialize(),
905 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
906 'Check form serialization as query string');
908 equals( jQuery('#testForm :input').serialize(),
909 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
910 'Check input serialization as query string');
912 equals( jQuery('#form, #testForm').serialize(),
913 "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=",
914 'Multiple form serialization as query string');
916 /* Temporarily disabled. Opera 10 has problems with form serialization.
917 equals( jQuery('#form, #testForm :input').serialize(),
918 "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=",
919 'Mixed form/input serialization as query string');
921 jQuery("#html5email, #html5number").remove();
924 test("jQuery.param()", function() {
927 equals( !jQuery.ajaxSettings.traditional, true, "traditional flag, falsy by default" );
929 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
930 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
932 params = {someName: [1, 2, 3], regularThing: "blah" };
933 equals( jQuery.param(params), "someName%5B%5D=1&someName%5B%5D=2&someName%5B%5D=3®ularThing=blah", "with array" );
935 params = {foo: ['a', 'b', 'c']};
936 equals( jQuery.param(params), "foo%5B%5D=a&foo%5B%5D=b&foo%5B%5D=c", "with array of strings" );
938 params = {foo: ["baz", 42, "All your base are belong to us"] };
939 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
941 params = {foo: { bar: 'baz', beep: 42, quux: 'All your base are belong to us' } };
942 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" );
944 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?" };
945 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" );
947 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 ] };
948 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" );
950 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?" };
951 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" );
953 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." );
955 // Make sure empty arrays and objects are handled #6481
956 equals( jQuery.param({"foo": {"bar": []} }), "foo%5Bbar%5D=", "Empty array param" );
957 equals( jQuery.param({"foo": {"bar": [], foo: 1} }), "foo%5Bbar%5D=&foo%5Bfoo%5D=1", "Empty array param" );
958 equals( jQuery.param({"foo": {"bar": {}} }), "foo%5Bbar%5D=", "Empty object param" );
961 equals( jQuery.param({"jquery": "1.4.2"}), "jquery=1.4.2", "Check that object with a jQuery property get serialized correctly" );
963 equals( jQuery.param(jQuery("#form :input")), "action=Test&text2=Test&radio1=on&radio2=on&check=on&=on&hidden=&foo%5Bbar%5D=&name=name&search=search&button=&=foobar&select1=&select2=3&select3=1&select4=1&select5=3", "Make sure jQuery objects are properly serialized");
965 jQuery.ajaxSetup({ traditional: true });
967 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
968 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
970 params = {someName: [1, 2, 3], regularThing: "blah" };
971 equals( jQuery.param(params), "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
973 params = {foo: ['a', 'b', 'c']};
974 equals( jQuery.param(params), "foo=a&foo=b&foo=c", "with array of strings" );
976 params = {"foo[]":["baz", 42, "All your base are belong to us"]};
977 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
979 params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
980 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" );
982 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?" };
983 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" );
985 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 ] };
986 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)" );
988 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?" };
989 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" );
991 params = { param1: null };
992 equals( jQuery.param(params,false), "param1=null", "Make sure that null params aren't traversed." );
994 params = {'test': {'length': 3, 'foo': 'bar'} };
995 equals( jQuery.param( params, false ), "test%5Blength%5D=3&test%5Bfoo%5D=bar", "Sub-object with a length property" );
998 test("synchronous request", function() {
1000 ok( /^{ "data"/.test( jQuery.ajax({url: url("data/json_obj.js"), dataType: "text", async: false}).responseText ), "check returned text" );
1003 test("synchronous request with callbacks", function() {
1006 jQuery.ajax({url: url("data/json_obj.js"), async: false, dataType: "text", success: function(data) { ok(true, "sucess callback executed"); result = data; } });
1007 ok( /^{ "data"/.test( result ), "check returned text" );
1010 test("pass-through request object", function() {
1014 var target = "data/name.html";
1015 var successCount = 0;
1018 var success = function() {
1021 jQuery("#foo").ajaxError(function (e, xml, s, ex) {
1023 errorEx += ": " + xml.status;
1025 jQuery("#foo").one('ajaxStop', function () {
1026 equals(successCount, 5, "Check all ajax calls successful");
1027 equals(errorCount, 0, "Check no ajax errors (status" + errorEx + ")");
1028 jQuery("#foo").unbind('ajaxError');
1033 ok( jQuery.get(url(target), success), "get" );
1034 ok( jQuery.post(url(target), success), "post" );
1035 ok( jQuery.getScript(url("data/test.js"), success), "script" );
1036 ok( jQuery.getJSON(url("data/json_obj.js"), success), "json" );
1037 ok( jQuery.ajax({url: url(target), success: success}), "generic" );
1040 test("ajax cache", function () {
1047 jQuery("#firstp").bind("ajaxSuccess", function (e, xml, s) {
1048 var re = /_=(.*?)(&|$)/g;
1050 for (var i = 0; i < 6; i++) {
1051 var ret = re.exec(s.url);
1057 equals(i, 1, "Test to make sure only one 'no-cache' parameter is there");
1058 ok(oldOne != "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
1063 ok( jQuery.ajax({url: "data/text.php", cache:false}), "test with no parameters" );
1064 ok( jQuery.ajax({url: "data/text.php?pizza=true", cache:false}), "test with 1 parameter" );
1065 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555", cache:false}), "test with _= parameter" );
1066 ok( jQuery.ajax({url: "data/text.php?pizza=true&_=tobereplaced555", cache:false}), "test with 1 parameter plus _= one" );
1067 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555&tv=false", cache:false}), "test with 1 parameter plus _= one before it" );
1068 ok( jQuery.ajax({url: "data/text.php?name=David&_=tobereplaced555&washere=true", cache:false}), "test with 2 parameters surrounding _= one" );
1073 * The assertions expect that the passed-in object will be modified,
1074 * which shouldn't be the case. Fixes #5439.
1075 test("global ajaxSettings", function() {
1078 var tmp = jQuery.extend({}, jQuery.ajaxSettings);
1079 var orig = { url: "data/with_fries.xml" };
1082 jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
1084 t = jQuery.extend({}, orig);
1087 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
1089 t = jQuery.extend({}, orig);
1090 t.data = { zoo: 'a', ping: 'b' };
1092 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' }" );
1094 jQuery.ajaxSettings = tmp;
1098 test("load(String)", function() {
1100 stop(); // check if load can be called with only url
1101 jQuery('#first').load("data/name.html", start);
1104 test("load('url selector')", function() {
1106 stop(); // check if load can be called with only url
1107 jQuery('#first').load("data/test3.html div.user", function(){
1108 equals( jQuery(this).children("div").length, 2, "Verify that specific elements were injected" );
1113 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
1116 jQuery.ajaxSetup({ dataType: "json" });
1117 jQuery("#first").ajaxComplete(function (e, xml, s) {
1118 equals( s.dataType, "html", "Verify the load() dataType was html" );
1119 jQuery("#first").unbind("ajaxComplete");
1120 jQuery.ajaxSetup({ dataType: "" });
1123 jQuery('#first').load("data/test3.html");
1126 test("load(String, Function) - simple: inject text into DOM", function() {
1129 jQuery('#first').load(url("data/name.html"), function() {
1130 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
1135 test("load(String, Function) - check scripts", function() {
1139 var verifyEvaluation = function() {
1140 equals( foobar, "bar", 'Check if script src was evaluated after load' );
1141 equals( jQuery('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
1145 jQuery('#first').load(url('data/test.html'), function() {
1146 ok( jQuery('#first').html().match(/^html text/), 'Check content after loading html' );
1147 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1148 equals( testFoo, "foo", 'Check if script was evaluated after load' );
1149 setTimeout(verifyEvaluation, 600);
1153 test("load(String, Function) - check file with only a script tag", function() {
1157 jQuery('#first').load(url('data/test2.html'), function() {
1158 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1159 equals( testFoo, "foo", 'Check if script was evaluated after load' );
1165 test("load(String, Function) - dataFilter in ajaxSettings", function() {
1168 jQuery.ajaxSetup({ dataFilter: function() { return "Hello World"; } });
1169 var div = jQuery("<div/>").load(url("data/name.html"), function(responseText) {
1170 strictEqual( div.html(), "Hello World" , "Test div was filled with filtered data" );
1171 strictEqual( responseText, "Hello World" , "Test callback receives filtered data" );
1172 jQuery.ajaxSetup({ dataFilter: 0 });
1177 test("load(String, Object, Function)", function() {
1181 jQuery('<div />').load(url('data/params_html.php'), { foo:3, bar:'ok' }, function() {
1182 var $post = jQuery(this).find('#post');
1183 equals( $post.find('#foo').text(), '3', 'Check if a hash of data is passed correctly');
1184 equals( $post.find('#bar').text(), 'ok', 'Check if a hash of data is passed correctly');
1189 test("load(String, String, Function)", function() {
1193 jQuery('<div />').load(url('data/params_html.php'), 'foo=3&bar=ok', function() {
1194 var $get = jQuery(this).find('#get');
1195 equals( $get.find('#foo').text(), '3', 'Check if a string of data is passed correctly');
1196 equals( $get.find('#bar').text(), 'ok', 'Check if a of data is passed correctly');
1201 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
1204 jQuery.get(url('data/dashboard.xml'), function(xml) {
1206 jQuery('tab', xml).each(function() {
1207 content.push(jQuery(this).text());
1209 equals( content[0], 'blabla', 'Check first tab');
1210 equals( content[1], 'blublu', 'Check second tab');
1215 test("jQuery.getScript(String, Function) - with callback", function() {
1218 jQuery.getScript(url("data/test.js"), function( data, _, jqXHR ) {
1219 equals( foobar, "bar", 'Check if script was evaluated' );
1220 strictEqual( data, jqXHR.responseText, "Same-domain script requests returns the source of the script (#8082)" );
1221 setTimeout(start, 100);
1225 test("jQuery.getScript(String, Function) - no callback", function() {
1228 jQuery.getScript(url("data/test.js"), function(){
1233 jQuery.each( [ "Same Domain", "Cross Domain" ] , function( crossDomain , label ) {
1235 test("jQuery.ajax() - JSONP, " + label, function() {
1239 function plus(){ if ( ++count == 18 ) start(); }
1244 url: "data/jsonp.php",
1246 crossDomain: crossDomain,
1247 success: function(data){
1248 ok( data.data, "JSON results returned (GET, no callback)" );
1251 error: function(data){
1252 ok( false, "Ajax error JSON (GET, no callback)" );
1258 url: "data/jsonp.php?callback=?",
1260 crossDomain: crossDomain,
1261 success: function(data){
1262 ok( data.data, "JSON results returned (GET, url callback)" );
1265 error: function(data){
1266 ok( false, "Ajax error JSON (GET, url callback)" );
1272 url: "data/jsonp.php",
1274 crossDomain: crossDomain,
1276 success: function(data){
1277 ok( data.data, "JSON results returned (GET, data callback)" );
1280 error: function(data){
1281 ok( false, "Ajax error JSON (GET, data callback)" );
1287 url: "data/jsonp.php?callback=??",
1289 crossDomain: crossDomain,
1290 success: function(data){
1291 ok( data.data, "JSON results returned (GET, url context-free callback)" );
1294 error: function(data){
1295 ok( false, "Ajax error JSON (GET, url context-free callback)" );
1301 url: "data/jsonp.php",
1303 crossDomain: crossDomain,
1304 data: "callback=??",
1305 success: function(data){
1306 ok( data.data, "JSON results returned (GET, data context-free callback)" );
1309 error: function(data){
1310 ok( false, "Ajax error JSON (GET, data context-free callback)" );
1316 url: "data/jsonp.php/??",
1318 crossDomain: crossDomain,
1319 success: function(data){
1320 ok( data.data, "JSON results returned (GET, REST-like)" );
1323 error: function(data){
1324 ok( false, "Ajax error JSON (GET, REST-like)" );
1330 url: "data/jsonp.php/???json=1",
1332 crossDomain: crossDomain,
1333 success: function(data){
1334 strictEqual( jQuery.type(data), "array", "JSON results returned (GET, REST-like with param)" );
1337 error: function(data){
1338 ok( false, "Ajax error JSON (GET, REST-like with param)" );
1344 url: "data/jsonp.php",
1346 crossDomain: crossDomain,
1348 success: function(data){
1349 ok( data.data, "JSON results returned (GET, data obj callback)" );
1352 error: function(data){
1353 ok( false, "Ajax error JSON (GET, data obj callback)" );
1358 window.jsonpResults = function(data) {
1359 ok( data.data, "JSON results returned (GET, custom callback function)" );
1360 window.jsonpResults = undefined;
1365 url: "data/jsonp.php",
1367 crossDomain: crossDomain,
1368 jsonpCallback: "jsonpResults",
1369 success: function(data){
1370 ok( data.data, "JSON results returned (GET, custom callback name)" );
1373 error: function(data){
1374 ok( false, "Ajax error JSON (GET, custom callback name)" );
1380 url: "data/jsonp.php",
1382 crossDomain: crossDomain,
1383 jsonpCallback: "functionToCleanUp",
1384 success: function(data){
1385 ok( data.data, "JSON results returned (GET, custom callback name to be cleaned up)" );
1386 strictEqual( window.functionToCleanUp, undefined, "Callback was removed (GET, custom callback name to be cleaned up)" );
1390 url: "data/jsonp.php",
1392 crossDomain: crossDomain,
1393 jsonpCallback: "functionToCleanUp",
1394 beforeSend: function( jqXHR ) {
1399 xhr.error(function() {
1400 ok( true, "Ajax error JSON (GET, custom callback name to be cleaned up)" );
1401 strictEqual( window.functionToCleanUp, undefined, "Callback was removed after early abort (GET, custom callback name to be cleaned up)" );
1405 error: function(data){
1406 ok( false, "Ajax error JSON (GET, custom callback name to be cleaned up)" );
1413 url: "data/jsonp.php",
1415 crossDomain: crossDomain,
1416 success: function(data){
1417 ok( data.data, "JSON results returned (POST, no callback)" );
1420 error: function(data){
1421 ok( false, "Ajax error JSON (GET, data obj callback)" );
1428 url: "data/jsonp.php",
1431 crossDomain: crossDomain,
1432 success: function(data){
1433 ok( data.data, "JSON results returned (POST, data callback)" );
1436 error: function(data){
1437 ok( false, "Ajax error JSON (POST, data callback)" );
1444 url: "data/jsonp.php",
1447 crossDomain: crossDomain,
1448 success: function(data){
1449 ok( data.data, "JSON results returned (POST, data obj callback)" );
1452 error: function(data){
1453 ok( false, "Ajax error JSON (POST, data obj callback)" );
1460 url: "data/jsonp.php",
1462 crossDomain: crossDomain,
1463 beforeSend: function(){
1464 strictEqual( this.cache, false, "cache must be false on JSON request" );
1471 url: "data/jsonp.php?callback=XXX",
1474 jsonpCallback: "XXX",
1475 crossDomain: crossDomain,
1476 beforeSend: function() {
1477 ok( /^data\/jsonp.php\?callback=XXX&_=\d+$/.test( this.url ) ,
1478 "The URL wasn't messed with (GET, custom callback name with no url manipulation)" );
1481 success: function(data){
1482 ok( data.data, "JSON results returned (GET, custom callback name with no url manipulation)" );
1485 error: function(data){
1486 ok( false, "Ajax error JSON (GET, custom callback name with no url manipulation)" );
1494 test("jQuery.ajax() - script, Remote", function() {
1497 var base = window.location.href.replace(/[^\/]*$/, "");
1502 url: base + "data/test.js",
1504 success: function(data){
1505 ok( foobar, "Script results returned (GET, no callback)" );
1511 test("jQuery.ajax() - script, Remote with POST", function() {
1514 var base = window.location.href.replace(/[^\/]*$/, "");
1519 url: base + "data/test.js",
1522 success: function(data, status){
1523 ok( foobar, "Script results returned (POST, no callback)" );
1524 equals( status, "success", "Script results returned (POST, no callback)" );
1527 error: function(xhr) {
1528 ok( false, "ajax error, status code: " + xhr.status );
1534 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
1537 var base = window.location.href.replace(/[^\/]*$/, "");
1538 base = base.replace(/^.*?\/\//, "//");
1543 url: base + "data/test.js",
1545 success: function(data){
1546 ok( foobar, "Script results returned (GET, no callback)" );
1552 test("jQuery.ajax() - malformed JSON", function() {
1558 url: "data/badjson.js",
1560 success: function(){
1561 ok( false, "Success." );
1564 error: function(xhr, msg, detailedMsg) {
1565 equals( "parsererror", msg, "A parse error occurred." );
1566 ok( /^Invalid JSON/.test(detailedMsg), "Detailed parsererror message provided" );
1572 test("jQuery.ajax() - script by content-type", function() {
1580 url: "data/script.php",
1581 data: { header: "script" }
1585 url: "data/script.php",
1586 data: { header: "ecma" }
1589 ).then( start, start );
1592 test("jQuery.ajax() - json by content-type", function() {
1598 url: "data/json.php",
1599 data: { header: "json", json: "array" },
1600 success: function( json ) {
1601 ok( json.length >= 2, "Check length");
1602 equals( json[0].name, 'John', 'Check JSON: first, name' );
1603 equals( json[0].age, 21, 'Check JSON: first, age' );
1604 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1605 equals( json[1].age, 25, 'Check JSON: second, age' );
1611 test("jQuery.ajax() - json by content-type disabled with options", function() {
1617 url: url("data/json.php"),
1618 data: { header: "json", json: "array" },
1622 success: function( text ) {
1623 equals( typeof text , "string" , "json wasn't auto-determined" );
1624 var json = jQuery.parseJSON( text );
1625 ok( json.length >= 2, "Check length");
1626 equals( json[0].name, 'John', 'Check JSON: first, name' );
1627 equals( json[0].age, 21, 'Check JSON: first, age' );
1628 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1629 equals( json[1].age, 25, 'Check JSON: second, age' );
1635 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
1638 jQuery.getJSON(url("data/json.php"), {json: "array"}, function(json) {
1639 ok( json.length >= 2, "Check length");
1640 equals( json[0].name, 'John', 'Check JSON: first, name' );
1641 equals( json[0].age, 21, 'Check JSON: first, age' );
1642 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1643 equals( json[1].age, 25, 'Check JSON: second, age' );
1648 test("jQuery.getJSON(String, Function) - JSON object", function() {
1651 jQuery.getJSON(url("data/json.php"), function(json) {
1652 if (json && json.data) {
1653 equals( json.data.lang, 'en', 'Check JSON: lang' );
1654 equals( json.data.length, 25, 'Check JSON: length' );
1660 test("jQuery.getJSON - Using Native JSON", function() {
1663 var old = window.JSON;
1665 parse: function(str){
1666 ok( true, "Verifying that parse method was run" );
1672 jQuery.getJSON(url("data/json.php"), function(json) {
1674 equals( json, true, "Verifying return value" );
1679 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
1682 var base = window.location.href.replace(/[^\/]*$/, "");
1685 jQuery.getJSON(url(base + "data/json.php"), function(json) {
1686 equals( json.data.lang, 'en', 'Check JSON: lang' );
1687 equals( json.data.length, 25, 'Check JSON: length' );
1692 test("jQuery.post - data", 3, function() {
1696 jQuery.post( url( "data/name.php" ), { xml: "5-2", length: 3 }, function( xml ) {
1697 jQuery( 'math', xml ).each( function() {
1698 equals( jQuery( 'calculation', this ).text(), '5-2', 'Check for XML' );
1699 equals( jQuery( 'result', this ).text(), '3', 'Check for XML' );
1704 url: url('data/echoData.php'),
1712 success: function( data ) {
1713 strictEqual( data, 'test%5Blength%5D=7&test%5Bfoo%5D=bar', 'Check if a sub-object with a length param is serialized correctly');
1716 ).then( start, start );
1720 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
1725 jQuery.post(url("data/name.php"), {xml: "5-2"}, function(xml){
1726 jQuery('math', xml).each(function() {
1727 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1728 equals( jQuery('result', this).text(), '3', 'Check for XML' );
1730 if ( ++done === 2 ) start();
1733 jQuery.post(url("data/name.php?xml=5-2"), {}, function(xml){
1734 jQuery('math', xml).each(function() {
1735 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1736 equals( jQuery('result', this).text(), '3', 'Check for XML' );
1738 if ( ++done === 2 ) start();
1742 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
1747 jQuery.ajaxSetup({timeout: 1000});
1749 var pass = function() {
1751 if ( passed == 2 ) {
1752 ok( true, 'Check local and global callbacks after timeout' );
1753 jQuery('#main').unbind("ajaxError");
1758 var fail = function(a,b,c) {
1759 ok( false, 'Check for timeout failed ' + a + ' ' + b );
1763 jQuery('#main').ajaxError(pass);
1767 url: url("data/name.php?wait=5"),
1773 jQuery.ajaxSetup({timeout: 0});
1776 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
1778 jQuery.ajaxSetup({timeout: 50});
1783 url: url("data/name.php?wait=1"),
1785 ok( false, 'Check for local timeout failed' );
1788 success: function() {
1789 ok( true, 'Check for local timeout' );
1795 jQuery.ajaxSetup({timeout: 0});
1798 test("jQuery.ajax - simple get", function() {
1803 url: url("data/name.php?name=foo"),
1804 success: function(msg){
1805 equals( msg, 'bar', 'Check for GET' );
1811 test("jQuery.ajax - simple post", function() {
1816 url: url("data/name.php"),
1818 success: function(msg){
1819 equals( msg, 'pan', 'Check for POST' );
1825 test("ajaxSetup()", function() {
1829 url: url("data/name.php?name=foo"),
1830 success: function(msg){
1831 equals( msg, 'bar', 'Check for GET' );
1839 test("custom timeout does not set error message when timeout occurs, see #970", function() {
1842 url: "data/name.php?wait=1",
1844 error: function(request, status) {
1845 ok( status != null, "status shouldn't be null in error handler" );
1846 equals( "timeout", status );
1853 test("data option: evaluate function values (#2806)", function() {
1856 url: "data/echoQuery.php",
1862 success: function(result) {
1863 equals( result, "key=value" );
1869 test("data option: empty bodies for non-GET requests", function() {
1872 url: "data/echoData.php",
1875 success: function(result) {
1876 equals( result, "" );
1882 var ifModifiedNow = new Date();
1884 jQuery.each( { " (cache)": true, " (no cache)": false }, function( label, cache ) {
1886 test("jQuery.ajax - If-Modified-Since support" + label, function() {
1891 var url = "data/if_modified_since.php?ts=" + ifModifiedNow++;
1897 success: function(data, status) {
1898 equals(status, "success" );
1904 success: function(data, status) {
1905 if ( data === "FAIL" ) {
1906 ok(jQuery.browser.opera, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1907 ok(jQuery.browser.opera, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1909 equals(status, "notmodified");
1910 ok(data == null, "response body should be empty");
1915 // Do this because opera simply refuses to implement 304 handling :(
1916 // A feature-driven way of detecting this would be appreciated
1917 // See: http://gist.github.com/599419
1918 ok(jQuery.browser.opera, "error");
1919 ok(jQuery.browser.opera, "error");
1925 equals(false, "error");
1926 // Do this because opera simply refuses to implement 304 handling :(
1927 // A feature-driven way of detecting this would be appreciated
1928 // See: http://gist.github.com/599419
1929 ok(jQuery.browser.opera, "error");
1935 test("jQuery.ajax - Etag support" + label, function() {
1940 var url = "data/etag.php?ts=" + ifModifiedNow++;
1946 success: function(data, status) {
1947 equals(status, "success" );
1953 success: function(data, status) {
1954 if ( data === "FAIL" ) {
1955 ok(jQuery.browser.opera, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1956 ok(jQuery.browser.opera, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1958 equals(status, "notmodified");
1959 ok(data == null, "response body should be empty");
1964 // Do this because opera simply refuses to implement 304 handling :(
1965 // A feature-driven way of detecting this would be appreciated
1966 // See: http://gist.github.com/599419
1967 ok(jQuery.browser.opera, "error");
1968 ok(jQuery.browser.opera, "error");
1974 // Do this because opera simply refuses to implement 304 handling :(
1975 // A feature-driven way of detecting this would be appreciated
1976 // See: http://gist.github.com/599419
1977 ok(jQuery.browser.opera, "error");
1984 test("jQuery ajax - failing cross-domain", function() {
1993 url: 'http://somewebsitethatdoesnotexist-67864863574657654.com',
1994 success: function(){ ok( false , "success" ); },
1995 error: function(xhr,_,e){ ok( true , "file not found: " + xhr.status + " => " + e ); },
1996 complete: function() { if ( ! --i ) start(); }
2000 url: 'http://www.google.com',
2001 success: function(){ ok( false , "success" ); },
2002 error: function(xhr,_,e){ ok( true , "access denied: " + xhr.status + " => " + e ); },
2003 complete: function() { if ( ! --i ) start(); }
2008 test("jQuery ajax - atom+xml", function() {
2013 url: url( 'data/atom+xml.php' ),
2014 success: function(){ ok( true , "success" ); },
2015 error: function(){ ok( false , "error" ); },
2016 complete: function() { start(); }
2021 test( "jQuery.ajax - Location object as url (#7531)", 1, function () {
2022 var success = false;
2024 var xhr = jQuery.ajax({ url: window.location });
2029 ok( success, "document.location did not generate exception" );
2032 test( "jQuery.ajax - statusCode" , function() {
2039 function countComplete() {
2045 function createStatusCodes( name , isSuccess ) {
2046 name = "Test " + name + " " + ( isSuccess ? "success" : "error" );
2049 ok( isSuccess , name );
2052 ok( ! isSuccess , name );
2058 "data/name.html": true,
2059 "data/someFileThatDoesNotExist.html": false
2060 } , function( uri , isSuccess ) {
2062 jQuery.ajax( url( uri ) , {
2063 statusCode: createStatusCodes( "in options" , isSuccess ),
2064 complete: countComplete
2067 jQuery.ajax( url( uri ) , {
2068 complete: countComplete
2069 }).statusCode( createStatusCodes( "immediately with method" , isSuccess ) );
2071 jQuery.ajax( url( uri ) , {
2072 complete: function(jqXHR) {
2073 jqXHR.statusCode( createStatusCodes( "on complete" , isSuccess ) );
2078 jQuery.ajax( url( uri ) , {
2079 complete: function(jqXHR) {
2080 setTimeout( function() {
2081 jqXHR.statusCode( createStatusCodes( "very late binding" , isSuccess ) );
2087 jQuery.ajax( url( uri ) , {
2088 statusCode: createStatusCodes( "all (options)" , isSuccess ),
2089 complete: function(jqXHR) {
2090 jqXHR.statusCode( createStatusCodes( "all (on complete)" , isSuccess ) );
2091 setTimeout( function() {
2092 jqXHR.statusCode( createStatusCodes( "all (very late binding)" , isSuccess ) );
2096 }).statusCode( createStatusCodes( "all (immediately with method)" , isSuccess ) );
2098 var testString = "";
2100 jQuery.ajax( url( uri ), {
2101 success: function( a , b , jqXHR ) {
2102 ok( isSuccess , "success" );
2103 var statusCode = {};
2104 statusCode[ jqXHR.status ] = function() {
2107 jqXHR.statusCode( statusCode );
2110 error: function( jqXHR ) {
2111 ok( ! isSuccess , "error" );
2112 var statusCode = {};
2113 statusCode[ jqXHR.status ] = function() {
2116 jqXHR.statusCode( statusCode );
2119 complete: function() {
2120 strictEqual( testString , "AB" , "Test statusCode callbacks are ordered like " +
2121 ( isSuccess ? "success" : "error" ) + " callbacks" );
2129 test("jQuery.ajax - transitive conversions", function() {
2137 jQuery.ajax( url("data/json.php") , {
2139 "json myJson": function( data ) {
2140 ok( true , "converter called" );
2145 success: function() {
2146 ok( true , "Transitive conversion worked" );
2147 strictEqual( this.dataTypes[0] , "text" , "response was retrieved as text" );
2148 strictEqual( this.dataTypes[1] , "myjson" , "request expected myjson dataType" );
2152 jQuery.ajax( url("data/json.php") , {
2154 "json myJson": function( data ) {
2155 ok( true , "converter called (*)" );
2159 contents: false, /* headers are wrong so we ignore them */
2160 dataType: "* myJson",
2161 success: function() {
2162 ok( true , "Transitive conversion worked (*)" );
2163 strictEqual( this.dataTypes[0] , "text" , "response was retrieved as text (*)" );
2164 strictEqual( this.dataTypes[1] , "myjson" , "request expected myjson dataType (*)" );
2168 ).then( start , start );
2172 test("jQuery.ajax - abort in prefilter", function() {
2176 jQuery.ajaxPrefilter(function( options, _, jqXHR ) {
2177 if ( options.abortInPrefilter ) {
2182 strictEqual( jQuery.ajax({
2183 abortInPrefilter: true,
2185 ok( false, "error callback called" );
2187 }), false, "Request was properly aborted early by the prefilter" );
2191 test("jQuery.ajax - active counter", function() {
2192 ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );