/* * 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. */ package com.tom_roush.pdfbox.pdmodel; import com.tom_roush.pdfbox.pdmodel.interactive.documentnavigation.outline.PDDocumentOutline; import com.tom_roush.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineItem; import org.junit.After; import org.junit.Test; import java.io.IOException; import static org.junit.Assert.assertEquals; /** * @author Andrea Vacondio */ public class TestPDPageTree { private PDDocument doc; @After public void tearDown() throws IOException { if (doc != null) { doc.close(); } } @Test public void indexOfPageFromOutlineDestination() throws IOException { doc = PDDocument.load(TestPDPageTree.class.getResourceAsStream("/pdfbox/com/tom_roush/pdfbox/pdmodel/with_outline.pdf")); PDDocumentOutline outline = doc.getDocumentCatalog().getDocumentOutline(); for (PDOutlineItem current : outline.children()) { if (current.getTitle().contains("Second")) { assertEquals(2, doc.getPages().indexOf(current.findDestinationPage(doc))); } } } @Test public void positiveSingleLevel() throws IOException { doc = PDDocument.load(TestPDPageTree.class.getResourceAsStream("/pdfbox/com/tom_roush/pdfbox/pdmodel/with_outline.pdf")); for (int i = 0; i < doc.getNumberOfPages(); i++) { assertEquals(i, doc.getPages().indexOf(doc.getPage(i))); } } @Test public void positiveMultipleLevel() throws IOException { doc = PDDocument.load(TestPDPageTree.class.getResourceAsStream("/pdfbox/com/tom_roush/pdfbox/pdmodel/page_tree_multiple_levels.pdf")); for (int i = 0; i < doc.getNumberOfPages(); i++) { assertEquals(i, doc.getPages().indexOf(doc.getPage(i))); } } @Test public void negative() throws IOException { doc = PDDocument.load(TestPDPageTree.class.getResourceAsStream("/pdfbox/com/tom_roush/pdfbox/pdmodel/with_outline.pdf")); assertEquals(-1, doc.getPages().indexOf(new PDPage())); } }