3

QUnit テストを ZombieJS に統合した人はいますか? スクリプトがあるので、「tests.html」ファイルを渡し、テストが完了するまでポーリングしてから、結果を読み取ります。私が PhantomJS でやっていることと同様で、完全に正常に動作します。ファントムとゾンビのパフォーマンスを比較したいと思います。また、すでに多くの Qunit テストが作成されているため、それらをダンプして、ゾンビ環境ですべてをゼロから書き直すことはしたくありません (そもそもそれを行うことにした場合:)

私が直面している問題は、テストが完了しないことです。そのため、Qunit は常に実行状態にあります。まだ詳細にデバッグしていませんが、明らかな何かが欠けていないことを確認したかっただけです。

var Browser = require("zombie");
var assert = require("assert");

// Load the page from localhost
browser = new Browser();

function waitFor(testFx, onReady, timeOutMillis) {
    var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 100000, //< Default Max Timout is 3s
        start = new Date().getTime(),
        condition = false,
        interval = setInterval(function() {
            if ( (new Date().getTime() - start < maxtimeOutMillis) && !condition ) {
                // If not time-out yet and condition not yet fulfilled
                condition = (typeof(testFx) === "string" ? eval(testFx) : testFx()); //< defensive code
            } else {
                if(!condition) {
                    // If condition still not fulfilled (timeout but condition is 'false')
                    console.log("'waitFor()' timeout");
                    process.exit(1);
                } else {
                    // Condition fulfilled (timeout and/or condition is 'true')
                    console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
                    typeof(onReady) === "string" ? eval(onReady) : onReady(); //< Do what it's supposed to do once the condition is fulfilled
                    clearInterval(interval); //< Stop this interval
                }
            }
        }, 100); //< repeat check every 250ms
};

browser.visit("tests.html", function () {

 waitFor(function(){
            return browser.evaluate(function(){
                var el = browser.document.getElementById('qunit-testresult');
                if (el && el.textContent.match('completed')) {
                    return true;
                }
                return false;
            });
        }, function(){
            var failedNum = browser.evaluate(function(){
                var el = browser.document.getElementById('qunit-testresult');
                console.log(el.textContent);
                try {
                    return el.getElementsByClassName('failed')[0].innerHTML;
                } catch (e) { }
                return 10000;
            });
            process.exit((parseInt(failedNum, 10) > 0) ? 1 : 0);
        });
});
4

0 に答える 0