Renamed several ajaxSettings options. Removed cors test, fixed failing cors test.
[jquery.git] / test / unit / ajax.js
index 5704d73..d609c02 100644 (file)
@@ -38,6 +38,178 @@ test("jQuery.ajax() - success callbacks", function() {
        });
 });
 
+test("jQuery.ajax() - success callbacks - (url, options) syntax", function() {
+       expect( 8 );
+
+       jQuery.ajaxSetup({ timeout: 0 });
+
+       stop();
+
+       setTimeout(function(){
+               jQuery('#foo').ajaxStart(function(){
+                       ok( true, "ajaxStart" );
+               }).ajaxStop(function(){
+                       ok( true, "ajaxStop" );
+                       start();
+               }).ajaxSend(function(){
+                       ok( true, "ajaxSend" );
+               }).ajaxComplete(function(){
+                       ok( true, "ajaxComplete" );
+               }).ajaxError(function(){
+                       ok( false, "ajaxError" );
+               }).ajaxSuccess(function(){
+                       ok( true, "ajaxSuccess" );
+               });
+
+               jQuery.ajax( url("data/name.html") , {
+                       beforeSend: function(){ ok(true, "beforeSend"); },
+                       success: function(){ ok(true, "success"); },
+                       error: function(){ ok(false, "error"); },
+                       complete: function(){ ok(true, "complete"); }
+               });
+       }, 13);
+});
+
+test("jQuery.ajax() - success callbacks (late binding)", function() {
+       expect( 8 );
+
+       jQuery.ajaxSetup({ timeout: 0 });
+
+       stop();
+
+       setTimeout(function(){
+               jQuery('#foo').ajaxStart(function(){
+                       ok( true, "ajaxStart" );
+               }).ajaxStop(function(){
+                       ok( true, "ajaxStop" );
+                       start();
+               }).ajaxSend(function(){
+                       ok( true, "ajaxSend" );
+               }).ajaxComplete(function(){
+                       ok( true, "ajaxComplete" );
+               }).ajaxError(function(){
+                       ok( false, "ajaxError" );
+               }).ajaxSuccess(function(){
+                       ok( true, "ajaxSuccess" );
+               });
+
+               jQuery.ajax({
+                       url: url("data/name.html"),
+                       beforeSend: function(){ ok(true, "beforeSend"); }
+               })
+                       .complete(function(){ ok(true, "complete"); })
+                       .success(function(){ ok(true, "success"); })
+                       .error(function(){ ok(false, "error"); });
+       }, 13);
+});
+
+test("jQuery.ajax() - success callbacks (oncomplete binding)", function() {
+       expect( 8 );
+
+       jQuery.ajaxSetup({ timeout: 0 });
+
+       stop();
+
+       setTimeout(function(){
+               jQuery('#foo').ajaxStart(function(){
+                       ok( true, "ajaxStart" );
+               }).ajaxStop(function(){
+                       ok( true, "ajaxStop" );
+               }).ajaxSend(function(){
+                       ok( true, "ajaxSend" );
+               }).ajaxComplete(function(){
+                       ok( true, "ajaxComplete" );
+               }).ajaxError(function(){
+                       ok( false, "ajaxError" );
+               }).ajaxSuccess(function(){
+                       ok( true, "ajaxSuccess" );
+               });
+
+               jQuery.ajax({
+                       url: url("data/name.html"),
+                       beforeSend: function(){ ok(true, "beforeSend"); },
+                       complete: function(xhr) {
+                               xhr
+                               .complete(function(){ ok(true, "complete"); })
+                               .success(function(){ ok(true, "success"); })
+                               .error(function(){ ok(false, "error"); })
+                               .complete(function(){ start(); });
+                       }
+               })
+       }, 13);
+});
+
+test("jQuery.ajax() - success callbacks (very late binding)", function() {
+       expect( 8 );
+
+       jQuery.ajaxSetup({ timeout: 0 });
+
+       stop();
+
+       setTimeout(function(){
+               jQuery('#foo').ajaxStart(function(){
+                       ok( true, "ajaxStart" );
+               }).ajaxStop(function(){
+                       ok( true, "ajaxStop" );
+               }).ajaxSend(function(){
+                       ok( true, "ajaxSend" );
+               }).ajaxComplete(function(){
+                       ok( true, "ajaxComplete" );
+               }).ajaxError(function(){
+                       ok( false, "ajaxError" );
+               }).ajaxSuccess(function(){
+                       ok( true, "ajaxSuccess" );
+               });
+
+               jQuery.ajax({
+                       url: url("data/name.html"),
+                       beforeSend: function(){ ok(true, "beforeSend"); },
+                       complete: function(xhr) {
+                               setTimeout (function() {
+                                       xhr
+                                       .complete(function(){ ok(true, "complete"); })
+                                       .success(function(){ ok(true, "success"); })
+                                       .error(function(){ ok(false, "error"); })
+                                       .complete(function(){ start(); });
+                               },100);
+                       }
+               })
+       }, 13);
+});
+
+test("jQuery.ajax() - success callbacks (order)", function() {
+       expect( 1 );
+
+       jQuery.ajaxSetup({ timeout: 0 });
+
+       stop();
+       
+       var testString = "";
+
+       setTimeout(function(){
+               jQuery.ajax({
+                       url: url("data/name.html"),
+                       success: function( _1 , _2 , xhr ) {
+                               xhr.success(function() {
+                                       xhr.success(function() {
+                                               testString += "E";
+                                       });
+                                       testString += "D";
+                               });
+                               testString += "A";
+                       },
+                       complete: function() {
+                               strictEqual(testString, "ABCDE", "Proper order");
+                               start();
+                       }
+               }).success(function() {
+                       testString += "B";
+               }).success(function() {
+                       testString += "C";
+               });
+       }, 13);
+});
+
 test("jQuery.ajax() - error callbacks", function() {
        expect( 8 );
        stop();
@@ -68,9 +240,45 @@ test("jQuery.ajax() - error callbacks", function() {
        });
 });
 
+test(".ajax() - headers" , function() {
+
+       expect( 2 );
+       
+       stop();
+       
+       var requestHeaders = {
+               siMPle: "value",
+               "SometHing-elsE": "other value",
+               OthEr: "something else"
+               },
+               list = [],
+               i;
+               
+       for( i in requestHeaders ) {
+               list.push( i );
+       }
+       
+       jQuery.ajax(url("data/headers.php?keys="+list.join( "_" ) ), {
+               headers: requestHeaders,
+               success: function( data , _ , xhr ) {
+                       var tmp = [];
+                       for ( i in requestHeaders ) {
+                               tmp.push( i , ": " , requestHeaders[ i ] , "\n" );
+                       }
+                       tmp = tmp.join( "" );
+                       
+                       equals( data , tmp , "Headers were sent" );
+                       equals( xhr.getResponseHeader( "Sample-Header" ) , "Hello World" , "Sample header received" );
+                       start();
+               },
+               error: function(){ ok(false, "error"); }
+       });
+               
+});
+
 test(".ajax() - hash", function() {
        expect(3);
-
+       
        jQuery.ajax({
                url: "data/name.html#foo",
                beforeSend: function( xhr, settings ) {
@@ -78,15 +286,15 @@ test(".ajax() - hash", function() {
                        return false;
                }
        });
-
+       
        jQuery.ajax({
                url: "data/name.html?abc#foo",
                beforeSend: function( xhr, settings ) {
-                       equals(settings.url, "data/name.html?abc", "Make sure that the URL is trimmed.");
+               equals(settings.url, "data/name.html?abc", "Make sure that the URL is trimmed.");
                        return false;
                }
        });
-
+       
        jQuery.ajax({
                url: "data/name.html?abc#foo",
                data: { "test": 123 },
@@ -100,7 +308,7 @@ test(".ajax() - hash", function() {
 test(".ajax() - 304", function() {
        expect( 1 );
        stop();
-
+       
        jQuery.ajax({
                url: url("data/notmodified.php"),
                success: function(){ ok(true, "304 ok"); },
@@ -137,7 +345,7 @@ test(".load()) - 404 error callbacks", function() {
 });
 
 test("jQuery.ajax() - abort", function() {
-       expect( 6 );
+       expect( 8 );
        stop();
 
        jQuery('#foo').ajaxStart(function(){
@@ -157,7 +365,10 @@ test("jQuery.ajax() - abort", function() {
                complete: function(){ ok(true, "complete"); }
        });
 
+       equals( xhr.readyState, 1, "XHR readyState indicates successful dispatch" );
+
        xhr.abort();
+       equals( xhr.readyState, 0, "XHR readyState indicates successful abortion" );
 });
 
 test("Ajax events with context", function() {
@@ -289,6 +500,51 @@ test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", fun
        });
 });
 
+test("jQuery.ajax - xml: non-namespace elements inside namespaced elements (over JSONP)", function() {
+       expect(3);
+       stop();
+       jQuery.ajax({
+         url: url("data/with_fries_over_jsonp.php"),
+         dataType: "jsonp xml",
+         success: function(resp) {
+               equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
+               equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
+               equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
+               start();
+         },
+         error: function(_1,_2,error) {
+               ok( false, error );
+               start();
+         }
+       });
+});
+
+test("jQuery.ajax - HEAD requests", function() {
+       expect(2);
+
+       stop();
+       jQuery.ajax({
+               url: url("data/name.html"),
+               type: "HEAD",
+               success: function(data, status, xhr){
+                       var h = xhr.getAllResponseHeaders();
+                       ok( /Date/i.test(h), 'No Date in HEAD response' );
+                       
+                       jQuery.ajax({
+                               url: url("data/name.html"),
+                               data: { whip_it: "good" },
+                               type: "HEAD",
+                               success: function(data, status, xhr){
+                                       var h = xhr.getAllResponseHeaders();
+                                       ok( /Date/i.test(h), 'No Date in HEAD response with data' );
+                                       start();
+                               }
+                       });
+               }
+       });
+
+});
+
 test("jQuery.ajax - beforeSend", function() {
        expect(1);
        stop();
@@ -330,6 +586,27 @@ test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
        ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
 });
 
+test("jQuery.ajax - beforeSend, cancel request manually", function() {
+       expect(2);
+       var request = jQuery.ajax({
+               url: url("data/name.html"),
+               beforeSend: function(xhr) {
+                       ok( true, "beforeSend got called, canceling" );
+                       xhr.abort();
+               },
+               success: function() {
+                       ok( false, "request didn't get canceled" );
+               },
+               complete: function() {
+                       ok( false, "request didn't get canceled" );
+               },
+               error: function() {
+                       ok( false, "request didn't get canceled" );
+               }
+       });
+       ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
+});
+
 window.foobar = null;
 window.testFoo = undefined;
 
@@ -427,7 +704,7 @@ test("jQuery.param()", function() {
        equals( jQuery.param({"foo": {"bar": []} }), "foo%5Bbar%5D=", "Empty array param" );
        equals( jQuery.param({"foo": {"bar": [], foo: 1} }), "foo%5Bbar%5D=&foo%5Bfoo%5D=1", "Empty array param" );
        equals( jQuery.param({"foo": {"bar": {}} }), "foo%5Bbar%5D=", "Empty object param" );
-       
+
        jQuery.ajaxSetup({ traditional: true });
        
        var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
@@ -681,10 +958,10 @@ test("jQuery.getScript(String, Function) - no callback", function() {
 });
 
 test("jQuery.ajax() - JSONP, Local", function() {
-       expect(8);
+       expect(9);
 
        var count = 0;
-       function plus(){ if ( ++count == 8 ) start(); }
+       function plus(){ if ( ++count == 9 ) start(); }
 
        stop();
 
@@ -799,14 +1076,26 @@ test("jQuery.ajax() - JSONP, Local", function() {
                        plus();
                }
        });
+
+       //#7578
+       jQuery.ajax({
+               url: "data/jsonp.php",
+               dataType: "jsonp",
+               beforeSend: function(){
+                       strictEqual( this.cache, false, "cache must be false on JSON request" );
+                       plus();
+                       return false;
+               }
+       });
 });
 
-test("JSONP - Custom JSONP Callback", function() {
+test("jQuery.ajax() - JSONP - Custom JSONP Callback", function() {
        expect(1);
        stop();
 
        window.jsonpResults = function(data) {
                ok( data.data, "JSON results returned (GET, custom callback function)" );
+               window.jsonpResults = undefined;
                start();
        };
 
@@ -903,7 +1192,7 @@ test("jQuery.ajax() - script, Remote with POST", function() {
        expect(3);
 
        var base = window.location.href.replace(/[^\/]*$/, "");
-
+       
        stop();
 
        jQuery.ajax({
@@ -993,6 +1282,30 @@ test("jQuery.ajax() - json by content-type", function() {
        });
 });
 
+test("jQuery.ajax() - json by content-type disabled with options", function() {
+       expect(6);
+
+       stop();
+
+       jQuery.ajax({
+               url: url("data/json.php"),
+               data: { header: "json", json: "array" },
+               contents: {
+                       json: false
+               },
+               success: function( text ) {
+                       equals( typeof text , "string" , "json wasn't auto-determined" );
+                       var json = jQuery.parseJSON( text );
+                       ok( json.length >= 2, "Check length");
+                       equals( json[0].name, 'John', 'Check JSON: first, name' );
+                       equals( json[0].age, 21, 'Check JSON: first, age' );
+                       equals( json[1].name, 'Peter', 'Check JSON: second, name' );
+                       equals( json[1].age, 25, 'Check JSON: second, age' );
+                       start();
+               }
+       });
+});
+
 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
        expect(5);
        stop();
@@ -1250,7 +1563,7 @@ test("jQuery.ajax - If-Modified-Since support", function() {
                                                ok(data == null, "response body should be empty")
                                        }
                                        start();
-                               },
+                       },
                                error: function() {
                                        // Do this because opera simply refuses to implement 304 handling :(
                                        // A feature-driven way of detecting this would be appreciated
@@ -1258,10 +1571,11 @@ test("jQuery.ajax - If-Modified-Since support", function() {
                                        ok(jQuery.browser.opera, "error");
                                        ok(jQuery.browser.opera, "error");
                                        start();
-                               }
+                       }
                        });
                },
                error: function() {
+                       equals(false, "error");
                        // Do this because opera simply refuses to implement 304 handling :(
                        // A feature-driven way of detecting this would be appreciated
                        // See: http://gist.github.com/599419
@@ -1296,8 +1610,8 @@ test("jQuery.ajax - Etag support", function() {
                                                ok(data == null, "response body should be empty")
                                        }
                                        start();
-                               },
-                               error: function() {
+                       },
+                       error: function() {
                                        // Do this because opera simply refuses to implement 304 handling :(
                                        // A feature-driven way of detecting this would be appreciated
                                        // See: http://gist.github.com/599419
@@ -1317,11 +1631,64 @@ test("jQuery.ajax - Etag support", function() {
        });
 });
 
+test("jQuery ajax - failing cross-domain", function() {
+
+       expect( 2 );
+       
+       stop();
+       
+       var i = 2;
+       
+       if ( jQuery.ajax({
+               url: 'http://somewebsitethatdoesnotexist-67864863574657654.com',
+               success: function(){ ok( false , "success" ); },
+               error: function(xhr,_,e){ ok( true , "file not found: " + xhr.status + " => " + e ); },
+               complete: function() { if ( ! --i ) start(); }
+       }) === false ) {
+               ok( true , "no transport" );
+               if ( ! --i ) start();
+       }
+       
+       if ( jQuery.ajax({
+               url: 'http://www.google.com',
+               success: function(){ ok( false , "success" ); },
+               error: function(xhr,_,e){ ok( true , "access denied: " + xhr.status + " => " + e ); },
+               complete: function() { if ( ! --i ) start(); }
+       }) === false ) {
+               ok( true , "no transport" );
+               if ( ! --i ) start();
+       }
+       
+});
+
+test("jQuery ajax - atom+xml", function() {
+
+       stop();
+       
+       jQuery.ajax({
+               url: url( 'data/atom+xml.php' ),
+               success: function(){ ok( true , "success" ); },
+               error: function(){ ok( false , "error" ); },
+               complete: function() { start(); }
+       });
+       
+});
+
 test("jQuery.ajax - active counter", function() {
     ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );
 });
 
+test( "jQuery.ajax - Location object as url (#7531)", 1, function () {
+       var success = false;
+       try {
+               var xhr = jQuery.ajax({ url: window.location });
+               success = true;
+               xhr.abort();
+       } catch (e) {}
+
+       ok( success, "document.location did not generate exception" );
+});
 
 }
 
-//}
+//}
\ No newline at end of file