]> source.dussan.org Git - poi.git/commitdiff
[bug-65939] add partial fix for clearing formula with circular ref
authorPJ Fanning <fanningpj@apache.org>
Mon, 7 Mar 2022 12:06:30 +0000 (12:06 +0000)
committerPJ Fanning <fanningpj@apache.org>
Mon, 7 Mar 2022 12:06:30 +0000 (12:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898677 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/test/java/org/apache/poi/xssf/usermodel/TestFormulaEval.java [new file with mode: 0644]
poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java
poi/src/test/java/org/apache/poi/ss/formula/TestFormulaEval.java [new file with mode: 0644]

diff --git a/poi-ooxml/src/test/java/org/apache/poi/xssf/usermodel/TestFormulaEval.java b/poi-ooxml/src/test/java/org/apache/poi/xssf/usermodel/TestFormulaEval.java
new file mode 100644 (file)
index 0000000..6d40f40
--- /dev/null
@@ -0,0 +1,28 @@
+package org.apache.poi.xssf.usermodel;
+
+import org.apache.poi.ss.usermodel.CellType;
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+class TestFormulaEval {
+    @Test
+    void testCircularRef() throws IOException {
+        try (XSSFWorkbook wb = new XSSFWorkbook()) {
+            XSSFSheet sheet = wb.createSheet();
+            XSSFRow row = sheet.createRow(0);
+            XSSFCell cell = row.createCell(0);
+            cell.setCellFormula("A1");
+            XSSFFormulaEvaluator formulaEvaluator = wb.getCreationHelper().createFormulaEvaluator();
+            // the following assert should probably be NUMERIC not ERROR (from testing in Excel itself)
+            assertEquals(CellType.ERROR, formulaEvaluator.evaluateFormulaCell(cell));
+
+            cell.setCellFormula(null);
+            formulaEvaluator.notifyUpdateCell(cell);
+            //the following assert should probably be BLANK not ERROR
+            assertEquals(CellType.ERROR, cell.getCellType());
+        }
+    }
+}
index e87b83bb956afec61c50d824e1c96d963a36feea..5b10f8d99b0c48bf36332ce6eef634cff489e48c 100644 (file)
@@ -114,7 +114,9 @@ abstract class CellCacheEntry implements ICacheEntry {
         for (int i = 0; i < formulaCells.length; i++) {
             FormulaCellCacheEntry fc = formulaCells[i];
             fc.clearFormulaEntry();
-            fc.recurseClearCachedFormulaResults();
+            if (fc != this) {
+                fc.recurseClearCachedFormulaResults();
+            }
         }
     }
 
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/TestFormulaEval.java b/poi/src/test/java/org/apache/poi/ss/formula/TestFormulaEval.java
new file mode 100644 (file)
index 0000000..24e727b
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ *  ====================================================================
+ *    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;
+
+import org.apache.poi.hssf.usermodel.HSSFCell;
+import org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator;
+import org.apache.poi.hssf.usermodel.HSSFRow;
+import org.apache.poi.hssf.usermodel.HSSFSheet;
+import org.apache.poi.hssf.usermodel.HSSFWorkbook;
+import org.apache.poi.ss.usermodel.CellType;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+class TestFormulaEval {
+
+    @Disabled("https://bz.apache.org/bugzilla/show_bug.cgi?id=65939")
+    @Test
+    void testCircularRef() throws IOException {
+        try (HSSFWorkbook wb = new HSSFWorkbook()) {
+            HSSFSheet sheet = wb.createSheet();
+            HSSFRow row = sheet.createRow(0);
+            HSSFCell cell = row.createCell(0);
+            cell.setCellFormula("A1");
+            HSSFFormulaEvaluator formulaEvaluator = wb.getCreationHelper().createFormulaEvaluator();
+            // the following assert should probably be NUMERIC not ERROR (from testing in Excel itself)
+            assertEquals(CellType.ERROR, formulaEvaluator.evaluateFormulaCell(cell));
+
+            cell.setCellFormula(null); //this line fails
+            formulaEvaluator.notifyUpdateCell(cell);
+        }
+    }
+}