add time to test.html request url using new Date().getTime()
[jquery.git] / src / ajax / ajaxTest.js
index 1cd072f..2c798a0 100644 (file)
@@ -44,8 +44,9 @@ test("synchronous request", function() {
 });
 
 test("synchronous request with callbacks", function() {
+       expect(2);
        var result;
-       $.ajax({url: "data/json.php", async: false, success: function(data) { result = data; } });
+       $.ajax({url: "data/json.php", async: false, success: function(data) { ok(true, "sucess callback executed"); result = data; } });
        ok( /^{ "data"/.test( result ), "check returned text" );
 });
 
@@ -74,7 +75,7 @@ test("load(String, Object, Function) - check scripts", function() {
          ok( $('#ap').html() == 'bar', 'Check if script evaluation has modified DOM');
          start();
        };
-       $('#first').load('data/test.html', function() {
+       $('#first').load('data/test.html?'+new Date().getTime(), function() {
          ok( $('#first').html().match(/^html text/), 'Check content after loading html' );
          ok( testFoo == "foo", 'Check if script was evaluated after load' );
          setTimeout(verifyEvaluation, 600);
@@ -127,6 +128,7 @@ test("test global handlers - failure", function() {
          counter.error = counter.success = counter.complete = counter.send = 0;
          $.ajaxTimeout(500);
          $.ajax({url: "data/name.php?wait=5", global: false, beforeSend: send, success: success, error: error, complete: function() {
+                var x = counter;
             ok( counter.error == 1, 'Check failed request without globals' );
             ok( counter.success == 0, 'Check failed request without globals' );
             ok( counter.complete == 0, 'Check failed request without globals' );
@@ -294,7 +296,7 @@ test("$.ajax - dataType html", function() {
        };
        $.ajax({
          dataType: "html",
-         url: "data/test.html",
+         url: "data/test.html?"+new Date().getTime(),
          success: function(data) {
            ok( data.match(/^html text/), 'Check content for datatype html' );
            ok( testFoo == "foo", 'Check if script was evaluated for datatype html' );
@@ -331,4 +333,17 @@ test("$.ajax - beforeSend", function() {
                        start();
                }
        });
-});
\ No newline at end of file
+});
+
+test("ajaxSetup()", function() {
+       expect(1);
+       stop();
+       $.ajaxSetup({
+               url: "data/name.php?name=foo",
+               success: function(msg){
+               ok( msg == 'bar', 'Check for GET' );
+                       start();
+               }
+       });
+       $.ajax();
+});