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 import lib.Status;
28cdf0e10cSrcweir import lib.StatusException;
29cdf0e10cSrcweir 
30cdf0e10cSrcweir import com.sun.star.sheet.XDataPilotTable;
31cdf0e10cSrcweir import com.sun.star.table.CellAddress;
32cdf0e10cSrcweir import com.sun.star.table.CellRangeAddress;
33cdf0e10cSrcweir import com.sun.star.table.XCell;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir /**
36cdf0e10cSrcweir * Testing <code>com.sun.star.sheet.XDataPilotTable</code>
37cdf0e10cSrcweir * interface methods :
38cdf0e10cSrcweir * <ul>
39cdf0e10cSrcweir *  <li><code> getOutputRange()</code></li>
40cdf0e10cSrcweir *  <li><code> refresh()</code></li>
41cdf0e10cSrcweir * </ul> <p>
42cdf0e10cSrcweir * This test needs the following object relations :
43cdf0e10cSrcweir * <ul>
44cdf0e10cSrcweir *  <li> <code>'OUTPUTRANGE'</code> (of type <code>CellAddress</code>):
45cdf0e10cSrcweir *   to check value returned by method <code>getOutputRange()</code> </li>
46cdf0e10cSrcweir *  <li> <code>'CELLFORCHANGE'</code> (of type <code>XCell</code>):
47cdf0e10cSrcweir *   to check the method refresh(value of this cell will be changed)</li>
48cdf0e10cSrcweir *  <li> <code>'CELLFORCHECK'</code> (of type <code>XCell</code>):
49cdf0e10cSrcweir * to check the method refresh (value of this cell must be changed after refresh
50cdf0e10cSrcweir * call) </li><ul> <p>
51cdf0e10cSrcweir * @see com.sun.star.sheet.XDataPilotTable
52cdf0e10cSrcweir * @see com.sun.star.table.CellAddress
53cdf0e10cSrcweir */
54cdf0e10cSrcweir public class _XDataPilotTable extends MultiMethodTest {
55cdf0e10cSrcweir 
56cdf0e10cSrcweir     public XDataPilotTable oObj = null;
57cdf0e10cSrcweir     XCell xCellForChange = null;
58cdf0e10cSrcweir     XCell xCellForCheck = null;
59cdf0e10cSrcweir     CellAddress OutputRange = null;
60cdf0e10cSrcweir 
before()61cdf0e10cSrcweir     protected void before() {
62cdf0e10cSrcweir         xCellForChange = (XCell)tEnv.getObjRelation("CELLFORCHANGE");
63cdf0e10cSrcweir         xCellForCheck = (XCell)tEnv.getObjRelation("CELLFORCHECK");
64cdf0e10cSrcweir         OutputRange = (CellAddress)tEnv.getObjRelation("OUTPUTRANGE");
65cdf0e10cSrcweir         if (xCellForChange == null || OutputRange == null ||
66cdf0e10cSrcweir                 xCellForCheck == null) {
67cdf0e10cSrcweir             throw new StatusException(Status.failed("Relation not found"));
68cdf0e10cSrcweir         }
69cdf0e10cSrcweir     }
70cdf0e10cSrcweir     /**
71cdf0e10cSrcweir     * Test calls the method and checks returned value using value obtained by
72cdf0e10cSrcweir     * object relation <code>'OUTPUTRANGE'</code>. <p>
73cdf0e10cSrcweir     * Has <b> OK </b> status if values are equal. <p>
74cdf0e10cSrcweir     */
_getOutputRange()75cdf0e10cSrcweir     public void _getOutputRange(){
76cdf0e10cSrcweir         boolean bResult = true;
77cdf0e10cSrcweir         CellRangeAddress objRange = oObj.getOutputRange();
78cdf0e10cSrcweir         bResult &= OutputRange.Sheet == objRange.Sheet;
79cdf0e10cSrcweir         bResult &= OutputRange.Row == objRange.StartRow;
80cdf0e10cSrcweir         bResult &= OutputRange.Column == objRange.StartColumn;
81cdf0e10cSrcweir         tRes.tested("getOutputRange()", bResult);
82cdf0e10cSrcweir     }
83cdf0e10cSrcweir 
84cdf0e10cSrcweir     /**
85cdf0e10cSrcweir     * Test sets new value of the cell obtained by object relation
86cdf0e10cSrcweir     * 'CELLFORCHANGE', and checks value of the cell obtained by object
87cdf0e10cSrcweir     * relation 'CELLFORCHECK'.<p>
88cdf0e10cSrcweir     * Has <b>OK</b> status if value of the cell obtained by object relation
89cdf0e10cSrcweir     * 'CELLFORCHECK' is changed. <p>
90cdf0e10cSrcweir     */
_refresh()91cdf0e10cSrcweir     public void _refresh(){
92cdf0e10cSrcweir         xCellForChange.setValue(5);
93cdf0e10cSrcweir         double oldData = xCellForCheck.getValue();
94cdf0e10cSrcweir         oObj.refresh();
95cdf0e10cSrcweir         double newData = xCellForCheck.getValue();
96cdf0e10cSrcweir         log.println("Old data:" + oldData + "; new data:" + newData);
97cdf0e10cSrcweir 
98cdf0e10cSrcweir         tRes.tested("refresh()", oldData != newData);
99cdf0e10cSrcweir     }
100cdf0e10cSrcweir }
101cdf0e10cSrcweir 
102