summaryrefslogtreecommitdiff
path: root/sfx2/qa/complex/docinfo
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/qa/complex/docinfo')
-rw-r--r--sfx2/qa/complex/docinfo/DocumentProperties.java269
-rw-r--r--sfx2/qa/complex/docinfo/makefile.mk56
2 files changed, 325 insertions, 0 deletions
diff --git a/sfx2/qa/complex/docinfo/DocumentProperties.java b/sfx2/qa/complex/docinfo/DocumentProperties.java
new file mode 100644
index 000000000000..cff1dd341d48
--- /dev/null
+++ b/sfx2/qa/complex/docinfo/DocumentProperties.java
@@ -0,0 +1,269 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+package complex.docinfo;
+
+import com.sun.star.beans.PropertyValue;
+import com.sun.star.beans.XPropertyContainer;
+import com.sun.star.beans.XPropertySet;
+import com.sun.star.document.XDocumentInfo;
+import com.sun.star.document.XDocumentInfoSupplier;
+import com.sun.star.frame.XComponentLoader;
+import com.sun.star.frame.XStorable;
+import com.sun.star.lang.XComponent;
+import com.sun.star.lang.XMultiServiceFactory;
+import com.sun.star.text.XTextDocument;
+import com.sun.star.uno.UnoRuntime;
+import com.sun.star.uno.XInterface;
+import com.sun.star.util.Date;
+
+import complexlib.ComplexTestCase;
+
+import util.DesktopTools;
+import util.WriterTools;
+
+
+public class DocumentProperties extends ComplexTestCase {
+ XMultiServiceFactory m_xMSF = null;
+ XTextDocument xTextDoc = null;
+
+ public String[] getTestMethodNames() {
+ return new String[] {"checkDocInfo", "cleanup"};
+ }
+
+ public void checkDocInfo() {
+ m_xMSF = (XMultiServiceFactory) param.getMSF();
+
+ log.println(
+ "check wether there is a valid MultiServiceFactory");
+
+ if (m_xMSF == null) {
+ assure("## Couldn't get MultiServiceFactory make sure your Office is started",
+ true);
+ }
+
+ log.println("... done");
+
+ log.println("Opening a Writer document");
+ xTextDoc = WriterTools.createTextDoc(m_xMSF);
+ log.println("... done");
+
+ XDocumentInfoSupplier xDocInfoSup =
+ (XDocumentInfoSupplier) UnoRuntime.queryInterface(XDocumentInfoSupplier.class,
+ xTextDoc);
+ XDocumentInfo xDocInfo = xDocInfoSup.getDocumentInfo();
+ XPropertyContainer xPropContainer =
+ (XPropertyContainer) UnoRuntime.queryInterface(XPropertyContainer.class,
+ xDocInfo);
+
+ log.println("Trying to add a existing property");
+
+ boolean worked =
+ addProperty(xPropContainer, "Author", (short) 0, "");
+ assure("Could set an existing property", !worked);
+ log.println("...done");
+
+ log.println("Trying to add a integer property");
+ worked =
+ addProperty(xPropContainer, "intValue", com.sun.star.beans.PropertyAttribute.READONLY,
+ new Integer(17));
+ assure("Couldn't set an integer property", worked);
+ log.println("...done");
+
+ log.println("Trying to add a double property");
+ worked =
+ addProperty(xPropContainer, "doubleValue", com.sun.star.beans.PropertyAttribute.REMOVEABLE ,
+ new Double(17.7));
+ assure("Couldn't set an double property", worked);
+ log.println("...done");
+
+ log.println("Trying to add a boolean property");
+ worked =
+ addProperty(xPropContainer, "booleanValue", com.sun.star.beans.PropertyAttribute.REMOVEABLE,
+ Boolean.TRUE);
+ assure("Couldn't set an boolean property", worked);
+ log.println("...done");
+
+ log.println("Trying to add a date property");
+ worked =
+ addProperty(xPropContainer, "dateValue", com.sun.star.beans.PropertyAttribute.REMOVEABLE,
+ new Date());
+ assure("Couldn't set an date property", worked);
+ log.println("...done");
+
+ log.println("trying to remove a read only Property");
+ try {
+ xPropContainer.removeProperty ("intValue");
+ assure("Could remove read only property", false);
+ } catch (Exception e) {
+ log.println("\tException was thrown "+e);
+ log.println("\t...OK");
+ }
+ log.println("...done");
+
+
+ String tempdir = System.getProperty("java.io.tmpdir");
+ String fs = System.getProperty("file.separator");
+
+ if (!tempdir.endsWith(fs)) {
+ tempdir += fs;
+ }
+
+ tempdir = util.utils.getFullURL(tempdir);
+
+ log.println("Storing the document");
+
+ try {
+ XStorable store =
+ (XStorable) UnoRuntime.queryInterface(XStorable.class,
+ xTextDoc);
+ store.storeToURL(tempdir + "DocInfo.oot",
+ new PropertyValue[] {});
+ DesktopTools.closeDoc(xTextDoc);
+ } catch (Exception e) {
+ assure("Couldn't store document", false);
+ }
+
+ log.println("...done");
+
+ log.println("loading the document");
+
+ try {
+ XComponentLoader xCL =
+ (XComponentLoader) UnoRuntime.queryInterface(XComponentLoader.class,
+ m_xMSF.createInstance(
+ "com.sun.star.frame.Desktop"));
+ XComponent xComp =
+ xCL.loadComponentFromURL(tempdir + "DocInfo.oot",
+ "_blank", 0, new PropertyValue[] {});
+ xTextDoc =
+ (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,
+ xComp);
+ } catch (Exception e) {
+ assure("Couldn't load document", false);
+ }
+
+ log.println("...done");
+
+ xDocInfoSup =
+ (XDocumentInfoSupplier) UnoRuntime.queryInterface(XDocumentInfoSupplier.class,
+ xTextDoc);
+ xDocInfo = xDocInfoSup.getDocumentInfo();
+
+ XPropertySet xProps =
+ (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,
+ xDocInfo);
+
+ assure("Integer doesn't work",
+ checkType(xProps, "intValue", "java.lang.Integer"));
+ assure("Double doesn't work",
+ checkType(xProps, "doubleValue", "java.lang.Double"));
+ assure("Boolean doesn't work",
+ checkType(xProps, "booleanValue", "java.lang.Boolean"));
+ assure("Date doesn't work",
+ checkType(xProps, "dateValue",
+ "com.sun.star.util.DateTime"));
+
+ xPropContainer =
+ (XPropertyContainer) UnoRuntime.queryInterface(XPropertyContainer.class,
+ xDocInfo);
+
+ log.println("trying to remove a not user defined Property");
+ try {
+ xPropContainer.removeProperty ("Author");
+ assure("Could remove non user defined property", false);
+ } catch (Exception e) {
+ log.println("\tException was thrown "+e);
+ log.println("\t...OK");
+ }
+ log.println("...done");
+
+ log.println("Trying to remove a user defined property");
+ try {
+ xPropContainer.removeProperty ("dateValue");
+ log.println("\t...OK");
+ } catch (Exception e) {
+ log.println("\tException was thrown "+e);
+ log.println("\t...FAILED");
+ assure("Could not remove user defined property", false);
+ }
+ log.println("...done");
+
+ }
+
+ public void cleanup() {
+ DesktopTools.closeDoc(xTextDoc);
+ }
+
+ private boolean checkType(XPropertySet xProps, String aName,
+ String expected) {
+ boolean ret = true;
+ log.println("Checking " + expected);
+
+ String getting =
+ getPropertyByName(xProps, aName).getClass().getName();
+
+ if (!getting.equals(expected)) {
+ log.println("\t Expected: " + expected);
+ log.println("\t Detting: " + getting);
+ ret = false;
+ }
+
+ if (ret) {
+ log.println("...OK");
+ }
+
+ return ret;
+ }
+
+ private Object getPropertyByName(XPropertySet xProps, String aName) {
+ Object ret = null;
+
+ try {
+ ret = xProps.getPropertyValue(aName);
+ } catch (Exception e) {
+ log.println("\tCouldn't get Property " + aName);
+ log.println("\tMessage " + e);
+ }
+
+ return ret;
+ }
+
+ private boolean addProperty(XPropertyContainer xPropContainer,
+ String aName, short attr, Object defaults) {
+ boolean ret = true;
+
+ try {
+ xPropContainer.addProperty(aName, attr, defaults);
+ } catch (Exception e) {
+ ret = false;
+ log.println("\tCouldn't get Property " + aName);
+ log.println("\tMessage " + e);
+ }
+
+ return ret;
+ }
+}
diff --git a/sfx2/qa/complex/docinfo/makefile.mk b/sfx2/qa/complex/docinfo/makefile.mk
new file mode 100644
index 000000000000..8c3525541062
--- /dev/null
+++ b/sfx2/qa/complex/docinfo/makefile.mk
@@ -0,0 +1,56 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2010 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org. If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+PRJ = ..$/..$/..
+TARGET = DocumentProperties
+PRJNAME = sfx2
+PACKAGE = complex$/docinfo
+
+# --- Settings -----------------------------------------------------
+.INCLUDE: settings.mk
+
+
+#----- compile .java files -----------------------------------------
+
+JARFILES = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar
+JAVAFILES = DocumentProperties.java
+
+#----- make a jar from compiled files ------------------------------
+
+MAXLINELENGTH = 100000
+
+JARCLASSDIRS = $(PACKAGE)
+JARTARGET = $(TARGET).jar
+JARCOMPRESS = TRUE
+
+# --- Targets ------------------------------------------------------
+
+.INCLUDE : target.mk
+
+
+run:
+ $(JAVAI) $(JAVAIFLAGS) -cp $(CLASSPATH) org.openoffice.Runner -TestBase java_complex -o $(PACKAGE:s#$/#.#).$(JAVAFILES:b)