summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2018-06-29 02:47:08 +0000
committerJens Carl <j.carl43@gmx.de>2018-06-29 06:15:16 +0200
commit81260b12666853bb9c21da487657e169cac6d4d9 (patch)
treec4dbee06f73d7400d6c9d4293f328dc4ed6bf63a /qadevOOo
parent6af8aa411189993942d4a8a13199b0a5e026c003 (diff)
tdf#45904 Move _XDocumentAuditing Java test to C++
Change-Id: Ic03e42c9c2ff27579b442dc8d1408deaea839ec4 Reviewed-on: https://gerrit.libreoffice.org/56644 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/Jar_OOoRunner.mk1
-rw-r--r--qadevOOo/objdsc/sc/com.sun.star.comp.office.ScModelObj.csv1
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XDocumentAuditing.java219
3 files changed, 0 insertions, 221 deletions
diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk
index a7bc5b37b02d..a3188143c9f3 100644
--- a/qadevOOo/Jar_OOoRunner.mk
+++ b/qadevOOo/Jar_OOoRunner.mk
@@ -566,7 +566,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\
qadevOOo/tests/java/ifc/sheet/_TableAutoFormatField \
qadevOOo/tests/java/ifc/sheet/_XCellRangeData \
qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery \
- qadevOOo/tests/java/ifc/sheet/_XDocumentAuditing \
qadevOOo/tests/java/ifc/sheet/_XEnhancedMouseClickBroadcaster \
qadevOOo/tests/java/ifc/sheet/_XRangeSelection \
qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor \
diff --git a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScModelObj.csv b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScModelObj.csv
index 7509197e7665..6c6fe08e39c7 100644
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScModelObj.csv
+++ b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScModelObj.csv
@@ -40,7 +40,6 @@
"ScModelObj";"com::sun::star::beans::XPropertySet#optional";"removePropertyChangeListener()"
"ScModelObj";"com::sun::star::beans::XPropertySet#optional";"addVetoableChangeListener()"
"ScModelObj";"com::sun::star::beans::XPropertySet#optional";"removeVetoableChangeListener()"
-"ScModelObj";"com::sun::star::sheet::XDocumentAuditing";"refreshArrows()"
"ScModelObj";"com::sun::star::sheet::SpreadsheetDocument";"NamedRanges"
"ScModelObj";"com::sun::star::sheet::SpreadsheetDocument";"DatabaseRanges"
"ScModelObj";"com::sun::star::sheet::SpreadsheetDocument";"ColumnLabelRanges"
diff --git a/qadevOOo/tests/java/ifc/sheet/_XDocumentAuditing.java b/qadevOOo/tests/java/ifc/sheet/_XDocumentAuditing.java
deleted file mode 100644
index 2d35679df840..000000000000
--- a/qadevOOo/tests/java/ifc/sheet/_XDocumentAuditing.java
+++ /dev/null
@@ -1,219 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-package ifc.sheet;
-
-import com.sun.star.awt.Point;
-import com.sun.star.beans.PropertyValue;
-import com.sun.star.container.XIndexAccess;
-import com.sun.star.container.XNamed;
-import com.sun.star.drawing.XDrawPage;
-import com.sun.star.drawing.XDrawPagesSupplier;
-import com.sun.star.drawing.XShape;
-import com.sun.star.frame.XDispatchHelper;
-import com.sun.star.frame.XDispatchProvider;
-import com.sun.star.frame.XModel;
-import com.sun.star.lang.XMultiServiceFactory;
-import com.sun.star.sheet.XDocumentAuditing;
-import com.sun.star.sheet.XSheetAuditing;
-import com.sun.star.sheet.XSpreadsheet;
-import com.sun.star.sheet.XSpreadsheetDocument;
-import com.sun.star.sheet.XSpreadsheets;
-import com.sun.star.table.CellAddress;
-import com.sun.star.uno.UnoRuntime;
-import lib.MultiMethodTest;
-import lib.Status;
-import lib.StatusException;
-
-/**
- *
- */
-public class _XDocumentAuditing extends MultiMethodTest {
- public XDocumentAuditing oObj = null;
- XDrawPage xDrawPage = null;
- XSpreadsheet[] xSheet = null;
- int elementCount = 0;
- String sheetName = null;
- Point pos = null;
-
- @Override
- public void before() {
- Exception ex = null;
- // get two sheets
- xSheet = new XSpreadsheet[2];
- try {
- XSpreadsheetDocument xSpreadsheetDocument = UnoRuntime.queryInterface(XSpreadsheetDocument.class, oObj);
- XSpreadsheets oSheets = xSpreadsheetDocument.getSheets();
- XIndexAccess oIndexSheets = UnoRuntime.queryInterface(
- XIndexAccess.class, oSheets);
- XSpreadsheet oSheet = UnoRuntime.queryInterface(
- XSpreadsheet.class, oIndexSheets.getByIndex(0));
- xSheet[0] = oSheet;
- oSheet = UnoRuntime.queryInterface(
- XSpreadsheet.class, oIndexSheets.getByIndex(1));
- xSheet[1] = oSheet;
- }
- catch(com.sun.star.lang.IndexOutOfBoundsException e) {
- ex = e;
- }
- catch(com.sun.star.lang.WrappedTargetException e) {
- ex = e;
- }
- catch(NullPointerException e) {
- ex = e;
- }
- if (ex != null) {
- throw new StatusException("Could not get two sheets.", ex);
- }
-
- // get the draw page for checking the shapes
- xDrawPage = (XDrawPage)tEnv.getObjRelation("XDocumentAuditing.DrawPage");
- if (xDrawPage == null) { // get from object
- try {
- XDrawPagesSupplier oDPS = UnoRuntime.queryInterface(XDrawPagesSupplier.class, oObj);
- Object o = oDPS.getDrawPages().getByIndex(1);
- xDrawPage = UnoRuntime.queryInterface(XDrawPage.class, o);
- }
- catch(com.sun.star.lang.IndexOutOfBoundsException e) {
- } // ignore exceptions, we'll run into next if statement anyway
- catch(com.sun.star.lang.WrappedTargetException e) {
- }
- }
- if (xDrawPage == null) {
- throw new StatusException(Status.failed("'XSheetAuditing.DrawPage' object relation not found."));
- }
- if (xDrawPage.hasElements()) {
- elementCount = xDrawPage.getCount();
- }
-
- // switch off the automatic refresh
- PropertyValue[] props = new PropertyValue[1];
- props[0] = new PropertyValue();
- props[0].Name = "AutoRefreshArrows";
- props[0].Value = Boolean.FALSE;
- XModel xModel = UnoRuntime.queryInterface(XModel.class, oObj);
- dispatch(xModel.getCurrentController().getFrame(), tParam.getMSF(), ".uno:AutoRefreshArrows", props);
-
- // prepare the sheets
- try {
- xSheet[0].getCellByPosition(6, 6).setValue(9);
- XNamed xNamed = UnoRuntime.queryInterface(XNamed.class, xSheet[0]);
- sheetName = xNamed.getName();
- xSheet[1].getCellByPosition(6, 6).setValue(16);
- xSheet[1].getCellByPosition(6, 7).setFormula("= SQRT(G7)");
- XSheetAuditing xSheetAuditing = UnoRuntime.queryInterface(XSheetAuditing.class, xSheet[1]);
- CellAddress add = new CellAddress((short)1, 6, 7);
- xSheetAuditing.showPrecedents(add);
- boolean ok = hasRightAmountOfShapes(1);
- if (!ok)
- throw new StatusException(Status.failed("Wrong amount of shapes on page."));
- }
- catch(com.sun.star.lang.IndexOutOfBoundsException e) {
- throw new StatusException("Could not set formulas on sheets.", e);
- }
- }
-
- @Override
- public void after() {
- // switch the automatic refresh back on
- PropertyValue[] props = new PropertyValue[1];
- props[0] = new PropertyValue();
- props[0].Name = "AutoRefreshArrows";
- props[0].Value = Boolean.TRUE;
- XModel xModel = UnoRuntime.queryInterface(XModel.class, oObj);
- dispatch(xModel.getCurrentController().getFrame(), tParam.getMSF(), ".uno:AutoRefreshArrows", props);
- }
-
- public void _refreshArrows() {
- boolean result = true;
-
- Point p0 = pos;
-
- try {
- result &= xSheet[1].getCellByPosition(6, 7).getValue() == 4;
- xSheet[1].getCellByPosition(6, 7).setFormula("= SQRT(" + sheetName + ".G7)");
- result &= xSheet[1].getCellByPosition(6, 7).getValue() == 3;
- }
- catch(com.sun.star.lang.IndexOutOfBoundsException e) {
- throw new StatusException("Could not set formulas on sheets.", e);
- }
-
- result &= hasRightAmountOfShapes(1);
- Point p1 = pos;
-
- // points have to be the same: if not we have an auto update
- boolean res = (p0.X == p1.X && p0.Y == p1.Y);
- result &= res;
- if (!res)
- log.println("Arrow has been refreshed, but this should have been switched off.");
-
- oObj.refreshArrows();
-
- result &= hasRightAmountOfShapes(1);
- Point p2 = pos;
-
- // points have to differ
- res = (p1.X != p2.X || p1.Y != p2.Y);
- result &= res;
- if (!res)
- log.println("Arrow has not been refreshed.");
-
- tRes.tested("refreshArrows()", result);
- }
-
- /**
- * Check if the amount of shapes is the right one after displaying that stuff
- * 2do improve this: check that the shapes are the correct ones -> convwatch
- * @desiredValue That's the amount of shapes that have to be here.
- * @return True, if the actual count of shapes is the same
- */
- private boolean hasRightAmountOfShapes(int desiredValue) {
- int newCount = xDrawPage.getCount();
- if (newCount != elementCount + desiredValue) {
- return false;
- }
- else {
- if (desiredValue >= 0) {
- for (int i=elementCount; i<newCount; i++) {
- try {
- Object o = xDrawPage.getByIndex(i);
- XShape xShape = UnoRuntime.queryInterface(XShape.class, o);
- pos = xShape.getPosition();
- System.out.println("Shape Type: " + xShape.getShapeType());
- }
- catch(com.sun.star.uno.Exception e) {
- e.printStackTrace();
- }
- }
- }
- }
- return true;
- }
-
- private void dispatch(Object oProvider, XMultiServiceFactory xMSF, String url, PropertyValue[] prop) {
- XDispatchProvider xDispatchProvider = UnoRuntime.queryInterface(XDispatchProvider.class, oProvider);
- Object dispatcher = null;
- try {
- dispatcher = xMSF.createInstance("com.sun.star.frame.DispatchHelper");
- }
- catch(com.sun.star.uno.Exception e) {
- }
-
- XDispatchHelper xDispatchHelper = UnoRuntime.queryInterface(XDispatchHelper.class, dispatcher);
- xDispatchHelper.executeDispatch(xDispatchProvider, url, "", 0, prop);
- }
-}