aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2014-04-04 22:31:38 +0400
committerOleg Gaidarenko <markelog@gmail.com>2014-04-15 17:46:26 +0400
commitd89c278a3363c80d44dd4601bc0cd79c04532529 (patch)
tree6be1ca41ecf19baec66fba77d0077a8cce3be891 /test
parent4d5596e3e412aa19528db12905bf8c09f3bde0ed (diff)
downloadjquery-d89c278a3363c80d44dd4601bc0cd79c04532529.tar.gz
jquery-d89c278a3363c80d44dd4601bc0cd79c04532529.zip
Tests: Fix failing ajax tests in oldIE
Diffstat (limited to 'test')
-rw-r--r--test/data/test.html2
-rw-r--r--test/data/test.php4
-rw-r--r--test/data/testbar.php (renamed from test/data/test.js)2
-rw-r--r--test/unit/ajax.js22
-rw-r--r--test/unit/manipulation.js2
5 files changed, 18 insertions, 14 deletions
diff --git a/test/data/test.html b/test/data/test.html
index eec028e90..f5bc2199f 100644
--- a/test/data/test.html
+++ b/test/data/test.html
@@ -3,5 +3,5 @@ html text<br/>
testFoo = "foo"; jQuery('#foo').html('foo');
ok( true, "test.html executed" );
/* ]]> */</script>
-<script src="data/test.js"></script>
+<script src="data/testbar.php"></script>
blabla
diff --git a/test/data/test.php b/test/data/test.php
index 3d08f3253..d93dafad8 100644
--- a/test/data/test.php
+++ b/test/data/test.php
@@ -3,5 +3,5 @@ html text<br/>
testFoo = "foo"; jQuery('#foo').html('foo');
ok( true, "test.php executed" );
/* ]]> */</script>
-<script src="data/test.js?<?php srand(); echo time() . '' . rand(); ?>"></script>
-blabla \ No newline at end of file
+<script src="data/testbar.php?<?php srand(); echo time() . '' . rand(); ?>"></script>
+blabla
diff --git a/test/data/test.js b/test/data/testbar.php
index fb3395296..21aa6882b 100644
--- a/test/data/test.js
+++ b/test/data/testbar.php
@@ -1,3 +1,3 @@
this.testBar = "bar";
jQuery("#ap").html("bar");
-ok( true, "test.js executed");
+ok( true, "testbar.php executed");
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index 3a2ac11c4..8dd97405a 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -602,7 +602,7 @@ module( "ajax", {
ok( jQuery.get( url(target), success ), "get" );
ok( jQuery.post( url(target), success ), "post" );
- ok( jQuery.getScript( url("data/test.js"), success ), "script" );
+ ok( jQuery.getScript( url("data/testbar.php"), success ), "script" );
ok( jQuery.getJSON( url("data/json_obj.js"), success ), "json" );
ok( jQuery.ajax({
url: url( target ),
@@ -850,7 +850,7 @@ module( "ajax", {
setup: function() {
Globals.register("testBar");
},
- url: window.location.href.replace( /[^\/]*$/, "" ) + "data/test.js",
+ url: window.location.href.replace( /[^\/]*$/, "" ) + "data/testbar.php",
dataType: "script",
success: function() {
strictEqual( window["testBar"], "bar", "Script results returned (GET, no callback)" );
@@ -861,7 +861,7 @@ module( "ajax", {
setup: function() {
Globals.register("testBar");
},
- url: window.location.href.replace( /[^\/]*$/, "" ) + "data/test.js",
+ url: window.location.href.replace( /[^\/]*$/, "" ) + "data/testbar.php",
type: "POST",
dataType: "script",
success: function( data, status ) {
@@ -874,7 +874,7 @@ module( "ajax", {
setup: function() {
Globals.register("testBar");
},
- url: window.location.href.replace( /[^\/]*$/, "" ).replace( /^.*?\/\//, "//" ) + "data/test.js",
+ url: window.location.href.replace( /[^\/]*$/, "" ).replace( /^.*?\/\//, "//" ) + "data/testbar.php",
dataType: "script",
success: function() {
strictEqual( window["testBar"], "bar", "Script results returned (GET, no callback)" );
@@ -1776,7 +1776,7 @@ module( "ajax", {
asyncTest( "jQuery.getScript( String, Function ) - with callback", 2, function() {
Globals.register("testBar");
- jQuery.getScript( url("data/test.js"), function() {
+ jQuery.getScript( url("data/testbar.php"), function() {
strictEqual( window["testBar"], "bar", "Check if script was evaluated" );
start();
});
@@ -1784,12 +1784,12 @@ module( "ajax", {
asyncTest( "jQuery.getScript( String, Function ) - no callback", 1, function() {
Globals.register("testBar");
- jQuery.getScript( url("data/test.js") ).done( start );
+ jQuery.getScript( url("data/testbar.php") ).done( start );
});
asyncTest( "#8082 - jQuery.getScript( String, Function ) - source as responseText", 2, function() {
Globals.register("testBar");
- jQuery.getScript( url("data/test.js"), function( data, _, jqXHR ) {
+ jQuery.getScript( url("data/testbar.php"), function( data, _, jqXHR ) {
strictEqual( data, jqXHR.responseText, "Same-domain script requests returns the source of the script" );
start();
});
@@ -2017,7 +2017,9 @@ module( "ajax", {
strictEqual( data, "test%5Blength%5D=7&test%5Bfoo%5D=bar", "Check if a sub-object with a length param is serialized correctly" );
}
})
- ).always( start );
+ ).always(function() {
+ start();
+ });
});
asyncTest( "jQuery.post( String, Hash, Function ) - simple with xml", 4, function() {
@@ -2040,7 +2042,9 @@ module( "ajax", {
strictEqual( jQuery( "result", this ).text(), "3", "Check for XML" );
});
})
- ).always( start );
+ ).always(function() {
+ start();
+ });
});
//----------- jQuery.active
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index f403d8f8e..48d5f3987 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -2348,7 +2348,7 @@ test( "script evaluation (#11795)", function() {
if ( jQuery.ajax ) {
Globals.register("testBar");
- jQuery("#qunit-fixture").append( "<script src='" + url("data/test.js") + "'/>" );
+ jQuery("#qunit-fixture").append( "<script src='" + url("data/testbar.php") + "'/>" );
strictEqual( window["testBar"], "bar", "Global script evaluation" );
} else {
ok( true, "No jQuery.ajax" );