testworkbookevaluator.java

来自「EXCEL read and write」· Java 代码 · 共 158 行

JAVA
158
字号
/* ====================================================================   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 junit.framework.TestCase;import org.apache.poi.hssf.HSSFTestDataSamples;import org.apache.poi.hssf.record.formula.AreaErrPtg;import org.apache.poi.hssf.record.formula.AttrPtg;import org.apache.poi.hssf.record.formula.DeletedArea3DPtg;import org.apache.poi.hssf.record.formula.DeletedRef3DPtg;import org.apache.poi.hssf.record.formula.IntPtg;import org.apache.poi.hssf.record.formula.Ptg;import org.apache.poi.hssf.record.formula.RefErrorPtg;import org.apache.poi.hssf.record.formula.eval.ErrorEval;import org.apache.poi.hssf.record.formula.eval.NumberEval;import org.apache.poi.hssf.record.formula.eval.ValueEval;import org.apache.poi.hssf.usermodel.HSSFCell;import org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator;import org.apache.poi.hssf.usermodel.HSSFSheet;import org.apache.poi.hssf.usermodel.HSSFWorkbook;/** * Tests {@link WorkbookEvaluator}. * * @author Josh Micich */public class TestWorkbookEvaluator extends TestCase {	/**	 * Make sure that the evaluator can directly handle tAttrSum (instead of relying on re-parsing	 * the whole formula which converts tAttrSum to tFuncVar("SUM") )	 */	public void testAttrSum() {		Ptg[] ptgs = {			new IntPtg(42),			AttrPtg.SUM,		};		ValueEval result = new WorkbookEvaluator(null).evaluateFormula(0, 0, 0, ptgs, null);		assertEquals(42, ((NumberEval)result).getNumberValue(), 0.0);	}	/**	 * Make sure that the evaluator can directly handle (deleted) ref error tokens	 * (instead of relying on re-parsing the whole formula which converts these	 * to the error constant #REF! )	 */	public void testRefErr() {		confirmRefErr(new RefErrorPtg());		confirmRefErr(new AreaErrPtg());		confirmRefErr(new DeletedRef3DPtg(0));		confirmRefErr(new DeletedArea3DPtg(0));	}	private static void confirmRefErr(Ptg ptg) {		Ptg[] ptgs = {			ptg,		};		ValueEval result = new WorkbookEvaluator(null).evaluateFormula(0, 0, 0, ptgs, null);		assertEquals(ErrorEval.REF_INVALID, result);	}	/**	 * Make sure that the evaluator can directly handle tAttrSum (instead of relying on re-parsing	 * the whole formula which converts tAttrSum to tFuncVar("SUM") )	 */	public void testMemFunc() {		Ptg[] ptgs = {			new IntPtg(42),			AttrPtg.SUM,		};		ValueEval result = new WorkbookEvaluator(null).evaluateFormula(0, 0, 0, ptgs, null);		assertEquals(42, ((NumberEval)result).getNumberValue(), 0.0);	}	public void testEvaluateMultipleWorkbooks() {		HSSFWorkbook wbA = HSSFTestDataSamples.openSampleWorkbook("multibookFormulaA.xls");		HSSFWorkbook wbB = HSSFTestDataSamples.openSampleWorkbook("multibookFormulaB.xls");		HSSFFormulaEvaluator evaluatorA = new HSSFFormulaEvaluator(wbA);		HSSFFormulaEvaluator evaluatorB = new HSSFFormulaEvaluator(wbB);		// Hook up the workbook evaluators to enable evaluation of formulas across books		String[] bookNames = { "multibookFormulaA.xls", "multibookFormulaB.xls", };		HSSFFormulaEvaluator[] evaluators = { evaluatorA, evaluatorB, };		HSSFFormulaEvaluator.setupEnvironment(bookNames, evaluators);		HSSFCell cell;		HSSFSheet aSheet1 = wbA.getSheetAt(0);		HSSFSheet bSheet1 = wbB.getSheetAt(0);		// Simple case - single link from wbA to wbB		confirmFormula(wbA, 0, 0, 0, "[multibookFormulaB.xls]BSheet1!B1");		cell = aSheet1.getRow(0).getCell(0);		confirmEvaluation(35, evaluatorA, cell);		// more complex case - back link into wbA		// [wbA]ASheet1!A2 references (among other things) [wbB]BSheet1!B2		confirmFormula(wbA, 0, 1, 0, "[multibookFormulaB.xls]BSheet1!$B$2+2*A3");		// [wbB]BSheet1!B2 references (among other things) [wbA]AnotherSheet!A1:B2		confirmFormula(wbB, 0, 1, 1, "SUM([multibookFormulaA.xls]AnotherSheet!$A$1:$B$2)+B3");		cell = aSheet1.getRow(1).getCell(0);		confirmEvaluation(264, evaluatorA, cell);		// change [wbB]BSheet1!B3 (from 50 to 60)		HSSFCell cellB3 = bSheet1.getRow(2).getCell(1);		cellB3.setCellValue(60);		evaluatorB.notifyUpdateCell(cellB3);		confirmEvaluation(274, evaluatorA, cell);		// change [wbA]ASheet1!A3 (from 100 to 80)		HSSFCell cellA3 = aSheet1.getRow(2).getCell(0);		cellA3.setCellValue(80);		evaluatorA.notifyUpdateCell(cellA3);		confirmEvaluation(234, evaluatorA, cell);		// change [wbA]AnotherSheet!A1 (from 2 to 3)		HSSFCell cellA1 = wbA.getSheetAt(1).getRow(0).getCell(0);		cellA1.setCellValue(3);		evaluatorA.notifyUpdateCell(cellA1);		confirmEvaluation(235, evaluatorA, cell);	}	private static void confirmEvaluation(double expectedValue, HSSFFormulaEvaluator fe, HSSFCell cell) {		assertEquals(expectedValue, fe.evaluate(cell).getNumberValue(), 0.0);	}	private static void confirmFormula(HSSFWorkbook wb, int sheetIndex, int rowIndex, int columnIndex,			String expectedFormula) {		HSSFCell cell = wb.getSheetAt(sheetIndex).getRow(rowIndex).getCell(columnIndex);		assertEquals(expectedFormula, cell.getCellFormula());	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?