add drawing tests to casper

This commit is contained in:
jdescottes
2014-08-22 00:37:35 +02:00
parent 1955d3f8f5
commit 56b1f421bc
15 changed files with 341 additions and 24 deletions

View File

@@ -0,0 +1,42 @@
(function () {
var tests = [
'SimplePenDrawing1.json',
'ComplexDrawing1.json',
'ComplexDrawing2.json'
];
var baseUrl = casper.cli.get('baseUrl')+"?debug";
var resultSelector = '#drawing-test-result';
casper.start();
var runTest = function (index) {
var test = 'integration/casperjs/drawing-records/' + tests[index];
casper.open(baseUrl + "&test-run=" + test);
casper.then(function () {
this.echo('Running test : ' + test);
this.wait(casper.cli.get('delay'));
});
casper.then(function () {
this.echo('Waiting for test result : ' + resultSelector);
this.waitForSelector(resultSelector, function() {
var result = this.getHTML(resultSelector);
this.echo('Test finished : ' + result);
this.test.assertEquals(result, 'OK');
}, 60*1000);
})
.run(function () {
if (tests[index+1]) {
runTest(index+1);
} else {
this.test.done();
}
});
};
runTest(0);
})();