/* ==================================================================== 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 junit.framework.TestCase; import org.apache.poi.hwpf.HWPFDocument; import org.apache.poi.hwpf.HWPFTestDataSamples; /** * Test to see if Range.replaceText() works even if the Range contains a * CharacterRun that uses Unicode characters. * * TODO - re-enable me when unicode paragraph stuff is fixed! */ public final class TestRangeReplacement extends TestCase { // u201c and u201d are "smart-quotes" private final String originalText = "It is used to confirm that text replacement works even if Unicode characters (such as \u201c\u2014\u201d (U+2014), \u201c\u2e8e\u201d (U+2E8E), or \u201c\u2714\u201d (U+2714)) are present. Everybody should be thankful to the ${organization} and all the POI contributors for their assistance in this matter.\r"; private final String searchText = "${organization}"; private final String replacementText = "Apache Software Foundation"; private final String expectedText2 = "It is used to confirm that text replacement works even if Unicode characters (such as \u201c\u2014\u201d (U+2014), \u201c\u2e8e\u201d (U+2E8E), or \u201c\u2714\u201d (U+2714)) are present. Everybody should be thankful to the Apache Software Foundation and all the POI contributors for their assistance in this matter.\r"; private final String expectedText3 = "Thank you, Apache Software Foundation!\r"; private final String illustrativeDocFile = "testRangeReplacement.doc"; /** * Test just opening the files */ public void testOpen() { HWPFTestDataSamples.openSampleFile(illustrativeDocFile); } /** * Test (more "confirm" than test) that we have the general structure that we expect to have. */ public void testDocStructure() { HWPFDocument daDoc = HWPFTestDataSamples.openSampleFile(illustrativeDocFile); Range range = daDoc.getRange(); assertEquals(414, range.text().length()); assertEquals(1, range.numSections()); Section section = range.getSection(0); assertEquals(414, section.text().length()); assertEquals(5, section.numParagraphs()); Paragraph para = section.getParagraph(2); assertEquals(5, para.numCharacterRuns()); String text = para.getCharacterRun(0).text() + para.getCharacterRun(1).text() + para.getCharacterRun(2).text() + para.getCharacterRun(3).text() + para.getCharacterRun(4).text() ; assertEquals(originalText, text); } /** * Test that we can replace text in our Range with Unicode text. */ public void testRangeReplacementOne() { HWPFDocument daDoc = HWPFTestDataSamples.openSampleFile(illustrativeDocFile); // Has one section Range range = daDoc.getRange(); assertEquals(1, range.numSections()); // The first section has 5 paragraphs Section section = range.getSection(0); assertEquals(5, section.numParagraphs()); // Change some text Paragraph para = section.getParagraph(2); String text = para.text(); assertEquals(originalText, text); int offset = text.indexOf(searchText); assertEquals(181, offset); para.replaceText(searchText, replacementText, offset); // Ensure we still have one section, 5 paragraphs assertEquals(1, range.numSections()); section = range.getSection(0); assertEquals(5, section.numParagraphs()); para = section.getParagraph(2); // Ensure the text is what we should now have text = para.text(); assertEquals(expectedText2, text); } /** * Test that we can replace text in our Range with Unicode text. */ public void testRangeReplacementAll() { HWPFDocument daDoc = HWPFTestDataSamples.openSampleFile(illustrativeDocFile); Range range = daDoc.getRange(); assertEquals(1, range.numSections()); Section section = range.getSection(0); assertEquals(5, section.numParagraphs()); Paragraph para = section.getParagraph(2); String text = para.text(); assertEquals(originalText, text); range.replaceText(searchText, replacementText); assertEquals(1, range.numSections()); section = range.getSection(0); assertEquals(5, section.numParagraphs()); para = section.getParagraph(2); text = para.text(); assertEquals(expectedText2, text); para = section.getParagraph(3); text = para.text(); assertEquals(expectedText3, text); } }