/************************************************************************* * * $RCSfile: DBaseNumericFunctions.java,v $ * * $Revision: 1.2 $ * * last change: $Author: obo $ $Date: 2003-09-04 08:22:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (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.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ package complex.connectivity; import complex.connectivity.DBaseDriverTest; import com.sun.star.uno.UnoRuntime; import com.sun.star.util.XCloseable; import com.sun.star.sdbc.*; import com.sun.star.sdb.*; import com.sun.star.beans.PropertyValue; import com.sun.star.beans.XPropertySet; import com.sun.star.lang.XMultiServiceFactory; import complexlib.ComplexTestCase; import java.io.PrintWriter; import util.utils; import java.util.*; import java.io.*; public class DBaseNumericFunctions { private String where = "FROM \"biblio\" \"biblio\" where \"Identifier\" = 'BOR02b'"; private XMultiServiceFactory m_xORB; private DBaseDriverTest testcase; public DBaseNumericFunctions(XMultiServiceFactory _xORB,DBaseDriverTest _testcase){ m_xORB = _xORB; testcase = _testcase; } private void assure(String s,boolean b){ testcase.assure2(s,b); } public void testFunctions() throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRowSet xRowRes = (XRowSet)UnoRuntime.queryInterface(XRowSet.class, m_xORB.createInstance("com.sun.star.sdb.RowSet")); System.out.println("starting Numeric function test"); // set the properties needed to connect to a database XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,xRowRes); xProp.setPropertyValue("DataSourceName","Bibliography"); xProp.setPropertyValue("CommandType",new Integer(com.sun.star.sdb.CommandType.COMMAND)); try { abs(xRowRes); } catch( SQLException ex){ assure("abs " + ex.getMessage(),false); throw ex; } try{ acos(xRowRes); } catch( SQLException ex){ assure("acos " + ex.getMessage(),false); throw ex; } try{ asin(xRowRes); } catch( SQLException ex){ assure("asin " + ex.getMessage(),false); throw ex; } try{ atan(xRowRes); } catch( SQLException ex){ assure("atan " + ex.getMessage(),false); throw ex; } try{ atan2(xRowRes); } catch( SQLException ex){ assure("atan2 " + ex.getMessage(),false); throw ex; } try{ ceiling(xRowRes); } catch( SQLException ex){ assure("ceiling " + ex.getMessage(),false); throw ex; } try{ cos(xRowRes); } catch( SQLException ex){ assure("cos " + ex.getMessage(),false); throw ex; } try{ degrees(xRowRes); } catch( SQLException ex){ assure("degrees " + ex.getMessage(),false); throw ex; } try{ exp(xRowRes); } catch( SQLException ex){ assure("exp " + ex.getMessage(),false); throw ex; } try{ floor(xRowRes); } catch( SQLException ex){ assure("floor " + ex.getMessage(),false); throw ex; } try{ log(xRowRes); } catch( SQLException ex){ assure("log " + ex.getMessage(),false); throw ex; } try{ log10(xRowRes); } catch( SQLException ex){ assure("log10 " + ex.getMessage(),false); throw ex; } try{ mod(xRowRes); } catch( SQLException ex){ assure("mod " + ex.getMessage(),false); throw ex; } try{ pi(xRowRes); } catch( SQLException ex){ assure("pi " + ex.getMessage(),false); throw ex; } try{ pow(xRowRes); } catch( SQLException ex){ assure("pow " + ex.getMessage(),false); throw ex; } try{ radians(xRowRes); } catch( SQLException ex){ assure("radians " + ex.getMessage(),false); throw ex; } try{ round(xRowRes); } catch( SQLException ex){ assure("round " + ex.getMessage(),false); throw ex; } try{ sign(xRowRes); } catch( SQLException ex){ assure("sign " + ex.getMessage(),false); throw ex; } try{ sin(xRowRes); } catch( SQLException ex){ assure("sin " + ex.getMessage(),false); throw ex; } try{ sqrt(xRowRes); } catch( SQLException ex){ assure("sqrt " + ex.getMessage(),false); throw ex; } try{ tan(xRowRes); } catch( SQLException ex){ assure("tan " + ex.getMessage(),false); throw ex; } } private XRow execute(XRowSet xRowRes,String sql) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,xRowRes); xProp.setPropertyValue("Command","SELECT " + sql + where); xRowRes.execute(); XResultSet xRes = (XResultSet)UnoRuntime.queryInterface(XResultSet.class,xRowRes); assure("No valid row! ",xRes.next()); return (XRow)UnoRuntime.queryInterface(XRow.class, xRes); } private void abs(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"ABS(2),ABS(-32) "); assure("ABS(2) failed!",row.getInt(1) == 2); assure("ABS(-32) failed!",row.getInt(2) == 32); } private void sign(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"SIGN(-32),SIGN(0),SIGN(234) "); assure("SIGN(-32)failed!",row.getInt(1) == -1); assure("SIGN(0) failed!",row.getInt(2) == 0); assure("SIGN(234) failed!",row.getInt(3) == 1); } private void mod(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"MOD(234, 10) "); assure("MOD(234, 10) failed!",row.getInt(1) == 4); } private void floor(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"FLOOR(1.23),FLOOR(-1.23) "); assure("FLOOR(1.23) failed!",row.getInt(1) == 1); assure("FLOOR(-1.23) failed!",row.getInt(2) == -2); } private void ceiling(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"CEILING(1.23),CEILING(-1.23) "); assure("CEILING(1.23) failed!",row.getInt(1) == 2); assure("CEILING(-1.23) failed!",row.getInt(2) == -1); } private void round(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"ROUND(-1.23),ROUND(1.298, 1) "); assure("ROUND(-1.23) failed!",row.getInt(1) == -1); assure("ROUND(1.298, 1) failed!",row.getDouble(2) == 1.3); } private void exp(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"EXP(2),EXP(-2) "); assure("EXP(2) failed!",(float)row.getDouble(1) == (float)java.lang.Math.exp(2) ); assure("EXP(-2) failed!",(float)row.getDouble(2) == (float)java.lang.Math.exp(-2)); } private void log(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"LOG(2),LOG(-2) "); assure("LOG(2) failed!",(float)row.getDouble(1) == (float)java.lang.Math.log(2) ); row.getDouble(2); assure("LOG(-2) failed!",row.wasNull()); } private void log10(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"LOG10(100) "); assure("LOG10(100) failed!",row.getDouble(1) == 2.0 ); } private void pow(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"POWER(2,2) "); assure("POWER(2,2) failed!",row.getDouble(1) == 4.0 ); } private void sqrt(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"SQRT(4) "); assure("SQRT(4) failed!",row.getDouble(1) == 2.0 ); } private void pi(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"PI() "); assure("PI() failed!",(float)row.getDouble(1) == (float)java.lang.Math.PI ); } private void cos(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"COS(PI()) "); assure("COS(PI()) failed!",row.getDouble(1) == -1.0 ); } private void sin(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"SIN(2) "); assure("SIN(PI()) failed!",(float)row.getDouble(1) == (float)java.lang.Math.sin( 2 ) ); } private void tan(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"TAN(PI()+1) "); assure("TAN(PI()+1) failed!",(float)row.getDouble(1) == (float)java.lang.Math.tan(java.lang.Math.PI+1.0) ); } private void acos(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"ACOS(1) "); assure("ACOS(1) failed!",(float)row.getDouble(1) == 0.0 ); } private void asin(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"ASIN(0) "); assure("ASIN(0) failed!",(float)row.getDouble(1) == (float)java.lang.Math.asin(0.0) ); } private void atan(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"ATAN(0) "); assure("ATAN(0) failed!",row.getDouble(1) == 0.0 ); } private void atan2(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"ATAN2(0,2) "); assure("ATAN2(0,2) failed!",(float)row.getDouble(1) == 0.0 ); } private void degrees(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"DEGREES(PI()) "); assure("DEGREES(PI()) failed!",row.getDouble(1) == 180.0 ); } private void radians(XRowSet xRowRes) throws com.sun.star.uno.Exception,com.sun.star.beans.UnknownPropertyException { XRow row = execute(xRowRes,"RADIANS(90) "); assure("RADIANS(90) failed!",(float)row.getDouble(1) == (float)(java.lang.Math.PI / 2.0) ); } }