⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testformulaparser.java

📁 java 读写word excel ppt
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* ====================================================================   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.model;import junit.framework.TestCase;import org.apache.poi.hssf.record.formula.AbstractFunctionPtg;import org.apache.poi.hssf.record.formula.AddPtg;import org.apache.poi.hssf.record.formula.AttrPtg;import org.apache.poi.hssf.record.formula.BoolPtg;import org.apache.poi.hssf.record.formula.DividePtg;import org.apache.poi.hssf.record.formula.EqualPtg;import org.apache.poi.hssf.record.formula.FuncVarPtg;import org.apache.poi.hssf.record.formula.IntPtg;import org.apache.poi.hssf.record.formula.LessEqualPtg;import org.apache.poi.hssf.record.formula.LessThanPtg;import org.apache.poi.hssf.record.formula.NamePtg;import org.apache.poi.hssf.record.formula.NotEqualPtg;import org.apache.poi.hssf.record.formula.NumberPtg;import org.apache.poi.hssf.record.formula.Ptg;import org.apache.poi.hssf.record.formula.ReferencePtg;import org.apache.poi.hssf.record.formula.StringPtg;import org.apache.poi.hssf.record.formula.UnaryMinusPtg;import org.apache.poi.hssf.record.formula.UnaryPlusPtg;import org.apache.poi.hssf.usermodel.HSSFCell;import org.apache.poi.hssf.usermodel.HSSFRow;import org.apache.poi.hssf.usermodel.HSSFSheet;import org.apache.poi.hssf.usermodel.HSSFWorkbook;/** * Test the low level formula parser functionality. High level tests are to  * be done via usermodel/HSSFCell.setFormulaValue() .  */public class TestFormulaParser extends TestCase {    public TestFormulaParser(String name) {        super(name);    }    public void setUp(){            }        public void tearDown() {            }        public void testSimpleFormula() {        FormulaParser fp = new FormulaParser("2+2;",null);        fp.parse();        Ptg[] ptgs = fp.getRPNPtg();        assertTrue("three tokens expected, got "+ptgs.length,ptgs.length == 3);    }    public void testFormulaWithSpace1() {        FormulaParser fp = new FormulaParser(" 2 + 2 ;",null);        fp.parse();        Ptg[] ptgs = fp.getRPNPtg();        assertTrue("three tokens expected, got "+ptgs.length,ptgs.length == 3);        assertTrue("",(ptgs[0] instanceof IntPtg));        assertTrue("",(ptgs[1] instanceof IntPtg));        assertTrue("",(ptgs[2] instanceof AddPtg));            }        public void testFormulaWithSpace2() {        Ptg[] ptgs;        FormulaParser fp;        fp = new FormulaParser("2+ sum( 3 , 4) ;",null);        fp.parse();        ptgs = fp.getRPNPtg();        assertTrue("five tokens expected, got "+ptgs.length,ptgs.length == 5);    }         public void testFormulaWithSpaceNRef() {        Ptg[] ptgs;        FormulaParser fp;        fp = new FormulaParser("sum( A2:A3 );",null);        fp.parse();        ptgs = fp.getRPNPtg();        assertTrue("two tokens expected, got "+ptgs.length,ptgs.length == 2);    }        public void testFormulaWithString() {        Ptg[] ptgs;        FormulaParser fp;        fp = new FormulaParser("\"hello\" & \"world\" ;",null);        fp.parse();        ptgs = fp.getRPNPtg();        assertTrue("three token expected, got " + ptgs.length, ptgs.length == 3);    }    public void testTRUE() throws Exception {        FormulaParser fp = new FormulaParser("TRUE", null);        fp.parse();        Ptg[] asts = fp.getRPNPtg();        assertEquals(1, asts.length);        BoolPtg flag  = (BoolPtg) asts[0];        assertEquals(true, flag.getValue());    }    public void testYN() throws Exception {        final String yn = "IF(TRUE,\"Y\",\"N\")";        FormulaParser fp = new FormulaParser(yn, null);        fp.parse();        Ptg[] asts = fp.getRPNPtg();        assertEquals(7, asts.length);        BoolPtg flag  = (BoolPtg) asts[0];		AttrPtg funif = (AttrPtg) asts[1];        StringPtg y = (StringPtg) asts[2];		AttrPtg goto1 = (AttrPtg) asts[3];        StringPtg n = (StringPtg) asts[4];        assertEquals(true, flag.getValue());        assertEquals("Y", y.getValue());        assertEquals("N", n.getValue());        assertEquals("IF", funif.toFormulaString((Workbook) null));        assertTrue("Goto ptg exists", goto1.isGoto());    }	public void testSimpleIf() throws Exception {		final String simpleif = "IF(1=1,0,1)";		FormulaParser fp = new FormulaParser(simpleif, null);		fp.parse();		Ptg[] asts = fp.getRPNPtg();		assertEquals(9, asts.length);				IntPtg op1 = (IntPtg) asts[0];		IntPtg op2 = (IntPtg) asts[1];		EqualPtg eq = (EqualPtg) asts[2];				AttrPtg ifPtg = (AttrPtg) asts[3];		IntPtg res1 = (IntPtg) asts[4];						AttrPtg ptgGoto= (AttrPtg) asts[5];				assertEquals("Goto 1 Length", (short)10, ptgGoto.getData());				IntPtg res2 = (IntPtg) asts[6];				AttrPtg ptgGoto2 = (AttrPtg) asts[7];				assertEquals("Goto 2 Length", (short)3, ptgGoto2.getData());				assertEquals("If FALSE offset", (short)7, ifPtg.getData());				FuncVarPtg funcPtg = (FuncVarPtg)asts[8];					}    	/**	 * Make sure the ptgs are generated properly with two functions embedded	 *	 */	public void testNestedFunctionIf() {		String function = "IF(A1=B1,AVERAGE(A1:B1),AVERAGE(A2:B2))";		FormulaParser fp = new FormulaParser(function, null);		fp.parse();		Ptg[] asts = fp.getRPNPtg();		assertEquals("11 Ptgs expected", 11, asts.length);		assertTrue("IF Attr set correctly", (asts[3] instanceof AttrPtg));		AttrPtg ifFunc = (AttrPtg)asts[3];		assertTrue("It is not an if", ifFunc.isOptimizedIf());				assertTrue("Average Function set correctly", (asts[5] instanceof FuncVarPtg));						    		}		public void testIfSingleCondition(){		String function = "IF(1=1,10)";		FormulaParser fp = new FormulaParser(function, null);		fp.parse();		Ptg[] asts = fp.getRPNPtg();		assertEquals("7 Ptgs expected", 7, asts.length);		assertTrue("IF Attr set correctly", (asts[3] instanceof AttrPtg));		AttrPtg ifFunc = (AttrPtg)asts[3];		assertTrue("It is not an if", ifFunc.isOptimizedIf());				assertTrue("Single Value is not an IntPtg", (asts[4] instanceof IntPtg));		IntPtg intPtg = (IntPtg)asts[4];		assertEquals("Result", (short)10, intPtg.getValue());				assertTrue("Ptg is not a Variable Function", (asts[6] instanceof FuncVarPtg));		FuncVarPtg funcPtg = (FuncVarPtg)asts[6];		assertEquals("Arguments", 2, funcPtg.getNumberOfOperands());					}	public void testSumIf() {		String function ="SUMIF(A1:A5,\">4000\",B1:B5)";		FormulaParser fp = new FormulaParser(function, null);		fp.parse();		Ptg[] asts = fp.getRPNPtg();		assertEquals("4 Ptgs expected", 4, asts.length);			}	 	/**	 * Bug Reported by xt-jens.riis@nokia.com (Jens Riis)	 * Refers to Bug <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=17582">#17582</a>	 *	 */	public void testNonAlphaFormula(){		String currencyCell = "F3";		String function="\"TOTAL[\"&"+currencyCell+"&\"]\"";		FormulaParser fp = new FormulaParser(function, null);		fp.parse();		Ptg[] asts = fp.getRPNPtg();		assertEquals("5 ptgs expected", 5, asts.length);		assertTrue ("Ptg[0] is a string", (asts[0] instanceof StringPtg));		StringPtg firstString = (StringPtg)asts[0];						assertEquals("TOTAL[", firstString.getValue());		//the PTG order isn't 100% correct but it still works - dmui								}        	public void testSimpleLogical() {		FormulaParser fp=new FormulaParser("IF(A1<A2,B1,B2)",null);		fp.parse();      Ptg[] ptgs = fp.getRPNPtg();      assertTrue("Ptg array should not be null", ptgs !=null);      assertEquals("Ptg array length", 9, ptgs.length);      assertEquals("3rd Ptg is less than",LessThanPtg.class,ptgs[2].getClass());                       	}	 	public void testParenIf() {		FormulaParser fp=new FormulaParser("IF((A1+A2)<=3,\"yes\",\"no\")",null);		fp.parse();		Ptg[] ptgs = fp.getRPNPtg();		assertTrue("Ptg array should not be null", ptgs !=null);		assertEquals("Ptg array length", 12, ptgs.length);		assertEquals("6th Ptg is less than equal",LessEqualPtg.class,ptgs[5].getClass());

⌨️ 快捷键说明

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