/* ====================================================================
* 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
*
Tests the basic HPSF functionality.
* * @author Rainer Klute (klute@rainer-klute.de) * @since 2002-07-20 * @version $Id$ */ public class TestBasic extends TestCase { static final String POI_FS = "TestGermanWord90.doc"; static final String[] POI_FILES = new String[] { "\005SummaryInformation", "\005DocumentSummaryInformation", "WordDocument", "\001CompObj", "1Table" }; static final int BYTE_ORDER = 0xfffe; static final int FORMAT = 0x0000; static final int OS_VERSION = 0x00020A04; static final byte[] CLASS_ID = { (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }; static final int[] SECTION_COUNT = {1, 2}; static final boolean[] IS_SUMMARY_INFORMATION = {true, false}; static final boolean[] IS_DOCUMENT_SUMMARY_INFORMATION = {false, true}; POIFile[] poiFiles; /** *Test case constructor.
* * @param name The test case's name. */ public TestBasic(final String name) { super(name); } /** *Read a the test file from the "data" directory.
* * @exception FileNotFoundException if the file to be read does not exist. * @exception IOException if any other I/O exception occurs. */ public void setUp() throws FileNotFoundException, IOException { final File dataDir = new File(System.getProperty("HPSF.testdata.path")); final File data = new File(dataDir, POI_FS); poiFiles = Util.readPOIFiles(data); } /** *Checks the names of the files in the POI filesystem. They * are expected to be in a certain order.
* * @exception IOException if an I/O exception occurs */ public void testReadFiles() throws IOException { String[] expected = POI_FILES; for (int i = 0; i < expected.length; i++) Assert.assertEquals(poiFiles[i].getName(), expected[i]); } /** *Tests whether property sets can be created from the POI * files in the POI file system. This test case expects the first * file to be a {@link SummaryInformation}, the second file to be * a {@link DocumentSummaryInformation} and the rest to be no * property sets. In the latter cases a {@link * NoPropertySetStreamException} will be thrown when trying to * create a {@link PropertySet}.
* * @exception IOException if an I/O exception occurs */ public void testCreatePropertySets() throws IOException { Class[] expected = new Class[] { SummaryInformation.class, DocumentSummaryInformation.class, NoPropertySetStreamException.class, NoPropertySetStreamException.class, NoPropertySetStreamException.class }; for (int i = 0; i < expected.length; i++) { InputStream in = new ByteArrayInputStream(poiFiles[i].getBytes()); Object o; try { o = PropertySetFactory.create(in); } catch (NoPropertySetStreamException ex) { o = ex; } catch (MarkUnsupportedException ex) { o = ex; } in.close(); Assert.assertEquals(o.getClass(), expected[i]); } } /** *Tests the {@link PropertySet} methods. The test file has two * property sets: the first one is a {@link SummaryInformation}, * the second one is a {@link DocumentSummaryInformation}.
* * @exception IOException if an I/O exception occurs * @exception HPSFException if any HPSF exception occurs */ public void testPropertySetMethods() throws IOException, HPSFException { /* Loop over the two property sets. */ for (int i = 0; i < 2; i++) { byte[] b = poiFiles[i].getBytes(); PropertySet ps = PropertySetFactory.create(new ByteArrayInputStream(b)); Assert.assertEquals(ps.getByteOrder(), BYTE_ORDER); Assert.assertEquals(ps.getFormat(), FORMAT); Assert.assertEquals(ps.getOSVersion(), OS_VERSION); Assert.assertEquals(new String(ps.getClassID().getBytes()), new String(CLASS_ID)); Assert.assertEquals(ps.getSectionCount(), SECTION_COUNT[i]); Assert.assertEquals(ps.isSummaryInformation(), IS_SUMMARY_INFORMATION[i]); Assert.assertEquals(ps.isDocumentSummaryInformation(), IS_DOCUMENT_SUMMARY_INFORMATION[i]); } } /** *Tests the {@link Section} methods. The test file has two * property sets: the first one is a {@link SummaryInformation}, * the second one is a {@link DocumentSummaryInformation}.
* * @exception IOException if an I/O exception occurs * @exception HPSFException if any HPSF exception occurs */ public void testSectionMethods() throws IOException, HPSFException { final SummaryInformation si = (SummaryInformation) PropertySetFactory.create(new ByteArrayInputStream (poiFiles[0].getBytes())); final List sections = si.getSections(); final Section s = (Section) sections.get(0); Assert.assertTrue(org.apache.poi.hpsf.Util.equal (s.getFormatID().getBytes(), SectionIDMap.SUMMARY_INFORMATION_ID)); Assert.assertNotNull(s.getProperties()); Assert.assertEquals(17, s.getPropertyCount()); Assert.assertEquals("Titel", s.getProperty(2)); Assert.assertEquals(1764, s.getSize()); } /** *This test methods reads all property set streams from all POI * filesystems in the "data" directory.
*/ public void testReadAllFiles() { final File dataDir = new File(System.getProperty("HPSF.testdata.path")); final File[] fileList = dataDir.listFiles(new FileFilter() { public boolean accept(final File f) { return f.isFile(); } }); try { for (int i = 0; i < fileList.length; i++) { File f = fileList[i]; /* Read the POI filesystem's property set streams: */ final POIFile[] psf1 = Util.readPropertySets(f); for (int j = 0; j < psf1.length; j++) { final InputStream in = new ByteArrayInputStream(psf1[j].getBytes()); final PropertySet psIn = PropertySetFactory.create(in); } } } catch (Throwable t) { final String s = org.apache.poi.hpsf.Util.toString(t); fail(s); } } /** *Runs the test cases stand-alone.
* * @param args Command-line arguments (ignored) * * @exception Throwable if any sort of exception or error occurs */ public static void main(final String[] args) throws Throwable { System.setProperty("HPSF.testdata.path", "./src/testcases/org/apache/poi/hpsf/data"); junit.textui.TestRunner.run(TestBasic.class); } }