/* ==================================================================== 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 org.apache.poi.hwpf.usermodel; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.io.IOException; import java.io.InputStream; import java.util.List; import org.apache.poi.POIDataSamples; import org.apache.poi.hwpf.HWPFDocument; import org.apache.poi.hwpf.model.SEPX; import org.junit.Test; /** * Tests for Range which aren't around deletion, insertion, text replacement or * textual contents */ public final class TestRange { private static final POIDataSamples SAMPLES = POIDataSamples.getDocumentInstance(); @Test public void testFieldStripping() { String exp = "This is some text."; String single = "This is some \u0013Blah!\u0015text."; String with14 = "This is \u0013Blah!\u0014some\u0015 text."; String withNested = "This is \u0013Blah!\u0013Blah!\u0015\u0015some text."; String withNested14 = "This is \u0013Blah!\u0013Blah!\u0014don't see me\u0015 blah!\u0015some text."; String withNestedIn14 = "This is \u0013Blah!\u0014some\u0013Blah!\u0015 \u0015text."; // Check all comes out right assertEquals( exp, Range.stripFields( exp ) ); assertEquals( exp, Range.stripFields( single ) ); assertEquals( exp, Range.stripFields( with14 ) ); assertEquals( exp, Range.stripFields( withNested ) ); assertEquals( exp, Range.stripFields( withNested14 ) ); assertEquals( exp, Range.stripFields( withNestedIn14 ) ); // Ones that are odd and we won't change String odd1 = "This\u0015 is \u0013 odd"; String odd2 = "This\u0015 is \u0014 also \u0013 odd"; assertEquals( odd1, Range.stripFields( odd1 ) ); assertEquals( odd2, Range.stripFields( odd2 ) ); } @Test public void testBug46817() throws IOException { InputStream is = SAMPLES.openResourceAsStream( "Bug46817.doc" ); HWPFDocument hwpfDocument = new HWPFDocument( is ); is.close(); final List<SEPX> sections = hwpfDocument.getSectionTable() .getSections(); assertEquals( sections.size(), 1 ); // whole document, including additional text from shape SEPX sepx = sections.get( 0 ); assertEquals( sepx.getStart(), 0 ); assertEquals( sepx.getEnd(), 1428 ); // only main range Range range = hwpfDocument.getRange(); assertEquals( range.getStartOffset(), 0 ); assertEquals( range.getEndOffset(), 766 ); Paragraph lastInMainRange = range.getParagraph( range.numParagraphs() - 1); assertTrue( lastInMainRange.getEndOffset() <= 766 ); Section section = range.getSection( 0 ); assertTrue( section.getEndOffset() <= 766 ); Paragraph lastInMainSection = section.getParagraph( section .numParagraphs() - 1); assertTrue( lastInMainSection.getEndOffset() <= 766 ); hwpfDocument.close(); } }