1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir package ifc.sheet; 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir import lib.MultiMethodTest; 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir import com.sun.star.sheet.XDatabaseRanges; 33*cdf0e10cSrcweir import com.sun.star.table.CellRangeAddress; 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir /** 36*cdf0e10cSrcweir * Testing <code>com.sun.star.sheet.XDatabaseRanges</code> 37*cdf0e10cSrcweir * interface methods : 38*cdf0e10cSrcweir * <ul> 39*cdf0e10cSrcweir * <li><code> addNewByName()</code></li> 40*cdf0e10cSrcweir * <li><code> removeByName()</code></li> 41*cdf0e10cSrcweir * </ul> <p> 42*cdf0e10cSrcweir * @see com.sun.star.sheet.XDatabaseRanges 43*cdf0e10cSrcweir */ 44*cdf0e10cSrcweir public class _XDatabaseRanges extends MultiMethodTest { 45*cdf0e10cSrcweir 46*cdf0e10cSrcweir public XDatabaseRanges oObj = null; 47*cdf0e10cSrcweir CellRangeAddress CRA = null; 48*cdf0e10cSrcweir String name = null; 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir /** 51*cdf0e10cSrcweir * Test adds a new database range to the collection, checks that range with 52*cdf0e10cSrcweir * this name exist in collection and then tries to add range with the same 53*cdf0e10cSrcweir * name. <p> 54*cdf0e10cSrcweir * Has <b> OK </b> status if the added range exists in collection and 55*cdf0e10cSrcweir * exception was thrown when trying to add range with name that is same as name 56*cdf0e10cSrcweir * of existent range. <p> 57*cdf0e10cSrcweir */ 58*cdf0e10cSrcweir public void _addNewByName() { 59*cdf0e10cSrcweir boolean bResult = true; 60*cdf0e10cSrcweir log.println("Trying to add range with proper name."); 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir CRA = new CellRangeAddress((short)0, 1, 2, 3, 4); 63*cdf0e10cSrcweir name = "_XDatabaseRanges_addNewByRange"; 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir oObj.addNewByName(name, CRA); 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir bResult &= oObj.hasByName(name); 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir if (bResult) log.println("Ok"); 70*cdf0e10cSrcweir log.println("Trying to add existing element."); 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir try { 73*cdf0e10cSrcweir oObj.addNewByName(name, CRA); 74*cdf0e10cSrcweir log.println("Exception expected... Test failed."); 75*cdf0e10cSrcweir bResult = false; 76*cdf0e10cSrcweir } catch(com.sun.star.uno.RuntimeException e) { 77*cdf0e10cSrcweir log.println("Exception occured while testing addNewByName() : " + e); 78*cdf0e10cSrcweir bResult = true; 79*cdf0e10cSrcweir } 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir tRes.tested("addNewByName()", bResult); 82*cdf0e10cSrcweir } 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir /** 85*cdf0e10cSrcweir * Test removes the database range with name that exist exactly and then 86*cdf0e10cSrcweir * tries to remove the range with name that doesn't exist exactly. <p> 87*cdf0e10cSrcweir * Has <b> OK </b> status if first range was succesfully removed and 88*cdf0e10cSrcweir * exception was thrown when trying to remove non-existent database range.<p> 89*cdf0e10cSrcweir * The following method tests are to be completed successfully before : 90*cdf0e10cSrcweir * <ul> 91*cdf0e10cSrcweir * <li> <code> addNewByName() </code> : to have definitely existed database 92*cdf0e10cSrcweir * range </li> 93*cdf0e10cSrcweir * </ul> 94*cdf0e10cSrcweir */ 95*cdf0e10cSrcweir public void _removeByName(){ 96*cdf0e10cSrcweir boolean bResult = true; 97*cdf0e10cSrcweir requiredMethod("addNewByName()"); 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir log.println("Remove inserted element."); 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir try { 102*cdf0e10cSrcweir oObj.removeByName(name); 103*cdf0e10cSrcweir bResult &= !oObj.hasByName(name); 104*cdf0e10cSrcweir } catch (com.sun.star.uno.RuntimeException e) { 105*cdf0e10cSrcweir log.println("Exception occured while testing removeByName() : " + e); 106*cdf0e10cSrcweir bResult = false; 107*cdf0e10cSrcweir } 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir log.println("OK.\nTrying to remove unexistant element."); 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir try { 112*cdf0e10cSrcweir oObj.removeByName(name); 113*cdf0e10cSrcweir log.println("Exception expected... - FAILED"); 114*cdf0e10cSrcweir bResult = false; 115*cdf0e10cSrcweir } catch (com.sun.star.uno.RuntimeException e) { 116*cdf0e10cSrcweir log.println("Expected exception. - OK : " + e); 117*cdf0e10cSrcweir } 118*cdf0e10cSrcweir tRes.tested("removeByName()", bResult); 119*cdf0e10cSrcweir } 120*cdf0e10cSrcweir } 121*cdf0e10cSrcweir 122