diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /qadevOOo/tests/java/ifc/datatransfer/clipboard | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'qadevOOo/tests/java/ifc/datatransfer/clipboard')
4 files changed, 386 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java new file mode 100644 index 000000000..95606a684 --- /dev/null +++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java @@ -0,0 +1,131 @@ +/* + * 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.datatransfer.clipboard; + +import lib.MultiMethodTest; +import lib.StatusException; + +import com.sun.star.datatransfer.DataFlavor; +import com.sun.star.datatransfer.XTransferable; +import com.sun.star.datatransfer.clipboard.XClipboard; +import com.sun.star.datatransfer.clipboard.XClipboardOwner; + +/** +* Testing <code>com.sun.star.datatransfer.clipboard.XClipboard</code> +* interface methods : +* <ul> +* <li><code> getContents()</code></li> +* <li><code> setContents()</code></li> +* <li><code> getName()</code></li> +* </ul> <p> +* Test is <b> NOT </b> multithread compliant. <p> +* @see com.sun.star.datatransfer.clipboard.XClipboard +*/ +public class _XClipboard extends MultiMethodTest { + + public XClipboard oObj; + + MyTransferable myTransferable1; + MyTransferable myTransferable2; + + /** + * <code>XClipboardOwner</code> interface implementation which + * stores parameters passed to <code>lostOwnership</code> method. + */ + static class MyOwner implements XClipboardOwner { + + public void lostOwnership(XClipboard board, XTransferable contents) { + } + + } + + /** + * Simplest <code>XTransferable</code> interface implementation. + */ + static class MyTransferable implements XTransferable { + public Object getTransferData(DataFlavor dataFlavor) { + return ""; + } + + public com.sun.star.datatransfer.DataFlavor[] getTransferDataFlavors() { + return new DataFlavor[0]; + } + + public boolean isDataFlavorSupported(DataFlavor dataFlavor) { + return false; + } + + } + + /** + * Initially sets the content of the clipboard. + */ + @Override + public void before() { + oObj.setContents(myTransferable1 = new MyTransferable(), new MyOwner()); + } + + /** + * Gets the name of the clipboard. <p> + * Has <b>OK</b> status if not <code>null</code> value returned. + */ + public void _getName() { + String name = oObj.getName(); + tRes.tested("getName()", name != null); + } + + /** + * Gets the contents of the clipboard. <p> + * Has <b>OK</b> status if the content obtained is equal to content + * set in <code>before</code> method. + */ + public void _getContents() { + tRes.tested("getContents()", oObj.getContents() == myTransferable1); + } + + /** + * Sets new contents for the clipboard. Then checks if it was set, + * and if <code>lostOwnership()</code> notification of the previous + * contents was called with appropriate parameters.<p> + * Has <b> OK </b> status if <code>getContents</code> returns the same + * object which is set, and notification was received. + * The following method tests are to be completed successfully before : + * <ul> + * <li> <code> getContents() </code> : for right testing order </li> + * </ul> + */ + public void _setContents() { + requiredMethod("getContents()"); + myTransferable2 = new MyTransferable(); + + oObj.setContents(myTransferable2, new MyOwner()); + + log.println("sleeping for 1 second"); + + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + log.println("interrupted"); + e.printStackTrace(log); + throw new StatusException("Operation interrupted", e); + } + + tRes.tested("setContents()", oObj.getContents() == myTransferable2); + } +} diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardEx.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardEx.java new file mode 100644 index 000000000..ecd39fe1b --- /dev/null +++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardEx.java @@ -0,0 +1,46 @@ +/* + * 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.datatransfer.clipboard; + +import lib.MultiMethodTest; + +import com.sun.star.datatransfer.clipboard.XClipboardEx; + +/** +* Testing <code>com.sun.star.datatransfer.clipboard.XClipboardEx</code> +* interface methods : +* <ul> +* <li><code> getRenderingCapabilities()</code></li> +* </ul> <p> +* Test is multithread compliant. <p> +* @see com.sun.star.datatransfer.clipboard.XClipboardEx +*/ +public class _XClipboardEx extends MultiMethodTest { + + public XClipboardEx oObj; + + /** + * Just calls the method. <p> + * Has <b> OK </b> status if no runtime exceptions occurred. + */ + public void _getRenderingCapabilities() { + oObj.getRenderingCapabilities(); + tRes.tested("getRenderingCapabilities()", true); + } +} diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java new file mode 100644 index 000000000..b26e89333 --- /dev/null +++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java @@ -0,0 +1,162 @@ +/* + * 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.datatransfer.clipboard; + +import lib.MultiMethodTest; +import lib.StatusException; + +import com.sun.star.datatransfer.DataFlavor; +import com.sun.star.datatransfer.XTransferable; +import com.sun.star.datatransfer.clipboard.ClipboardEvent; +import com.sun.star.datatransfer.clipboard.XClipboard; +import com.sun.star.datatransfer.clipboard.XClipboardListener; +import com.sun.star.datatransfer.clipboard.XClipboardNotifier; +import com.sun.star.datatransfer.clipboard.XClipboardOwner; +import com.sun.star.lang.EventObject; +import com.sun.star.uno.Type; +import com.sun.star.uno.UnoRuntime; + +/** +* Testing <code>com.sun.star.datatransfer.clipboard.XClipboardNotifier</code> +* interface methods : +* <ul> +* <li><code> addClipboardListener()</code></li> +* <li><code> removeClipboardListener()</code></li> +* </ul> <p> +* The object <b>must also implement</b> <code>XClipboard</code> +* interface. <p> +* Test is <b> NOT </b> multithread compliant. <p> +* @see com.sun.star.datatransfer.clipboard.XClipboardNotifier +* @see com.sun.star.datatransfer.clipboard.XClipboard +*/ +public class _XClipboardNotifier extends MultiMethodTest { + + public XClipboardNotifier oObj; + + /** + * <code>XClipboardOwner</code> interface implementation which + * stores parameters passed to <code>lostOwnership</code> method. + */ + static class MyOwner implements XClipboardOwner { + + public void lostOwnership(XClipboard board, XTransferable contents) { + } + } + + /** + * Simplest <code>XTransferable</code> interface implementation + * which supports "text/html" data type. + */ + static class MyTransferable implements XTransferable { + DataFlavor[] supportedFlavors; + + public MyTransferable() { + supportedFlavors = new DataFlavor[] { + new DataFlavor("text/plain", "Plain text", new Type(String.class)) + }; + } + + public Object getTransferData(DataFlavor dataFlavor) { + return ""; + } + + public DataFlavor[] getTransferDataFlavors() { + return supportedFlavors; + } + + public boolean isDataFlavorSupported(DataFlavor dataFlavor) { + return supportedFlavors[0].MimeType.equals(dataFlavor.MimeType); + } + } + + /** + * Implementation of listener which registers its method calls. + */ + class MyClipboardListener implements XClipboardListener { + boolean called = false; + + public void changedContents(ClipboardEvent evt) { + called = true; + } + + public void disposing(EventObject wvt) { + log.println(""); + } + } + + MyClipboardListener myListener; + + /** + * Adds a listener and put a new contents into clipboard. <p> + * Has <b> OK </b> status if the listener was called on contents changing. + */ + public void _addClipboardListener() { + oObj.addClipboardListener(myListener = new MyClipboardListener()); + + XClipboard board = UnoRuntime.queryInterface( + XClipboard.class, tEnv.getTestObject()); + + board.setContents(new MyTransferable(), new MyOwner()); + + log.println("sleeping for 1 second"); + + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + log.println("interrupted"); + e.printStackTrace(log); + throw new StatusException("Operation interrupted", e); + } + + tRes.tested("addClipboardListener()", myListener.called); + } + + /** + * Removes the listener and put a new contents into clipboard. <p> + * Has <b> OK </b> status if the listener was not called on contents + * changing. + * The following method tests are to be completed successfully before : + * <ul> + * <li> <code>addClipboardListener()</code> </li> + * </ul> + */ + public void _removeClipboardListener() { + try { + requiredMethod("addClipboardListener()"); + myListener.called = false; + } finally { + oObj.removeClipboardListener(myListener); + } + + XClipboard board = UnoRuntime.queryInterface( + XClipboard.class, oObj); + + board.setContents(new MyTransferable(), new MyOwner()); + + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + log.println("interrupted"); + e.printStackTrace(log); + throw new StatusException("Operation interrupted", e); + } + + tRes.tested("removeClipboardListener()", !myListener.called); + } +} diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XFlushableClipboard.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XFlushableClipboard.java new file mode 100644 index 000000000..2af4554c7 --- /dev/null +++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XFlushableClipboard.java @@ -0,0 +1,47 @@ +/* + * 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.datatransfer.clipboard; + +import lib.MultiMethodTest; + +import com.sun.star.datatransfer.clipboard.XFlushableClipboard; + +/** +* Testing <code>com.sun.star.datatransfer.clipboard.XFlushableClipboard</code> +* interface methods : +* <ul> +* <li><code> flushClipboard()</code></li> +* </ul> <p> +* Test is multithread compliant. <p> +* @see com.sun.star.datatransfer.clipboard.XFlushableClipboard +*/ +public class _XFlushableClipboard extends MultiMethodTest { + + public XFlushableClipboard oObj; + + /** + * Just calls the method. <p> + * Has <b> OK </b> status if no runtime exceptions occurred. + */ + public void _flushClipboard() { + oObj.flushClipboard(); + tRes.tested("flushClipboard()",true); + } + +} |