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() - textStatus and errorThrown values", function() {
257 Safari 3.x returns "OK" instead of "Not Found"
258 Safari 4.x doesn't have this issue so the test should be re-instated once
259 we drop support for 3.x
262 url: url("data/nonExistingURL"),
263 error: function( _ , textStatus , errorThrown ){
264 strictEqual( textStatus, "error", "textStatus is 'error' for 404" );
265 strictEqual( errorThrown, "Not Found", "errorThrown is 'Not Found' for 404");
272 url: url("data/name.php?wait=5"),
273 error: function( _ , textStatus , errorThrown ){
274 strictEqual( textStatus, "abort", "textStatus is 'abort' for abort" );
275 strictEqual( errorThrown, "abort", "errorThrown is 'abort' for abort");
281 url: url("data/name.php?wait=5"),
282 error: function( _ , textStatus , errorThrown ){
283 strictEqual( textStatus, "mystatus", "textStatus is 'mystatus' for abort('mystatus')" );
284 strictEqual( errorThrown, "mystatus", "errorThrown is 'mystatus' for abort('mystatus')");
287 }).abort( "mystatus" );
290 test("jQuery.ajax() - responseText on error", function() {
297 url: url("data/errorWithText.php"),
298 error: function(xhr) {
299 strictEqual( xhr.responseText , "plain text message" , "Test jXHR.responseText is filled for HTTP errors" );
301 complete: function() {
307 test(".ajax() - retry with jQuery.ajax( this )", function() {
316 url: url("data/errorWithText.php"),
322 ok( true , "Test retrying with jQuery.ajax(this) works" );
330 test(".ajax() - headers" , function() {
336 var requestHeaders = {
338 "SometHing-elsE": "other value",
339 OthEr: "something else"
344 for( i in requestHeaders ) {
348 jQuery.ajax(url("data/headers.php?keys="+list.join( "_" ) ), {
349 headers: requestHeaders,
350 success: function( data , _ , xhr ) {
352 for ( i in requestHeaders ) {
353 tmp.push( i , ": " , requestHeaders[ i ] , "\n" );
355 tmp = tmp.join( "" );
357 equals( data , tmp , "Headers were sent" );
358 equals( xhr.getResponseHeader( "Sample-Header" ) , "Hello World" , "Sample header received" );
361 error: function(){ ok(false, "error"); }
366 test(".ajax() - Accept header" , function() {
372 jQuery.ajax(url("data/headers.php?keys=accept"), {
374 Accept: "very wrong accept value"
376 beforeSend: function( xhr ) {
377 xhr.setRequestHeader( "Accept", "*/*" );
379 success: function( data ) {
380 strictEqual( data , "accept: */*\n" , "Test Accept header is set to last value provided" );
383 error: function(){ ok(false, "error"); }
388 test(".ajax() - contentType" , function() {
402 jQuery.ajax(url("data/headers.php?keys=content-type" ), {
404 success: function( data ) {
405 strictEqual( data , "content-type: test\n" , "Test content-type is sent when options.contentType is set" );
407 complete: function() {
412 jQuery.ajax(url("data/headers.php?keys=content-type" ), {
414 success: function( data ) {
415 strictEqual( data , "content-type: \n" , "Test content-type is not sent when options.contentType===false" );
417 complete: function() {
424 test(".ajax() - protocol-less urls", function() {
428 url: "//somedomain.com",
429 beforeSend: function( xhr, settings ) {
430 equals(settings.url, location.protocol + "//somedomain.com", "Make sure that the protocol is added.");
436 test(".ajax() - hash", function() {
440 url: "data/name.html#foo",
441 beforeSend: function( xhr, settings ) {
442 equals(settings.url, "data/name.html", "Make sure that the URL is trimmed.");
448 url: "data/name.html?abc#foo",
449 beforeSend: function( xhr, settings ) {
450 equals(settings.url, "data/name.html?abc", "Make sure that the URL is trimmed.");
456 url: "data/name.html?abc#foo",
457 data: { "test": 123 },
458 beforeSend: function( xhr, settings ) {
459 equals(settings.url, "data/name.html?abc&test=123", "Make sure that the URL is trimmed.");
465 test("jQuery ajax - cross-domain detection", function() {
469 var loc = document.location,
470 otherPort = loc.port === 666 ? 667 : 666,
471 otherProtocol = loc.protocol === "http:" ? "https:" : "http:";
475 url: otherProtocol + "//" + loc.host,
476 beforeSend: function( _ , s ) {
477 ok( s.crossDomain , "Test different protocols are detected as cross-domain" );
484 url: loc.protocol + '//somewebsitethatdoesnotexist-656329477541.com:' + ( loc.port || 80 ),
485 beforeSend: function( _ , s ) {
486 ok( s.crossDomain , "Test different hostnames are detected as cross-domain" );
493 url: loc.protocol + "//" + loc.hostname + ":" + otherPort,
494 beforeSend: function( _ , s ) {
495 ok( s.crossDomain , "Test different ports are detected as cross-domain" );
502 url: loc.protocol + "//" + loc.host,
504 beforeSend: function( _ , s ) {
505 ok( s.crossDomain , "Test forced crossDomain is detected as cross-domain" );
512 test(".ajax() - 304", function() {
517 url: url("data/notmodified.php"),
518 success: function(){ ok(true, "304 ok"); },
519 // Do this because opera simply refuses to implement 304 handling :(
520 // A feature-driven way of detecting this would be appreciated
521 // See: http://gist.github.com/599419
522 error: function(){ ok(jQuery.browser.opera, "304 not ok "); },
523 complete: function(xhr){ start(); }
527 test(".load()) - 404 error callbacks", function() {
531 jQuery('#foo').ajaxStart(function(){
532 ok( true, "ajaxStart" );
533 }).ajaxStop(function(){
534 ok( true, "ajaxStop" );
536 }).ajaxSend(function(){
537 ok( true, "ajaxSend" );
538 }).ajaxComplete(function(){
539 ok( true, "ajaxComplete" );
540 }).ajaxError(function(){
541 ok( true, "ajaxError" );
542 }).ajaxSuccess(function(){
543 ok( false, "ajaxSuccess" );
546 jQuery("<div/>").load("data/404.html", function(){
547 ok(true, "complete");
551 test("jQuery.ajax() - abort", function() {
555 jQuery('#foo').ajaxStart(function(){
556 ok( true, "ajaxStart" );
557 }).ajaxStop(function(){
558 ok( true, "ajaxStop" );
560 }).ajaxSend(function(){
561 ok( true, "ajaxSend" );
562 }).ajaxComplete(function(){
563 ok( true, "ajaxComplete" );
566 var xhr = jQuery.ajax({
567 url: url("data/name.php?wait=5"),
568 beforeSend: function(){ ok(true, "beforeSend"); },
569 complete: function(){ ok(true, "complete"); }
572 equals( xhr.readyState, 1, "XHR readyState indicates successful dispatch" );
575 equals( xhr.readyState, 0, "XHR readyState indicates successful abortion" );
578 test("Ajax events with context", function() {
582 var context = document.createElement("div");
585 equals( this, context, e.type );
588 function callback(msg){
590 equals( this, context, "context is preserved on callback " + msg );
594 function nocallback(msg){
596 equals( typeof this.url, "string", "context is settings on callback " + msg );
600 jQuery('#foo').add(context)
607 url: url("data/name.html"),
608 beforeSend: callback("beforeSend"),
609 success: callback("success"),
610 error: callback("error"),
612 callback("complete").call(this);
615 url: url("data/404.html"),
617 beforeSend: callback("beforeSend"),
618 error: callback("error"),
619 complete: function(){
620 callback("complete").call(this);
622 jQuery('#foo').add(context).unbind();
625 url: url("data/404.html"),
626 beforeSend: nocallback("beforeSend"),
627 error: nocallback("error"),
628 complete: function(){
629 nocallback("complete").call(this);
640 test("jQuery.ajax context modification", function() {
648 url: url("data/name.html"),
650 beforeSend: function(){
653 complete: function() {
658 equals( obj.test, "foo", "Make sure the original object is maintained." );
661 test("jQuery.ajax context modification through ajaxSetup", function() {
672 strictEqual( jQuery.ajaxSettings.context, obj, "Make sure the context is properly set in ajaxSettings." );
675 url: url("data/name.html"),
676 complete: function() {
677 strictEqual( this, obj, "Make sure the original object is maintained." );
679 url: url("data/name.html"),
681 complete: function() {
682 ok( this !== obj, "Make sure overidding context is possible." );
687 url: url("data/name.html"),
688 beforeSend: function(){
691 complete: function() {
692 ok( this !== obj, "Make sure unsetting context is possible." );
702 test("jQuery.ajax() - disabled globals", function() {
706 jQuery('#foo').ajaxStart(function(){
707 ok( false, "ajaxStart" );
708 }).ajaxStop(function(){
709 ok( false, "ajaxStop" );
710 }).ajaxSend(function(){
711 ok( false, "ajaxSend" );
712 }).ajaxComplete(function(){
713 ok( false, "ajaxComplete" );
714 }).ajaxError(function(){
715 ok( false, "ajaxError" );
716 }).ajaxSuccess(function(){
717 ok( false, "ajaxSuccess" );
722 url: url("data/name.html"),
723 beforeSend: function(){ ok(true, "beforeSend"); },
724 success: function(){ ok(true, "success"); },
725 error: function(){ ok(false, "error"); },
726 complete: function(){
727 ok(true, "complete");
728 setTimeout(function(){ start(); }, 13);
733 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
737 url: url("data/with_fries.xml"),
739 success: function(resp) {
740 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
741 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
742 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
748 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements (over JSONP)", function() {
752 url: url("data/with_fries_over_jsonp.php"),
753 dataType: "jsonp xml",
754 success: function(resp) {
755 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
756 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
757 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
760 error: function(_1,_2,error) {
767 test("jQuery.ajax - HEAD requests", function() {
772 url: url("data/name.html"),
774 success: function(data, status, xhr){
775 var h = xhr.getAllResponseHeaders();
776 ok( /Date/i.test(h), 'No Date in HEAD response' );
779 url: url("data/name.html"),
780 data: { whip_it: "good" },
782 success: function(data, status, xhr){
783 var h = xhr.getAllResponseHeaders();
784 ok( /Date/i.test(h), 'No Date in HEAD response with data' );
793 test("jQuery.ajax - beforeSend", function() {
799 jQuery.ajaxSetup({ timeout: 0 });
802 url: url("data/name.html"),
803 beforeSend: function(xml) {
806 success: function(data) {
807 ok( check, "check beforeSend was executed" );
813 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
815 var request = jQuery.ajax({
816 url: url("data/name.html"),
817 beforeSend: function() {
818 ok( true, "beforeSend got called, canceling" );
821 success: function() {
822 ok( false, "request didn't get canceled" );
824 complete: function() {
825 ok( false, "request didn't get canceled" );
828 ok( false, "request didn't get canceled" );
831 ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
834 test("jQuery.ajax - beforeSend, cancel request manually", function() {
836 var request = jQuery.ajax({
837 url: url("data/name.html"),
838 beforeSend: function(xhr) {
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 window.foobar = null;
856 window.testFoo = undefined;
858 test("jQuery.ajax - dataType html", function() {
862 var verifyEvaluation = function() {
863 equals( testFoo, "foo", 'Check if script was evaluated for datatype html' );
864 equals( foobar, "bar", 'Check if script src was evaluated for datatype html' );
871 url: url("data/test.html"),
872 success: function(data) {
873 jQuery("#ap").html(data);
874 ok( data.match(/^html text/), 'Check content for datatype html' );
875 setTimeout(verifyEvaluation, 600);
880 test("serialize()", function() {
883 // Add html5 elements only for serialize because selector can't yet find them on non-html5 browsers
884 jQuery("#search").after(
885 '<input type="email" id="html5email" name="email" value="dave@jquery.com" />'+
886 '<input type="number" id="html5number" name="number" value="43" />'
889 equals( jQuery('#form').serialize(),
890 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3",
891 'Check form serialization as query string');
893 equals( jQuery('#form :input').serialize(),
894 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3",
895 'Check input serialization as query string');
897 equals( jQuery('#testForm').serialize(),
898 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
899 'Check form serialization as query string');
901 equals( jQuery('#testForm :input').serialize(),
902 'T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
903 'Check input serialization as query string');
905 equals( jQuery('#form, #testForm').serialize(),
906 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3&T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
907 'Multiple form serialization as query string');
909 /* Temporarily disabled. Opera 10 has problems with form serialization.
910 equals( jQuery('#form, #testForm :input').serialize(),
911 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&T3=%3F%0D%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
912 'Mixed form/input serialization as query string');
914 jQuery("#html5email, #html5number").remove();
917 test("jQuery.param()", function() {
920 equals( !jQuery.ajaxSettings.traditional, true, "traditional flag, falsy by default" );
922 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
923 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
925 params = {someName: [1, 2, 3], regularThing: "blah" };
926 equals( jQuery.param(params), "someName%5B%5D=1&someName%5B%5D=2&someName%5B%5D=3®ularThing=blah", "with array" );
928 params = {foo: ['a', 'b', 'c']};
929 equals( jQuery.param(params), "foo%5B%5D=a&foo%5B%5D=b&foo%5B%5D=c", "with array of strings" );
931 params = {foo: ["baz", 42, "All your base are belong to us"] };
932 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
934 params = {foo: { bar: 'baz', beep: 42, quux: 'All your base are belong to us' } };
935 equals( jQuery.param(params), "foo%5Bbar%5D=baz&foo%5Bbeep%5D=42&foo%5Bquux%5D=All+your+base+are+belong+to+us", "even more arrays" );
937 params = { a:[1,2], b:{ c:3, d:[4,5], e:{ x:[6], y:7, z:[8,9] }, f:true, g:false, h:undefined }, i:[10,11], j:true, k:false, l:[undefined,0], m:"cowboy hat?" };
938 equals( decodeURIComponent( jQuery.param(params) ), "a[]=1&a[]=2&b[c]=3&b[d][]=4&b[d][]=5&b[e][x][]=6&b[e][y]=7&b[e][z][]=8&b[e][z][]=9&b[f]=true&b[g]=false&b[h]=undefined&i[]=10&i[]=11&j=true&k=false&l[]=undefined&l[]=0&m=cowboy+hat?", "huge structure" );
940 params = { a: [ 0, [ 1, 2 ], [ 3, [ 4, 5 ], [ 6 ] ], { b: [ 7, [ 8, 9 ], [ { c: 10, d: 11 } ], [ [ 12 ] ], [ [ [ 13 ] ] ], { e: { f: { g: [ 14, [ 15 ] ] } } }, 16 ] }, 17 ] };
941 equals( decodeURIComponent( jQuery.param(params) ), "a[]=0&a[1][]=1&a[1][]=2&a[2][]=3&a[2][1][]=4&a[2][1][]=5&a[2][2][]=6&a[3][b][]=7&a[3][b][1][]=8&a[3][b][1][]=9&a[3][b][2][0][c]=10&a[3][b][2][0][d]=11&a[3][b][3][0][]=12&a[3][b][4][0][0][]=13&a[3][b][5][e][f][g][]=14&a[3][b][5][e][f][g][1][]=15&a[3][b][]=16&a[]=17", "nested arrays" );
943 params = { a:[1,2], b:{ c:3, d:[4,5], e:{ x:[6], y:7, z:[8,9] }, f:true, g:false, h:undefined }, i:[10,11], j:true, k:false, l:[undefined,0], m:"cowboy hat?" };
944 equals( jQuery.param(params,true), "a=1&a=2&b=%5Bobject+Object%5D&i=10&i=11&j=true&k=false&l=undefined&l=0&m=cowboy+hat%3F", "huge structure, forced traditional" );
946 equals( decodeURIComponent( jQuery.param({ a: [1,2,3], 'b[]': [4,5,6], 'c[d]': [7,8,9], e: { f: [10], g: [11,12], h: 13 } }) ), "a[]=1&a[]=2&a[]=3&b[]=4&b[]=5&b[]=6&c[d][]=7&c[d][]=8&c[d][]=9&e[f][]=10&e[g][]=11&e[g][]=12&e[h]=13", "Make sure params are not double-encoded." );
948 // Make sure empty arrays and objects are handled #6481
949 equals( jQuery.param({"foo": {"bar": []} }), "foo%5Bbar%5D=", "Empty array param" );
950 equals( jQuery.param({"foo": {"bar": [], foo: 1} }), "foo%5Bbar%5D=&foo%5Bfoo%5D=1", "Empty array param" );
951 equals( jQuery.param({"foo": {"bar": {}} }), "foo%5Bbar%5D=", "Empty object param" );
953 jQuery.ajaxSetup({ traditional: true });
955 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
956 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
958 params = {someName: [1, 2, 3], regularThing: "blah" };
959 equals( jQuery.param(params), "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
961 params = {foo: ['a', 'b', 'c']};
962 equals( jQuery.param(params), "foo=a&foo=b&foo=c", "with array of strings" );
964 params = {"foo[]":["baz", 42, "All your base are belong to us"]};
965 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
967 params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
968 equals( jQuery.param(params), "foo%5Bbar%5D=baz&foo%5Bbeep%5D=42&foo%5Bquux%5D=All+your+base+are+belong+to+us", "even more arrays" );
970 params = { a:[1,2], b:{ c:3, d:[4,5], e:{ x:[6], y:7, z:[8,9] }, f:true, g:false, h:undefined }, i:[10,11], j:true, k:false, l:[undefined,0], m:"cowboy hat?" };
971 equals( jQuery.param(params), "a=1&a=2&b=%5Bobject+Object%5D&i=10&i=11&j=true&k=false&l=undefined&l=0&m=cowboy+hat%3F", "huge structure" );
973 params = { a: [ 0, [ 1, 2 ], [ 3, [ 4, 5 ], [ 6 ] ], { b: [ 7, [ 8, 9 ], [ { c: 10, d: 11 } ], [ [ 12 ] ], [ [ [ 13 ] ] ], { e: { f: { g: [ 14, [ 15 ] ] } } }, 16 ] }, 17 ] };
974 equals( jQuery.param(params), "a=0&a=1%2C2&a=3%2C4%2C5%2C6&a=%5Bobject+Object%5D&a=17", "nested arrays (not possible when jQuery.param.traditional == true)" );
976 params = { a:[1,2], b:{ c:3, d:[4,5], e:{ x:[6], y:7, z:[8,9] }, f:true, g:false, h:undefined }, i:[10,11], j:true, k:false, l:[undefined,0], m:"cowboy hat?" };
977 equals( decodeURIComponent( jQuery.param(params,false) ), "a[]=1&a[]=2&b[c]=3&b[d][]=4&b[d][]=5&b[e][x][]=6&b[e][y]=7&b[e][z][]=8&b[e][z][]=9&b[f]=true&b[g]=false&b[h]=undefined&i[]=10&i[]=11&j=true&k=false&l[]=undefined&l[]=0&m=cowboy+hat?", "huge structure, forced not traditional" );
979 params = { param1: null };
980 equals( jQuery.param(params,false), "param1=null", "Make sure that null params aren't traversed." );
982 params = {'test': {'length': 3, 'foo': 'bar'} };
983 equals( jQuery.param( params, false ), "test%5Blength%5D=3&test%5Bfoo%5D=bar", "Sub-object with a length property" );
986 test("synchronous request", function() {
988 ok( /^{ "data"/.test( jQuery.ajax({url: url("data/json_obj.js"), dataType: "text", async: false}).responseText ), "check returned text" );
991 test("synchronous request with callbacks", function() {
994 jQuery.ajax({url: url("data/json_obj.js"), async: false, dataType: "text", success: function(data) { ok(true, "sucess callback executed"); result = data; } });
995 ok( /^{ "data"/.test( result ), "check returned text" );
998 test("pass-through request object", function() {
1002 var target = "data/name.html";
1003 var successCount = 0;
1006 var success = function() {
1009 jQuery("#foo").ajaxError(function (e, xml, s, ex) {
1011 errorEx += ": " + xml.status;
1013 jQuery("#foo").one('ajaxStop', function () {
1014 equals(successCount, 5, "Check all ajax calls successful");
1015 equals(errorCount, 0, "Check no ajax errors (status" + errorEx + ")");
1016 jQuery("#foo").unbind('ajaxError');
1021 ok( jQuery.get(url(target), success), "get" );
1022 ok( jQuery.post(url(target), success), "post" );
1023 ok( jQuery.getScript(url("data/test.js"), success), "script" );
1024 ok( jQuery.getJSON(url("data/json_obj.js"), success), "json" );
1025 ok( jQuery.ajax({url: url(target), success: success}), "generic" );
1028 test("ajax cache", function () {
1035 jQuery("#firstp").bind("ajaxSuccess", function (e, xml, s) {
1036 var re = /_=(.*?)(&|$)/g;
1038 for (var i = 0; i < 6; i++) {
1039 var ret = re.exec(s.url);
1045 equals(i, 1, "Test to make sure only one 'no-cache' parameter is there");
1046 ok(oldOne != "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
1051 ok( jQuery.ajax({url: "data/text.php", cache:false}), "test with no parameters" );
1052 ok( jQuery.ajax({url: "data/text.php?pizza=true", cache:false}), "test with 1 parameter" );
1053 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555", cache:false}), "test with _= parameter" );
1054 ok( jQuery.ajax({url: "data/text.php?pizza=true&_=tobereplaced555", cache:false}), "test with 1 parameter plus _= one" );
1055 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555&tv=false", cache:false}), "test with 1 parameter plus _= one before it" );
1056 ok( jQuery.ajax({url: "data/text.php?name=David&_=tobereplaced555&washere=true", cache:false}), "test with 2 parameters surrounding _= one" );
1061 * The assertions expect that the passed-in object will be modified,
1062 * which shouldn't be the case. Fixes #5439.
1063 test("global ajaxSettings", function() {
1066 var tmp = jQuery.extend({}, jQuery.ajaxSettings);
1067 var orig = { url: "data/with_fries.xml" };
1070 jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
1072 t = jQuery.extend({}, orig);
1075 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
1077 t = jQuery.extend({}, orig);
1078 t.data = { zoo: 'a', ping: 'b' };
1080 ok( t.url.indexOf('ping') > -1 && t.url.indexOf('zoo') > -1 && t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending { zoo: 'a', ping: 'b' }" );
1082 jQuery.ajaxSettings = tmp;
1086 test("load(String)", function() {
1088 stop(); // check if load can be called with only url
1089 jQuery('#first').load("data/name.html", start);
1092 test("load('url selector')", function() {
1094 stop(); // check if load can be called with only url
1095 jQuery('#first').load("data/test3.html div.user", function(){
1096 equals( jQuery(this).children("div").length, 2, "Verify that specific elements were injected" );
1101 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
1104 jQuery.ajaxSetup({ dataType: "json" });
1105 jQuery("#first").ajaxComplete(function (e, xml, s) {
1106 equals( s.dataType, "html", "Verify the load() dataType was html" );
1107 jQuery("#first").unbind("ajaxComplete");
1108 jQuery.ajaxSetup({ dataType: "" });
1111 jQuery('#first').load("data/test3.html");
1114 test("load(String, Function) - simple: inject text into DOM", function() {
1117 jQuery('#first').load(url("data/name.html"), function() {
1118 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
1123 test("load(String, Function) - check scripts", function() {
1127 var verifyEvaluation = function() {
1128 equals( foobar, "bar", 'Check if script src was evaluated after load' );
1129 equals( jQuery('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
1133 jQuery('#first').load(url('data/test.html'), function() {
1134 ok( jQuery('#first').html().match(/^html text/), 'Check content after loading html' );
1135 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1136 equals( testFoo, "foo", 'Check if script was evaluated after load' );
1137 setTimeout(verifyEvaluation, 600);
1141 test("load(String, Function) - check file with only a script tag", function() {
1145 jQuery('#first').load(url('data/test2.html'), function() {
1146 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
1147 equals( testFoo, "foo", 'Check if script was evaluated after load' );
1153 test("load(String, Function) - dataFilter in ajaxSettings", function() {
1156 jQuery.ajaxSetup({ dataFilter: function() { return "Hello World"; } });
1157 var div = jQuery("<div/>").load(url("data/name.html"), function(responseText) {
1158 strictEqual( div.html(), "Hello World" , "Test div was filled with filtered data" );
1159 strictEqual( responseText, "Hello World" , "Test callback receives filtered data" );
1160 jQuery.ajaxSetup({ dataFilter: 0 });
1165 test("load(String, Object, Function)", function() {
1169 jQuery('<div />').load(url('data/params_html.php'), { foo:3, bar:'ok' }, function() {
1170 var $post = jQuery(this).find('#post');
1171 equals( $post.find('#foo').text(), '3', 'Check if a hash of data is passed correctly');
1172 equals( $post.find('#bar').text(), 'ok', 'Check if a hash of data is passed correctly');
1177 test("load(String, String, Function)", function() {
1181 jQuery('<div />').load(url('data/params_html.php'), 'foo=3&bar=ok', function() {
1182 var $get = jQuery(this).find('#get');
1183 equals( $get.find('#foo').text(), '3', 'Check if a string of data is passed correctly');
1184 equals( $get.find('#bar').text(), 'ok', 'Check if a of data is passed correctly');
1189 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
1192 jQuery.get(url('data/dashboard.xml'), function(xml) {
1194 jQuery('tab', xml).each(function() {
1195 content.push(jQuery(this).text());
1197 equals( content[0], 'blabla', 'Check first tab');
1198 equals( content[1], 'blublu', 'Check second tab');
1203 test("jQuery.getScript(String, Function) - with callback", function() {
1206 jQuery.getScript(url("data/test.js"), function( data, _, jXHR ) {
1207 equals( foobar, "bar", 'Check if script was evaluated' );
1208 strictEqual( data, jXHR.responseText, "Same-domain script requests returns the source of the script (#8082)" );
1209 setTimeout(start, 100);
1213 test("jQuery.getScript(String, Function) - no callback", function() {
1216 jQuery.getScript(url("data/test.js"), function(){
1221 jQuery.each( [ "Same Domain", "Cross Domain" ] , function( crossDomain , label ) {
1223 test("jQuery.ajax() - JSONP, " + label, function() {
1227 function plus(){ if ( ++count == 18 ) start(); }
1232 url: "data/jsonp.php",
1234 crossDomain: crossDomain,
1235 success: function(data){
1236 ok( data.data, "JSON results returned (GET, no callback)" );
1239 error: function(data){
1240 ok( false, "Ajax error JSON (GET, no callback)" );
1246 url: "data/jsonp.php?callback=?",
1248 crossDomain: crossDomain,
1249 success: function(data){
1250 ok( data.data, "JSON results returned (GET, url callback)" );
1253 error: function(data){
1254 ok( false, "Ajax error JSON (GET, url callback)" );
1260 url: "data/jsonp.php",
1262 crossDomain: crossDomain,
1264 success: function(data){
1265 ok( data.data, "JSON results returned (GET, data callback)" );
1268 error: function(data){
1269 ok( false, "Ajax error JSON (GET, data callback)" );
1275 url: "data/jsonp.php?callback=??",
1277 crossDomain: crossDomain,
1278 success: function(data){
1279 ok( data.data, "JSON results returned (GET, url context-free callback)" );
1282 error: function(data){
1283 ok( false, "Ajax error JSON (GET, url context-free callback)" );
1289 url: "data/jsonp.php",
1291 crossDomain: crossDomain,
1292 data: "callback=??",
1293 success: function(data){
1294 ok( data.data, "JSON results returned (GET, data context-free callback)" );
1297 error: function(data){
1298 ok( false, "Ajax error JSON (GET, data context-free callback)" );
1304 url: "data/jsonp.php/??",
1306 crossDomain: crossDomain,
1307 success: function(data){
1308 ok( data.data, "JSON results returned (GET, REST-like)" );
1311 error: function(data){
1312 ok( false, "Ajax error JSON (GET, REST-like)" );
1318 url: "data/jsonp.php/???json=1",
1320 crossDomain: crossDomain,
1321 success: function(data){
1322 strictEqual( jQuery.type(data), "array", "JSON results returned (GET, REST-like with param)" );
1325 error: function(data){
1326 ok( false, "Ajax error JSON (GET, REST-like with param)" );
1332 url: "data/jsonp.php",
1334 crossDomain: crossDomain,
1336 success: function(data){
1337 ok( data.data, "JSON results returned (GET, data obj callback)" );
1340 error: function(data){
1341 ok( false, "Ajax error JSON (GET, data obj callback)" );
1346 window.jsonpResults = function(data) {
1347 ok( data.data, "JSON results returned (GET, custom callback function)" );
1348 window.jsonpResults = undefined;
1353 url: "data/jsonp.php",
1355 crossDomain: crossDomain,
1356 jsonpCallback: "jsonpResults",
1357 success: function(data){
1358 ok( data.data, "JSON results returned (GET, custom callback name)" );
1361 error: function(data){
1362 ok( false, "Ajax error JSON (GET, custom callback name)" );
1368 url: "data/jsonp.php",
1370 crossDomain: crossDomain,
1371 jsonpCallback: "functionToCleanUp",
1372 success: function(data){
1373 ok( data.data, "JSON results returned (GET, custom callback name to be cleaned up)" );
1374 strictEqual( window.functionToCleanUp, undefined, "Callback was removed (GET, custom callback name to be cleaned up)" );
1378 url: "data/jsonp.php",
1380 crossDomain: crossDomain,
1381 jsonpCallback: "functionToCleanUp",
1382 beforeSend: function( jXHR ) {
1387 xhr.error(function() {
1388 ok( true, "Ajax error JSON (GET, custom callback name to be cleaned up)" );
1389 strictEqual( window.functionToCleanUp, undefined, "Callback was removed after early abort (GET, custom callback name to be cleaned up)" );
1393 error: function(data){
1394 ok( false, "Ajax error JSON (GET, custom callback name to be cleaned up)" );
1401 url: "data/jsonp.php",
1403 crossDomain: crossDomain,
1404 success: function(data){
1405 ok( data.data, "JSON results returned (POST, no callback)" );
1408 error: function(data){
1409 ok( false, "Ajax error JSON (GET, data obj callback)" );
1416 url: "data/jsonp.php",
1419 crossDomain: crossDomain,
1420 success: function(data){
1421 ok( data.data, "JSON results returned (POST, data callback)" );
1424 error: function(data){
1425 ok( false, "Ajax error JSON (POST, data callback)" );
1432 url: "data/jsonp.php",
1435 crossDomain: crossDomain,
1436 success: function(data){
1437 ok( data.data, "JSON results returned (POST, data obj callback)" );
1440 error: function(data){
1441 ok( false, "Ajax error JSON (POST, data obj callback)" );
1448 url: "data/jsonp.php",
1450 crossDomain: crossDomain,
1451 beforeSend: function(){
1452 strictEqual( this.cache, false, "cache must be false on JSON request" );
1459 url: "data/jsonp.php?callback=XXX",
1462 jsonpCallback: "XXX",
1463 crossDomain: crossDomain,
1464 beforeSend: function() {
1465 ok( /^data\/jsonp.php\?callback=XXX&_=\d+$/.test( this.url ) ,
1466 "The URL wasn't messed with (GET, custom callback name with no url manipulation)" );
1469 success: function(data){
1470 ok( data.data, "JSON results returned (GET, custom callback name with no url manipulation)" );
1473 error: function(data){
1474 ok( false, "Ajax error JSON (GET, custom callback name with no url manipulation)" );
1482 test("jQuery.ajax() - script, Remote", function() {
1485 var base = window.location.href.replace(/[^\/]*$/, "");
1490 url: base + "data/test.js",
1492 success: function(data){
1493 ok( foobar, "Script results returned (GET, no callback)" );
1499 test("jQuery.ajax() - script, Remote with POST", function() {
1502 var base = window.location.href.replace(/[^\/]*$/, "");
1507 url: base + "data/test.js",
1510 success: function(data, status){
1511 ok( foobar, "Script results returned (POST, no callback)" );
1512 equals( status, "success", "Script results returned (POST, no callback)" );
1515 error: function(xhr) {
1516 ok( false, "ajax error, status code: " + xhr.status );
1522 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
1525 var base = window.location.href.replace(/[^\/]*$/, "");
1526 base = base.replace(/^.*?\/\//, "//");
1531 url: base + "data/test.js",
1533 success: function(data){
1534 ok( foobar, "Script results returned (GET, no callback)" );
1540 test("jQuery.ajax() - malformed JSON", function() {
1546 url: "data/badjson.js",
1548 success: function(){
1549 ok( false, "Success." );
1552 error: function(xhr, msg, detailedMsg) {
1553 equals( "parsererror", msg, "A parse error occurred." );
1554 ok( /^Invalid JSON/.test(detailedMsg), "Detailed parsererror message provided" );
1560 test("jQuery.ajax() - script by content-type", function() {
1566 url: "data/script.php",
1567 data: { header: "script" },
1568 success: function() {
1574 test("jQuery.ajax() - json by content-type", function() {
1580 url: "data/json.php",
1581 data: { header: "json", json: "array" },
1582 success: function( json ) {
1583 ok( json.length >= 2, "Check length");
1584 equals( json[0].name, 'John', 'Check JSON: first, name' );
1585 equals( json[0].age, 21, 'Check JSON: first, age' );
1586 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1587 equals( json[1].age, 25, 'Check JSON: second, age' );
1593 test("jQuery.ajax() - json by content-type disabled with options", function() {
1599 url: url("data/json.php"),
1600 data: { header: "json", json: "array" },
1604 success: function( text ) {
1605 equals( typeof text , "string" , "json wasn't auto-determined" );
1606 var json = jQuery.parseJSON( text );
1607 ok( json.length >= 2, "Check length");
1608 equals( json[0].name, 'John', 'Check JSON: first, name' );
1609 equals( json[0].age, 21, 'Check JSON: first, age' );
1610 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1611 equals( json[1].age, 25, 'Check JSON: second, age' );
1617 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
1620 jQuery.getJSON(url("data/json.php"), {json: "array"}, function(json) {
1621 ok( json.length >= 2, "Check length");
1622 equals( json[0].name, 'John', 'Check JSON: first, name' );
1623 equals( json[0].age, 21, 'Check JSON: first, age' );
1624 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
1625 equals( json[1].age, 25, 'Check JSON: second, age' );
1630 test("jQuery.getJSON(String, Function) - JSON object", function() {
1633 jQuery.getJSON(url("data/json.php"), function(json) {
1634 if (json && json.data) {
1635 equals( json.data.lang, 'en', 'Check JSON: lang' );
1636 equals( json.data.length, 25, 'Check JSON: length' );
1642 test("jQuery.getJSON - Using Native JSON", function() {
1645 var old = window.JSON;
1647 parse: function(str){
1648 ok( true, "Verifying that parse method was run" );
1654 jQuery.getJSON(url("data/json.php"), function(json) {
1656 equals( json, true, "Verifying return value" );
1661 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
1664 var base = window.location.href.replace(/[^\/]*$/, "");
1667 jQuery.getJSON(url(base + "data/json.php"), function(json) {
1668 equals( json.data.lang, 'en', 'Check JSON: lang' );
1669 equals( json.data.length, 25, 'Check JSON: length' );
1674 test("jQuery.post - data", 3, function() {
1678 jQuery.post( url( "data/name.php" ), { xml: "5-2", length: 3 }, function( xml ) {
1679 jQuery( 'math', xml ).each( function() {
1680 equals( jQuery( 'calculation', this ).text(), '5-2', 'Check for XML' );
1681 equals( jQuery( 'result', this ).text(), '3', 'Check for XML' );
1686 url: url('data/echoData.php'),
1694 success: function( data ) {
1695 strictEqual( data, 'test%5Blength%5D=7&test%5Bfoo%5D=bar', 'Check if a sub-object with a length param is serialized correctly');
1698 ).then( start, start );
1702 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
1707 jQuery.post(url("data/name.php"), {xml: "5-2"}, function(xml){
1708 jQuery('math', xml).each(function() {
1709 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1710 equals( jQuery('result', this).text(), '3', 'Check for XML' );
1712 if ( ++done === 2 ) start();
1715 jQuery.post(url("data/name.php?xml=5-2"), {}, function(xml){
1716 jQuery('math', xml).each(function() {
1717 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
1718 equals( jQuery('result', this).text(), '3', 'Check for XML' );
1720 if ( ++done === 2 ) start();
1724 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
1729 jQuery.ajaxSetup({timeout: 1000});
1731 var pass = function() {
1733 if ( passed == 2 ) {
1734 ok( true, 'Check local and global callbacks after timeout' );
1735 jQuery('#main').unbind("ajaxError");
1740 var fail = function(a,b,c) {
1741 ok( false, 'Check for timeout failed ' + a + ' ' + b );
1745 jQuery('#main').ajaxError(pass);
1749 url: url("data/name.php?wait=5"),
1755 jQuery.ajaxSetup({timeout: 0});
1758 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
1760 jQuery.ajaxSetup({timeout: 50});
1765 url: url("data/name.php?wait=1"),
1767 ok( false, 'Check for local timeout failed' );
1770 success: function() {
1771 ok( true, 'Check for local timeout' );
1777 jQuery.ajaxSetup({timeout: 0});
1780 test("jQuery.ajax - simple get", function() {
1785 url: url("data/name.php?name=foo"),
1786 success: function(msg){
1787 equals( msg, 'bar', 'Check for GET' );
1793 test("jQuery.ajax - simple post", function() {
1798 url: url("data/name.php"),
1800 success: function(msg){
1801 equals( msg, 'pan', 'Check for POST' );
1807 test("ajaxSetup()", function() {
1811 url: url("data/name.php?name=foo"),
1812 success: function(msg){
1813 equals( msg, 'bar', 'Check for GET' );
1821 test("custom timeout does not set error message when timeout occurs, see #970", function() {
1824 url: "data/name.php?wait=1",
1826 error: function(request, status) {
1827 ok( status != null, "status shouldn't be null in error handler" );
1828 equals( "timeout", status );
1835 test("data option: evaluate function values (#2806)", function() {
1838 url: "data/echoQuery.php",
1844 success: function(result) {
1845 equals( result, "key=value" );
1851 test("data option: empty bodies for non-GET requests", function() {
1854 url: "data/echoData.php",
1857 success: function(result) {
1858 equals( result, "" );
1864 test("jQuery.ajax - If-Modified-Since support", function() {
1869 var url = "data/if_modified_since.php?ts=" + new Date();
1874 success: function(data, status) {
1875 equals(status, "success");
1880 success: function(data, status) {
1881 if ( data === "FAIL" ) {
1882 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1883 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1885 equals(status, "notmodified");
1886 ok(data == null, "response body should be empty");
1891 // Do this because opera simply refuses to implement 304 handling :(
1892 // A feature-driven way of detecting this would be appreciated
1893 // See: http://gist.github.com/599419
1894 ok(jQuery.browser.opera, "error");
1895 ok(jQuery.browser.opera, "error");
1901 equals(false, "error");
1902 // Do this because opera simply refuses to implement 304 handling :(
1903 // A feature-driven way of detecting this would be appreciated
1904 // See: http://gist.github.com/599419
1905 ok(jQuery.browser.opera, "error");
1911 test("jQuery.ajax - Etag support", function() {
1916 var url = "data/etag.php?ts=" + new Date();
1921 success: function(data, status) {
1922 equals(status, "success");
1927 success: function(data, status) {
1928 if ( data === "FAIL" ) {
1929 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1930 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1932 equals(status, "notmodified");
1933 ok(data == null, "response body should be empty");
1938 // Do this because opera simply refuses to implement 304 handling :(
1939 // A feature-driven way of detecting this would be appreciated
1940 // See: http://gist.github.com/599419
1941 ok(jQuery.browser.opera, "error");
1942 ok(jQuery.browser.opera, "error");
1948 // Do this because opera simply refuses to implement 304 handling :(
1949 // A feature-driven way of detecting this would be appreciated
1950 // See: http://gist.github.com/599419
1951 ok(jQuery.browser.opera, "error");
1957 test("jQuery ajax - failing cross-domain", function() {
1966 url: 'http://somewebsitethatdoesnotexist-67864863574657654.com',
1967 success: function(){ ok( false , "success" ); },
1968 error: function(xhr,_,e){ ok( true , "file not found: " + xhr.status + " => " + e ); },
1969 complete: function() { if ( ! --i ) start(); }
1973 url: 'http://www.google.com',
1974 success: function(){ ok( false , "success" ); },
1975 error: function(xhr,_,e){ ok( true , "access denied: " + xhr.status + " => " + e ); },
1976 complete: function() { if ( ! --i ) start(); }
1981 test("jQuery ajax - atom+xml", function() {
1986 url: url( 'data/atom+xml.php' ),
1987 success: function(){ ok( true , "success" ); },
1988 error: function(){ ok( false , "error" ); },
1989 complete: function() { start(); }
1994 test( "jQuery.ajax - Location object as url (#7531)", 1, function () {
1995 var success = false;
1997 var xhr = jQuery.ajax({ url: window.location });
2002 ok( success, "document.location did not generate exception" );
2005 test( "jQuery.ajax - statusCode" , function() {
2012 function countComplete() {
2018 function createStatusCodes( name , isSuccess ) {
2019 name = "Test " + name + " " + ( isSuccess ? "success" : "error" );
2022 ok( isSuccess , name );
2025 ok( ! isSuccess , name );
2031 "data/name.html": true,
2032 "data/someFileThatDoesNotExist.html": false
2033 } , function( uri , isSuccess ) {
2035 jQuery.ajax( url( uri ) , {
2036 statusCode: createStatusCodes( "in options" , isSuccess ),
2037 complete: countComplete
2040 jQuery.ajax( url( uri ) , {
2041 complete: countComplete
2042 }).statusCode( createStatusCodes( "immediately with method" , isSuccess ) );
2044 jQuery.ajax( url( uri ) , {
2045 complete: function(jXHR) {
2046 jXHR.statusCode( createStatusCodes( "on complete" , isSuccess ) );
2051 jQuery.ajax( url( uri ) , {
2052 complete: function(jXHR) {
2053 setTimeout( function() {
2054 jXHR.statusCode( createStatusCodes( "very late binding" , isSuccess ) );
2060 jQuery.ajax( url( uri ) , {
2061 statusCode: createStatusCodes( "all (options)" , isSuccess ),
2062 complete: function(jXHR) {
2063 jXHR.statusCode( createStatusCodes( "all (on complete)" , isSuccess ) );
2064 setTimeout( function() {
2065 jXHR.statusCode( createStatusCodes( "all (very late binding)" , isSuccess ) );
2069 }).statusCode( createStatusCodes( "all (immediately with method)" , isSuccess ) );
2071 var testString = "";
2073 jQuery.ajax( url( uri ), {
2074 success: function( a , b , jXHR ) {
2075 ok( isSuccess , "success" );
2076 var statusCode = {};
2077 statusCode[ jXHR.status ] = function() {
2080 jXHR.statusCode( statusCode );
2083 error: function( jXHR ) {
2084 ok( ! isSuccess , "error" );
2085 var statusCode = {};
2086 statusCode[ jXHR.status ] = function() {
2089 jXHR.statusCode( statusCode );
2092 complete: function() {
2093 strictEqual( testString , "AB" , "Test statusCode callbacks are ordered like " +
2094 ( isSuccess ? "success" : "error" ) + " callbacks" );
2102 test("jQuery.ajax - transitive conversions", function() {
2110 jQuery.ajax( url("data/json.php") , {
2112 "json myJson": function( data ) {
2113 ok( true , "converter called" );
2118 success: function() {
2119 ok( true , "Transitive conversion worked" );
2120 strictEqual( this.dataTypes[0] , "text" , "response was retrieved as text" );
2121 strictEqual( this.dataTypes[1] , "myjson" , "request expected myjson dataType" );
2125 jQuery.ajax( url("data/json.php") , {
2127 "json myJson": function( data ) {
2128 ok( true , "converter called (*)" );
2132 contents: false, /* headers are wrong so we ignore them */
2133 dataType: "* myJson",
2134 success: function() {
2135 ok( true , "Transitive conversion worked (*)" );
2136 strictEqual( this.dataTypes[0] , "text" , "response was retrieved as text (*)" );
2137 strictEqual( this.dataTypes[1] , "myjson" , "request expected myjson dataType (*)" );
2141 ).then( start , start );
2145 test("jQuery.ajax - active counter", function() {
2146 ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );