pdf.js/test/driver.js

321 lines
8.3 KiB
JavaScript
Raw Normal View History

2011-09-13 02:37:33 +09:00
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
/*
* A Test Driver for PDF.js
*/
'use strict';
// Disable worker support for running test as
// https://github.com/mozilla/pdf.js/pull/764#issuecomment-2638944
// "firefox-bin: Fatal IO error 12 (Cannot allocate memory) on X server :1."
2012-04-14 06:04:57 +09:00
// PDFJS.disableWorker = true;
var appPath, browser, canvas, currentTaskIdx, manifest, stdout;
2011-09-16 05:32:44 +09:00
var inFlightRequests = 0;
function queryParams() {
2011-08-17 04:17:46 +09:00
var qs = window.location.search.substring(1);
var kvs = qs.split('&');
var params = { };
for (var i = 0; i < kvs.length; ++i) {
var kv = kvs[i].split('=');
params[unescape(kv[0])] = unescape(kv[1]);
}
return params;
}
function load() {
2011-08-17 04:17:46 +09:00
var params = queryParams();
browser = params.browser;
var manifestFile = params.manifestFile;
appPath = params.path;
canvas = document.createElement('canvas');
canvas.mozOpaque = true;
stdout = document.getElementById('stdout');
log('load...\n');
log('Harness thinks this browser is "' + browser + '" with path "' +
appPath + '"\n');
log('Fetching manifest "' + manifestFile + '"... ');
var r = new XMLHttpRequest();
r.open('GET', manifestFile, false);
r.onreadystatechange = function loadOnreadystatechange(e) {
2011-08-17 04:17:46 +09:00
if (r.readyState == 4) {
log('done\n');
manifest = JSON.parse(r.responseText);
2011-09-16 05:32:44 +09:00
currentTaskIdx = 0;
nextTask();
2011-08-17 04:17:46 +09:00
}
};
r.send(null);
}
function cleanup() {
2011-11-16 07:43:05 +09:00
// Clear out all the stylesheets since a new one is created for each font.
while (document.styleSheets.length > 0) {
var styleSheet = document.styleSheets[0];
2011-11-16 08:45:37 +09:00
while (styleSheet.cssRules.length > 0)
styleSheet.deleteRule(0);
var ownerNode = styleSheet.ownerNode;
ownerNode.parentNode.removeChild(ownerNode);
}
var guard = document.getElementById('content-end');
var body = document.body;
2011-09-23 20:58:54 +09:00
while (body.lastChild !== guard)
body.removeChild(body.lastChild);
2011-11-16 07:43:05 +09:00
// Wipe out the link to the pdfdoc so it can be GC'ed.
for (var i = 0; i < manifest.length; i++) {
if (manifest[i].pdfDoc) {
manifest[i].pdfDoc.destroy();
2011-11-16 08:45:37 +09:00
delete manifest[i].pdfDoc;
2011-11-16 07:43:05 +09:00
}
}
}
2012-01-10 11:37:39 +09:00
function exceptionToString(e) {
if (typeof e !== 'object')
return String(e);
if (!('message' in e))
return JSON.stringify(e);
return e.message + ('stack' in e ? ' at ' + e.stack.split('\n')[0] : '');
}
2012-06-24 04:48:33 +09:00
function expandUrl(url) {
return combineUrl(window.location.href, url);
}
function nextTask() {
cleanup();
2011-08-17 04:17:46 +09:00
if (currentTaskIdx == manifest.length) {
2011-10-20 03:14:13 +09:00
done();
return;
2011-08-17 04:17:46 +09:00
}
var task = manifest[currentTaskIdx];
task.round = 0;
log('Loading file "' + task.file + '"\n');
2012-06-24 04:48:33 +09:00
getPdf(expandUrl(task.file), function nextTaskGetPdf(data) {
2011-08-17 04:17:46 +09:00
var failure;
2012-04-12 10:05:43 +09:00
function continuation() {
task.pageNum = task.firstPage || 1;
nextPage(task, failure);
}
try {
2012-04-12 10:05:43 +09:00
var promise = PDFJS.getDocument(data);
promise.then(function(doc) {
task.pdfDoc = doc;
continuation();
}, function(e) {
failure = 'load PDF doc : ' + e;
continuation();
});
return;
} catch (e) {
2012-01-10 11:37:39 +09:00
failure = 'load PDF doc : ' + exceptionToString(e);
}
2012-04-12 10:05:43 +09:00
continuation();
});
}
function isLastPage(task) {
2011-10-20 03:14:13 +09:00
var limit = task.pageLimit || 0;
if (!limit || limit > task.pdfDoc.numPages)
limit = task.pdfDoc.numPages;
return task.pageNum > limit;
}
function canvasToDataURL() {
return canvas.toDataURL('image/png');
}
function nextPage(task, loadError) {
var failure = loadError || '';
if (!task.pdfDoc) {
sendTaskResult(canvasToDataURL(), task, failure);
log('done' + (failure ? ' (failed !: ' + failure + ')' : '') + '\n');
2011-09-16 05:32:44 +09:00
++currentTaskIdx;
nextTask();
return;
}
2011-08-17 04:17:46 +09:00
if (isLastPage(task)) {
if (++task.round < task.rounds) {
log(' Round ' + (1 + task.round) + '\n');
task.pageNum = 1;
} else {
2011-09-16 05:32:44 +09:00
++currentTaskIdx;
nextTask();
2011-08-17 04:17:46 +09:00
return;
}
2011-08-17 04:17:46 +09:00
}
if (task.skipPages && task.skipPages.indexOf(task.pageNum) >= 0) {
log(' skipping page ' + task.pageNum + '/' + task.pdfDoc.numPages +
'... ');
2011-12-08 13:07:34 +09:00
// empty the canvas
canvas.width = 1;
canvas.height = 1;
clear(canvas.getContext('2d'));
snapshotCurrentPage(task, '');
return;
}
2011-08-17 04:17:46 +09:00
var page = null;
2011-08-17 04:17:46 +09:00
if (!failure) {
try {
log(' loading page ' + task.pageNum + '/' + task.pdfDoc.numPages +
'... ');
var ctx = canvas.getContext('2d');
2012-04-12 10:05:43 +09:00
task.pdfDoc.getPage(task.pageNum).then(function(page) {
var pdfToCssUnitsCoef = 96.0 / 72.0;
2012-04-13 00:23:38 +09:00
var viewport = page.getViewport(pdfToCssUnitsCoef);
canvas.width = viewport.width;
canvas.height = viewport.height;
2012-04-12 10:05:43 +09:00
clear(ctx);
// using the text layer builder that does nothing to test
// text layer creation operations
var textLayerBuilder = {
beginLayout: function nullTextLayerBuilderBeginLayout() {},
endLayout: function nullTextLayerBuilderEndLayout() {},
appendText: function nullTextLayerBuilderAppendText(text, fontName,
fontSize) {}
};
var renderContext = {
canvasContext: ctx,
textLayer: textLayerBuilder,
2012-04-13 01:59:17 +09:00
viewport: viewport
2012-04-12 10:05:43 +09:00
};
var completeRender = (function(error) {
2012-04-17 04:49:55 +09:00
page.destroy();
snapshotCurrentPage(task, error);
});
page.render(renderContext).then(function() {
completeRender(false);
},
2012-04-12 10:05:43 +09:00
function(error) {
completeRender('render : ' + error);
2012-04-12 10:05:43 +09:00
});
},
function(error) {
snapshotCurrentPage(task, 'render : ' + error);
});
2011-08-17 04:17:46 +09:00
} catch (e) {
2012-01-10 11:37:39 +09:00
failure = 'page setup : ' + exceptionToString(e);
2012-04-12 10:05:43 +09:00
snapshotCurrentPage(task, failure);
}
2011-08-17 04:17:46 +09:00
}
}
2011-09-16 05:32:44 +09:00
function snapshotCurrentPage(task, failure) {
2011-08-17 04:17:46 +09:00
log('done, snapshotting... ');
sendTaskResult(canvasToDataURL(), task, failure);
2011-08-17 04:17:46 +09:00
log('done' + (failure ? ' (failed !: ' + failure + ')' : '') + '\n');
2011-08-17 04:17:46 +09:00
// Set up the next request
var backoff = (inFlightRequests > 0) ? inFlightRequests * 10 : 0;
setTimeout(
function snapshotCurrentPageSetTimeout() {
2011-09-16 05:32:44 +09:00
++task.pageNum;
nextPage(task);
},
backoff
);
}
function sendQuitRequest() {
var r = new XMLHttpRequest();
r.open('POST', '/tellMeToQuit?path=' + escape(appPath), false);
r.send(null);
}
function quitApp() {
log('Done !');
document.body.innerHTML = 'Tests are finished. <h1>CLOSE ME!</h1>' +
document.body.innerHTML;
if (window.SpecialPowers) {
SpecialPowers.quitApplication();
} else {
sendQuitRequest();
window.close();
}
}
function done() {
if (inFlightRequests > 0) {
document.getElementById('inFlightCount').innerHTML = inFlightRequests;
setTimeout(done, 100);
} else {
setTimeout(quitApp, 100);
}
}
function sendTaskResult(snapshot, task, failure, result) {
// Optional result argument is for retrying XHR requests - see below
if (!result) {
result = JSON.stringify({
browser: browser,
id: task.id,
numPages: task.pdfDoc ?
(task.pageLimit || task.pdfDoc.numPages) : 0,
failure: failure,
file: task.file,
round: task.round,
page: task.pageNum,
snapshot: snapshot
});
}
var r = new XMLHttpRequest();
// (The POST URI is ignored atm.)
r.open('POST', '/submit_task_results', true);
r.setRequestHeader('Content-Type', 'application/json');
r.onreadystatechange = function sendTaskResultOnreadystatechange(e) {
if (r.readyState == 4) {
inFlightRequests--;
2012-04-04 07:19:03 +09:00
// Retry until successful
if (r.status !== 200)
sendTaskResult(null, null, null, result);
}
2011-09-16 05:32:44 +09:00
};
document.getElementById('inFlightCount').innerHTML = inFlightRequests++;
r.send(result);
}
function clear(ctx) {
ctx.save();
ctx.fillStyle = 'rgb(255, 255, 255)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.restore();
}
/* Auto-scroll if the scrollbar is near the bottom, otherwise do nothing. */
function checkScrolling() {
if ((stdout.scrollHeight - stdout.scrollTop) <= stdout.offsetHeight) {
stdout.scrollTop = stdout.scrollHeight;
}
}
function log(str) {
2011-08-26 09:14:51 +09:00
if (stdout.insertAdjacentHTML)
stdout.insertAdjacentHTML('BeforeEnd', str);
else
stdout.innerHTML += str;
2011-08-25 01:11:38 +09:00
if (str.lastIndexOf('\n') >= 0)
checkScrolling();
}