/* ==================================================================== 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.usermodel; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.io.IOException; import org.apache.poi.hssf.HSSFITestDataProvider; import org.apache.poi.hssf.HSSFTestDataSamples; import org.apache.poi.ss.usermodel.BaseTestDataFormat; import org.apache.poi.ss.usermodel.BuiltinFormats; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.DataFormat; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.util.POILogFactory; import org.apache.poi.util.POILogger; import org.junit.Test; /** * Tests for {@link HSSFDataFormat} */ public final class TestHSSFDataFormat extends BaseTestDataFormat { private static POILogger _logger = POILogFactory.getLogger(TestHSSFDataFormat.class); public TestHSSFDataFormat() { super(HSSFITestDataProvider.instance); } /** * [Bug 49928] formatCellValue returns incorrect value for \u00a3 formatted cells */ @Override @Test public void test49928() throws IOException { HSSFWorkbook wb = HSSFTestDataSamples.openSampleWorkbook("49928.xls"); doTest49928Core(wb); // an attempt to register an existing format returns its index int poundFmtIdx = wb.getSheetAt(0).getRow(0).getCell(0).getCellStyle().getDataFormat(); assertEquals(poundFmtIdx, wb.createDataFormat().getFormat(poundFmt)); // now create a custom format with Pound (\u00a3) DataFormat dataFormat = wb.createDataFormat(); short customFmtIdx = dataFormat.getFormat("\u00a3##.00[Yellow]"); assertTrue(customFmtIdx >= BuiltinFormats.FIRST_USER_DEFINED_FORMAT_INDEX ); assertEquals("\u00a3##.00[Yellow]", dataFormat.getFormat(customFmtIdx)); wb.close(); } /** * [Bug 58532] Handle formats that go numnum, numK, numM etc */ @Override @Test public void test58532() throws IOException { HSSFWorkbook wb = HSSFTestDataSamples.openSampleWorkbook("FormatKM.xls"); doTest58532Core(wb); wb.close(); } /** * Bug 51378: getDataFormatString method call crashes when reading the test file */ @Test public void test51378() throws IOException { HSSFWorkbook wb = HSSFTestDataSamples.openSampleWorkbook("12561-1.xls"); for (int i = 0; i < wb.getNumberOfSheets(); i++) { HSSFSheet sheet = wb.getSheetAt(i); for (Row row : sheet) { for (Cell cell : row) { CellStyle style = cell.getCellStyle(); String fmt = style.getDataFormatString(); if(fmt == null) { _logger.log(POILogger.WARN, cell + ": " + fmt); } } } } wb.close(); } }