From 97ea47492fe13ddb1108045c244d5af6570ace92 Mon Sep 17 00:00:00 2001 From: Jörn Zaefferer Date: Mon, 4 Sep 2006 04:51:57 +0000 Subject: Improved test suite to reset fixture after each test, added selects to test ':selected'; Added docs for index(obj); Modified is(expr) to return false for an invalid expression, changed docs, too; Added lots of testcases; Changed filename of testfiles: adding leading zeros --- build/test/index.html | 36 ++++++++++---- build/test/js/test.js | 132 +++++++++++++++++++++++++++++++++----------------- build/test/test.js | 11 +++-- 3 files changed, 120 insertions(+), 59 deletions(-) (limited to 'build/test') diff --git a/build/test/index.html b/build/test/index.html index dad650224..7d10fc77f 100644 --- a/build/test/index.html +++ b/build/test/index.html @@ -4,7 +4,7 @@ @@ -24,15 +24,12 @@

-

Everything inside the red border is inside a div with - id="foo".

-

This is a normal link: - Yahoo

-

This link has class="blog": - Simon Willison's Weblog

+

Everything inside the red border is inside a div with id="foo".

+

This is a normal link: Yahoo

+

This link has class="blog": Simon Willison's Weblog

-
-

Try them out:

+ +

Try them out:

    @@ -45,7 +42,26 @@ - + + + + +
    diff --git a/build/test/js/test.js b/build/test/js/test.js index 44a405fdb..82469f720 100644 --- a/build/test/js/test.js +++ b/build/test/js/test.js @@ -1,53 +1,97 @@ -function runTests(files) { - runTest( files, 0 ); +var queue = []; +var blocking = false; + +function reset() { + synchronize(function() { + blocking = true; + $.get('index.html', function(content) { + var div = $(document.createElement('div')).html(content) + // search for main div + .find('[@id=main]').html(); + $('#main').html(div); + blocking = false; + process(); + }); + }); } -function runTest( files, num ) { - $.get(files[num],function(js){ - js = js.replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&"); +function synchronize(callback) { + queue[queue.length] = callback; + if(!blocking) { + process(); + } +} - try { - eval(js); - } catch(e) { - Test.push( [ false, "Died on test #" + Test.length + ": " + e ] ); - } +function process() { + while(queue.length && !blocking) { + var call = queue[0]; + queue = queue.slice(1); + call(); + } +} - var good = 0, bad = 0; - var ol = document.createElement("ol"); +function runTests(files) { + var startTime = new Date(); + for( var i=0; i < files.length; i++) { + runTest( files, i ); + reset(); + } + synchronize(function() { + var runTime = new Date() - startTime; + $('body').append('
    Tests completed in ' + runTime + ' milliseconds.'); + }); +} - var li = "", state = "pass"; - for ( var i = 0; i < Test.length; i++ ) { +function runTest( files, num ) { + synchronize(function() { + blocking = true; + $.get(files[num],function(js){ + js = js.replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&"); + + try { + eval(js); + } catch(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++ ) { + 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 = 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] + " (" + bad + ", " + good + ", " + Test.length + ")"; - 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 ); - - Test = []; - if ( ++num < files.length ) runTest( files, num ); + li.className = state; + + var b = document.createElement("b"); + b.innerHTML = files[num] + " (" + bad + ", " + good + ", " + Test.length + ")"; + 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 ); + + Test = []; + blocking = false; + process(); + }); }); } diff --git a/build/test/test.js b/build/test/test.js index 6aeeb6b97..96773ff7f 100644 --- a/build/test/test.js +++ b/build/test/test.js @@ -13,11 +13,12 @@ var count = 1; for ( var i = 0; i < jq.length; i++ ) { if ( jq[i].tests.length > 0 ) { var name = count + "-" + jq[i].name; - - var myFile = testFile - .replace( /{TITLE}/g, jq[i].name ) - .replace( /{NUM}/g, jq[i].tests.length ) - .replace( /{TESTS}/g, jq[i].tests.join("\n") ); + if(count < 100) { + name = "0" + name; + } + if(count < 10) { + name = "0" + name; + } var fileName = "tests/" + name + ".js"; -- cgit v1.2.3