diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-07-29 16:57:03 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-07-29 16:57:03 +0000 |
commit | cd7b6b71972d00613da4a7f2672916c1df70f531 (patch) | |
tree | 2579fe3d945e66d8230a19690b45795af5b59d48 /poi/src/test/java | |
parent | 1b527ceca5406925b076b1fe1613ff5438e03b04 (diff) | |
download | poi-cd7b6b71972d00613da4a7f2672916c1df70f531.tar.gz poi-cd7b6b71972d00613da4a7f2672916c1df70f531.zip |
[bug-65467] support IFNA() function. Thanks to Ross Patterson
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891876 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi/src/test/java')
3 files changed, 133 insertions, 1 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/TestFunctionRegistry.java b/poi/src/test/java/org/apache/poi/ss/formula/TestFunctionRegistry.java index 1889f8b82d..1316215623 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/TestFunctionRegistry.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/TestFunctionRegistry.java @@ -163,7 +163,7 @@ class TestFunctionRegistry { () -> AnalysisToolPak.registerFunction("SUM", TestFunctionRegistry::atpFunc) ); assertEquals("SUM is a built-in Excel function. " + - "Use FunctoinEval.registerFunction(String name, Function func) instead.", + "Use FunctionEval.registerFunction(String name, Function func) instead.", ex.getMessage()); } } diff --git a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java new file mode 100644 index 0000000000..a57f197b37 --- /dev/null +++ b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java @@ -0,0 +1,100 @@ +/* ==================================================================== + 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.ss.formula.atp; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import org.apache.poi.hssf.usermodel.HSSFCell; +import org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator; +import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.formula.eval.ErrorEval; +import org.apache.poi.ss.usermodel.CellType; +import org.apache.poi.ss.usermodel.CellValue; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.BeforeEach; + + +/** + * IfNa unit tests. + */ +class TestIfna { + + HSSFWorkbook wb; + HSSFCell cell; + HSSFFormulaEvaluator fe; + + @BeforeEach + void setup() { + wb = new HSSFWorkbook(); + cell = wb.createSheet().createRow(0).createCell(0); + fe = new HSSFFormulaEvaluator(wb); + } + + @Test + void testNumbericArgsWorkCorrectly() { + confirmResult(fe, cell, "IFNA(-1,42)", new CellValue(-1.0)); + confirmResult(fe, cell, "IFNA(NA(),42)", new CellValue(42.0)); + } + + @Test + void testStringArgsWorkCorrectly() { + confirmResult(fe, cell, "IFNA(\"a1\",\"a2\")", new CellValue("a1")); + confirmResult(fe, cell, "IFNA(NA(),\"a2\")", new CellValue("a2")); + } + + @Test + void testUsageErrorsThrowErrors() { + confirmError(fe, cell, "IFNA(1)", ErrorEval.VALUE_INVALID); + confirmError(fe, cell, "IFNA(1,2,3)", ErrorEval.VALUE_INVALID); + } + + @Test + void testErrorInArgSelectsNAResult() { + confirmError(fe, cell, "IFNA(1/0,42)", ErrorEval.DIV_ZERO); + } + + @Test + void testErrorFromNAArgPassesThrough() { + confirmError(fe, cell, "IFNA(NA(),1/0)", ErrorEval.DIV_ZERO); + } + + @Test + void testNaArgNotEvaledIfUnneeded() { + confirmResult(fe, cell, "IFNA(42,1/0)", new CellValue(42.0)); + } + + private static void confirmResult(HSSFFormulaEvaluator fe, HSSFCell cell, String formulaText, + CellValue expectedResult) { + fe.setDebugEvaluationOutputForNextEval(true); + cell.setCellFormula(formulaText); + fe.notifyUpdateCell(cell); + CellValue result = fe.evaluate(cell); + assertEquals(expectedResult.getCellType(), result.getCellType(), "Testing result type for: " + formulaText); + assertEquals(expectedResult.formatAsString(), result.formatAsString(), "Testing result for: " + formulaText); + } + + private static void confirmError(HSSFFormulaEvaluator fe, HSSFCell cell, String formulaText, + ErrorEval expectedError) { + fe.setDebugEvaluationOutputForNextEval(true); + cell.setCellFormula(formulaText); + fe.notifyUpdateCell(cell); + CellValue result = fe.evaluate(cell); + assertEquals(CellType.ERROR, result.getCellType(), "Testing result type for: " + formulaText); + assertEquals(expectedError.getErrorString(), result.formatAsString(), "Testing error type for: " + formulaText); + } +} diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIfnaFromSpreadsheet.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIfnaFromSpreadsheet.java new file mode 100644 index 0000000000..d17f9dc8cb --- /dev/null +++ b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIfnaFromSpreadsheet.java @@ -0,0 +1,32 @@ +/* ==================================================================== + 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.ss.formula.functions; + +import java.util.stream.Stream; + +import org.junit.jupiter.params.provider.Arguments; + +/** + * Tests for IFNA function as loaded from a test data spreadsheet.<p> + */ +class TestIfnaFromSpreadsheet extends BaseTestFunctionsFromSpreadsheet { + + public static Stream<Arguments> data() throws Exception { + return data(TestIfnaFromSpreadsheet.class, "IfNaTestCaseData.xls"); + } +} |