/* Copyright 2020 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 { XFAFactory } from "../../src/core/xfa/factory.js"; describe("XFAFactory", function () { describe("toHTML", function () { it("should convert some basic properties to CSS", function () { const xml = ` `; const factory = new XFAFactory({ "xdp:xdp": xml }); expect(factory.numberPages).toEqual(2); const page1 = factory.getPage(0); expect(page1.attributes.style).toEqual({ height: "789px", width: "456px", }); expect(page1.children.length).toEqual(2); const container = page1.children[0]; expect(container.attributes.class).toEqual("xfaContentarea"); expect(container.attributes.style).toEqual({ height: "789px", width: "456px", left: "123px", top: "0px", position: "absolute", }); const draw = page1.children[1]; expect(draw.attributes.class).toEqual("xfaDraw xfaFont"); expect(draw.attributes.style).toEqual({ color: "#0c1722", fontFamily: "Arial", fontSize: "7px", height: "22px", left: "2px", position: "absolute", top: "1px", transform: "rotate(-90deg)", transformOrigin: "top left", verticalAlign: "2px", width: "11px", }); // draw element must be on each page. expect(draw.attributes.style).toEqual( factory.getPage(1).children[1].attributes.style ); }); }); });