aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanny Mui <dmui@apache.org>2003-05-17 18:32:42 +0000
committerDanny Mui <dmui@apache.org>2003-05-17 18:32:42 +0000
commitb9bdda19a2da152ec0d8636f67d17e60c63139e1 (patch)
treec5fb4e0c43a2e1d1d0f0619b53abf851e22a836f
parent944a5624d3102e43f8521069560162a6100b7d0e (diff)
downloadpoi-b9bdda19a2da152ec0d8636f67d17e60c63139e1.tar.gz
poi-b9bdda19a2da152ec0d8636f67d17e60c63139e1.zip
Fixed NameRecord deserialization when additional information (description) was specified
PR: 19862 Submitted by: lloydj@us.ibm.com git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353105 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/poi/hssf/record/NameRecord.java23
-rw-r--r--src/testcases/org/apache/poi/hssf/HSSFTests.java2
-rwxr-xr-xsrc/testcases/org/apache/poi/hssf/record/TestNameRecord.java100
3 files changed, 114 insertions, 11 deletions
diff --git a/src/java/org/apache/poi/hssf/record/NameRecord.java b/src/java/org/apache/poi/hssf/record/NameRecord.java
index 9d4b73d17f..09bf2a416d 100644
--- a/src/java/org/apache/poi/hssf/record/NameRecord.java
+++ b/src/java/org/apache/poi/hssf/record/NameRecord.java
@@ -55,16 +55,17 @@
package org.apache.poi.hssf.record;
-import org.apache.poi.util.HexDump;
-import org.apache.poi.util.LittleEndian;
-import org.apache.poi.util.StringUtil;
+import java.util.List;
import java.util.Stack;
-import org.apache.poi.hssf.record.formula.Ptg;
+
import org.apache.poi.hssf.record.formula.Area3DPtg;
+import org.apache.poi.hssf.record.formula.Ptg;
import org.apache.poi.hssf.record.formula.Ref3DPtg;
-import java.util.List;
import org.apache.poi.hssf.util.RangeAddress;
import org.apache.poi.hssf.util.SheetReferences;
+import org.apache.poi.util.HexDump;
+import org.apache.poi.util.LittleEndian;
+import org.apache.poi.util.StringUtil;
/**
* Title: Name Record (aka Named Range) <P>
@@ -548,13 +549,13 @@ public class NameRecord extends Record {
int start_of_custom_menu_text = start_of_name_definition + field_4_length_name_definition;
StringUtil.putCompressedUnicode( getCustomMenuText(), data, start_of_custom_menu_text + offset );
- int start_of_description_text = start_of_custom_menu_text + field_8_length_description_text;
+ int start_of_description_text = start_of_custom_menu_text + field_7_length_custom_menu;
StringUtil.putCompressedUnicode( getDescriptionText(), data, start_of_description_text + offset );
- int start_of_help_topic_text = start_of_description_text + field_9_length_help_topic_text;
+ int start_of_help_topic_text = start_of_description_text + field_8_length_description_text;
StringUtil.putCompressedUnicode( getHelpTopicText(), data, start_of_help_topic_text + offset );
- int start_of_status_bar_text = start_of_help_topic_text + field_10_length_status_bar_text;
+ int start_of_status_bar_text = start_of_help_topic_text + field_9_length_help_topic_text;
StringUtil.putCompressedUnicode( getStatusBarText(), data, start_of_status_bar_text + offset );
return getRecordSize();
@@ -767,15 +768,15 @@ public class NameRecord extends Record {
field_14_custom_menu_text = StringUtil.getFromCompressedUnicode(data, start_of_custom_menu_text + offset,
LittleEndian.ubyteToInt(field_7_length_custom_menu));
- int start_of_description_text = start_of_custom_menu_text + field_8_length_description_text;
+ int start_of_description_text = start_of_custom_menu_text + field_7_length_custom_menu;;
field_15_description_text = StringUtil.getFromCompressedUnicode(data, start_of_description_text + offset,
LittleEndian.ubyteToInt(field_8_length_description_text));
- int start_of_help_topic_text = start_of_description_text + field_9_length_help_topic_text;
+ int start_of_help_topic_text = start_of_description_text + field_8_length_description_text;
field_16_help_topic_text = StringUtil.getFromCompressedUnicode(data, start_of_help_topic_text + offset,
LittleEndian.ubyteToInt(field_9_length_help_topic_text));
- int start_of_status_bar_text = start_of_help_topic_text + field_10_length_status_bar_text;
+ int start_of_status_bar_text = start_of_help_topic_text + field_9_length_help_topic_text;
field_17_status_bar_text = StringUtil.getFromCompressedUnicode(data, start_of_status_bar_text + offset,
LittleEndian.ubyteToInt(field_10_length_status_bar_text));
/*} */
diff --git a/src/testcases/org/apache/poi/hssf/HSSFTests.java b/src/testcases/org/apache/poi/hssf/HSSFTests.java
index 42416d099e..60c2f0690c 100644
--- a/src/testcases/org/apache/poi/hssf/HSSFTests.java
+++ b/src/testcases/org/apache/poi/hssf/HSSFTests.java
@@ -25,6 +25,7 @@ import org.apache.poi.hssf.record.TestFrameRecord;
import org.apache.poi.hssf.record.TestLegendRecord;
import org.apache.poi.hssf.record.TestLineFormatRecord;
import org.apache.poi.hssf.record.TestLinkedDataRecord;
+import org.apache.poi.hssf.record.TestNameRecord;
import org.apache.poi.hssf.record.TestNumberFormatIndexRecord;
import org.apache.poi.hssf.record.TestObjectLinkRecord;
import org.apache.poi.hssf.record.TestPaletteRecord;
@@ -154,6 +155,7 @@ public class HSSFTests
suite.addTest(new TestSuite(TestFuncPtg.class));
suite.addTest(new TestSuite(TestValueRecordsAggregate.class));
+ suite.addTest(new TestSuite(TestNameRecord.class));
//$JUnit-END$
return suite;
diff --git a/src/testcases/org/apache/poi/hssf/record/TestNameRecord.java b/src/testcases/org/apache/poi/hssf/record/TestNameRecord.java
new file mode 100755
index 0000000000..def2c3c056
--- /dev/null
+++ b/src/testcases/org/apache/poi/hssf/record/TestNameRecord.java
@@ -0,0 +1,100 @@
+
+/* ====================================================================
+ * The Apache Software License, Version 1.1
+ *
+ * Copyright (c) 2003 The Apache Software Foundation. All rights
+ * reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in
+ * the documentation and/or other materials provided with the
+ * distribution.
+ *
+ * 3. The end-user documentation included with the redistribution,
+ * if any, must include the following acknowledgment:
+ * "This product includes software developed by the
+ * Apache Software Foundation (http://www.apache.org/)."
+ * Alternately, this acknowledgment may appear in the software itself,
+ * if and wherever such third-party acknowledgments normally appear.
+ *
+ * 4. The names "Apache" and "Apache Software Foundation" and
+ * "Apache POI" must not be used to endorse or promote products
+ * derived from this software without prior written permission. For
+ * written permission, please contact apache@apache.org.
+ *
+ * 5. Products derived from this software may not be called "Apache",
+ * "Apache POI", nor may "Apache" appear in their name, without
+ * prior written permission of the Apache Software Foundation.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ * ====================================================================
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals on behalf of the Apache Software Foundation. For more
+ * information on the Apache Software Foundation, please see
+ * <http://www.apache.org/>.
+ */
+
+
+package org.apache.poi.hssf.record;
+
+
+import junit.framework.TestCase;
+
+
+/**
+ * Tests the NameRecord serializes/deserializes correctly
+ * @author Danny Mui (dmui at apache dot org)
+ */
+public class TestNameRecord extends TestCase{
+
+ /**
+ * Makes sure that additional name information is parsed properly such as menu/description
+ *
+ */
+ public void testFillExtras() {
+
+ byte[] examples = {
+ (byte)0x88, (byte)0x03, (byte)0x67, (byte)0x06,
+ (byte)0x07, (byte)0x00, (byte)0x00, (byte)0x00,
+ (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x23,
+ (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x4D,
+ (byte)0x61, (byte)0x63, (byte)0x72, (byte)0x6F,
+ (byte)0x31, (byte)0x3A, (byte)0x01, (byte)0x00,
+ (byte)0x00, (byte)0x00, (byte)0x11, (byte)0x00,
+ (byte)0x00, (byte)0x4D, (byte)0x61, (byte)0x63,
+ (byte)0x72, (byte)0x6F, (byte)0x20, (byte)0x72,
+ (byte)0x65, (byte)0x63, (byte)0x6F, (byte)0x72,
+ (byte)0x64, (byte)0x65, (byte)0x64, (byte)0x20,
+ (byte)0x32, (byte)0x37, (byte)0x2D, (byte)0x53,
+ (byte)0x65, (byte)0x70, (byte)0x2D, (byte)0x39,
+ (byte)0x33, (byte)0x20, (byte)0x62, (byte)0x79,
+ (byte)0x20, (byte)0x41, (byte)0x4C, (byte)0x4C,
+ (byte)0x57, (byte)0x4F, (byte)0x52
+ };
+
+ NameRecord name = new NameRecord();
+ name.fillFields(examples, (short)examples.length);
+ String description = name.getDescriptionText();
+ assertNotNull(description);
+ assertTrue("text contains ALLWOR", description.indexOf("ALLWOR") > 0);
+ }
+}