* </ul>
* @see com.sun.star.frame.XModel
* @see com.sun.star.sheet.SpreadsheetView
*/
protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) {
XDrawPage oDrawPage = null;
XModel aModel = (XModel)
UnoRuntime.queryInterface(XModel.class, xSpreadsheetDoc);
XModel aSecondModel = (XModel)
UnoRuntime.queryInterface(XModel.class, xSpreadsheetDoc2);
XInterface oObj = aModel.getCurrentController();
log.println("getting sheets");
XSpreadsheets xSpreadsheets = (XSpreadsheets)xSpreadsheetDoc.getSheets();
log.println("getting a sheet");
XSpreadsheet oSheet = null;
XIndexAccess oIndexAccess = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, xSpreadsheets);
try {
oSheet = (XSpreadsheet) AnyConverter.toObject(
new Type(XSpreadsheet.class), oIndexAccess.getByIndex(1));
} catch (com.sun.star.lang.WrappedTargetException e) {
e.printStackTrace(log);
throw new StatusException( "Couldn't get a spreadsheet", e);
} catch (com.sun.star.lang.IndexOutOfBoundsException e) {
e.printStackTrace(log);
throw new StatusException( "Couldn't get a spreadsheet", e);
} catch (com.sun.star.lang.IllegalArgumentException e) {
e.printStackTrace(log);
throw new StatusException( "Couldn't get a spreadsheet", e);
}
TestEnvironment tEnv = new TestEnvironment(oObj);
tEnv.addObjRelation("XDispatchProvider.URL", ".uno:Copy") ;
log.println("adding 'Sheet' as ObjRelation");
tEnv.addObjRelation("Sheet", oSheet);
tEnv.addObjRelation("Frame",aModel.getCurrentController().getFrame());
tEnv.addObjRelation("SecondModel",aSecondModel);
tEnv.addObjRelation("FirstModel",aModel);
//Relation for XControlAccess
tEnv.addObjRelation("DOCUMENT", UnoRuntime.queryInterface(XComponent.class,xSpreadsheetDoc));
tEnv.addObjRelation("XControlAccess.isSheet", Boolean.TRUE);
//Relations for XSelectionSupplier
XCell cell_1 = null;
XCell cell_2 = null;
Object cellRange = null;
try {
cellRange = (Object)oSheet.getCellRangeByPosition(0, 0, 3, 3);
cell_1 = oSheet.getCellByPosition(5,5);
cell_2 = oSheet.getCellByPosition(7,7);
cell_2.setValue(17.5);
cell_1.setValue(5.5);
} catch (com.sun.star.lang.IndexOutOfBoundsException e) {
e.printStackTrace(log);
throw new StatusException("Couldn't get some cell", e);
}
Object[] selections = {oSheet, cellRange, cell_1, cell_2};
tEnv.addObjRelation("Selections", selections);
tEnv.addObjRelation("Comparer", new Comparator() {
public int compare(Object o1, Object o2) {
XCellRangeAddressable adr1 = (XCellRangeAddressable)
UnoRuntime.queryInterface(XCellRangeAddressable.class, o1);
XCellRangeAddressable adr2 = (XCellRangeAddressable)
UnoRuntime.queryInterface(XCellRangeAddressable.class, o2);
if (adr1 == null || adr2 == null) return -1;
CellRangeAddress range1 = adr1.getRangeAddress();
CellRangeAddress range2 = adr2.getRangeAddress();
return ValueComparer.equalValue(range1, range2) ? 0 : 1 ;
}
public boolean equals(Object obj) {
return compare(this, obj) == 0;
} });
tEnv.addObjRelation("XUserInputInterception.XModel", aModel);
// XForm for com.sun.star.view.XFormLayerAccess
XForm myForm = null;
String kindOfControl="CommandButton";
XShape aShape = null;
try{
log.println("adding contol shape '" + kindOfControl + "'");
XComponent oComp = (XComponent) UnoRuntime.queryInterface(XComponent.class, xSpreadsheetDoc) ;
aShape = FormTools.createControlShape(oComp, 3000, 4500, 15000, 10000, kindOfControl);
} catch (Exception e){
e.printStackTrace(log);
throw new StatusException("Couldn't create following control shape : '" +
kindOfControl + "': ", e);
}
log.println("adding relation for com.sun.star.view.XFormLayerAccess: XForm");
try {
log.println( "getting Drawpages" );
XDrawPagesSupplier oDPS = (XDrawPagesSupplier)
UnoRuntime.queryInterface(XDrawPagesSupplier.class,xSpreadsheetDoc);
XDrawPages oDP = (XDrawPages) oDPS.getDrawPages();
oDP.insertNewByIndex(1);
oDP.insertNewByIndex(2);
oDrawPage = (XDrawPage) AnyConverter.toObject(
new Type(XDrawPage.class),oDP.getByIndex(0));
if (oDrawPage == null)
log.println("ERROR: could not get DrawPage: null");
oDrawPage.add(aShape);
log.println("getting XForm");
XNameContainer xForm = FormTools.getForms(oDrawPage);
try {
myForm = (XForm) AnyConverter.toObject(new Type(XForm.class),xForm.getByName("Standard"));
} catch (WrappedTargetException ex) {