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 setTimeout(function(){
18 jQuery('#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("jQuery.ajax() - error callbacks", function() {
47 jQuery('#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 jQuery.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 events with context", function() {
77 var context = document.createElement("div");
80 equals( this, context, e.type );
84 equals( this, context, "context is preserved on callback" );
87 jQuery('#foo').add(context)
94 url: url("data/name.html"),
100 setTimeout(proceed, 300);
106 jQuery('#foo').add(context).unbind();
111 test("jQuery.ajax() - disabled globals", function() {
115 jQuery('#foo').ajaxStart(function(){
116 ok( false, "ajaxStart" );
117 }).ajaxStop(function(){
118 ok( false, "ajaxStop" );
119 }).ajaxSend(function(){
120 ok( false, "ajaxSend" );
121 }).ajaxComplete(function(){
122 ok( false, "ajaxComplete" );
123 }).ajaxError(function(){
124 ok( false, "ajaxError" );
125 }).ajaxSuccess(function(){
126 ok( false, "ajaxSuccess" );
131 url: url("data/name.html"),
132 beforeSend: function(){ ok(true, "beforeSend"); },
133 success: function(){ ok(true, "success"); },
134 error: function(){ ok(false, "error"); },
135 complete: function(){
136 ok(true, "complete");
137 setTimeout(function(){ start(); }, 13);
142 test("jQuery.ajax - xml: non-namespace elements inside namespaced elements", function() {
146 url: url("data/with_fries.xml"),
148 success: function(resp) {
149 equals( jQuery("properties", resp).length, 1, 'properties in responseXML' );
150 equals( jQuery("jsconf", resp).length, 1, 'jsconf in responseXML' );
151 equals( jQuery("thing", resp).length, 2, 'things in responseXML' );
157 test("jQuery.ajax - beforeSend", function() {
163 jQuery.ajaxSetup({ timeout: 0 });
166 url: url("data/name.html"),
167 beforeSend: function(xml) {
170 success: function(data) {
171 ok( check, "check beforeSend was executed" );
177 test("jQuery.ajax - beforeSend, cancel request (#2688)", function() {
179 var request = jQuery.ajax({
180 url: url("data/name.html"),
181 beforeSend: function() {
182 ok( true, "beforeSend got called, canceling" );
185 success: function() {
186 ok( false, "request didn't get canceled" );
188 complete: function() {
189 ok( false, "request didn't get canceled" );
192 ok( false, "request didn't get canceled" );
195 ok( request === false, "canceled request must return false instead of XMLHttpRequest instance" );
198 window.foobar = null;
199 window.testFoo = undefined;
201 test("jQuery.ajax - dataType html", function() {
205 var verifyEvaluation = function() {
206 equals( testFoo, "foo", 'Check if script was evaluated for datatype html' );
207 equals( foobar, "bar", 'Check if script src was evaluated for datatype html' );
214 url: url("data/test.html"),
215 success: function(data) {
216 jQuery("#ap").html(data);
217 ok( data.match(/^html text/), 'Check content for datatype html' );
218 setTimeout(verifyEvaluation, 600);
223 test("serialize()", function() {
226 // Add html5 elements only for serialize because selector can't yet find them on non-html5 browsers
227 jQuery("#search").after(
228 '<input type="email" id="html5email" name="email" value="dave@jquery.com" />'+
229 '<input type="number" id="html5number" name="number" value="43" />'
232 equals( jQuery('#form').serialize(),
233 "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",
234 'Check form serialization as query string');
236 equals( jQuery('#form :input').serialize(),
237 "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",
238 'Check input serialization as query string');
240 equals( jQuery('#testForm').serialize(),
241 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
242 'Check form serialization as query string');
244 equals( jQuery('#testForm :input').serialize(),
245 'T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=',
246 'Check input serialization as query string');
248 equals( jQuery('#form, #testForm').serialize(),
249 "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%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
250 'Multiple form serialization as query string');
252 /* Temporarily disabled. Opera 10 has problems with form serialization.
253 equals( jQuery('#form, #testForm :input').serialize(),
254 "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%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
255 'Mixed form/input serialization as query string');
257 jQuery("#html5email, #html5number").remove();
260 test("jQuery.param()", function() {
263 equals( !jQuery.ajaxSettings.traditional, true, "traditional flag, falsy by default" );
265 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
266 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
268 params = {someName: [1, 2, 3], regularThing: "blah" };
269 equals( jQuery.param(params), "someName%5B%5D=1&someName%5B%5D=2&someName%5B%5D=3®ularThing=blah", "with array" );
271 params = {foo: ['a', 'b', 'c']};
272 equals( jQuery.param(params), "foo%5B%5D=a&foo%5B%5D=b&foo%5B%5D=c", "with array of strings" );
274 params = {foo: ["baz", 42, "All your base are belong to us"] };
275 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
277 params = {foo: { bar: 'baz', beep: 42, quux: 'All your base are belong to us' } };
278 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" );
280 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?" };
281 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" );
283 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 ] };
284 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" );
286 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?" };
287 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" );
289 jQuery.ajaxSetup({ traditional: true });
291 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
292 equals( jQuery.param(params), "foo=bar&baz=42&quux=All+your+base+are+belong+to+us", "simple" );
294 params = {someName: [1, 2, 3], regularThing: "blah" };
295 equals( jQuery.param(params), "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
297 params = {foo: ['a', 'b', 'c']};
298 equals( jQuery.param(params), "foo=a&foo=b&foo=c", "with array of strings" );
300 params = {"foo[]":["baz", 42, "All your base are belong to us"]};
301 equals( jQuery.param(params), "foo%5B%5D=baz&foo%5B%5D=42&foo%5B%5D=All+your+base+are+belong+to+us", "more array" );
303 params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
304 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" );
306 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?" };
307 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" );
309 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 ] };
310 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)" );
312 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?" };
313 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" );
318 test("synchronous request", function() {
320 ok( /^{ "data"/.test( jQuery.ajax({url: url("data/json_obj.js"), async: false}).responseText ), "check returned text" );
323 test("synchronous request with callbacks", function() {
326 jQuery.ajax({url: url("data/json_obj.js"), async: false, success: function(data) { ok(true, "sucess callback executed"); result = data; } });
327 ok( /^{ "data"/.test( result ), "check returned text" );
330 test("pass-through request object", function() {
334 var target = "data/name.html";
335 var successCount = 0;
338 var success = function() {
341 jQuery("#foo").ajaxError(function (e, xml, s, ex) {
343 errorEx += ": " + xml.status;
345 jQuery("#foo").one('ajaxStop', function () {
346 equals(successCount, 5, "Check all ajax calls successful");
347 equals(errorCount, 0, "Check no ajax errors (status" + errorEx + ")");
348 jQuery("#foo").unbind('ajaxError');
353 ok( jQuery.get(url(target), success), "get" );
354 ok( jQuery.post(url(target), success), "post" );
355 ok( jQuery.getScript(url("data/test.js"), success), "script" );
356 ok( jQuery.getJSON(url("data/json_obj.js"), success), "json" );
357 ok( jQuery.ajax({url: url(target), success: success}), "generic" );
360 test("ajax cache", function () {
367 jQuery("#firstp").bind("ajaxSuccess", function (e, xml, s) {
368 var re = /_=(.*?)(&|$)/g;
370 for (var i = 0; i < 6; i++) {
371 var ret = re.exec(s.url);
377 equals(i, 1, "Test to make sure only one 'no-cache' parameter is there");
378 ok(oldOne != "tobereplaced555", "Test to be sure parameter (if it was there) was replaced");
383 ok( jQuery.ajax({url: "data/text.php", cache:false}), "test with no parameters" );
384 ok( jQuery.ajax({url: "data/text.php?pizza=true", cache:false}), "test with 1 parameter" );
385 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555", cache:false}), "test with _= parameter" );
386 ok( jQuery.ajax({url: "data/text.php?pizza=true&_=tobereplaced555", cache:false}), "test with 1 parameter plus _= one" );
387 ok( jQuery.ajax({url: "data/text.php?_=tobereplaced555&tv=false", cache:false}), "test with 1 parameter plus _= one before it" );
388 ok( jQuery.ajax({url: "data/text.php?name=David&_=tobereplaced555&washere=true", cache:false}), "test with 2 parameters surrounding _= one" );
393 * The assertions expect that the passed-in object will be modified,
394 * which shouldn't be the case. Fixes #5439.
395 test("global ajaxSettings", function() {
398 var tmp = jQuery.extend({}, jQuery.ajaxSettings);
399 var orig = { url: "data/with_fries.xml" };
402 jQuery.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
404 t = jQuery.extend({}, orig);
407 ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );
409 t = jQuery.extend({}, orig);
410 t.data = { zoo: 'a', ping: 'b' };
412 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' }" );
414 jQuery.ajaxSettings = tmp;
418 test("load(String)", function() {
420 stop(); // check if load can be called with only url
421 jQuery('#first').load("data/name.html", start);
424 test("load('url selector')", function() {
426 stop(); // check if load can be called with only url
427 jQuery('#first').load("data/test3.html div.user", function(){
428 equals( jQuery(this).children("div").length, 2, "Verify that specific elements were injected" );
433 test("load(String, Function) with ajaxSetup on dataType json, see #2046", function() {
436 jQuery.ajaxSetup({ dataType: "json" });
437 jQuery("#first").ajaxComplete(function (e, xml, s) {
438 equals( s.dataType, "html", "Verify the load() dataType was html" );
439 jQuery("#first").unbind("ajaxComplete");
440 jQuery.ajaxSetup({ dataType: "" });
443 jQuery('#first').load("data/test3.html");
446 test("load(String, Function) - simple: inject text into DOM", function() {
449 jQuery('#first').load(url("data/name.html"), function() {
450 ok( /^ERROR/.test(jQuery('#first').text()), 'Check if content was injected into the DOM' );
455 test("load(String, Function) - check scripts", function() {
459 var verifyEvaluation = function() {
460 equals( foobar, "bar", 'Check if script src was evaluated after load' );
461 equals( jQuery('#ap').html(), 'bar', 'Check if script evaluation has modified DOM');
465 jQuery('#first').load(url('data/test.html'), function() {
466 ok( jQuery('#first').html().match(/^html text/), 'Check content after loading html' );
467 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
468 equals( testFoo, "foo", 'Check if script was evaluated after load' );
469 setTimeout(verifyEvaluation, 600);
473 test("load(String, Function) - check file with only a script tag", function() {
477 jQuery('#first').load(url('data/test2.html'), function() {
478 equals( jQuery('#foo').html(), 'foo', 'Check if script evaluation has modified DOM');
479 equals( testFoo, "foo", 'Check if script was evaluated after load' );
485 test("load(String, Object, Function)", function() {
489 jQuery('<div />').load(url('data/params_html.php'), { foo:3, bar:'ok' }, function() {
490 var $post = jQuery(this).find('#post');
491 equals( $post.find('#foo').text(), '3', 'Check if a hash of data is passed correctly');
492 equals( $post.find('#bar').text(), 'ok', 'Check if a hash of data is passed correctly');
497 test("load(String, String, Function)", function() {
501 jQuery('<div />').load(url('data/params_html.php'), 'foo=3&bar=ok', function() {
502 var $get = jQuery(this).find('#get');
503 equals( $get.find('#foo').text(), '3', 'Check if a string of data is passed correctly');
504 equals( $get.find('#bar').text(), 'ok', 'Check if a of data is passed correctly');
509 test("jQuery.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
512 jQuery.get(url('data/dashboard.xml'), function(xml) {
514 jQuery('tab', xml).each(function() {
515 content.push(jQuery(this).text());
517 equals( content[0], 'blabla', 'Check first tab');
518 equals( content[1], 'blublu', 'Check second tab');
523 test("jQuery.getScript(String, Function) - with callback", function() {
526 jQuery.getScript(url("data/test.js"), function() {
527 equals( foobar, "bar", 'Check if script was evaluated' );
528 setTimeout(start, 100);
532 test("jQuery.getScript(String, Function) - no callback", function() {
535 jQuery.getScript(url("data/test.js"), function(){
540 test("jQuery.ajax() - JSONP, Local", function() {
544 function plus(){ if ( ++count == 8 ) start(); }
549 url: "data/jsonp.php",
551 success: function(data){
552 ok( data.data, "JSON results returned (GET, no callback)" );
555 error: function(data){
556 ok( false, "Ajax error JSON (GET, no callback)" );
562 url: "data/jsonp.php?callback=?",
564 success: function(data){
565 ok( data.data, "JSON results returned (GET, url callback)" );
568 error: function(data){
569 ok( false, "Ajax error JSON (GET, url callback)" );
575 url: "data/jsonp.php",
578 success: function(data){
579 ok( data.data, "JSON results returned (GET, data callback)" );
582 error: function(data){
583 ok( false, "Ajax error JSON (GET, data callback)" );
589 url: "data/jsonp.php",
592 success: function(data){
593 ok( data.data, "JSON results returned (GET, data obj callback)" );
596 error: function(data){
597 ok( false, "Ajax error JSON (GET, data obj callback)" );
603 url: "data/jsonp.php",
605 jsonpCallback: "jsonpResults",
606 success: function(data){
607 ok( data.data, "JSON results returned (GET, custom callback name)" );
610 error: function(data){
611 ok( false, "Ajax error JSON (GET, custom callback name)" );
618 url: "data/jsonp.php",
620 success: function(data){
621 ok( data.data, "JSON results returned (POST, no callback)" );
624 error: function(data){
625 ok( false, "Ajax error JSON (GET, data obj callback)" );
632 url: "data/jsonp.php",
635 success: function(data){
636 ok( data.data, "JSON results returned (POST, data callback)" );
639 error: function(data){
640 ok( false, "Ajax error JSON (POST, data callback)" );
647 url: "data/jsonp.php",
650 success: function(data){
651 ok( data.data, "JSON results returned (POST, data obj callback)" );
654 error: function(data){
655 ok( false, "Ajax error JSON (POST, data obj callback)" );
661 test("JSONP - Custom JSONP Callback", function() {
665 window.jsonpResults = function(data) {
666 ok( data.data, "JSON results returned (GET, custom callback function)" );
671 url: "data/jsonp.php",
673 jsonpCallback: "jsonpResults"
677 test("jQuery.ajax() - JSONP, Remote", function() {
681 function plus(){ if ( ++count == 4 ) start(); }
683 var base = window.location.href.replace(/\?.*$/, "");
688 url: base + "data/jsonp.php",
690 success: function(data){
691 ok( data.data, "JSON results returned (GET, no callback)" );
694 error: function(data){
695 ok( false, "Ajax error JSON (GET, no callback)" );
701 url: base + "data/jsonp.php?callback=?",
703 success: function(data){
704 ok( data.data, "JSON results returned (GET, url callback)" );
707 error: function(data){
708 ok( false, "Ajax error JSON (GET, url callback)" );
714 url: base + "data/jsonp.php",
717 success: function(data){
718 ok( data.data, "JSON results returned (GET, data callback)" );
721 error: function(data){
722 ok( false, "Ajax error JSON (GET, data callback)" );
728 url: base + "data/jsonp.php",
731 success: function(data){
732 ok( data.data, "JSON results returned (GET, data obj callback)" );
735 error: function(data){
736 ok( false, "Ajax error JSON (GET, data obj callback)" );
742 test("jQuery.ajax() - script, Remote", function() {
745 var base = window.location.href.replace(/\?.*$/, "");
750 url: base + "data/test.js",
752 success: function(data){
753 ok( foobar, "Script results returned (GET, no callback)" );
759 test("jQuery.ajax() - script, Remote with POST", function() {
762 var base = window.location.href.replace(/\?.*$/, "");
767 url: base + "data/test.js",
770 success: function(data, status){
771 ok( foobar, "Script results returned (POST, no callback)" );
772 equals( status, "success", "Script results returned (POST, no callback)" );
775 error: function(xhr) {
776 ok( false, "ajax error, status code: " + xhr.status );
782 test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
785 var base = window.location.href.replace(/\?.*$/, "");
786 base = base.replace(/^.*?\/\//, "//");
791 url: base + "data/test.js",
793 success: function(data){
794 ok( foobar, "Script results returned (GET, no callback)" );
800 test("jQuery.ajax() - json by content-type", function() {
806 url: "data/json.php",
807 data: { header: "json", json: "array" },
808 success: function( json ) {
809 ok( json.length >= 2, "Check length");
810 equals( json[0].name, 'John', 'Check JSON: first, name' );
811 equals( json[0].age, 21, 'Check JSON: first, age' );
812 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
813 equals( json[1].age, 25, 'Check JSON: second, age' );
819 test("jQuery.getJSON(String, Hash, Function) - JSON array", function() {
822 jQuery.getJSON(url("data/json.php"), {json: "array"}, function(json) {
823 ok( json.length >= 2, "Check length");
824 equals( json[0].name, 'John', 'Check JSON: first, name' );
825 equals( json[0].age, 21, 'Check JSON: first, age' );
826 equals( json[1].name, 'Peter', 'Check JSON: second, name' );
827 equals( json[1].age, 25, 'Check JSON: second, age' );
832 test("jQuery.getJSON(String, Function) - JSON object", function() {
835 jQuery.getJSON(url("data/json.php"), function(json) {
836 if (json && json.data) {
837 equals( json.data.lang, 'en', 'Check JSON: lang' );
838 equals( json.data.length, 25, 'Check JSON: length' );
844 test("jQuery.getJSON - Using Native JSON", function() {
847 var old = window.JSON;
849 parse: function(str){
850 ok( true, "Verifying that parse method was run" );
856 jQuery.getJSON(url("data/json.php"), function(json) {
858 equals( json, true, "Verifying return value" );
863 test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
866 var base = window.location.href.replace(/\?.*$/, "");
869 jQuery.getJSON(url(base + "data/json.php"), function(json) {
870 equals( json.data.lang, 'en', 'Check JSON: lang' );
871 equals( json.data.length, 25, 'Check JSON: length' );
876 test("jQuery.post(String, Hash, Function) - simple with xml", function() {
881 jQuery.post(url("data/name.php"), {xml: "5-2"}, function(xml){
882 jQuery('math', xml).each(function() {
883 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
884 equals( jQuery('result', this).text(), '3', 'Check for XML' );
886 if ( ++done === 2 ) start();
889 jQuery.post(url("data/name.php?xml=5-2"), {}, function(xml){
890 jQuery('math', xml).each(function() {
891 equals( jQuery('calculation', this).text(), '5-2', 'Check for XML' );
892 equals( jQuery('result', this).text(), '3', 'Check for XML' );
894 if ( ++done === 2 ) start();
898 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
903 jQuery.ajaxSetup({timeout: 1000});
905 var pass = function() {
908 ok( true, 'Check local and global callbacks after timeout' );
909 jQuery('#main').unbind("ajaxError");
914 var fail = function(a,b,c) {
915 ok( false, 'Check for timeout failed ' + a + ' ' + b );
919 jQuery('#main').ajaxError(pass);
923 url: url("data/name.php?wait=5"),
929 jQuery.ajaxSetup({timeout: 0});
932 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
934 jQuery.ajaxSetup({timeout: 50});
939 url: url("data/name.php?wait=1"),
941 ok( false, 'Check for local timeout failed' );
944 success: function() {
945 ok( true, 'Check for local timeout' );
951 jQuery.ajaxSetup({timeout: 0});
954 test("jQuery.ajax - simple get", function() {
959 url: url("data/name.php?name=foo"),
960 success: function(msg){
961 equals( msg, 'bar', 'Check for GET' );
967 test("jQuery.ajax - simple post", function() {
972 url: url("data/name.php"),
974 success: function(msg){
975 equals( msg, 'pan', 'Check for POST' );
981 test("ajaxSetup()", function() {
985 url: url("data/name.php?name=foo"),
986 success: function(msg){
987 equals( msg, 'bar', 'Check for GET' );
995 test("custom timeout does not set error message when timeout occurs, see #970", function() {
998 url: "data/name.php?wait=1",
1000 error: function(request, status) {
1001 ok( status != null, "status shouldn't be null in error handler" );
1002 equals( "timeout", status );
1009 test("data option: evaluate function values (#2806)", function() {
1012 url: "data/echoQuery.php",
1018 success: function(result) {
1019 equals( result, "key=value" );
1025 test("jQuery.ajax - If-Modified-Since support", function() {
1030 var url = "data/if_modified_since.php?ts=" + new Date();
1035 success: function(data, status) {
1036 equals(status, "success");
1041 success: function(data, status) {
1042 if ( data === "FAIL" ) {
1043 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1044 ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
1046 equals(status, "notmodified");
1047 ok(data == null, "response body should be empty")
1056 test("jQuery.ajax - Etag support", function() {
1061 var url = "data/etag.php?ts=" + new Date();
1066 success: function(data, status) {
1067 equals(status, "success");
1072 success: function(data, status) {
1073 if ( data === "FAIL" ) {
1074 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1075 ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
1077 equals(status, "notmodified");
1078 ok(data == null, "response body should be empty")