efbd68efef
http://eslint.org/docs/rules/comma-dangle http://eslint.org/docs/rules/object-curly-spacing Given that we currently have quite inconsistent object formatting, fixing this in *one* big patch probably wouldn't be feasible (since I cannot imagine anyone wanting to review that); hence I've opted to try and do this piecewise instead. Please note: This patch was created automatically, using the ESLint `--fix` command line option. In a couple of places this caused lines to become too long, and I've fixed those manually; please refer to the interdiff below for the only hand-edits in this patch. ```diff diff --git a/test/chromium/test-telemetry.js b/test/chromium/test-telemetry.js index cc412a31..2e5bdfa1 100755 --- a/test/chromium/test-telemetry.js +++ b/test/chromium/test-telemetry.js @@ -324,7 +324,7 @@ var tests = [ var window = createExtensionGlobal(); telemetryScript.runInNewContext(window); window.chrome.runtime.getManifest = function() { - return { version: '1.0.1', }; + return { version: '1.0.1', }; }; window.Date.test_now_value += 12 * 36E5; telemetryScript.runInNewContext(window); diff --git a/test/unit/api_spec.js b/test/unit/api_spec.js index 1f00747a..f22988e7 100644 --- a/test/unit/api_spec.js +++ b/test/unit/api_spec.js @@ -503,8 +503,9 @@ describe('api', function() { it('gets destinations, from /Dests dictionary', function(done) { var promise = doc.getDestinations(); promise.then(function(data) { - expect(data).toEqual({ chapter1: [{ gen: 0, num: 17, }, { name: 'XYZ', }, - 0, 841.89, null], }); + expect(data).toEqual({ + chapter1: [{ gen: 0, num: 17, }, { name: 'XYZ', }, 0, 841.89, null], + }); done(); }).catch(function (reason) { done.fail(reason); diff --git a/test/unit/function_spec.js b/test/unit/function_spec.js index 66441212..62127eb9 100644 --- a/test/unit/function_spec.js +++ b/test/unit/function_spec.js @@ -492,9 +492,11 @@ describe('function', function() { it('check compiled mul', function() { check([0.25, 0.5, 'mul'], [], [0, 1], [{ input: [], output: [0.125], }]); check([0, 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0], }]); - check([0.5, 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0.125], }]); + check([0.5, 'mul'], [0, 1], [0, 1], + [{ input: [0.25], output: [0.125], }]); check([1, 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0.25], }]); - check([0, 'exch', 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0], }]); + check([0, 'exch', 'mul'], [0, 1], [0, 1], + [{ input: [0.25], output: [0], }]); check([0.5, 'exch', 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0.125], }]); check([1, 'exch', 'mul'], [0, 1], [0, 1], ```
321 lines
11 KiB
JavaScript
321 lines
11 KiB
JavaScript
/* Copyright 2017 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Dict, Name } from '../../src/core/primitives';
|
|
import { OperatorList, PartialEvaluator } from '../../src/core/evaluator';
|
|
import { Stream, StringStream } from '../../src/core/stream';
|
|
import { OPS } from '../../src/shared/util';
|
|
import { WorkerTask } from '../../src/core/worker';
|
|
|
|
describe('evaluator', function() {
|
|
function XrefMock(queue) {
|
|
this.queue = queue || [];
|
|
}
|
|
XrefMock.prototype = {
|
|
fetchIfRef() {
|
|
return this.queue.shift();
|
|
},
|
|
};
|
|
function HandlerMock() {
|
|
this.inputs = [];
|
|
}
|
|
HandlerMock.prototype = {
|
|
send(name, data) {
|
|
this.inputs.push({ name, data, });
|
|
},
|
|
};
|
|
function ResourcesMock() { }
|
|
ResourcesMock.prototype = {
|
|
get(name) {
|
|
return this[name];
|
|
},
|
|
};
|
|
|
|
function PdfManagerMock() { }
|
|
|
|
function runOperatorListCheck(evaluator, stream, resources, callback) {
|
|
var result = new OperatorList();
|
|
var task = new WorkerTask('OperatorListCheck');
|
|
evaluator.getOperatorList({
|
|
stream,
|
|
task,
|
|
resources,
|
|
operatorList: result,
|
|
}).then(function() {
|
|
callback(result);
|
|
});
|
|
}
|
|
|
|
var partialEvaluator;
|
|
|
|
beforeAll(function(done) {
|
|
partialEvaluator = new PartialEvaluator({
|
|
pdfManager: new PdfManagerMock(),
|
|
xref: new XrefMock(),
|
|
handler: new HandlerMock(),
|
|
pageIndex: 0,
|
|
});
|
|
done();
|
|
});
|
|
|
|
afterAll(function() {
|
|
partialEvaluator = null;
|
|
});
|
|
|
|
describe('splitCombinedOperations', function() {
|
|
it('should reject unknown operations', function(done) {
|
|
var stream = new StringStream('fTT');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function(result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(1);
|
|
expect(result.fnArray[0]).toEqual(OPS.fill);
|
|
expect(result.argsArray[0]).toEqual(null);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should handle one operations', function(done) {
|
|
var stream = new StringStream('Q');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function(result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(1);
|
|
expect(result.fnArray[0]).toEqual(OPS.restore);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should handle two glued operations', function(done) {
|
|
var resources = new ResourcesMock();
|
|
resources.Res1 = {};
|
|
var stream = new StringStream('/Res1 DoQ');
|
|
runOperatorListCheck(partialEvaluator, stream, resources,
|
|
function(result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(2);
|
|
expect(result.fnArray[0]).toEqual(OPS.paintXObject);
|
|
expect(result.fnArray[1]).toEqual(OPS.restore);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should handle tree glued operations', function(done) {
|
|
var stream = new StringStream('fff');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(3);
|
|
expect(result.fnArray[0]).toEqual(OPS.fill);
|
|
expect(result.fnArray[1]).toEqual(OPS.fill);
|
|
expect(result.fnArray[2]).toEqual(OPS.fill);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should handle three glued operations #2', function(done) {
|
|
var resources = new ResourcesMock();
|
|
resources.Res1 = {};
|
|
var stream = new StringStream('B*Bf*');
|
|
runOperatorListCheck(partialEvaluator, stream, resources,
|
|
function(result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(3);
|
|
expect(result.fnArray[0]).toEqual(OPS.eoFillStroke);
|
|
expect(result.fnArray[1]).toEqual(OPS.fillStroke);
|
|
expect(result.fnArray[2]).toEqual(OPS.eoFill);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should handle glued operations and operands', function(done) {
|
|
var stream = new StringStream('f5 Ts');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(2);
|
|
expect(result.fnArray[0]).toEqual(OPS.fill);
|
|
expect(result.fnArray[1]).toEqual(OPS.setTextRise);
|
|
expect(result.argsArray.length).toEqual(2);
|
|
expect(result.argsArray[1].length).toEqual(1);
|
|
expect(result.argsArray[1][0]).toEqual(5);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should handle glued operations and literals', function(done) {
|
|
var stream = new StringStream('trueifalserinulln');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(3);
|
|
expect(result.fnArray[0]).toEqual(OPS.setFlatness);
|
|
expect(result.fnArray[1]).toEqual(OPS.setRenderingIntent);
|
|
expect(result.fnArray[2]).toEqual(OPS.endPath);
|
|
expect(result.argsArray.length).toEqual(3);
|
|
expect(result.argsArray[0].length).toEqual(1);
|
|
expect(result.argsArray[0][0]).toEqual(true);
|
|
expect(result.argsArray[1].length).toEqual(1);
|
|
expect(result.argsArray[1][0]).toEqual(false);
|
|
expect(result.argsArray[2]).toEqual(null);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('validateNumberOfArgs', function() {
|
|
it('should execute if correct number of arguments', function(done) {
|
|
var stream = new StringStream('5 1 d0');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(result.argsArray[0][0]).toEqual(5);
|
|
expect(result.argsArray[0][1]).toEqual(1);
|
|
expect(result.fnArray[0]).toEqual(OPS.setCharWidth);
|
|
done();
|
|
});
|
|
});
|
|
it('should execute if too many arguments', function(done) {
|
|
var stream = new StringStream('5 1 4 d0');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(result.argsArray[0][0]).toEqual(1);
|
|
expect(result.argsArray[0][1]).toEqual(4);
|
|
expect(result.fnArray[0]).toEqual(OPS.setCharWidth);
|
|
done();
|
|
});
|
|
});
|
|
it('should execute if nested commands', function(done) {
|
|
var stream = new StringStream('/F2 /GS2 gs 5.711 Tf');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(result.fnArray.length).toEqual(3);
|
|
expect(result.fnArray[0]).toEqual(OPS.setGState);
|
|
expect(result.fnArray[1]).toEqual(OPS.dependency);
|
|
expect(result.fnArray[2]).toEqual(OPS.setFont);
|
|
expect(result.argsArray.length).toEqual(3);
|
|
expect(result.argsArray[0].length).toEqual(1);
|
|
expect(result.argsArray[1].length).toEqual(1);
|
|
expect(result.argsArray[2].length).toEqual(2);
|
|
done();
|
|
});
|
|
});
|
|
it('should skip if too few arguments', function(done) {
|
|
var stream = new StringStream('5 d0');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(result.argsArray).toEqual([]);
|
|
expect(result.fnArray).toEqual([]);
|
|
done();
|
|
});
|
|
});
|
|
it('should close opened saves', function(done) {
|
|
var stream = new StringStream('qq');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(4);
|
|
expect(result.fnArray[0]).toEqual(OPS.save);
|
|
expect(result.fnArray[1]).toEqual(OPS.save);
|
|
expect(result.fnArray[2]).toEqual(OPS.restore);
|
|
expect(result.fnArray[3]).toEqual(OPS.restore);
|
|
done();
|
|
});
|
|
});
|
|
it('should skip paintXObject if name is missing', function(done) {
|
|
var stream = new StringStream('/ Do');
|
|
runOperatorListCheck(partialEvaluator, stream, new ResourcesMock(),
|
|
function (result) {
|
|
expect(result.argsArray).toEqual([]);
|
|
expect(result.fnArray).toEqual([]);
|
|
done();
|
|
});
|
|
});
|
|
it('should skip paintXObject if subtype is PS', function(done) {
|
|
var xobjStreamDict = new Dict();
|
|
xobjStreamDict.set('Subtype', Name.get('PS'));
|
|
var xobjStream = new Stream([], 0, 0, xobjStreamDict);
|
|
|
|
var xobjs = new Dict();
|
|
xobjs.set('Res1', xobjStream);
|
|
|
|
var resources = new Dict();
|
|
resources.set('XObject', xobjs);
|
|
|
|
var stream = new StringStream('/Res1 Do');
|
|
runOperatorListCheck(partialEvaluator, stream, resources,
|
|
function(result) {
|
|
expect(result.argsArray).toEqual([]);
|
|
expect(result.fnArray).toEqual([]);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('thread control', function() {
|
|
it('should abort operator list parsing', function (done) {
|
|
var stream = new StringStream('qqQQ');
|
|
var resources = new ResourcesMock();
|
|
var result = new OperatorList();
|
|
var task = new WorkerTask('OperatorListAbort');
|
|
task.terminate();
|
|
partialEvaluator.getOperatorList({
|
|
stream,
|
|
task,
|
|
resources,
|
|
operatorList: result,
|
|
}).catch(function() {
|
|
expect(!!result.fnArray && !!result.argsArray).toEqual(true);
|
|
expect(result.fnArray.length).toEqual(0);
|
|
done();
|
|
});
|
|
});
|
|
it('should abort text parsing parsing', function (done) {
|
|
var resources = new ResourcesMock();
|
|
var stream = new StringStream('qqQQ');
|
|
var task = new WorkerTask('TextContentAbort');
|
|
task.terminate();
|
|
partialEvaluator.getTextContent({
|
|
stream,
|
|
task,
|
|
resources,
|
|
}).catch(function() {
|
|
expect(true).toEqual(true);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('operator list', function () {
|
|
function MessageHandlerMock() { }
|
|
MessageHandlerMock.prototype = {
|
|
send() { },
|
|
};
|
|
|
|
it('should get correct total length after flushing', function () {
|
|
var operatorList = new OperatorList(null, new MessageHandlerMock());
|
|
operatorList.addOp(OPS.save, null);
|
|
operatorList.addOp(OPS.restore, null);
|
|
|
|
expect(operatorList.totalLength).toEqual(2);
|
|
expect(operatorList.length).toEqual(2);
|
|
|
|
operatorList.flush();
|
|
|
|
expect(operatorList.totalLength).toEqual(2);
|
|
expect(operatorList.length).toEqual(0);
|
|
});
|
|
});
|
|
});
|