diff options
author | Simon Steiner <ssteiner@apache.org> | 2023-03-29 16:00:17 +0100 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2023-03-29 16:00:17 +0100 |
commit | c0b045484b0bf907eaa1a63ec433edcda7dbea9d (patch) | |
tree | 7dc7062f40a4271e10215eccd8bec29614ddf2c1 /fop-core/src | |
parent | 120b50fdf64cf9c2a52c86d9ca4e9340dbd2715f (diff) | |
download | xmlgraphics-fop-c0b045484b0bf907eaa1a63ec433edcda7dbea9d.tar.gz xmlgraphics-fop-c0b045484b0bf907eaa1a63ec433edcda7dbea9d.zip |
FOP-1722: Values in PDF Number Trees must be indirect references by Dave Roxburgh
Diffstat (limited to 'fop-core/src')
-rw-r--r-- | fop-core/src/test/java/org/apache/fop/pdf/PDFNumsArrayPDFV17TestCase.java | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/fop-core/src/test/java/org/apache/fop/pdf/PDFNumsArrayPDFV17TestCase.java b/fop-core/src/test/java/org/apache/fop/pdf/PDFNumsArrayPDFV17TestCase.java new file mode 100644 index 000000000..ac09d221c --- /dev/null +++ b/fop-core/src/test/java/org/apache/fop/pdf/PDFNumsArrayPDFV17TestCase.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/* $Id$ */ + +package org.apache.fop.pdf; + +import java.io.IOException; + +import org.junit.Before; +import org.junit.Test; + +/** + * Test case for {@link PDFNumsArray}. PDF1.7 requires text values to be included as refs and + * number values to be included as direct objects. + */ +public class PDFNumsArrayPDFV17TestCase extends PDFObjectTestCase { + private static final int TEST_NUMBER = 44; + private static final String TEST_TEXT = "Test text"; + private PDFNumsArray numsArray; + private String expectedStringNumsArray = "[0 1 0 R 1 " + TEST_NUMBER + "]"; + private String expectedStringText = "((" + TEST_TEXT + "))"; + + @Before + public void setUp() { + doc.setPDFVersion(Version.V1_7); + numsArray = new PDFNumsArray(parent); + numsArray.setDocument(doc); + PDFText pdfText = new PDFText(); + pdfText.setText(TEST_TEXT); + numsArray.put(0, pdfText); + PDFNumber num = new PDFNumber(); + num.setNumber(TEST_NUMBER); + numsArray.put(1, num); + + pdfObjectUnderTest = numsArray; + } + + /** + * Test output() - ensure that this object is properly outputted to the PDF document. + * @throws IOException if an I/O error occurs + */ + @Test + public void testOutput() throws IOException { + testOutputStreams(expectedStringNumsArray, numsArray); + testOutputStreams(expectedStringText, doc.objects.get(1)); + } +} |