1*ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*ef39d40dSAndrew Rist  * distributed with this work for additional information
6*ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9*ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*ef39d40dSAndrew Rist  *
11*ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*ef39d40dSAndrew Rist  *
13*ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15*ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17*ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18*ef39d40dSAndrew Rist  * under the License.
19*ef39d40dSAndrew Rist  *
20*ef39d40dSAndrew Rist  *************************************************************/
21*ef39d40dSAndrew Rist 
22*ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package ifc.sheet;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import lib.MultiMethodTest;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import com.sun.star.sheet.XDatabaseRanges;
29cdf0e10cSrcweir import com.sun.star.table.CellRangeAddress;
30cdf0e10cSrcweir 
31cdf0e10cSrcweir /**
32cdf0e10cSrcweir * Testing <code>com.sun.star.sheet.XDatabaseRanges</code>
33cdf0e10cSrcweir * interface methods :
34cdf0e10cSrcweir * <ul>
35cdf0e10cSrcweir *  <li><code> addNewByName()</code></li>
36cdf0e10cSrcweir *  <li><code> removeByName()</code></li>
37cdf0e10cSrcweir * </ul> <p>
38cdf0e10cSrcweir * @see com.sun.star.sheet.XDatabaseRanges
39cdf0e10cSrcweir */
40cdf0e10cSrcweir public class _XDatabaseRanges extends MultiMethodTest {
41cdf0e10cSrcweir 
42cdf0e10cSrcweir     public XDatabaseRanges oObj = null;
43cdf0e10cSrcweir     CellRangeAddress CRA = null;
44cdf0e10cSrcweir     String name = null;
45cdf0e10cSrcweir 
46cdf0e10cSrcweir     /**
47cdf0e10cSrcweir     * Test adds a new database range to the collection, checks that range with
48cdf0e10cSrcweir     * this name exist in collection and then tries to add range with the same
49cdf0e10cSrcweir     * name. <p>
50cdf0e10cSrcweir     * Has <b> OK </b> status if the added range exists in collection and
51cdf0e10cSrcweir     * exception was thrown when trying to add range with name that is same as name
52cdf0e10cSrcweir     * of existent range. <p>
53cdf0e10cSrcweir     */
_addNewByName()54cdf0e10cSrcweir     public void _addNewByName() {
55cdf0e10cSrcweir         boolean bResult = true;
56cdf0e10cSrcweir         log.println("Trying to add range with proper name.");
57cdf0e10cSrcweir 
58cdf0e10cSrcweir         CRA = new CellRangeAddress((short)0, 1, 2, 3, 4);
59cdf0e10cSrcweir         name = "_XDatabaseRanges_addNewByRange";
60cdf0e10cSrcweir 
61cdf0e10cSrcweir         oObj.addNewByName(name, CRA);
62cdf0e10cSrcweir 
63cdf0e10cSrcweir         bResult &= oObj.hasByName(name);
64cdf0e10cSrcweir 
65cdf0e10cSrcweir         if (bResult) log.println("Ok");
66cdf0e10cSrcweir         log.println("Trying to add existing element.");
67cdf0e10cSrcweir 
68cdf0e10cSrcweir         try {
69cdf0e10cSrcweir             oObj.addNewByName(name, CRA);
70cdf0e10cSrcweir             log.println("Exception expected... Test failed.");
71cdf0e10cSrcweir             bResult = false;
72cdf0e10cSrcweir         } catch(com.sun.star.uno.RuntimeException e) {
73cdf0e10cSrcweir             log.println("Exception occured while testing addNewByName() : " + e);
74cdf0e10cSrcweir             bResult = true;
75cdf0e10cSrcweir         }
76cdf0e10cSrcweir 
77cdf0e10cSrcweir         tRes.tested("addNewByName()", bResult);
78cdf0e10cSrcweir     }
79cdf0e10cSrcweir 
80cdf0e10cSrcweir     /**
81cdf0e10cSrcweir     * Test removes the database range with name that exist exactly and then
82cdf0e10cSrcweir     * tries to remove the range with name that doesn't exist exactly. <p>
83cdf0e10cSrcweir     * Has <b> OK </b> status if first range was succesfully removed and
84cdf0e10cSrcweir     * exception was thrown when trying to remove non-existent database range.<p>
85cdf0e10cSrcweir     * The following method tests are to be completed successfully before :
86cdf0e10cSrcweir     * <ul>
87cdf0e10cSrcweir     *  <li> <code> addNewByName() </code> : to have definitely existed database
88cdf0e10cSrcweir     *  range </li>
89cdf0e10cSrcweir     * </ul>
90cdf0e10cSrcweir     */
_removeByName()91cdf0e10cSrcweir     public void _removeByName(){
92cdf0e10cSrcweir         boolean bResult = true;
93cdf0e10cSrcweir         requiredMethod("addNewByName()");
94cdf0e10cSrcweir 
95cdf0e10cSrcweir         log.println("Remove inserted element.");
96cdf0e10cSrcweir 
97cdf0e10cSrcweir         try {
98cdf0e10cSrcweir             oObj.removeByName(name);
99cdf0e10cSrcweir             bResult &= !oObj.hasByName(name);
100cdf0e10cSrcweir         } catch (com.sun.star.uno.RuntimeException e) {
101cdf0e10cSrcweir             log.println("Exception occured while testing removeByName() : " + e);
102cdf0e10cSrcweir             bResult = false;
103cdf0e10cSrcweir         }
104cdf0e10cSrcweir 
105cdf0e10cSrcweir         log.println("OK.\nTrying to remove unexistant element.");
106cdf0e10cSrcweir 
107cdf0e10cSrcweir         try {
108cdf0e10cSrcweir             oObj.removeByName(name);
109cdf0e10cSrcweir             log.println("Exception expected... - FAILED");
110cdf0e10cSrcweir             bResult = false;
111cdf0e10cSrcweir         } catch (com.sun.star.uno.RuntimeException e) {
112cdf0e10cSrcweir             log.println("Expected exception. - OK : " + e);
113cdf0e10cSrcweir         }
114cdf0e10cSrcweir         tRes.tested("removeByName()", bResult);
115cdf0e10cSrcweir     }
116cdf0e10cSrcweir }
117cdf0e10cSrcweir 
118