1ef39d40dSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3ef39d40dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4ef39d40dSAndrew Rist * or more contributor license agreements. See the NOTICE file 5ef39d40dSAndrew Rist * distributed with this work for additional information 6ef39d40dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7ef39d40dSAndrew Rist * to you under the Apache License, Version 2.0 (the 8ef39d40dSAndrew Rist * "License"); you may not use this file except in compliance 9ef39d40dSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13ef39d40dSAndrew Rist * Unless required by applicable law or agreed to in writing, 14ef39d40dSAndrew Rist * software distributed under the License is distributed on an 15ef39d40dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16ef39d40dSAndrew Rist * KIND, either express or implied. See the License for the 17ef39d40dSAndrew Rist * specific language governing permissions and limitations 18ef39d40dSAndrew Rist * under the License. 19cdf0e10cSrcweir * 20ef39d40dSAndrew Rist *************************************************************/ 21ef39d40dSAndrew Rist 22ef39d40dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package mod._sc; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import java.io.PrintWriter; 27cdf0e10cSrcweir 28cdf0e10cSrcweir import lib.StatusException; 29cdf0e10cSrcweir import lib.TestCase; 30cdf0e10cSrcweir import lib.TestEnvironment; 31cdf0e10cSrcweir import lib.TestParameters; 32cdf0e10cSrcweir import util.SOfficeFactory; 33cdf0e10cSrcweir import util.utils; 34cdf0e10cSrcweir 35cdf0e10cSrcweir import com.sun.star.beans.PropertyValue; 36cdf0e10cSrcweir import com.sun.star.beans.XPropertySet; 37cdf0e10cSrcweir import com.sun.star.container.XEnumerationAccess; 38cdf0e10cSrcweir import com.sun.star.container.XIndexAccess; 39cdf0e10cSrcweir import com.sun.star.lang.XComponent; 40cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 41cdf0e10cSrcweir import com.sun.star.sheet.ConditionOperator; 42cdf0e10cSrcweir import com.sun.star.sheet.XSheetConditionalEntries; 43cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheet; 44cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheetDocument; 45cdf0e10cSrcweir import com.sun.star.sheet.XSpreadsheets; 46cdf0e10cSrcweir import com.sun.star.table.CellAddress; 47cdf0e10cSrcweir import com.sun.star.uno.AnyConverter; 48cdf0e10cSrcweir import com.sun.star.uno.Type; 49cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 50cdf0e10cSrcweir import com.sun.star.uno.XInterface; 51cdf0e10cSrcweir 52cdf0e10cSrcweir public class ScIndexEnumeration_TableConditionalEntryEnumeration extends TestCase { 53cdf0e10cSrcweir static XSpreadsheetDocument xSpreadsheetDoc = null; 54cdf0e10cSrcweir 55cdf0e10cSrcweir /** 56cdf0e10cSrcweir * Creates Spreadsheet document. 57cdf0e10cSrcweir */ initialize( TestParameters tParam, PrintWriter log )58cdf0e10cSrcweir protected void initialize( TestParameters tParam, PrintWriter log ) { 59cdf0e10cSrcweir // get a soffice factory object 60cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF()); 61cdf0e10cSrcweir 62cdf0e10cSrcweir try { 63cdf0e10cSrcweir log.println( "creating a sheetdocument" ); 64*170fb961SPedro Giffuni xSpreadsheetDoc = SOF.createCalcDoc(null); 65cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 66cdf0e10cSrcweir // Some exception occures.FAILED 67cdf0e10cSrcweir e.printStackTrace( log ); 68cdf0e10cSrcweir throw new StatusException( "Couldn't create document", e ); 69cdf0e10cSrcweir } 70cdf0e10cSrcweir } 71cdf0e10cSrcweir 72cdf0e10cSrcweir /** 73cdf0e10cSrcweir * Disposes Spreadsheet document. 74cdf0e10cSrcweir */ cleanup( TestParameters tParam, PrintWriter log )75cdf0e10cSrcweir protected void cleanup( TestParameters tParam, PrintWriter log ) { 76cdf0e10cSrcweir log.println( " disposing xSheetDoc " ); 77cdf0e10cSrcweir XComponent oComp = (XComponent) 78cdf0e10cSrcweir UnoRuntime.queryInterface (XComponent.class, xSpreadsheetDoc) ; 79cdf0e10cSrcweir util.DesktopTools.closeDoc(oComp); 80cdf0e10cSrcweir } 81cdf0e10cSrcweir createTestEnvironment(TestParameters Param, PrintWriter log)82cdf0e10cSrcweir protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) { 83cdf0e10cSrcweir 84cdf0e10cSrcweir XInterface oObj = null; 85cdf0e10cSrcweir log.println("getting sheets"); 86cdf0e10cSrcweir XSpreadsheets xSpreadsheets = (XSpreadsheets)xSpreadsheetDoc.getSheets(); 87cdf0e10cSrcweir 88cdf0e10cSrcweir log.println("getting a sheet"); 89cdf0e10cSrcweir XSpreadsheet oSheet = null; 90cdf0e10cSrcweir XIndexAccess oIndexAccess = (XIndexAccess) 91cdf0e10cSrcweir UnoRuntime.queryInterface(XIndexAccess.class, xSpreadsheets); 92cdf0e10cSrcweir 93cdf0e10cSrcweir try { 94cdf0e10cSrcweir oSheet = (XSpreadsheet) AnyConverter.toObject( 95cdf0e10cSrcweir new Type(XSpreadsheet.class),oIndexAccess.getByIndex(0)); 96cdf0e10cSrcweir } catch (com.sun.star.lang.WrappedTargetException e) { 97cdf0e10cSrcweir e.printStackTrace(log); 98cdf0e10cSrcweir throw new StatusException( "Couldn't get a spreadsheet", e); 99cdf0e10cSrcweir } catch (com.sun.star.lang.IndexOutOfBoundsException e) { 100cdf0e10cSrcweir e.printStackTrace(log); 101cdf0e10cSrcweir throw new StatusException( "Couldn't get a spreadsheet", e); 102cdf0e10cSrcweir } catch (com.sun.star.lang.IllegalArgumentException e) { 103cdf0e10cSrcweir e.printStackTrace(log); 104cdf0e10cSrcweir throw new StatusException( "Couldn't get a spreadsheet", e); 105cdf0e10cSrcweir } 106cdf0e10cSrcweir 107cdf0e10cSrcweir log.println("filling some cells"); 108cdf0e10cSrcweir try { 109cdf0e10cSrcweir oSheet.getCellByPosition(5, 5).setValue(15); 110cdf0e10cSrcweir oSheet.getCellByPosition(1, 4).setValue(10); 111cdf0e10cSrcweir oSheet.getCellByPosition(2, 0).setValue(-5.15); 112cdf0e10cSrcweir } catch (com.sun.star.lang.IndexOutOfBoundsException e) { 113cdf0e10cSrcweir log.println("Exception occurred while filling cells"); 114cdf0e10cSrcweir e.printStackTrace(log); 115cdf0e10cSrcweir } 116cdf0e10cSrcweir 117cdf0e10cSrcweir Object CFormat = null; 118cdf0e10cSrcweir XPropertySet Props = null; 119cdf0e10cSrcweir 120cdf0e10cSrcweir try { 121cdf0e10cSrcweir Props = (XPropertySet) 122cdf0e10cSrcweir UnoRuntime.queryInterface(XPropertySet.class, oSheet); 123cdf0e10cSrcweir CFormat = Props.getPropertyValue("ConditionalFormat"); 124cdf0e10cSrcweir if (utils.isVoid(CFormat)) { 125cdf0e10cSrcweir log.println("Property 'ConditionalFormat' is void"); 126cdf0e10cSrcweir } 127cdf0e10cSrcweir } catch (com.sun.star.lang.WrappedTargetException e){ 128cdf0e10cSrcweir e.printStackTrace(log); 129cdf0e10cSrcweir throw new StatusException("Couldn't create instance", e); 130cdf0e10cSrcweir } catch (com.sun.star.beans.UnknownPropertyException e){ 131cdf0e10cSrcweir e.printStackTrace(log); 132cdf0e10cSrcweir throw new StatusException("Couldn't create instance", e); 133cdf0e10cSrcweir } 134cdf0e10cSrcweir 135cdf0e10cSrcweir try { 136cdf0e10cSrcweir XSheetConditionalEntries xSCE = (XSheetConditionalEntries) 137cdf0e10cSrcweir UnoRuntime.queryInterface(XSheetConditionalEntries.class, CFormat); 138cdf0e10cSrcweir xSCE.addNew(Conditions()); 139cdf0e10cSrcweir Props.setPropertyValue("ConditionalFormat", xSCE); 140cdf0e10cSrcweir oObj = xSCE; 141cdf0e10cSrcweir } catch (com.sun.star.lang.WrappedTargetException e) { 142cdf0e10cSrcweir e.printStackTrace(log); 143cdf0e10cSrcweir throw new StatusException( 144cdf0e10cSrcweir "Exception occurred while getting Entry", e); 145cdf0e10cSrcweir } catch (com.sun.star.lang.IllegalArgumentException e) { 146cdf0e10cSrcweir e.printStackTrace(log); 147cdf0e10cSrcweir throw new StatusException( 148cdf0e10cSrcweir "Exception occurred while getting Entry", e); 149cdf0e10cSrcweir } catch (com.sun.star.beans.PropertyVetoException e) { 150cdf0e10cSrcweir e.printStackTrace(log); 151cdf0e10cSrcweir throw new StatusException( 152cdf0e10cSrcweir "Exception occurred while getting Entry", e); 153cdf0e10cSrcweir } catch (com.sun.star.beans.UnknownPropertyException e) { 154cdf0e10cSrcweir e.printStackTrace(log); 155cdf0e10cSrcweir throw new StatusException( 156cdf0e10cSrcweir "Exception occurred while getting Entry", e); 157cdf0e10cSrcweir } 158cdf0e10cSrcweir 159cdf0e10cSrcweir log.println("creating a new environment for object"); 160cdf0e10cSrcweir XEnumerationAccess ea = (XEnumerationAccess) 161cdf0e10cSrcweir UnoRuntime.queryInterface(XEnumerationAccess.class,oObj); 162cdf0e10cSrcweir 163cdf0e10cSrcweir oObj = ea.createEnumeration(); 164cdf0e10cSrcweir 165cdf0e10cSrcweir log.println("ImplementationName: "+util.utils.getImplName(oObj)); 166cdf0e10cSrcweir // creating test environment 167cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment( oObj ); 168cdf0e10cSrcweir 169cdf0e10cSrcweir tEnv.addObjRelation("ENUM",ea); 170cdf0e10cSrcweir 171cdf0e10cSrcweir return tEnv; 172cdf0e10cSrcweir } // finish method getTestEnvironment 173cdf0e10cSrcweir 174cdf0e10cSrcweir /** 175cdf0e10cSrcweir * Returns the array of the property values that was filled by condition 176cdf0e10cSrcweir * values. 177cdf0e10cSrcweir */ Conditions()178cdf0e10cSrcweir protected PropertyValue[] Conditions() { 179cdf0e10cSrcweir PropertyValue[] con = new PropertyValue[5]; 180cdf0e10cSrcweir CellAddress ca = new CellAddress(); 181cdf0e10cSrcweir ca.Column = 1; 182cdf0e10cSrcweir ca.Row = 5; 183cdf0e10cSrcweir ca.Sheet = 0; 184cdf0e10cSrcweir con[0] = new PropertyValue(); 185cdf0e10cSrcweir con[0].Name = "StyleName"; 186cdf0e10cSrcweir con[0].Value = "Result2"; 187cdf0e10cSrcweir con[1] = new PropertyValue(); 188cdf0e10cSrcweir con[1].Name = "Formula1"; 189cdf0e10cSrcweir con[1].Value = "$Sheet1.$B$5"; 190cdf0e10cSrcweir con[2] = new PropertyValue(); 191cdf0e10cSrcweir con[2].Name = "Formula2"; 192cdf0e10cSrcweir con[2].Value = ""; 193cdf0e10cSrcweir con[3] = new PropertyValue(); 194cdf0e10cSrcweir con[3].Name = "Operator"; 195cdf0e10cSrcweir con[3].Value = ConditionOperator.EQUAL; 196cdf0e10cSrcweir con[4] = new PropertyValue(); 197cdf0e10cSrcweir con[4].Name = "SourcePosition"; 198cdf0e10cSrcweir con[4].Value = ca; 199cdf0e10cSrcweir return con; 200cdf0e10cSrcweir } 201cdf0e10cSrcweir 202cdf0e10cSrcweir } // finish class ScTableConditionalEntry 203cdf0e10cSrcweir 204