From e75b83a2e8530e28adcd1ee193688237c317effb Mon Sep 17 00:00:00 2001 From: Yegor Kozlov Date: Tue, 20 Apr 2010 10:27:30 +0000 Subject: [PATCH] Ensure that CTVectorVariant is included in poi-ooxml-schemas.jar, Added accessors to CoreProperties.Keywords. See Bugzilla 49146 and 49153 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@935860 13f79535-47bb-0310-9956-ffa450edef68 --- src/documentation/content/xdocs/status.xml | 2 + .../java/org/apache/poi/POIXMLProperties.java | 6 + .../org/apache/poi/xwpf/AllXWPFTests.java | 4 +- .../poi/xwpf/TestAllExtendedProperties.java | 109 ++++++++++++++++++ .../TestPackageCorePropertiesGetKeywords.java | 64 ++++++++++ ...iXMLDocumentCorePropertiesGetKeywords.docx | Bin 0 -> 13380 bytes 6 files changed, 184 insertions(+), 1 deletion(-) create mode 100644 src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java create mode 100644 src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java create mode 100644 test-data/document/TestPoiXMLDocumentCorePropertiesGetKeywords.docx diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index 846614c880..0a8cdaeadb 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -34,6 +34,8 @@ + 49153 - Ensure that CTVectorVariant is included in poi-ooxml-schemas.jar + 49146 - Added accessors to CoreProperties.Keywords 48916 - Propagate parent to parent-aware records decoded from Escher 48485 - Add extra paper size constans to PrintSetup, such as A3, B4 and B5 Make poifs.filesystem.DirectoryNode preserve the original ordering of its files, which HSMF needs to be able to correctly match up chunks diff --git a/src/ooxml/java/org/apache/poi/POIXMLProperties.java b/src/ooxml/java/org/apache/poi/POIXMLProperties.java index 45e17a2df6..6717c903ac 100644 --- a/src/ooxml/java/org/apache/poi/POIXMLProperties.java +++ b/src/ooxml/java/org/apache/poi/POIXMLProperties.java @@ -217,6 +217,12 @@ public class POIXMLProperties { public void setIdentifier(String identifier) { part.setIdentifierProperty(identifier); } + public String getKeywords() { + return part.getKeywordsProperty().getValue(); + } + public void setKeywords(String keywords) { + part.setKeywordsProperty(keywords); + } public Date getLastPrinted() { return part.getLastPrintedProperty().getValue(); } diff --git a/src/ooxml/testcases/org/apache/poi/xwpf/AllXWPFTests.java b/src/ooxml/testcases/org/apache/poi/xwpf/AllXWPFTests.java index 5847903311..17786326ac 100644 --- a/src/ooxml/testcases/org/apache/poi/xwpf/AllXWPFTests.java +++ b/src/ooxml/testcases/org/apache/poi/xwpf/AllXWPFTests.java @@ -45,6 +45,8 @@ public final class AllXWPFTests { result.addTestSuite(TestXWPFParagraph.class); result.addTestSuite(TestXWPFRun.class); result.addTestSuite(TestXWPFTable.class); - return result; + result.addTestSuite(TestAllExtendedProperties.class); + result.addTestSuite(TestPackageCorePropertiesGetKeywords.class); + return result; } } diff --git a/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java b/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java new file mode 100644 index 0000000000..9db3be79ec --- /dev/null +++ b/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java @@ -0,0 +1,109 @@ +/* ==================================================================== + 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.xwpf; + +import java.io.File; +import java.io.IOException; +import java.text.ParsePosition; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.TimeZone; + +import junit.framework.TestCase; + +import org.apache.poi.POIXMLProperties.CoreProperties; +import org.apache.poi.openxml4j.OpenXML4JTestDataSamples; +import org.apache.poi.openxml4j.exceptions.InvalidFormatException; +import org.apache.poi.openxml4j.exceptions.OpenXML4JException; +import org.apache.poi.openxml4j.opc.OPCPackage; +import org.apache.poi.openxml4j.opc.PackageProperties; +import org.apache.poi.openxml4j.util.Nullable; +import org.apache.poi.util.POILogger; +import org.apache.poi.util.POILogFactory; +import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.CTVariant; +import org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.CTProperties; +import org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.CTVectorLpstr; +import org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.CTVectorVariant; + +/** + * Tests if the {@link CoreProperties#getKeywords()} method. This test has been + * submitted because even though the + * {@link PackageProperties#getKeywordsProperty()} had been present before, the + * {@link CoreProperties#getKeywords()} had been missing. + * + * The author of this has added {@link CoreProperties#getKeywords()} and + * {@link CoreProperties#setKeywords(String)} and this test is supposed to test + * them. + * + * @author Antoni Mylka + * + */ +public final class TestAllExtendedProperties extends TestCase { + public void testGetAllExtendedProperties() { + XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("TestPoiXMLDocumentCorePropertiesGetKeywords.docx"); + CTProperties ctProps = doc.getProperties().getExtendedProperties().getUnderlyingProperties(); + assertEquals("Microsoft Office Word",ctProps.getApplication()); + assertEquals("14.0000",ctProps.getAppVersion()); + assertEquals(57,ctProps.getCharacters()); + assertEquals(66,ctProps.getCharactersWithSpaces()); + assertEquals("",ctProps.getCompany()); + assertNull(ctProps.getDigSig()); + assertEquals(0,ctProps.getDocSecurity()); + assertNotNull(ctProps.getDomNode()); + + CTVectorVariant vec = ctProps.getHeadingPairs(); + assertEquals(2,vec.getVector().sizeOfVariantArray()); + assertEquals("Title",vec.getVector().getVariantArray(0).getLpstr()); + assertEquals(1,vec.getVector().getVariantArray(1).getI4()); + + assertFalse(ctProps.isSetHiddenSlides()); + assertEquals(0,ctProps.getHiddenSlides()); + assertFalse(ctProps.isSetHLinks()); + assertNull(ctProps.getHLinks()); + assertNull(ctProps.getHyperlinkBase()); + assertTrue(ctProps.isSetHyperlinksChanged()); + assertFalse(ctProps.getHyperlinksChanged()); + assertEquals(1,ctProps.getLines()); + assertTrue(ctProps.isSetLinksUpToDate()); + assertFalse(ctProps.getLinksUpToDate()); + assertNull(ctProps.getManager()); + assertFalse(ctProps.isSetMMClips()); + assertEquals(0,ctProps.getMMClips()); + assertFalse(ctProps.isSetNotes()); + assertEquals(0,ctProps.getNotes()); + assertEquals(1,ctProps.getPages()); + assertEquals(1,ctProps.getParagraphs()); + assertNull(ctProps.getPresentationFormat()); + assertTrue(ctProps.isSetScaleCrop()); + assertFalse(ctProps.getScaleCrop()); + assertTrue(ctProps.isSetSharedDoc()); + assertFalse(ctProps.getSharedDoc()); + assertFalse(ctProps.isSetSlides()); + assertEquals(0,ctProps.getSlides()); + assertEquals("Normal.dotm",ctProps.getTemplate()); + + CTVectorLpstr vec2 = ctProps.getTitlesOfParts(); + assertEquals(1,vec2.getVector().sizeOfLpstrArray()); + assertEquals("Example Word 2010 Document",vec2.getVector().getLpstrArray(0)); + + assertEquals(3,ctProps.getTotalTime()); + assertEquals(10,ctProps.getWords()); + + } +} diff --git a/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java b/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java new file mode 100644 index 0000000000..f741b0b102 --- /dev/null +++ b/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java @@ -0,0 +1,64 @@ +/* ==================================================================== + 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.xwpf; + +import java.io.File; +import java.io.IOException; +import java.text.ParsePosition; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.TimeZone; + +import junit.framework.TestCase; + +import org.apache.poi.POIXMLProperties.CoreProperties; +import org.apache.poi.openxml4j.OpenXML4JTestDataSamples; +import org.apache.poi.openxml4j.exceptions.InvalidFormatException; +import org.apache.poi.openxml4j.exceptions.OpenXML4JException; +import org.apache.poi.openxml4j.opc.OPCPackage; +import org.apache.poi.openxml4j.opc.PackageProperties; +import org.apache.poi.openxml4j.util.Nullable; +import org.apache.poi.util.POILogger; +import org.apache.poi.util.POILogFactory; +import org.apache.poi.xwpf.usermodel.XWPFDocument; + +/** + * Tests if the {@link CoreProperties#getKeywords()} method. This test has been + * submitted because even though the + * {@link PackageProperties#getKeywordsProperty()} had been present before, the + * {@link CoreProperties#getKeywords()} had been missing. + * + * The author of this has added {@link CoreProperties#getKeywords()} and + * {@link CoreProperties#setKeywords(String)} and this test is supposed to test + * them. + * + * @author Antoni Mylka + * + */ +public final class TestPackageCorePropertiesGetKeywords extends TestCase { + public void testGetSetKeywords() { + XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("TestPoiXMLDocumentCorePropertiesGetKeywords.docx"); + String keywords = doc.getProperties().getCoreProperties().getKeywords(); + assertEquals("extractor, test, rdf", keywords); + + doc.getProperties().getCoreProperties().setKeywords("test, keywords"); + doc = XWPFTestDataSamples.writeOutAndReadBack(doc); + keywords = doc.getProperties().getCoreProperties().getKeywords(); + assertEquals("test, keywords",keywords); + } +} diff --git a/test-data/document/TestPoiXMLDocumentCorePropertiesGetKeywords.docx b/test-data/document/TestPoiXMLDocumentCorePropertiesGetKeywords.docx new file mode 100644 index 0000000000000000000000000000000000000000..ee384799110f24c01e30013b0b307a6a11e0ce07 GIT binary patch literal 13380 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 Bh=~9I literal 0 HcmV?d00001