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("$.ajax() - success callbacks", function() {
13 $.ajaxSetup({ timeout: 0 });
17 setTimeout(function(){
18 $('#foo').ajaxStart(function(){
19 ok( true, "ajaxStart" );
20 }).ajaxStop(function(){
21 ok( true, "ajaxStop" );
23 }).ajaxSend(function(){
24 ok( true, "ajaxSend" );
25 }).ajaxComplete(function(){
26 ok( true, "ajaxComplete" );
27 }).ajaxError(function(){
28 ok( false, "ajaxError" );
29 }).ajaxSuccess(function(){
30 ok( true, "ajaxSuccess" );
34 url: url("data/name.html"),
35 beforeSend: function(){ ok(true, "beforeSend"); },
36 success: function(){ ok(true, "success"); },
37 error: function(){ ok(false, "error"); },
38 complete: function(){ ok(true, "complete"); }
43 test("$.ajax() - error callbacks", function() {
47 $('#foo').ajaxStart(function(){
48 ok( true, "ajaxStart" );
49 }).ajaxStop(function(){
50 ok( true, "ajaxStop" );
52 }).ajaxSend(function(){
53 ok( true, "ajaxSend" );
54 }).ajaxComplete(function(){
55 ok( true, "ajaxComplete" );
56 }).ajaxError(function(){
57 ok( true, "ajaxError" );
58 }).ajaxSuccess(function(){
59 ok( false, "ajaxSuccess" );
62 $.ajaxSetup({ timeout: 500 });
65 url: url("data/name.php?wait=5"),
66 beforeSend: function(){ ok(true, "beforeSend"); },
67 success: function(){ ok(false, "success"); },
68 error: function(){ ok(true, "error"); },
69 complete: function(){ ok(true, "complete"); }
73 test("$.ajax() - disabled globals", function() {
77 $('#foo').ajaxStart(function(){
78 ok( false, "ajaxStart" );
79 }).ajaxStop(function(){
80 ok( false, "ajaxStop" );
81 }).ajaxSend(function(){
82 ok( false, "ajaxSend" );
83 }).ajaxComplete(function(){
84 ok( false, "ajaxComplete" );
85 }).ajaxError(function(){
86 ok( false, "ajaxError" );
87 }).ajaxSuccess(function(){
88 ok( false, "ajaxSuccess" );
93 url: url("data/name.html"),
94 beforeSend: function(){ ok(true, "beforeSend"); },
95 success: function(){ ok(true, "success"); },
96 error: function(){ ok(false, "error"); },
99 setTimeout(function(){ start(); }, 13);
104 test("$.ajax - xml: non-namespace elements inside namespaced elements", function() {
108 url: url("data/with_fries.xml"),
110 success: function(resp) {
111 equals( $("properties", resp).length, 1, 'properties in responseXML' );
112 equals( $("jsconf", resp).length, 1, 'jsconf in responseXML' );
113 equals( $("thing", resp).length, 2, 'things in responseXML' );
119 test("$.ajax - beforeSend", function() {
125 $.ajaxSetup({ timeout: 0 });
128 url: url("data/name.html"),
129 beforeSend: function(xml) {
132 success: function(data) {
133 ok( check, "check beforeSend was executed" );
141 test("$.ajax - dataType html", function() {
148 var verifyEvaluation = function() {
149 ok( testFoo == "foo", 'Check if script was evaluated for datatype html' );
150 ok( foobar == "bar", 'Check if script src was evaluated for datatype html' );
156 url: url("data/test.html"),
157 success: function(data) {
159 ok( data.match(/^html text/), 'Check content for datatype html' );
160 setTimeout(verifyEvaluation, 600);
165 test("serialize()", function() {
168 equals( $('#form').serialize(),
169 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&select1=&select2=3&select3=1&select3=2",
170 'Check form serialization as query string');
172 equals( $('#form :input').serialize(),
173 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&select1=&select2=3&select3=1&select3=2",
174 'Check input serialization as query string');
176 equals( $('#testForm').serialize(),
177 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
178 'Check form serialization as query string');
180 equals( $('#testForm :input').serialize(),
181 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
182 'Check input serialization as query string');
184 equals( $('#form, #testForm').serialize(),
185 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&select1=&select2=3&select3=1&select3=2&T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
186 'Multiple form serialization as query string');
188 equals( $('#form, #testForm :input').serialize(),
189 "action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&select1=&select2=3&select3=1&select3=2&T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
190 'Mixed form/input serialization as query string');
193 test("$.param()", function() {
195 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
196 equals( $.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
198 params = {someName: [1, 2, 3], regularThing: "blah" };
199 equals( $.param(params), "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
201 params = {"foo[]":["baz", 42, "All your base are belong to us"]};
202 equals( $.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
204 params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
205 equals( $.param(params), "foo%5Bbar%5D=baz&foo%5Bbeep%5D=42&foo%5Bquux%5D=All+your+base+are+belong+to+us", "even more arrays" );
208 test("synchronous request", function() {
210 ok( /^{ "data"/.test( $.ajax({url: url("data/json_obj.js"), async: false}).responseText ), "check returned text" );
213 test("synchronous request with callbacks", function() {
216 $.ajax({url: url("data/json_obj.js"), async: false, success: function(data) { ok(true, "sucess callback executed"); result = data; } });
217 ok( /^{ "data"/.test( result ), "check returned text" );
220 test("pass-through request object", function() {
224 var target = "data/name.html";
226 var success = function() {
232 /* Test disabled, too many simultaneous requests
233 ok( $.get(url(target), success), "get" );
234 ok( $.post(url(target), success), "post" );
235 ok( $.getScript(url("data/test.js"), success), "script" );
236 ok( $.getJSON(url("data/json_obj.js"), success), "json" );
238 ok( $.ajax({url: url(target), success: success}), "generic" );
241 test("global ajaxSettings", function() {
244 var tmp = jQuery.extend({}, jQuery.ajaxSettings);
245 var orig = { url: "data/with_fries.xml", data: null };
248 $.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
250 t = jQuery.extend({}, orig);
252 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending null" );
254 t = jQuery.extend({}, orig);
257 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
259 t = jQuery.extend({}, orig);
260 t.data = { zoo: 'a', ping: 'b' };
262 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' }" );
264 jQuery.ajaxSettings = tmp;
267 test("load(String)", function() {
269 stop(true); // check if load can be called with only url
270 $('#first').load("data/name.html", start);
273 test("load('url selector')", function() {
275 stop(true); // check if load can be called with only url
276 $('#first').load("data/test3.html div.user", function(){
277 equals( $(this).children("div").length, 2, "Verify that specific elements were injected" );
282 test("load(String, Function) - simple: inject text into DOM", function() {
285 $('#first').load(url("data/name.html"), function() {
286 ok( /^ERROR/.test($('#first').text()), 'Check if content was injected into the DOM' );
291 test("load(String, Function) - check scripts", function() {
294 window.testFoo = undefined;
295 window.foobar = null;
296 var verifyEvaluation = function() {
297 equals( foobar, "bar", 'Check if script src was evaluated after load' );
298 equals( $('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
301 $('#first').load(url('data/test.html'), function() {
302 ok( $('#first').html().match(/^html text/), 'Check content after loading html' );
303 equals( $('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
304 equals( testFoo, "foo", 'Check if script was evaluated after load' );
305 setTimeout(verifyEvaluation, 600);
309 test("load(String, Function) - check file with only a script tag", function() {
313 $('#first').load(url('data/test2.html'), function() {
314 ok( $('#foo').html() == 'foo', 'Check if script evaluation has modified DOM');
315 ok( testFoo == "foo", 'Check if script was evaluated after load' );
320 test("$.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
323 $.get(url('data/dashboard.xml'), function(xml) {
325 $('tab', xml).each(function() {
326 content.push($(this).text());
328 equals( content[0], 'blabla', 'Check first tab');
329 equals( content[1], 'blublu', 'Check second tab');
334 test("$.getScript(String, Function) - with callback", function() {
337 $.getScript(url("data/test.js"), function() {
338 equals( foobar, "bar", 'Check if script was evaluated' );
339 setTimeout(start, 100);
343 test("$.getScript(String, Function) - no callback", function() {
346 $.getScript(url("data/test.js"), start);
349 test("$.ajax() - JSONP, Local", function() {
353 function plus(){ if ( ++count == 7 ) start(); }
358 url: "data/jsonp.php",
360 success: function(data){
361 ok( data.data, "JSON results returned (GET, no callback)" );
367 url: "data/jsonp.php?callback=?",
369 success: function(data){
370 ok( data.data, "JSON results returned (GET, url callback)" );
376 url: "data/jsonp.php",
379 success: function(data){
380 ok( data.data, "JSON results returned (GET, data callback)" );
386 url: "data/jsonp.php",
388 data: { callback: "?" },
389 success: function(data){
390 ok( data.data, "JSON results returned (GET, data obj callback)" );
397 url: "data/jsonp.php",
399 success: function(data){
400 ok( data.data, "JSON results returned (POST, no callback)" );
407 url: "data/jsonp.php",
410 success: function(data){
411 ok( data.data, "JSON results returned (POST, data callback)" );
418 url: "data/jsonp.php",
419 data: { callback: "?" },
421 success: function(data){
422 ok( data.data, "JSON results returned (POST, data obj callback)" );
428 test("$.ajax() - JSONP, Remote", function() {
432 function plus(){ if ( ++count == 4 ) start(); }
434 var base = window.location.href.replace(/\?.*$/, "");
439 url: base + "data/jsonp.php",
441 success: function(data){
442 ok( data.data, "JSON results returned (GET, no callback)" );
448 url: base + "data/jsonp.php?callback=?",
450 success: function(data){
451 ok( data.data, "JSON results returned (GET, url callback)" );
457 url: base + "data/jsonp.php",
460 success: function(data){
461 ok( data.data, "JSON results returned (GET, data callback)" );
467 url: base + "data/jsonp.php",
469 data: { callback: "?" },
470 success: function(data){
471 ok( data.data, "JSON results returned (GET, data obj callback)" );
477 test("$.ajax() - script, Remote", function() {
480 var base = window.location.href.replace(/\?.*$/, "");
485 url: base + "data/test.js",
487 success: function(data){
488 ok( foobar, "Script results returned (GET, no callback)" );
494 test("$.getJSON(String, Hash, Function) - JSON array", function() {
497 $.getJSON(url("data/json.php"), {json: "array"}, function(json) {
498 ok( json[0].name == 'John', 'Check JSON: first, name' );
499 ok( json[0].age == 21, 'Check JSON: first, age' );
500 ok( json[1].name == 'Peter', 'Check JSON: second, name' );
501 ok( json[1].age == 25, 'Check JSON: second, age' );
506 test("$.getJSON(String, Function) - JSON object", function() {
509 $.getJSON(url("data/json.php"), function(json) {
510 ok( json.data.lang == 'en', 'Check JSON: lang' );
511 ok( json.data.length == 25, 'Check JSON: length' );
516 test("$.post(String, Hash, Function) - simple with xml", function() {
519 $.post(url("data/name.php"), {xml: "5-2"}, function(xml){
520 $('math', xml).each(function() {
521 ok( $('calculation', this).text() == '5-2', 'Check for XML' );
522 ok( $('result', this).text() == '3', 'Check for XML' );
526 $.post(url("data/name.php?xml=5-2"), {}, function(xml){
527 $('math', xml).each(function() {
528 ok( $('calculation', this).text() == '5-2', 'Check for XML' );
529 ok( $('result', this).text() == '3', 'Check for XML' );
535 test("$.ajaxSetup({timeout: Number}) - with global timeout", function() {
540 $.ajaxSetup({timeout: 1000});
542 var pass = function() {
545 ok( true, 'Check local and global callbacks after timeout' );
546 $('#main').unbind("ajaxError");
551 var fail = function(a,b,c) {
552 ok( false, 'Check for timeout failed ' + a + ' ' + b );
556 $('#main').ajaxError(pass);
560 url: url("data/name.php?wait=5"),
566 $.ajaxSetup({timeout: 0});
569 test("$.ajaxSetup({timeout: Number}) with localtimeout", function() {
571 $.ajaxSetup({timeout: 50});
576 url: url("data/name.php?wait=1"),
578 ok( false, 'Check for local timeout failed' );
581 success: function() {
582 ok( true, 'Check for local timeout' );
588 $.ajaxSetup({timeout: 0});
591 test("$.ajax - simple get", function() {
596 url: url("data/name.php?name=foo"),
597 success: function(msg){
598 ok( msg == 'bar', 'Check for GET' );
604 test("$.ajax - simple post", function() {
609 url: url("data/name.php"),
611 success: function(msg){
612 ok( msg == 'pan', 'Check for POST' );
618 test("ajaxSetup()", function() {
622 url: url("data/name.php?name=foo"),
623 success: function(msg){
624 ok( msg == 'bar', 'Check for GET' );
631 test("custom timeout does not set error message when timeout occurs, see #970", function() {
634 url: "data/name.php?wait=10",
636 error: function(request, status) {
637 ok( status != null, "status shouldn't be null in error handler" );
638 equals( "timeout", status );