/* ==================================================================== 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.hssf.eventusermodel; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import java.io.File; import java.util.ArrayList; import java.util.List; import org.apache.poi.hssf.HSSFTestDataSamples; import org.apache.poi.hssf.record.CellValueRecordInterface; import org.apache.poi.hssf.record.FormulaRecord; import org.apache.poi.hssf.record.NumberRecord; import org.apache.poi.hssf.record.Record; import org.apache.poi.poifs.filesystem.POIFSFileSystem; import org.junit.Test; /** * Tests for FormatTrackingHSSFListener */ public final class TestFormatTrackingHSSFListener { private FormatTrackingHSSFListener listener; private MockHSSFListener mockListen; private void processFile(String filename) throws Exception { HSSFRequest req = new HSSFRequest(); mockListen = new MockHSSFListener(); listener = new FormatTrackingHSSFListener(mockListen); req.addListenerForAllRecords(listener); File file = HSSFTestDataSamples.getSampleFile(filename); HSSFEventFactory factory = new HSSFEventFactory(); POIFSFileSystem fs = new POIFSFileSystem(file); factory.processWorkbookEvents(req, fs); fs.close(); } @Test public void testFormats() throws Exception { processFile("MissingBits.xls"); assertEquals("_(* #,##0_);_(* (#,##0);_(* \"-\"_);_(@_)", listener.getFormatString(41)); assertEquals("_(\"$\"* #,##0_);_(\"$\"* (#,##0);_(\"$\"* \"-\"_);_(@_)", listener.getFormatString(42)); assertEquals("_(* #,##0.00_);_(* (#,##0.00);_(* \"-\"??_);_(@_)", listener.getFormatString(43)); assertEquals("_(\"$\"* #,##0.00_);_(\"$\"* (#,##0.00);_(\"$\"* \"-\"??_);_(@_)", listener.getFormatString(44)); } /** * Ensure that all number and formula records can be * turned into strings without problems. * For now, we're just looking to get text back, no * exceptions thrown, but in future we might also * want to check the exact strings! */ @Test public void testTurnToString() throws Exception { String[] files = new String[] { "45365.xls", "45365-2.xls", "MissingBits.xls" }; for (String file : files) { processFile(file); // Check we found our formats assertTrue(listener.getNumberOfCustomFormats() > 5); assertTrue(listener.getNumberOfExtendedFormats() > 5); // Now check we can turn all the numeric // cells into strings without error for(Record r : mockListen._records) { CellValueRecordInterface cvr = null; if(r instanceof NumberRecord) { cvr = (CellValueRecordInterface)r; } if(r instanceof FormulaRecord) { cvr = (CellValueRecordInterface)r; } if(cvr != null) { // Should always give us a string String s = listener.formatNumberDateCell(cvr); assertNotNull(s); assertTrue(s.length() > 0); } } // TODO - test some specific format strings } } private static final class MockHSSFListener implements HSSFListener { public MockHSSFListener() {} private final List<Record> _records = new ArrayList<Record>(); @Override public void processRecord(Record record) { _records.add(record); } } }