3 test("serialize()", function() {
5 var data = $(':input').not('button').serialize();
6 // ignore button, IE takes text content as value, not relevant for this test
7 ok( data == 'action=Test&text2=Test&radio1=on&radio2=on&check=on&=on&hidden=&foo[bar]=&name=name&=foobar&select1=&select2=3&select3=1', 'Check form serialization as query string' );
10 test("param", function() {
12 var params = {foo:"bar", baz:42, quux:"All your base are belong to us"};
13 ok( $.param(params) == "foo=bar&baz=42&quux=All%20your%20base%20are%20belong%20to%20us", "simple" );
15 params = {someName: [1, 2, 3], regularThing: "blah" };
16 ok( $.param(params) == "someName=1&someName=2&someName=3®ularThing=blah", "with array" );
18 params = {"foo[]":["baz", 42, "All your base are belong to us"]};
19 ok( $.param(params) == "foo[]=baz&foo[]=42&foo[]=All%20your%20base%20are%20belong%20to%20us", "more array" );
21 params = {"foo[bar]":"baz", "foo[beep]":42, "foo[quux]":"All your base are belong to us"};
22 ok( $.param(params) == "foo[bar]=baz&foo[beep]=42&foo[quux]=All%20your%20base%20are%20belong%20to%20us", "even more arrays" );
25 test("pass-through request object", function() {
29 var success = function() {
33 var target = "data/name.php";
34 ok( $.get(url(target), success), "get" );
35 ok( $.getIfModified(url(target), success), "getIfModified" );
36 ok( $.post(url(target), success), "post" );
37 ok( $.getScript(url("data/test.js"), success), "script" );
38 ok( $.getJSON(url("data/json.php"), success), "json" );
39 ok( $.ajax({url: url(target), success: success}), "generic" );
42 test("synchronous request", function() {
43 ok( /^{ "data"/.test( $.ajax({url: url("data/json.php"), async: false}).responseText ), "check returned text" );
46 test("synchronous request with callbacks", function() {
49 $.ajax({url: url("data/json.php"), async: false, success: function(data) { ok(true, "sucess callback executed"); result = data; } });
50 ok( /^{ "data"/.test( result ), "check returned text" );
53 test("load(String, Object, Function) - simple: inject text into DOM", function() {
56 $('#first').load(url("data/name.php"), function() {
57 ok( /^ERROR/.test($('#first').text()), 'Check if content was injected into the DOM' );
62 test("load(String, Object, Function) - inject without callback", function() {
64 stop(true); // check if load can be called with only url
65 $('#first').load("data/name.php");
68 test("load(String, Object, Function) - check scripts", function() {
73 var verifyEvaluation = function() {
74 ok( foobar == "bar", 'Check if script src was evaluated after load' );
75 ok( $('#ap').html() == 'bar', 'Check if script evaluation has modified DOM');
78 $('#first').load(url('data/test.php'), function() {
79 ok( $('#first').html().match(/^html text/), 'Check content after loading html' );
80 ok( $('#foo').html() == 'foo', 'Check if script evaluation has modified DOM');
81 ok( testFoo == "foo", 'Check if script was evaluated after load' );
82 setTimeout(verifyEvaluation, 600);
86 test("load(String, Object, Function) - check file with only a script tag", function() {
90 $('#first').load(url('data/test2.php'), function() {
91 ok( $('#foo').html() == 'foo', 'Check if script evaluation has modified DOM');
92 ok( testFoo == "foo", 'Check if script was evaluated after load' );
97 test("test global handlers - success", function() {
100 var counter = { complete: 0, success: 0, error: 0, send: 0 },
101 success = function() { counter.success++ },
102 error = function() { counter.error++ },
103 complete = function() { counter.complete++ },
104 send = function() { counter.send++ };
106 $('#foo').ajaxStart(complete).ajaxStop(complete).ajaxSend(send).ajaxComplete(complete).ajaxError(error).ajaxSuccess(success);
107 // start with successful test
108 $.ajax({url: url("data/name.php"), beforeSend: send, success: success, error: error, complete: function() {
109 ok( counter.error == 0, 'Check succesful request' );
110 ok( counter.success == 2, 'Check succesful request' );
111 ok( counter.complete == 3, 'Check succesful request' );
112 ok( counter.send == 2, 'Check succesful request' );
113 counter.error = counter.success = counter.complete = counter.send = 0;
115 $.ajax({url: url("data/name.php?wait=5"), beforeSend: send, success: success, error: error, complete: function() {
116 ok( counter.error == 2, 'Check failed request' );
117 ok( counter.success == 0, 'Check failed request' );
118 ok( counter.complete == 3, 'Check failed request' );
119 ok( counter.send == 2, 'Check failed request' );
125 test("test global handlers - failure", function() {
128 var counter = { complete: 0, success: 0, error: 0, send: 0 },
129 success = function() { counter.success++ },
130 error = function() { counter.error++ },
131 complete = function() { counter.complete++ },
132 send = function() { counter.send++ };
134 $('#foo').ajaxStart(complete).ajaxStop(complete).ajaxSend(send).ajaxComplete(complete).ajaxError(error).ajaxSuccess(success);
135 $.ajax({url: url("data/name.php"), global: false, beforeSend: send, success: success, error: error, complete: function() {
136 ok( counter.error == 0, 'Check sucesful request without globals' );
137 ok( counter.success == 1, 'Check sucesful request without globals' );
138 ok( counter.complete == 0, 'Check sucesful request without globals' );
139 ok( counter.send == 1, 'Check sucesful request without globals' );
140 counter.error = counter.success = counter.complete = counter.send = 0;
142 $.ajax({url: url("data/name.php?wait=5"), global: false, beforeSend: send, success: success, error: error, complete: function() {
144 ok( counter.error == 1, 'Check failed request without globals' );
145 ok( counter.success == 0, 'Check failed request without globals' );
146 ok( counter.complete == 0, 'Check failed request without globals' );
147 ok( counter.send == 1, 'Check failed request without globals' );
153 test("$.get(String, Hash, Function) - parse xml and use text() on nodes", function() {
156 $.get(url('data/dashboard.xml'), function(xml) {
158 $('tab', xml).each(function() {
159 content.push($(this).text());
161 ok( content[0] == 'blabla', 'Check first tab');
162 ok( content[1] == 'blublu', 'Check second tab');
167 test("$.getIfModified(String, Hash, Function)", function() {
170 $.getIfModified(url("data/name.php"), function(msg) {
171 ok( /^ERROR/.test(msg), 'Check ifModified' );
176 test("$.getScript(String, Function) - with callback", function() {
179 $.getScript(url("data/test.js"), function() {
180 ok( foobar == "bar", 'Check if script was evaluated' );
181 setTimeout(start, 100);
185 test("$.getScript(String, Function) - no callback", function() {
188 $.getScript(url("data/test.js"));
191 test("$.getJSON(String, Hash, Function) - JSON array", function() {
194 $.getJSON(url("data/json.php"), {json: "array"}, function(json) {
195 ok( json[0].name == 'John', 'Check JSON: first, name' );
196 ok( json[0].age == 21, 'Check JSON: first, age' );
197 ok( json[1].name == 'Peter', 'Check JSON: second, name' );
198 ok( json[1].age == 25, 'Check JSON: second, age' );
203 test("$.getJSON(String, Hash, Function) - JSON object", function() {
206 $.getJSON(url("data/json.php"), function(json) {
207 ok( json.data.lang == 'en', 'Check JSON: lang' );
208 ok( json.data.length == 25, 'Check JSON: length' );
213 test("$.post(String, Hash, Function) - simple with xml", function() {
216 $.post(url("data/name.php"), {xml: "5-2"}, function(xml){
217 $('math', xml).each(function() {
218 ok( $('calculation', this).text() == '5-2', 'Check for XML' );
219 ok( $('result', this).text() == '3', 'Check for XML' );
225 test("$.ajaxTimeout(Number) - with global timeout", function() {
230 var pass = function() {
233 ok( true, 'Check local and global callbacks after timeout' );
234 clearTimeout(timeout);
235 $('#main').unbind("ajaxError");
239 var fail = function() {
240 ok( false, 'Check for timeout failed' );
243 timeout = setTimeout(fail, 1500);
244 $('#main').ajaxError(pass);
247 url: url("data/name.php?wait=5"),
255 test("$.ajaxTimeout(Number) with localtimeout", function() {
256 stop(); $.ajaxTimeout(50);
260 url: url("data/name.php?wait=1"),
262 ok( false, 'Check for local timeout failed' );
265 success: function() {
266 ok( true, 'Check for local timeout' );
274 test("$.ajax - simple get", function() {
279 url: url("data/name.php?name=foo"),
280 success: function(msg){
281 ok( msg == 'bar', 'Check for GET' );
287 test("$.ajax - simple post", function() {
292 url: url("data/name.php"),
294 success: function(msg){
295 ok( msg == 'pan', 'Check for POST' );
301 test("$.ajax - dataType html", function() {
306 var verifyEvaluation = function() {
307 ok( foobar == "bar", 'Check if script src was evaluated for datatype html' );
312 url: url("data/test.php"),
313 success: function(data) {
314 ok( data.match(/^html text/), 'Check content for datatype html' );
315 ok( testFoo == "foo", 'Check if script was evaluated for datatype html' );
316 setTimeout(verifyEvaluation, 600);
321 test("$.ajax - xml: non-namespace elements inside namespaced elements", function() {
325 url: url("data/with_fries.xml"),
327 success: function(resp) {
328 ok( $("properties", resp).length == 1, 'properties in responseXML' );
329 ok( $("jsconf", resp).length == 1, 'jsconf in responseXML' );
330 ok( $("thing", resp).length == 2, 'things in responseXML' );
336 test("$.ajax - beforeSend", function() {
341 url: url("data/name.php"),
343 beforeSend: function(xml) {
346 success: function(data) {
347 ok( check, "check beforeSend was executed" );
353 test("ajaxSetup()", function() {
357 url: url("data/name.php?name=foo"),
358 success: function(msg){
359 ok( msg == 'bar', 'Check for GET' );
366 test("evalScripts() with no script elements", function() {
369 var data = "this is just some bogus text";
370 $('#foo').html(data);
371 ok ( true, 'before evalScripts()');
373 $('#foo').evalScripts();
375 ok (false, 'exception evaluating scripts: ' + e.message);
377 ok ( true, 'after evalScripts()');