1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-21 23:58:07 +02:00

XFA -- Add template object

- Specifications: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.364.2157&rep=rep1&type=pdf#page=596
This commit is contained in:
Calixte Denizet 2021-02-01 15:12:19 +01:00
parent 0d85de980b
commit 652ff57897
4 changed files with 3495 additions and 1 deletions

View file

@ -46,12 +46,133 @@ describe("XFAParser", function () {
<validate>foobar</validate>
</acrobat>
</config>
<template baseProfile="full" xmlns="http://www.xfa.org/schema/xfa-template/3.3">
<extras>
<float>1.23</float>
<boolean>1</boolean>
<integer>314</integer>
<float>2.71</float>
</extras>
<subform>
<proto>
<area x="hello" y="-3.14in" relevant="-foo +bar" />
<color value="111, 222, 123" />
<color value="111, abc, 123" />
<medium imagingBBox="1,2in,3.4cm,5.67px" />
<medium imagingBBox="1,2in,-3cm,4px" />
</proto>
</subform>
</template>
</xdp:xdp>
`;
const attributes = {
id: "",
name: "",
use: "",
usehref: "",
};
const mediumAttributes = {
id: "",
long: { value: 0, unit: "" },
orientation: "portrait",
short: { value: 0, unit: "" },
stock: "",
trayIn: "auto",
trayOut: "auto",
use: "",
usehref: "",
};
const colorAttributes = {
cSpace: "SRGB",
id: "",
use: "",
usehref: "",
};
const root = new XFAParser().parse(xml);
const expected = {
uuid: "1234",
timeStamp: "",
template: {
baseProfile: "full",
extras: {
...attributes,
float: [
{ ...attributes, $content: 1.23 },
{ ...attributes, $content: 2.71 },
],
boolean: { ...attributes, $content: 1 },
integer: { ...attributes, $content: 314 },
},
subform: {
access: "open",
allowMacro: 0,
anchorType: "topLeft",
colSpan: 1,
columnWidths: [{ value: 0, unit: "" }],
h: { value: 0, unit: "" },
hAlign: "left",
id: "",
layout: "position",
locale: "",
maxH: { value: 0, unit: "" },
maxW: { value: 0, unit: "" },
mergeMode: "consumeData",
minH: { value: 0, unit: "" },
minW: { value: 0, unit: "" },
name: "",
presence: "visible",
relevant: [],
restoreState: "manual",
scope: "name",
use: "",
usehref: "",
w: { value: 0, unit: "" },
x: { value: 0, unit: "" },
y: { value: 0, unit: "" },
proto: {
area: {
...attributes,
colSpan: 1,
x: { value: 0, unit: "" },
y: { value: -3.14, unit: "in" },
relevant: [
{ excluded: true, viewname: "foo" },
{ excluded: false, viewname: "bar" },
],
},
color: [
{
...colorAttributes,
value: { r: 111, g: 222, b: 123 },
},
{
...colorAttributes,
value: { r: 111, g: 0, b: 123 },
},
],
medium: [
{
...mediumAttributes,
imagingBBox: {
x: { value: 1, unit: "" },
y: { value: 2, unit: "in" },
width: { value: 3.4, unit: "cm" },
height: { value: 5.67, unit: "px" },
},
},
{
...mediumAttributes,
imagingBBox: {
x: { value: -1, unit: "" },
y: { value: -1, unit: "" },
width: { value: -1, unit: "" },
height: { value: -1, unit: "" },
},
},
],
},
},
},
config: {
acrobat: {
acrobat7: {
@ -89,5 +210,42 @@ describe("XFAParser", function () {
};
expect(root[$dump]()).toEqual(expected);
});
it("should parse a xfa document and check namespaces", function () {
const xml = `
<?xml version="1.0"?>
<xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/">
<config xmlns:foo="http:/www.foo.com" xmlns="http://www.xfa.org/schema/xci/3.1/">
<present xmlns="http://www.mozilla.org">
<pdf name="hello">
<adobeExtensionLevel>
7
</adobeExtensionLevel>
</pdf>
</present>
<acrobat>
<foo:submitUrl>http://a.b.c</foo:submitUrl>
<submitUrl>http://c.b.a</submitUrl>
</acrobat>
</config>
<template baseProfile="full" xmlns="http://www.allizom.org">
<extras>
<float>1.23</float>
</extras>
</template>
</xdp:xdp>
`;
const root = new XFAParser().parse(xml);
const expected = {
uuid: "",
timeStamp: "",
config: {
acrobat: {
submitUrl: { $content: "http://c.b.a" },
},
},
};
expect(root[$dump]()).toEqual(expected);
});
});
});