aboutsummaryrefslogtreecommitdiffstats
path: root/build/test
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-09-16 12:19:56 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-09-16 12:19:56 +0000
commitf6ecc6a95c4046f53d1f0d75af213305c2bd7ea7 (patch)
tree0b9a1bed6a57446df6ff3941bbf85211fc26542d /build/test
parentc792f325142ad928a1bf3263b5958cc01ea1a936 (diff)
downloadjquery-f6ecc6a95c4046f53d1f0d75af213305c2bd7ea7.tar.gz
jquery-f6ecc6a95c4046f53d1f0d75af213305c2bd7ea7.zip
Refactored test suite: All tests are now compiled into one file, runs much faster and does not require ugly synchronization; Changed build.xml (tested) and Makefile (not tested!); Replaced calls to cmpOK() with ok(), removed cmpOK(); Tests can now call reset() to be able to always test against the unmodified test setup
Diffstat (limited to 'build/test')
-rw-r--r--build/test/index.html2
-rw-r--r--build/test/js/test.js188
-rw-r--r--build/test/test.js48
3 files changed, 104 insertions, 134 deletions
diff --git a/build/test/index.html b/build/test/index.html
index e05c176b8..31bf43d32 100644
--- a/build/test/index.html
+++ b/build/test/index.html
@@ -4,7 +4,7 @@
<script type="text/javascript" src="js/test.js"></script>
<script>
$(document).ready(function(){
- runTests([{FILES}]);
+ runTest('tests.js');
});
</script>
<style>.pass { color: green; } .fail { color: red; } #tests ol { display: none; }</style>
diff --git a/build/test/js/test.js b/build/test/js/test.js
index d478b6367..ec6f9c07e 100644
--- a/build/test/js/test.js
+++ b/build/test/js/test.js
@@ -1,143 +1,121 @@
-var queue = [];
-var blocking = false;
-
-function reset(fixture) {
- synchronize(function() {
- document.getElementById('main').innerHTML = fixture;
- });
-}
-
-function synchronize(callback) {
- queue[queue.length] = callback;
- if(!blocking) {
- process();
- }
-}
-
-function process() {
- while(queue.length && !blocking) {
- var call = queue[0];
- queue = queue.slice(1);
- call();
- }
-}
-
-function runTests(files) {
- var fixture = document.getElementById('main').innerHTML;
+function runTest(file) {
var startTime = new Date();
- for( var i=0; i < files.length; i++) {
- runTest( files, i );
- reset(fixture);
- }
- synchronize(function() {
+ var Test;
+ var stats = {
+ all: 0,
+ bad: 0
+ };
+ var fixture = document.getElementById('main').innerHTML;
+ $.get(file,function(js) {
+ js = js.replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&amp;/g, "&");
+ eval(js);
var runTime = new Date() - startTime;
- // lets use jQuery for this, its not important anyway
- $('body').append('<br/>Tests completed in ' + runTime + ' milliseconds.');
+ var result = document.createElement("div");
+ result.innerHTML = 'Tests completed in ' + runTime + ' milliseconds.<br/>' +
+ stats.bad + ' tests of ' + stats.all + ' failed.';
+ document.getElementsByTagName("body")[0].appendChild(result);
});
-}
-
-function runTest( files, num ) {
- synchronize(function() {
- blocking = true;
- $.get(files[num],function(js) {
- evaluateTest(files, num, js);
- });
- });
-}
-
-function evaluateTest(files, num, js) {
- var Test = [];
- js = js.replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&amp;/g, "&");
- try {
- eval(js);
- } catch(e) {
- if(typeof console != "undefined") {
- console.error(e);
- console.debug(js);
+ function test(name, callback) {
+ Test = [];
+ try {
+ callback();
+ } catch(e) {
+ if(typeof console != "undefined") {
+ console.error("Test " + name + " died, exception and test follows");
+ console.error(e);
+ console.warn(callback.toString());
+ }
+ Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
}
- Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
- }
-
- var good = 0, bad = 0;
- var ol = document.createElement("ol");
-
- var li = "", state = "pass";
- for ( var i = 0; i < Test.length; i++ ) {
+ reset();
+
+ var good = 0, bad = 0;
+ var ol = document.createElement("ol");
+
+ var li = "", state = "pass";
+ for ( var i = 0; i < Test.length; i++ ) {
+ var li = document.createElement("li");
+ li.className = Test[i][0] ? "pass" : "fail";
+ li.innerHTML = Test[i][1];
+ ol.appendChild( li );
+
+ stats.all++;
+ if ( !Test[i][0] ) {
+ state = "fail";
+ bad++;
+ stats.bad++;
+ } else good++;
+ }
+
var li = document.createElement("li");
- li.className = Test[i][0] ? "pass" : "fail";
- li.innerHTML = Test[i][1];
- ol.appendChild( li );
-
- if ( !Test[i][0] ) {
- state = "fail";
- bad++;
- } else good++;
- }
-
- var li = document.createElement("li");
- li.className = state;
-
- var b = document.createElement("b");
- b.innerHTML = files[num] + " <b style='color:black;'>(<b class='fail'>" + bad + "</b>, <b class='pass'>" + good + "</b>, " + Test.length + ")</b>";
- b.onclick = function(){
- var n = this.nextSibling;
- if ( jQuery.css( n, "display" ) == "none" )
- n.style.display = "block";
- else
- n.style.display = "none";
- };
- li.appendChild( b );
-
- li.appendChild( ol );
-
- document.getElementById("tests").appendChild( li );
-
- blocking = false;
- process();
+ li.className = state;
- function ok(a, msg) {
- Test.push( [ !!a, msg ] );
+ var b = document.createElement("b");
+ b.innerHTML = name + " <b style='color:black;'>(<b class='fail'>" + bad + "</b>, <b class='pass'>" + good + "</b>, " + Test.length + ")</b>";
+ b.onclick = function(){
+ var n = this.nextSibling;
+ if ( jQuery.css( n, "display" ) == "none" )
+ n.style.display = "block";
+ else
+ n.style.display = "none";
+ };
+ li.appendChild( b );
+ li.appendChild( ol );
+
+ document.getElementById("tests").appendChild( li );
}
- function cmpOK( a, c, b, msg ) {
- var res;
- eval( "res = (a " + c + " b)" );
- Test.push( [ res, msg ] );
+ function reset() {
+ document.getElementById('main').innerHTML = fixture;
}
+ /**
+ * Asserts true.
+ * @example ok( $("a").size() > 5, "There must be at least 5 anchors" );
+ */
+ function ok(a, msg) {
+ Test.push( [ !!a, msg ] );
+ }
+
+ /**
+ * Asserts that two arrays are the same
+ */
function isSet(a, b, msg) {
var ret = true;
-
if ( a && b && a.length == b.length ) {
for ( var i in a )
if ( a[i] != b[i] )
ret = false;
} else
ret = false;
-
if ( !ret && console )
console.log( msg, a, b );
-
Test.push( [ ret, msg ] );
}
+ /**
+ * Returns an array of elements with the given IDs, eg.
+ * @example q("main", "foo", "bar")
+ * @result [<div id="main">, <span id="foo">, <input id="bar">]
+ */
function q() {
var r = [];
-
for ( var i = 0; i < arguments.length; i++ )
r.push( document.getElementById( arguments[i] ) );
-
return r;
}
+ /**
+ * Asserts that a select matches the given IDs
+ * @example t("Check for something", "//[a]", ["foo", "baar"]);
+ * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'baar'
+ */
function t(a,b,c) {
var f = jQuery.find(b);
-
var s = "";
for ( var i = 0; i < f.length; i++ )
s += (s && ",") + '"' + f[i].id + '"';
-
isSet(f, q.apply(q,c), a + " (" + b + ")");
}
-} \ No newline at end of file
+}
diff --git a/build/test/test.js b/build/test/test.js
index 96773ff7f..6553d9c10 100644
--- a/build/test/test.js
+++ b/build/test/test.js
@@ -1,39 +1,31 @@
load( "build/js/writeFile.js", "build/js/parse.js" );
-var dir = arguments[1];
-
-var indexFile = readFile( "build/test/index.html" );
-var testFile = readFile( "build/test/test.html" );
+function addParams(name, params) {
+ if(params.length > 0) {
+ name += "(";
+ for ( var i = 0; i < params.length; i++) {
+ name += params[i].type + ", ";
+ }
+ return name.substring(0, name.length - 2) + ")";
+ } else {
+ return name + "()";
+ }
+}
+function addTestWrapper(name, test) {
+ return 'test("' + name + '", function() {\n' + test + '\n});';
+}
+var dir = arguments[1];
var jq = parse( readFile( arguments[0] ) );
-var fileList = [];
-var count = 1;
+var testFile = [];
for ( var i = 0; i < jq.length; i++ ) {
if ( jq[i].tests.length > 0 ) {
- var name = count + "-" + jq[i].name;
- if(count < 100) {
- name = "0" + name;
- }
- if(count < 10) {
- name = "0" + name;
- }
-
- var fileName = "tests/" + name + ".js";
-
- writeFile( dir + "/" + fileName, jq[i].tests.join("\n") );
-
- fileList.push( fileName );
-
- count++;
+ var method = jq[i];
+ var name = addParams(method.name, method.params);
+ testFile[testFile.length] = addTestWrapper(name, method.tests.join("\n"));
}
}
-var fileString = "";
-for ( var i = 0; i < fileList.length; i++ ) {
- if ( fileString ) fileString += ", ";
- fileString += "'" + fileList[i] + "'";
-}
-
-writeFile( dir + "/index.html", indexFile.replace( /{FILES}/g, fileString ) );
+writeFile( dir + "/tests.js", testFile.join("\n") ); \ No newline at end of file