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 strictEqual( data
, tmp
, "Headers were sent" );
380 strictEqual( xhr
.getResponseHeader( "Sample-Header" ) , "Hello World" , "Sample header received" );
381 if ( jQuery
.browser
.mozilla
) {
382 ok( true, "Firefox doesn't support empty headers" );
384 strictEqual( xhr
.getResponseHeader( "Empty-Header" ) , "" , "Empty header received" );
386 strictEqual( xhr
.getResponseHeader( "Sample-Header2" ) , "Hello World 2" , "Second sample header received" );
388 error: function(){ ok(false, "error"); }
390 }).then( start
, start
);
394 test(".ajax() - Accept header" , function() {
400 jQuery
.ajax(url("data/headers.php?keys=accept"), {
402 Accept
: "very wrong accept value"
404 beforeSend: function( xhr
) {
405 xhr
.setRequestHeader( "Accept", "*/*" );
407 success: function( data
) {
408 strictEqual( data
, "accept: */*\n" , "Test Accept header is set to last value provided" );
411 error: function(){ ok(false, "error"); }
416 test(".ajax() - contentType" , function() {
430 jQuery
.ajax(url("data/headers.php?keys=content-type" ), {
432 success: function( data
) {
433 strictEqual( data
, "content-type: test\n" , "Test content-type is sent when options.contentType is set" );
435 complete: function() {
440 jQuery
.ajax(url("data/headers.php?keys=content-type" ), {
442 success: function( data
) {
443 strictEqual( data
, "content-type: \n" , "Test content-type is not sent when options.contentType===false" );
445 complete: function() {
452 test(".ajax() - protocol-less urls", function() {
456 url
: "//somedomain.com",
457 beforeSend: function( xhr
, settings
) {
458 equals(settings
.url
, location
.protocol
+ "//somedomain.com", "Make sure that the protocol is added.");
464 test(".ajax() - hash", function() {
468 url
: "data/name.html#foo",
469 beforeSend: function( xhr
, settings
) {
470 equals(settings
.url
, "data/name.html", "Make sure that the URL is trimmed.");
476 url
: "data/name.html?abc#foo",
477 beforeSend: function( xhr
, settings
) {
478 equals(settings
.url
, "data/name.html?abc", "Make sure that the URL is trimmed.");
484 url
: "data/name.html?abc#foo",
485 data
: { "test": 123 },
486 beforeSend: function( xhr
, settings
) {
487 equals(settings
.url
, "data/name.html?abc&test=123", "Make sure that the URL is trimmed.");
493 test("jQuery ajax - cross-domain detection", function() {
497 var loc
= document
.location
,
498 otherPort
= loc
.port
=== 666 ? 667 : 666,
499 otherProtocol
= loc
.protocol
=== "http:" ? "https:" : "http:";
503 url
: otherProtocol
+ "//" + loc
.host
,
504 beforeSend: function( _
, s
) {
505 ok( s
.crossDomain
, "Test different protocols are detected as cross-domain" );
512 beforeSend: function( _
, s
) {
513 ok( s
.crossDomain
, "Adobe AIR app:/ URL detected as cross-domain" );
520 url
: loc
.protocol
+ '//somewebsitethatdoesnotexist-656329477541.com:' + ( loc
.port
|| 80 ),
521 beforeSend: function( _
, s
) {
522 ok( s
.crossDomain
, "Test different hostnames are detected as cross-domain" );
529 url
: loc
.protocol
+ "//" + loc
.hostname
+ ":" + otherPort
,
530 beforeSend: function( _
, s
) {
531 ok( s
.crossDomain
, "Test different ports are detected as cross-domain" );
538 url
: loc
.protocol
+ "//" + loc
.host
,
540 beforeSend: function( _
, s
) {
541 ok( s
.crossDomain
, "Test forced crossDomain is detected as cross-domain" );
548 test(".load() - 404 error callbacks", function() {
552 jQuery('#foo').ajaxStart(function(){
553 ok( true, "ajaxStart" );
554 }).ajaxStop(function(){
555 ok( true, "ajaxStop" );
557 }).ajaxSend(function(){
558 ok( true, "ajaxSend" );
559 }).ajaxComplete(function(){
560 ok( true, "ajaxComplete" );
561 }).ajaxError(function(){
562 ok( true, "ajaxError" );
563 }).ajaxSuccess(function(){
564 ok( false, "ajaxSuccess" );
567 jQuery("<div/>").load("data/404.html", function(){
568 ok(true, "complete");
572 test("jQuery.ajax() - abort", function() {
576 jQuery('#foo').ajaxStart(function(){
577 ok( true, "ajaxStart" );
578 }).ajaxStop(function(){
579 ok( true, "ajaxStop" );
581 }).ajaxSend(function(){
582 ok( true, "ajaxSend" );
583 }).ajaxComplete(function(){
584 ok( true, "ajaxComplete" );
587 var xhr
= jQuery
.ajax({
588 url
: url("data/name.php?wait=5"),
589 beforeSend: function(){ ok(true, "beforeSend"); },
590 complete: function(){ ok(true, "complete"); }
593 equals( xhr
.readyState
, 1, "XHR readyState indicates successful dispatch" );
596 equals( xhr
.readyState
, 0, "XHR readyState indicates successful abortion" );
599 test("Ajax events with context", function() {
603 var context
= document
.createElement("div");
606 equals( this, context
, e
.type
);
609 function callback(msg
){
611 equals( this, context
, "context is preserved on callback " + msg
);
615 function nocallback(msg
){
617 equals( typeof this.url
, "string", "context is settings on callback " + msg
);
621 jQuery('#foo').add(context
)
628 url
: url("data/name.html"),
629 beforeSend
: callback("beforeSend"),
630 success
: callback("success"),
631 error
: callback("error"),
633 callback("complete").call(this);
636 url
: url("data/404.html"),
638 beforeSend
: callback("beforeSend"),
639 error
: callback("error"),
640 complete: function(){
641 callback("complete").call(this);
643 jQuery('#foo').add(context
).unbind();
646 url
: url("data/404.html"),
647 beforeSend
: nocallback("beforeSend"),
648 error
: nocallback("error"),
649 complete: function(){
650 nocallback("complete").call(this);
661 test("jQuery.ajax context modification", function() {
669 url
: url("data/name.html"),
671 beforeSend: function(){
674 complete: function() {
679 equals( obj
.test
, "foo", "Make sure the original object is maintained." );
682 test("jQuery.ajax context modification through ajaxSetup", function() {
693 strictEqual( jQuery
.ajaxSettings
.context
, obj
, "Make sure the context is properly set in ajaxSettings." );
696 url
: url("data/name.html"),
697 complete: function() {
698 strictEqual( this, obj
, "Make sure the original object is maintained." );
700 url
: url("data/name.html"),
702 complete: function() {
703 ok( this !== obj
, "Make sure overidding context is possible." );
708 url
: url("data/name.html"),
709 beforeSend: function(){
712 complete: function() {
713 ok( this !== obj
, "Make sure unsetting context is possible." );
723 test("jQuery.ajax() - disabled globals", function() {
727 jQuery('#foo').ajaxStart(function(){
728 ok( false, "ajaxStart" );
729 }).ajaxStop(function(){
730 ok( false, "ajaxStop" );
731 }).ajaxSend(function(){
732 ok( false, "ajaxSend" );
733 }).ajaxComplete(function(){
734 ok( false, "ajaxComplete" );
735 }).ajaxError(function(){
736 ok( false, "ajaxError" );
737 }).ajaxSuccess(function(){
738 ok( false, "ajaxSuccess" );
743 url
: url("data/name.html"),
744 beforeSend: function(){ ok(true, "beforeSend"); },
745 success: function(){ ok(true, "success"); },
746 error: function(){ ok(false, "error"); },
747 complete: function(){
748 ok(true, "complete");
749 setTimeout(function(){ start(); }, 13);
754 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
758 url
: url("data/with_fries.xml"),
760 success: function(resp
) {
761 equals( jQuery("properties", resp
).length
, 1, 'properties in responseXML' );
762 equals( jQuery("jsconf", resp
).length
, 1, 'jsconf in responseXML' );
763 equals( jQuery("thing", resp
).length
, 2, 'things in responseXML' );
769 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements (over JSONP)", function() {
773 url
: url("data/with_fries_over_jsonp.php"),
774 dataType
: "jsonp xml",
775 success: function(resp
) {
776 equals( jQuery("properties", resp
).length
, 1, 'properties in responseXML' );
777 equals( jQuery("jsconf", resp
).length
, 1, 'jsconf in responseXML' );
778 equals( jQuery("thing", resp
).length
, 2, 'things in responseXML' );
781 error: function(_1
,_2
,error
) {
788 test("jQuery.ajax - HEAD requests", function() {
793 url
: url("data/name.html"),
795 success: function(data
, status
, xhr
){
796 var h
= xhr
.getAllResponseHeaders();
797 ok( /Date/i.test(h
), 'No Date in HEAD response' );
800 url
: url("data/name.html"),
801 data
: { whip_it
: "good" },
803 success: function(data
, status
, xhr
){
804 var h
= xhr
.getAllResponseHeaders();
805 ok( /Date/i.test(h
), 'No Date in HEAD response with data' );
814 test("jQuery.ajax - beforeSend", function() {
820 jQuery
.ajaxSetup({ timeout
: 0 });
823 url
: url("data/name.html"),
824 beforeSend: function(xml
) {
827 success: function(data
) {
828 ok( check
, "check beforeSend was executed" );
834 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
836 var request
= jQuery
.ajax({
837 url
: url("data/name.html"),
838 beforeSend: function() {
839 ok( true, "beforeSend got called, canceling" );
842 success: function() {
843 ok( false, "request didn't get canceled" );
845 complete: function() {
846 ok( false, "request didn't get canceled" );
849 ok( false, "request didn't get canceled" );
852 ok( request
=== false, "canceled request must return false instead of XMLHttpRequest instance" );
855 test("jQuery.ajax - beforeSend, cancel request manually", function() {
857 var request
= jQuery
.ajax({
858 url
: url("data/name.html"),
859 beforeSend: function(xhr
) {
860 ok( true, "beforeSend got called, canceling" );
863 success: function() {
864 ok( false, "request didn't get canceled" );
866 complete: function() {
867 ok( false, "request didn't get canceled" );
870 ok( false, "request didn't get canceled" );
873 ok( request
=== false, "canceled request must return false instead of XMLHttpRequest instance" );
876 window
.foobar
= null;
877 window
.testFoo
= undefined;
879 test("jQuery.ajax - dataType html", function() {
883 var verifyEvaluation = function() {
884 equals( testFoo
, "foo", 'Check if script was evaluated for datatype html' );
885 equals( foobar
, "bar", 'Check if script src was evaluated for datatype html' );
892 url
: url("data/test.html"),
893 success: function(data
) {
894 jQuery("#ap").html(data
);
895 ok( data
.match(/^html text/), 'Check content for datatype html' );
896 setTimeout(verifyEvaluation
, 600);
901 test("serialize()", function() {
904 // Add html5 elements only for serialize because selector can't yet find them on non-html5 browsers
905 jQuery("#search").after(
906 '<input type="email" id="html5email" name="email" value="dave@jquery.com" />'+
907 '<input type="number" id="html5number" name="number" value="43" />'
910 equals( jQuery('#form').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&select5=3",
912 'Check form serialization as query string');
914 equals( jQuery('#form :input').serialize(),
915 "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",
916 'Check input serialization as query string');
918 equals( jQuery('#testForm').serialize(),
919 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
920 'Check form serialization as query string');
922 equals( jQuery('#testForm :input').serialize(),
923 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
924 'Check input serialization as query string');
926 equals( jQuery('#form, #testForm').serialize(),
927 "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=",
928 'Multiple form serialization as query string');
930 /* Temporarily disabled. Opera 10 has problems with form serialization.
931 equals( jQuery('#form, #testForm :input').serialize(),
932 "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=",
933 'Mixed form/input serialization as query string');
935 jQuery("#html5email, #html5number").remove();
938 test("jQuery.param()", function() {
941 equals( !jQuery
.ajaxSettings
.traditional
, true, "traditional flag, falsy by default" );
943 var params
= {foo
:"bar", baz
:42, quux
:"All your base are belong to us"};
944 equals( jQuery
.param(params
), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
946 params
= {someName
: [1, 2, 3], regularThing
: "blah" };
947 equals( jQuery
.param(params
), "someName%5B%5D=1&someName%5B%5D=2&someName%5B%5D=3®ularThing=blah", "with array" );
949 params
= {foo
: ['a', 'b', 'c']};
950 equals( jQuery
.param(params
), "foo%5B%5D=a&foo%5B%5D=b&foo%5B%5D=c", "with array of strings" );
952 params
= {foo
: ["baz", 42, "All your base are belong to us"] };
953 equals( jQuery
.param(params
), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
955 params
= {foo
: { bar
: 'baz', beep
: 42, quux
: 'All your base are belong to us' } };
956 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" );
958 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?" };
959 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" );
961 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 ] };
962 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" );
964 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?" };
965 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" );
967 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." );
969 // Make sure empty arrays and objects are handled #6481
970 equals( jQuery
.param({"foo": {"bar": []} }), "foo%5Bbar%5D=", "Empty array param" );
971 equals( jQuery
.param({"foo": {"bar": [], foo
: 1} }), "foo%5Bbar%5D=&foo%5Bfoo%5D=1", "Empty array param" );
972 equals( jQuery
.param({"foo": {"bar": {}} }), "foo%5Bbar%5D=", "Empty object param" );
975 equals( jQuery
.param({"jquery": "1.4.2"}), "jquery=1.4.2", "Check that object with a jQuery property get serialized correctly" );
977 jQuery
.ajaxSetup({ traditional
: true });
979 var params
= {foo
:"bar", baz
:42, quux
:"All your base are belong to us"};
980 equals( jQuery
.param(params
), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
982 params
= {someName
: [1, 2, 3], regularThing
: "blah" };
983 equals( jQuery
.param(params
), "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
985 params
= {foo
: ['a', 'b', 'c']};
986 equals( jQuery
.param(params
), "foo=a&foo=b&foo=c", "with array of strings" );
988 params
= {"foo[]":["baz", 42, "All your base are belong to us"]};
989 equals( jQuery
.param(params
), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
991 params
= {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
992 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" );
994 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?" };
995 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" );
997 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 ] };
998 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)" );
1000 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?" };
1001 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" );
1003 params
= { param1
: null };
1004 equals( jQuery
.param(params
,false), "param1=null", "Make sure that null params aren't traversed." );
1006 params
= {'test': {'length': 3, 'foo': 'bar'} };
1007 equals( jQuery
.param( params
, false ), "test%5Blength%5D=3&test%5Bfoo%5D=bar", "Sub-object with a length property" );
1010 test("synchronous request", function() {
1012 ok( /^{ "data"/.test( jQuery
.ajax({url
: url("data/json_obj.js"), dataType
: "text", async
: false}).responseText
), "check returned text" );
1015 test("synchronous request with callbacks", function() {
1018 jQuery
.ajax({url
: url("data/json_obj.js"), async
: false, dataType
: "text", success: function(data
) { ok(true, "sucess callback executed"); result
= data
; } });
1019 ok( /^{ "data"/.test( result
), "check returned text" );
1022 test("pass-through request object", function() {
1026 var target
= "data/name.html";
1027 var successCount
= 0;
1030 var success = function() {
1033 jQuery("#foo").ajaxError(function (e
, xml
, s
, ex
) {
1035 errorEx
+= ": " + xml
.status
;
1037 jQuery("#foo").one('ajaxStop', function () {
1038 equals(successCount
, 5, "Check all ajax calls successful");
1039 equals(errorCount
, 0, "Check no ajax errors (status" + errorEx
+ ")");
1040 jQuery("#foo").unbind('ajaxError');
1045 ok( jQuery
.get(url(target
), success
), "get" );
1046 ok( jQuery
.post(url(target
), success
), "post" );
1047 ok( jQuery
.getScript(url("data/test.js"), success
), "script" );
1048 ok( jQuery
.getJSON(url("data/json_obj.js"), success
), "json" );
1049 ok( jQuery
.ajax({url
: url(target
), success
: success
}), "generic" );
1052 test("ajax cache", function () {
1059 jQuery("#firstp").bind("ajaxSuccess", function (e
, xml
, s
) {
1060 var re
= /_=(.*?)(&|$)/g;
1062 for (var i
= 0; i
< 6; i
++) {
1063 var ret
= re
.exec(s
.url
);
1069 equals(i
, 1, "Test to make sure only one 'no-cache' parameter is there");
1070 ok(oldOne
!= "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
1075 ok( jQuery
.ajax({url
: "data/text.php", cache
:false}), "test with no parameters" );
1076 ok( jQuery
.ajax({url
: "data/text.php?pizza=true", cache
:false}), "test with 1 parameter" );
1077 ok( jQuery
.ajax({url
: "data/text.php?_=tobereplaced555", cache
:false}), "test with _= parameter" );
1078 ok( jQuery
.ajax({url
: "data/text.php?pizza=true&_=tobereplaced555", cache
:false}), "test with 1 parameter plus _= one" );
1079 ok( jQuery
.ajax({url
: "data/text.php?_=tobereplaced555&tv=false", cache
:false}), "test with 1 parameter plus _= one before it" );
1080 ok( jQuery
.ajax({url
: "data/text.php?name=David&_=tobereplaced555&washere=true", cache
:false}), "test with 2 parameters surrounding _= one" );
1085 * The assertions expect that the passed-in object will be modified,
1086 * which shouldn't be the case. Fixes #5439.
1087 test("global ajaxSettings", function() {
1090 var tmp = jQuery.extend({}, jQuery.ajaxSettings);
1091 var orig = { url: "data/with_fries.xml" };
1094 jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
1096 t = jQuery.extend({}, orig);
1099 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
1101 t = jQuery.extend({}, orig);
1102 t.data = { zoo: 'a', ping: 'b' };
1104 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' }" );
1106 jQuery.ajaxSettings = tmp;
1110 test("load(String)", function() {
1112 stop(); // check if load can be called with only url
1113 jQuery('#first').load("data/name.html", start
);
1116 test("load('url selector')", function() {
1118 stop(); // check if load can be called with only url
1119 jQuery('#first').load("data/test3.html div.user", function(){
1120 equals( jQuery(this).children("div").length
, 2, "Verify that specific elements were injected" );
1125 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
1128 jQuery
.ajaxSetup({ dataType
: "json" });
1129 jQuery("#first").ajaxComplete(function (e
, xml
, s
) {
1130 equals( s
.dataType
, "html", "Verify the load() dataType was html" );
1131 jQuery("#first").unbind("ajaxComplete");
1132 jQuery
.ajaxSetup({ dataType
: "" });
1135 jQuery('#first').load("data/test3.html");
1138 test("load(String, Function) - simple: inject text into DOM", function() {
1141 jQuery('#first').load(url("data/name.html"), function() {
1142 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
1147 test("load(String, Function) - check scripts", function() {
1151 var verifyEvaluation = function() {
1152 equals( foobar
, "bar", 'Check if script src was evaluated after load' );
1153 equals( jQuery('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
1157 jQuery('#first').load(url('data/test.html'), function() {
1158 ok( jQuery('#first').html().match(/^html text/), 'Check content after loading html' );
1159 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1160 equals( testFoo
, "foo", 'Check if script was evaluated after load' );
1161 setTimeout(verifyEvaluation
, 600);
1165 test("load(String, Function) - check file with only a script tag", function() {
1169 jQuery('#first').load(url('data/test2.html'), function() {
1170 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1171 equals( testFoo
, "foo", 'Check if script was evaluated after load' );
1177 test("load(String, Function) - dataFilter in ajaxSettings", function() {
1180 jQuery
.ajaxSetup({ dataFilter: function() { return "Hello World"; } });
1181 var div
= jQuery("<div/>").load(url("data/name.html"), function(responseText
) {
1182 strictEqual( div
.html(), "Hello World" , "Test div was filled with filtered data" );
1183 strictEqual( responseText
, "Hello World" , "Test callback receives filtered data" );
1184 jQuery
.ajaxSetup({ dataFilter
: 0 });
1189 test("load(String, Object, Function)", function() {
1193 jQuery('<div />').load(url('data/params_html.php'), { foo
:3, bar
:'ok' }, function() {
1194 var $post
= jQuery(this).find('#post');
1195 equals( $post
.find('#foo').text(), '3', 'Check if a hash of data is passed correctly');
1196 equals( $post
.find('#bar').text(), 'ok', 'Check if a hash of data is passed correctly');
1201 test("load(String, String, Function)", function() {
1205 jQuery('<div />').load(url('data/params_html.php'), 'foo=3&bar=ok', function() {
1206 var $get = jQuery(this).find('#get');
1207 equals( $get.find('#foo').text(), '3', 'Check if a string of data is passed correctly');
1208 equals( $get.find('#bar').text(), 'ok', 'Check if a of data is passed correctly');
1213 test("jQuery.get(String, Function) - data in ajaxSettings (#8277)", function() {
1219 jQuery
.get(url('data/echoQuery.php'), function(data
) {
1220 ok( /helloworld$/.test( data
), 'Data from ajaxSettings was used');
1228 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
1231 jQuery
.get(url('data/dashboard.xml'), function(xml
) {
1233 jQuery('tab', xml
).each(function() {
1234 content
.push(jQuery(this).text());
1236 equals( content
[0], 'blabla', 'Check first tab');
1237 equals( content
[1], 'blublu', 'Check second tab');
1242 test("jQuery.getScript(String, Function) - with callback", function() {
1245 jQuery
.getScript(url("data/test.js"), function( data
, _
, jqXHR
) {
1246 equals( foobar
, "bar", 'Check if script was evaluated' );
1247 strictEqual( data
, jqXHR
.responseText
, "Same-domain script requests returns the source of the script (#8082)" );
1248 setTimeout(start
, 100);
1252 test("jQuery.getScript(String, Function) - no callback", function() {
1255 jQuery
.getScript(url("data/test.js"), function(){
1260 jQuery
.each( [ "Same Domain", "Cross Domain" ] , function( crossDomain
, label
) {
1262 test("jQuery.ajax() - JSONP, " + label
, function() {
1266 function plus(){ if ( ++count
== 18 ) start(); }
1271 url
: "data/jsonp.php",
1273 crossDomain
: crossDomain
,
1274 success: function(data
){
1275 ok( data
.data
, "JSON results returned (GET, no callback)" );
1278 error: function(data
){
1279 ok( false, "Ajax error JSON (GET, no callback)" );
1285 url
: "data/jsonp.php?callback=?",
1287 crossDomain
: crossDomain
,
1288 success: function(data
){
1289 ok( data
.data
, "JSON results returned (GET, url callback)" );
1292 error: function(data
){
1293 ok( false, "Ajax error JSON (GET, url callback)" );
1299 url
: "data/jsonp.php",
1301 crossDomain
: crossDomain
,
1303 success: function(data
){
1304 ok( data
.data
, "JSON results returned (GET, data callback)" );
1307 error: function(data
){
1308 ok( false, "Ajax error JSON (GET, data callback)" );
1314 url
: "data/jsonp.php?callback=??",
1316 crossDomain
: crossDomain
,
1317 success: function(data
){
1318 ok( data
.data
, "JSON results returned (GET, url context-free callback)" );
1321 error: function(data
){
1322 ok( false, "Ajax error JSON (GET, url context-free callback)" );
1328 url
: "data/jsonp.php",
1330 crossDomain
: crossDomain
,
1331 data
: "callback=??",
1332 success: function(data
){
1333 ok( data
.data
, "JSON results returned (GET, data context-free callback)" );
1336 error: function(data
){
1337 ok( false, "Ajax error JSON (GET, data context-free callback)" );
1343 url
: "data/jsonp.php/??",
1345 crossDomain
: crossDomain
,
1346 success: function(data
){
1347 ok( data
.data
, "JSON results returned (GET, REST-like)" );
1350 error: function(data
){
1351 ok( false, "Ajax error JSON (GET, REST-like)" );
1357 url
: "data/jsonp.php/???json=1",
1359 crossDomain
: crossDomain
,
1360 success: function(data
){
1361 strictEqual( jQuery
.type(data
), "array", "JSON results returned (GET, REST-like with param)" );
1364 error: function(data
){
1365 ok( false, "Ajax error JSON (GET, REST-like with param)" );
1371 url
: "data/jsonp.php",
1373 crossDomain
: crossDomain
,
1375 success: function(data
){
1376 ok( data
.data
, "JSON results returned (GET, data obj callback)" );
1379 error: function(data
){
1380 ok( false, "Ajax error JSON (GET, data obj callback)" );
1385 window
.jsonpResults = function(data
) {
1386 ok( data
.data
, "JSON results returned (GET, custom callback function)" );
1387 window
.jsonpResults
= undefined;
1392 url
: "data/jsonp.php",
1394 crossDomain
: crossDomain
,
1395 jsonpCallback
: "jsonpResults",
1396 success: function(data
){
1397 ok( data
.data
, "JSON results returned (GET, custom callback name)" );
1400 error: function(data
){
1401 ok( false, "Ajax error JSON (GET, custom callback name)" );
1407 url
: "data/jsonp.php",
1409 crossDomain
: crossDomain
,
1410 jsonpCallback
: "functionToCleanUp",
1411 success: function(data
){
1412 ok( data
.data
, "JSON results returned (GET, custom callback name to be cleaned up)" );
1413 strictEqual( window
.functionToCleanUp
, undefined, "Callback was removed (GET, custom callback name to be cleaned up)" );
1417 url
: "data/jsonp.php",
1419 crossDomain
: crossDomain
,
1420 jsonpCallback
: "functionToCleanUp",
1421 beforeSend: function( jqXHR
) {
1426 xhr
.error(function() {
1427 ok( true, "Ajax error JSON (GET, custom callback name to be cleaned up)" );
1428 strictEqual( window
.functionToCleanUp
, undefined, "Callback was removed after early abort (GET, custom callback name to be cleaned up)" );
1432 error: function(data
){
1433 ok( false, "Ajax error JSON (GET, custom callback name to be cleaned up)" );
1440 url
: "data/jsonp.php",
1442 crossDomain
: crossDomain
,
1443 success: function(data
){
1444 ok( data
.data
, "JSON results returned (POST, no callback)" );
1447 error: function(data
){
1448 ok( false, "Ajax error JSON (GET, data obj callback)" );
1455 url
: "data/jsonp.php",
1458 crossDomain
: crossDomain
,
1459 success: function(data
){
1460 ok( data
.data
, "JSON results returned (POST, data callback)" );
1463 error: function(data
){
1464 ok( false, "Ajax error JSON (POST, data callback)" );
1471 url
: "data/jsonp.php",
1474 crossDomain
: crossDomain
,
1475 success: function(data
){
1476 ok( data
.data
, "JSON results returned (POST, data obj callback)" );
1479 error: function(data
){
1480 ok( false, "Ajax error JSON (POST, data obj callback)" );
1487 url
: "data/jsonp.php",
1489 crossDomain
: crossDomain
,
1490 beforeSend: function(){
1491 strictEqual( this.cache
, false, "cache must be false on JSON request" );
1498 url
: "data/jsonp.php?callback=XXX",
1501 jsonpCallback
: "XXX",
1502 crossDomain
: crossDomain
,
1503 beforeSend: function() {
1504 ok( /^data\/jsonp.php\?callback=XXX&_=\d+$/.test( this.url
) ,
1505 "The URL wasn't messed with (GET, custom callback name with no url manipulation)" );
1508 success: function(data
){
1509 ok( data
.data
, "JSON results returned (GET, custom callback name with no url manipulation)" );
1512 error: function(data
){
1513 ok( false, "Ajax error JSON (GET, custom callback name with no url manipulation)" );
1521 test("jQuery.ajax() - script, Remote", function() {
1524 var base
= window
.location
.href
.replace(/[^\/]*$/, "");
1529 url
: base
+ "data/test.js",
1531 success: function(data
){
1532 ok( foobar
, "Script results returned (GET, no callback)" );
1538 test("jQuery.ajax() - script, Remote with POST", function() {
1541 var base
= window
.location
.href
.replace(/[^\/]*$/, "");
1546 url
: base
+ "data/test.js",
1549 success: function(data
, status
){
1550 ok( foobar
, "Script results returned (POST, no callback)" );
1551 equals( status
, "success", "Script results returned (POST, no callback)" );
1554 error: function(xhr
) {
1555 ok( false, "ajax error, status code: " + xhr
.status
);
1561 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
1564 var base
= window
.location
.href
.replace(/[^\/]*$/, "");
1565 base
= base
.replace(/^.*?\/\//, "//");
1570 url
: base
+ "data/test.js",
1572 success: function(data
){
1573 ok( foobar
, "Script results returned (GET, no callback)" );
1579 test("jQuery.ajax() - malformed JSON", function() {
1585 url
: "data/badjson.js",
1587 success: function(){
1588 ok( false, "Success." );
1591 error: function(xhr
, msg
, detailedMsg
) {
1592 equals( "parsererror", msg
, "A parse error occurred." );
1593 ok( /^Invalid JSON/.test(detailedMsg
), "Detailed parsererror message provided" );
1599 test("jQuery.ajax() - script by content-type", function() {
1607 url
: "data/script.php",
1608 data
: { header
: "script" }
1612 url
: "data/script.php",
1613 data
: { header
: "ecma" }
1616 ).then( start
, start
);
1619 test("jQuery.ajax() - json by content-type", function() {
1625 url
: "data/json.php",
1626 data
: { header
: "json", json
: "array" },
1627 success: function( json
) {
1628 ok( json
.length
>= 2, "Check length");
1629 equals( json
[0].name
, 'John', 'Check JSON: first, name' );
1630 equals( json
[0].age
, 21, 'Check JSON: first, age' );
1631 equals( json
[1].name
, 'Peter', 'Check JSON: second, name' );
1632 equals( json
[1].age
, 25, 'Check JSON: second, age' );
1638 test("jQuery.ajax() - json by content-type disabled with options", function() {
1644 url
: url("data/json.php"),
1645 data
: { header
: "json", json
: "array" },
1649 success: function( text
) {
1650 equals( typeof text
, "string" , "json wasn't auto-determined" );
1651 var json
= jQuery
.parseJSON( text
);
1652 ok( json
.length
>= 2, "Check length");
1653 equals( json
[0].name
, 'John', 'Check JSON: first, name' );
1654 equals( json
[0].age
, 21, 'Check JSON: first, age' );
1655 equals( json
[1].name
, 'Peter', 'Check JSON: second, name' );
1656 equals( json
[1].age
, 25, 'Check JSON: second, age' );
1662 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
1665 jQuery
.getJSON(url("data/json.php"), {json
: "array"}, function(json
) {
1666 ok( json
.length
>= 2, "Check length");
1667 equals( json
[0].name
, 'John', 'Check JSON: first, name' );
1668 equals( json
[0].age
, 21, 'Check JSON: first, age' );
1669 equals( json
[1].name
, 'Peter', 'Check JSON: second, name' );
1670 equals( json
[1].age
, 25, 'Check JSON: second, age' );
1675 test("jQuery.getJSON(String, Function) - JSON object", function() {
1678 jQuery
.getJSON(url("data/json.php"), function(json
) {
1679 if (json
&& json
.data
) {
1680 equals( json
.data
.lang
, 'en', 'Check JSON: lang' );
1681 equals( json
.data
.length
, 25, 'Check JSON: length' );
1687 test("jQuery.getJSON - Using Native JSON", function() {
1690 var old
= window
.JSON
;
1692 parse: function(str
){
1693 ok( true, "Verifying that parse method was run" );
1699 jQuery
.getJSON(url("data/json.php"), function(json
) {
1701 equals( json
, true, "Verifying return value" );
1706 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
1709 var base
= window
.location
.href
.replace(/[^\/]*$/, "");
1712 jQuery
.getJSON(url(base
+ "data/json.php"), function(json
) {
1713 equals( json
.data
.lang
, 'en', 'Check JSON: lang' );
1714 equals( json
.data
.length
, 25, 'Check JSON: length' );
1719 test("jQuery.post - data", 3, function() {
1723 jQuery
.post( url( "data/name.php" ), { xml
: "5-2", length
: 3 }, function( xml
) {
1724 jQuery( 'math', xml
).each( function() {
1725 equals( jQuery( 'calculation', this ).text(), '5-2', 'Check for XML' );
1726 equals( jQuery( 'result', this ).text(), '3', 'Check for XML' );
1731 url
: url('data/echoData.php'),
1739 success: function( data
) {
1740 strictEqual( data
, 'test%5Blength%5D=7&test%5Bfoo%5D=bar', 'Check if a sub-object with a length param is serialized correctly');
1743 ).then( start
, start
);
1747 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
1752 jQuery
.post(url("data/name.php"), {xml
: "5-2"}, function(xml
){
1753 jQuery('math', xml
).each(function() {
1754 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1755 equals( jQuery('result', this).text(), '3', 'Check for XML' );
1757 if ( ++done
=== 2 ) start();
1760 jQuery
.post(url("data/name.php?xml=5-2"), {}, function(xml
){
1761 jQuery('math', xml
).each(function() {
1762 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1763 equals( jQuery('result', this).text(), '3', 'Check for XML' );
1765 if ( ++done
=== 2 ) start();
1769 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
1774 jQuery
.ajaxSetup({timeout
: 1000});
1776 var pass = function() {
1778 if ( passed
== 2 ) {
1779 ok( true, 'Check local and global callbacks after timeout' );
1780 jQuery('#main').unbind("ajaxError");
1785 var fail = function(a
,b
,c
) {
1786 ok( false, 'Check for timeout failed ' + a
+ ' ' + b
);
1790 jQuery('#main').ajaxError(pass
);
1794 url
: url("data/name.php?wait=5"),
1800 jQuery
.ajaxSetup({timeout
: 0});
1803 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
1805 jQuery
.ajaxSetup({timeout
: 50});
1810 url
: url("data/name.php?wait=1"),
1812 ok( false, 'Check for local timeout failed' );
1815 success: function() {
1816 ok( true, 'Check for local timeout' );
1822 jQuery
.ajaxSetup({timeout
: 0});
1825 test("jQuery.ajax - simple get", function() {
1830 url
: url("data/name.php?name=foo"),
1831 success: function(msg
){
1832 equals( msg
, 'bar', 'Check for GET' );
1838 test("jQuery.ajax - simple post", function() {
1843 url
: url("data/name.php"),
1845 success: function(msg
){
1846 equals( msg
, 'pan', 'Check for POST' );
1852 test("ajaxSetup()", function() {
1856 url
: url("data/name.php?name=foo"),
1857 success: function(msg
){
1858 equals( msg
, 'bar', 'Check for GET' );
1866 test("custom timeout does not set error message when timeout occurs, see #970", function() {
1869 url: "data/name.php?wait=1",
1871 error: function(request, status) {
1872 ok( status != null, "status shouldn't be null in error handler" );
1873 equals( "timeout", status );
1880 test("data option: evaluate function values (#2806)", function() {
1883 url
: "data/echoQuery.php",
1889 success: function(result
) {
1890 equals( result
, "key=value" );
1896 test("data option: empty bodies for non-GET requests", function() {
1899 url
: "data/echoData.php",
1902 success: function(result
) {
1903 equals( result
, "" );
1909 var ifModifiedNow
= new Date();
1911 jQuery
.each( { " (cache)": true, " (no cache)": false }, function( label
, cache
) {
1913 test("jQuery.ajax - If-Modified-Since support" + label
, function() {
1918 var url
= "data/if_modified_since.php?ts=" + ifModifiedNow
++;
1924 success: function(data
, status
) {
1925 equals(status
, "success" );
1931 success: function(data
, status
) {
1932 if ( data
=== "FAIL" ) {
1933 ok(jQuery
.browser
.opera
, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1934 ok(jQuery
.browser
.opera
, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1936 equals(status
, "notmodified");
1937 ok(data
== null, "response body should be empty");
1942 // Do this because opera simply refuses to implement 304 handling :(
1943 // A feature-driven way of detecting this would be appreciated
1944 // See: http://gist.github.com/599419
1945 ok(jQuery
.browser
.opera
, "error");
1946 ok(jQuery
.browser
.opera
, "error");
1952 equals(false, "error");
1953 // Do this because opera simply refuses to implement 304 handling :(
1954 // A feature-driven way of detecting this would be appreciated
1955 // See: http://gist.github.com/599419
1956 ok(jQuery
.browser
.opera
, "error");
1962 test("jQuery.ajax - Etag support" + label
, function() {
1967 var url
= "data/etag.php?ts=" + ifModifiedNow
++;
1973 success: function(data
, status
) {
1974 equals(status
, "success" );
1980 success: function(data
, status
) {
1981 if ( data
=== "FAIL" ) {
1982 ok(jQuery
.browser
.opera
, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1983 ok(jQuery
.browser
.opera
, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1985 equals(status
, "notmodified");
1986 ok(data
== null, "response body should be empty");
1991 // Do this because opera simply refuses to implement 304 handling :(
1992 // A feature-driven way of detecting this would be appreciated
1993 // See: http://gist.github.com/599419
1994 ok(jQuery
.browser
.opera
, "error");
1995 ok(jQuery
.browser
.opera
, "error");
2001 // Do this because opera simply refuses to implement 304 handling :(
2002 // A feature-driven way of detecting this would be appreciated
2003 // See: http://gist.github.com/599419
2004 ok(jQuery
.browser
.opera
, "error");
2011 test("jQuery ajax - failing cross-domain", function() {
2020 url
: 'http://somewebsitethatdoesnotexist-67864863574657654.com',
2021 success: function(){ ok( false , "success" ); },
2022 error: function(xhr
,_
,e
){ ok( true , "file not found: " + xhr
.status
+ " => " + e
); },
2023 complete: function() { if ( ! --i
) start(); }
2027 url
: 'http://www.google.com',
2028 success: function(){ ok( false , "success" ); },
2029 error: function(xhr
,_
,e
){ ok( true , "access denied: " + xhr
.status
+ " => " + e
); },
2030 complete: function() { if ( ! --i
) start(); }
2035 test("jQuery ajax - atom+xml", function() {
2040 url
: url( 'data/atom+xml.php' ),
2041 success: function(){ ok( true , "success" ); },
2042 error: function(){ ok( false , "error" ); },
2043 complete: function() { start(); }
2048 test( "jQuery.ajax - Location object as url (#7531)", 1, function () {
2049 var success
= false;
2051 var xhr
= jQuery
.ajax({ url
: window
.location
});
2056 ok( success
, "document.location did not generate exception" );
2059 test( "jQuery.ajax - statusCode" , function() {
2066 function countComplete() {
2072 function createStatusCodes( name
, isSuccess
) {
2073 name
= "Test " + name
+ " " + ( isSuccess
? "success" : "error" );
2076 ok( isSuccess
, name
);
2079 ok( ! isSuccess
, name
);
2085 "data/name.html": true,
2086 "data/someFileThatDoesNotExist.html": false
2087 } , function( uri
, isSuccess
) {
2089 jQuery
.ajax( url( uri
) , {
2090 statusCode
: createStatusCodes( "in options" , isSuccess
),
2091 complete
: countComplete
2094 jQuery
.ajax( url( uri
) , {
2095 complete
: countComplete
2096 }).statusCode( createStatusCodes( "immediately with method" , isSuccess
) );
2098 jQuery
.ajax( url( uri
) , {
2099 complete: function(jqXHR
) {
2100 jqXHR
.statusCode( createStatusCodes( "on complete" , isSuccess
) );
2105 jQuery
.ajax( url( uri
) , {
2106 complete: function(jqXHR
) {
2107 setTimeout( function() {
2108 jqXHR
.statusCode( createStatusCodes( "very late binding" , isSuccess
) );
2114 jQuery
.ajax( url( uri
) , {
2115 statusCode
: createStatusCodes( "all (options)" , isSuccess
),
2116 complete: function(jqXHR
) {
2117 jqXHR
.statusCode( createStatusCodes( "all (on complete)" , isSuccess
) );
2118 setTimeout( function() {
2119 jqXHR
.statusCode( createStatusCodes( "all (very late binding)" , isSuccess
) );
2123 }).statusCode( createStatusCodes( "all (immediately with method)" , isSuccess
) );
2125 var testString
= "";
2127 jQuery
.ajax( url( uri
), {
2128 success: function( a
, b
, jqXHR
) {
2129 ok( isSuccess
, "success" );
2130 var statusCode
= {};
2131 statusCode
[ jqXHR
.status
] = function() {
2134 jqXHR
.statusCode( statusCode
);
2137 error: function( jqXHR
) {
2138 ok( ! isSuccess
, "error" );
2139 var statusCode
= {};
2140 statusCode
[ jqXHR
.status
] = function() {
2143 jqXHR
.statusCode( statusCode
);
2146 complete: function() {
2147 strictEqual( testString
, "AB" , "Test statusCode callbacks are ordered like " +
2148 ( isSuccess
? "success" : "error" ) + " callbacks" );
2156 test("jQuery.ajax - transitive conversions", function() {
2164 jQuery
.ajax( url("data/json.php") , {
2166 "json myJson": function( data
) {
2167 ok( true , "converter called" );
2172 success: function() {
2173 ok( true , "Transitive conversion worked" );
2174 strictEqual( this.dataTypes
[0] , "text" , "response was retrieved as text" );
2175 strictEqual( this.dataTypes
[1] , "myjson" , "request expected myjson dataType" );
2179 jQuery
.ajax( url("data/json.php") , {
2181 "json myJson": function( data
) {
2182 ok( true , "converter called (*)" );
2186 contents
: false, /* headers are wrong so we ignore them */
2187 dataType
: "* myJson",
2188 success: function() {
2189 ok( true , "Transitive conversion worked (*)" );
2190 strictEqual( this.dataTypes
[0] , "text" , "response was retrieved as text (*)" );
2191 strictEqual( this.dataTypes
[1] , "myjson" , "request expected myjson dataType (*)" );
2195 ).then( start
, start
);
2199 test("jQuery.ajax - overrideMimeType", function() {
2207 jQuery
.ajax( url("data/json.php") , {
2208 beforeSend: function( xhr
) {
2209 xhr
.overrideMimeType( "application/json" );
2211 success: function( json
) {
2212 ok( json
.data
, "Mimetype overriden using beforeSend" );
2216 jQuery
.ajax( url("data/json.php") , {
2217 mimeType
: "application/json",
2218 success: function( json
) {
2219 ok( json
.data
, "Mimetype overriden using mimeType option" );
2223 ).then( start
, start
);
2227 test("jQuery.ajax - abort in prefilter", function() {
2231 jQuery
.ajaxPrefilter(function( options
, _
, jqXHR
) {
2232 if ( options
.abortInPrefilter
) {
2237 strictEqual( jQuery
.ajax({
2238 abortInPrefilter
: true,
2240 ok( false, "error callback called" );
2242 }), false, "Request was properly aborted early by the prefilter" );
2246 test("jQuery.ajax - active counter", function() {
2247 ok( jQuery
.active
== 0, "ajax active counter should be zero: " + jQuery
.active
);