Convert test/unit/parser_spec.js
to ES6 syntax
Moreover, disable `var` usage for this file.
This commit is contained in:
parent
7d3cb19571
commit
2ee299a62b
@ -12,6 +12,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
/* eslint no-var: error */
|
||||||
|
|
||||||
import { Lexer, Linearization } from '../../src/core/parser';
|
import { Lexer, Linearization } from '../../src/core/parser';
|
||||||
import { FormatError } from '../../src/shared/util';
|
import { FormatError } from '../../src/shared/util';
|
||||||
@ -21,65 +22,53 @@ import { StringStream } from '../../src/core/stream';
|
|||||||
describe('parser', function() {
|
describe('parser', function() {
|
||||||
describe('Lexer', function() {
|
describe('Lexer', function() {
|
||||||
it('should stop parsing numbers at the end of stream', function() {
|
it('should stop parsing numbers at the end of stream', function() {
|
||||||
var input = new StringStream('11.234');
|
const input = new StringStream('11.234');
|
||||||
var lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
var result = lexer.getNumber();
|
expect(lexer.getNumber()).toEqual(11.234);
|
||||||
|
|
||||||
expect(result).toEqual(11.234);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should parse PostScript numbers', function() {
|
it('should parse PostScript numbers', function() {
|
||||||
var numbers = ['-.002', '34.5', '-3.62', '123.6e10', '1E-5', '-1.', '0.0',
|
const numbers = ['-.002', '34.5', '-3.62', '123.6e10', '1E-5', '-1.',
|
||||||
'123', '-98', '43445', '0', '+17'];
|
'0.0', '123', '-98', '43445', '0', '+17'];
|
||||||
for (var i = 0, ii = numbers.length; i < ii; i++) {
|
for (const number of numbers) {
|
||||||
var num = numbers[i];
|
const input = new StringStream(number);
|
||||||
var input = new StringStream(num);
|
const lexer = new Lexer(input);
|
||||||
var lexer = new Lexer(input);
|
expect(lexer.getNumber()).toEqual(parseFloat(number));
|
||||||
var result = lexer.getNumber();
|
|
||||||
|
|
||||||
expect(result).toEqual(parseFloat(num));
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should ignore double negative before number', function() {
|
it('should ignore double negative before number', function() {
|
||||||
var input = new StringStream('--205.88');
|
const input = new StringStream('--205.88');
|
||||||
var lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
var result = lexer.getNumber();
|
expect(lexer.getNumber()).toEqual(-205.88);
|
||||||
|
|
||||||
expect(result).toEqual(-205.88);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should ignore minus signs in the middle of number', function() {
|
it('should ignore minus signs in the middle of number', function() {
|
||||||
var input = new StringStream('205--.88');
|
const input = new StringStream('205--.88');
|
||||||
var lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
var result = lexer.getNumber();
|
expect(lexer.getNumber()).toEqual(205.88);
|
||||||
|
|
||||||
expect(result).toEqual(205.88);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should ignore line-breaks between operator and digit in number',
|
it('should ignore line-breaks between operator and digit in number',
|
||||||
function() {
|
function() {
|
||||||
let minusInput = new StringStream('-\r\n205.88');
|
const minusInput = new StringStream('-\r\n205.88');
|
||||||
let minusLexer = new Lexer(minusInput);
|
const minusLexer = new Lexer(minusInput);
|
||||||
|
|
||||||
expect(minusLexer.getNumber()).toEqual(-205.88);
|
expect(minusLexer.getNumber()).toEqual(-205.88);
|
||||||
|
|
||||||
let plusInput = new StringStream('+\r\n205.88');
|
const plusInput = new StringStream('+\r\n205.88');
|
||||||
let plusLexer = new Lexer(plusInput);
|
const plusLexer = new Lexer(plusInput);
|
||||||
|
|
||||||
expect(plusLexer.getNumber()).toEqual(205.88);
|
expect(plusLexer.getNumber()).toEqual(205.88);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should treat a single decimal point as zero', function() {
|
it('should treat a single decimal point as zero', function() {
|
||||||
let input = new StringStream('.');
|
const input = new StringStream('.');
|
||||||
let lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
|
|
||||||
expect(lexer.getNumber()).toEqual(0);
|
expect(lexer.getNumber()).toEqual(0);
|
||||||
|
|
||||||
let numbers = ['..', '-.', '+.', '-\r\n.', '+\r\n.'];
|
const numbers = ['..', '-.', '+.', '-\r\n.', '+\r\n.'];
|
||||||
for (let number of numbers) {
|
for (const number of numbers) {
|
||||||
let input = new StringStream(number);
|
const input = new StringStream(number);
|
||||||
let lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
|
|
||||||
expect(function() {
|
expect(function() {
|
||||||
return lexer.getNumber();
|
return lexer.getNumber();
|
||||||
@ -88,68 +77,54 @@ describe('parser', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should handle glued numbers and operators', function() {
|
it('should handle glued numbers and operators', function() {
|
||||||
var input = new StringStream('123ET');
|
const input = new StringStream('123ET');
|
||||||
var lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
var value = lexer.getNumber();
|
expect(lexer.getNumber()).toEqual(123);
|
||||||
|
|
||||||
expect(value).toEqual(123);
|
|
||||||
// The lexer must not have consumed the 'E'
|
// The lexer must not have consumed the 'E'
|
||||||
expect(lexer.currentChar).toEqual(0x45); // 'E'
|
expect(lexer.currentChar).toEqual(0x45); // 'E'
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should stop parsing strings at the end of stream', function() {
|
it('should stop parsing strings at the end of stream', function() {
|
||||||
var input = new StringStream('(1$4)');
|
const input = new StringStream('(1$4)');
|
||||||
input.getByte = function(super_getByte) {
|
input.getByte = function(super_getByte) {
|
||||||
// simulating end of file using null (see issue 2766)
|
// Simulating end of file using null (see issue 2766).
|
||||||
var ch = super_getByte.call(input);
|
const ch = super_getByte.call(input);
|
||||||
return (ch === 0x24 /* '$' */ ? -1 : ch);
|
return (ch === 0x24 /* '$' */ ? -1 : ch);
|
||||||
}.bind(input, input.getByte);
|
}.bind(input, input.getByte);
|
||||||
var lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
var result = lexer.getString();
|
expect(lexer.getString()).toEqual('1');
|
||||||
|
|
||||||
expect(result).toEqual('1');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not throw exception on bad input', function() {
|
it('should not throw exception on bad input', function() {
|
||||||
// '8 0 2 15 5 2 2 2 4 3 2 4'
|
// '7 0 2 15 5 2 2 2 4 3 2 4' should be parsed as '70 21 55 22 24 32'.
|
||||||
// should be parsed as
|
const input = new StringStream('<7 0 2 15 5 2 2 2 4 3 2 4>');
|
||||||
// '80 21 55 22 24 32'
|
const lexer = new Lexer(input);
|
||||||
var input = new StringStream('<7 0 2 15 5 2 2 2 4 3 2 4>');
|
expect(lexer.getHexString()).toEqual('p!U"$2');
|
||||||
var lexer = new Lexer(input);
|
|
||||||
var result = lexer.getHexString();
|
|
||||||
|
|
||||||
expect(result).toEqual('p!U"$2');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should ignore escaped CR and LF', function() {
|
it('should ignore escaped CR and LF', function() {
|
||||||
// '(\101\<CR><LF>\102)'
|
// '(\101\<CR><LF>\102)' should be parsed as 'AB'.
|
||||||
// should be parsed as
|
const input = new StringStream('(\\101\\\r\n\\102\\\r\\103\\\n\\104)');
|
||||||
// "AB"
|
const lexer = new Lexer(input);
|
||||||
var input = new StringStream('(\\101\\\r\n\\102\\\r\\103\\\n\\104)');
|
expect(lexer.getString()).toEqual('ABCD');
|
||||||
var lexer = new Lexer(input);
|
|
||||||
var result = lexer.getString();
|
|
||||||
|
|
||||||
expect(result).toEqual('ABCD');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should handle Names with invalid usage of NUMBER SIGN (#)', function() {
|
it('should handle Names with invalid usage of NUMBER SIGN (#)', function() {
|
||||||
var inputNames = ['/# 680 0 R', '/#AQwerty', '/#A<</B'];
|
const inputNames = ['/# 680 0 R', '/#AQwerty', '/#A<</B'];
|
||||||
var expectedNames = ['#', '#AQwerty', '#A'];
|
const expectedNames = ['#', '#AQwerty', '#A'];
|
||||||
|
|
||||||
for (var i = 0, ii = inputNames.length; i < ii; i++) {
|
for (let i = 0, ii = inputNames.length; i < ii; i++) {
|
||||||
var input = new StringStream(inputNames[i]);
|
const input = new StringStream(inputNames[i]);
|
||||||
var lexer = new Lexer(input);
|
const lexer = new Lexer(input);
|
||||||
var result = lexer.getName();
|
expect(lexer.getName()).toEqual(Name.get(expectedNames[i]));
|
||||||
|
|
||||||
expect(result).toEqual(Name.get(expectedNames[i]));
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('Linearization', function() {
|
describe('Linearization', function() {
|
||||||
it('should not find a linearization dictionary', function () {
|
it('should not find a linearization dictionary', function() {
|
||||||
// Not an actual linearization dictionary.
|
// Not an actual linearization dictionary.
|
||||||
var stream1 = new StringStream(
|
const stream1 = new StringStream(
|
||||||
'3 0 obj\n' +
|
'3 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Length 4622\n' +
|
'/Length 4622\n' +
|
||||||
@ -160,7 +135,7 @@ describe('parser', function() {
|
|||||||
expect(Linearization.create(stream1)).toEqual(null);
|
expect(Linearization.create(stream1)).toEqual(null);
|
||||||
|
|
||||||
// Linearization dictionary with invalid version number.
|
// Linearization dictionary with invalid version number.
|
||||||
var stream2 = new StringStream(
|
const stream2 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 0\n' +
|
'/Linearized 0\n' +
|
||||||
@ -170,8 +145,8 @@ describe('parser', function() {
|
|||||||
expect(Linearization.create(stream2)).toEqual(null);
|
expect(Linearization.create(stream2)).toEqual(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should accept a valid linearization dictionary', function () {
|
it('should accept a valid linearization dictionary', function() {
|
||||||
var stream = new StringStream(
|
const stream = new StringStream(
|
||||||
'131 0 obj\n' +
|
'131 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -184,7 +159,7 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
var expectedLinearizationDict = {
|
const expectedLinearizationDict = {
|
||||||
length: 90,
|
length: 90,
|
||||||
hints: [1388, 863],
|
hints: [1388, 863],
|
||||||
objectNumberFirst: 133,
|
objectNumberFirst: 133,
|
||||||
@ -197,9 +172,9 @@ describe('parser', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should reject a linearization dictionary with invalid ' +
|
it('should reject a linearization dictionary with invalid ' +
|
||||||
'integer parameters', function () {
|
'integer parameters', function() {
|
||||||
// The /L parameter should be equal to the stream length.
|
// The /L parameter should be equal to the stream length.
|
||||||
var stream1 = new StringStream(
|
const stream1 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -212,13 +187,13 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
expect(function () {
|
expect(function() {
|
||||||
return Linearization.create(stream1);
|
return Linearization.create(stream1);
|
||||||
}).toThrow(new Error('The "L" parameter in the linearization ' +
|
}).toThrow(new Error('The "L" parameter in the linearization ' +
|
||||||
'dictionary does not equal the stream length.'));
|
'dictionary does not equal the stream length.'));
|
||||||
|
|
||||||
// The /E parameter should not be zero.
|
// The /E parameter should not be zero.
|
||||||
var stream2 = new StringStream(
|
const stream2 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -231,13 +206,13 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
expect(function () {
|
expect(function() {
|
||||||
return Linearization.create(stream2);
|
return Linearization.create(stream2);
|
||||||
}).toThrow(new Error('The "E" parameter in the linearization ' +
|
}).toThrow(new Error('The "E" parameter in the linearization ' +
|
||||||
'dictionary is invalid.'));
|
'dictionary is invalid.'));
|
||||||
|
|
||||||
// The /O parameter should be an integer.
|
// The /O parameter should be an integer.
|
||||||
var stream3 = new StringStream(
|
const stream3 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -250,16 +225,16 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
expect(function () {
|
expect(function() {
|
||||||
return Linearization.create(stream3);
|
return Linearization.create(stream3);
|
||||||
}).toThrow(new Error('The "O" parameter in the linearization ' +
|
}).toThrow(new Error('The "O" parameter in the linearization ' +
|
||||||
'dictionary is invalid.'));
|
'dictionary is invalid.'));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should reject a linearization dictionary with invalid hint parameters',
|
it('should reject a linearization dictionary with invalid hint parameters',
|
||||||
function () {
|
function() {
|
||||||
// The /H parameter should be an array.
|
// The /H parameter should be an array.
|
||||||
var stream1 = new StringStream(
|
const stream1 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -272,13 +247,13 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
expect(function () {
|
expect(function() {
|
||||||
return Linearization.create(stream1);
|
return Linearization.create(stream1);
|
||||||
}).toThrow(new Error('Hint array in the linearization dictionary ' +
|
}).toThrow(new Error('Hint array in the linearization dictionary ' +
|
||||||
'is invalid.'));
|
'is invalid.'));
|
||||||
|
|
||||||
// The hint array should contain two, or four, elements.
|
// The hint array should contain two, or four, elements.
|
||||||
var stream2 = new StringStream(
|
const stream2 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -291,13 +266,13 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
expect(function () {
|
expect(function() {
|
||||||
return Linearization.create(stream2);
|
return Linearization.create(stream2);
|
||||||
}).toThrow(new Error('Hint array in the linearization dictionary ' +
|
}).toThrow(new Error('Hint array in the linearization dictionary ' +
|
||||||
'is invalid.'));
|
'is invalid.'));
|
||||||
|
|
||||||
// The hint array should not contain zero.
|
// The hint array should not contain zero.
|
||||||
var stream3 = new StringStream(
|
const stream3 = new StringStream(
|
||||||
'1 0 obj\n' +
|
'1 0 obj\n' +
|
||||||
'<<\n' +
|
'<<\n' +
|
||||||
'/Linearized 1\n' +
|
'/Linearized 1\n' +
|
||||||
@ -310,7 +285,7 @@ describe('parser', function() {
|
|||||||
'>>\n' +
|
'>>\n' +
|
||||||
'endobj'
|
'endobj'
|
||||||
);
|
);
|
||||||
expect(function () {
|
expect(function() {
|
||||||
return Linearization.create(stream3);
|
return Linearization.create(stream3);
|
||||||
}).toThrow(new Error('Hint (2) in the linearization dictionary ' +
|
}).toThrow(new Error('Hint (2) in the linearization dictionary ' +
|
||||||
'is invalid.'));
|
'is invalid.'));
|
||||||
|
Loading…
Reference in New Issue
Block a user