Remove java mouse/keyboard event tests
These tests has been implemented as a UITest in sw/qa/uitest/writer_tests5/xwindow.py Change-Id: I0c1ae6d086a5a7d6e15b89bb3e810b49434da01e Reviewed-on: https://gerrit.libreoffice.org/71950 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
This commit is contained in:
parent
107d8c3de0
commit
ca7f34acab
4 changed files with 0 additions and 1084 deletions
|
@ -34,7 +34,6 @@ $(eval $(call gb_JunitTest_add_sourcefiles,framework_complex,\
|
|||
framework/qa/complex/loadAllDocuments/StatusIndicator \
|
||||
framework/qa/complex/broken_document/TestDocument \
|
||||
framework/qa/complex/broken_document/LoadDocument \
|
||||
framework/qa/complex/XUserInputInterception/EventTest \
|
||||
framework/qa/complex/framework/autosave/AutoSave \
|
||||
framework/qa/complex/framework/autosave/Protocol \
|
||||
framework/qa/complex/framework/autosave/ConfigHelper \
|
||||
|
@ -69,7 +68,6 @@ $(eval $(call gb_JunitTest_add_classes,framework_complex,\
|
|||
# these were disabled in the old build system too, please check
|
||||
# carefully before reenabling
|
||||
# complex.ModuleManager.CheckXModuleManager \
|
||||
complex.XUserInputInterception.EventTest \
|
||||
complex.accelerators.AcceleratorsConfigurationTest \
|
||||
complex.api_internal.CheckAPI \
|
||||
complex.broken_document.LoadDocument \
|
||||
|
|
|
@ -1,553 +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 complex.XUserInputInterception;
|
||||
|
||||
import com.sun.star.accessibility.AccessibleRole;
|
||||
import com.sun.star.accessibility.XAccessible;
|
||||
import com.sun.star.accessibility.XAccessibleComponent;
|
||||
import com.sun.star.accessibility.XAccessibleContext;
|
||||
import com.sun.star.awt.KeyEvent;
|
||||
import com.sun.star.awt.MouseEvent;
|
||||
import com.sun.star.awt.Point;
|
||||
import com.sun.star.awt.Rectangle;
|
||||
import com.sun.star.awt.XKeyHandler;
|
||||
import com.sun.star.awt.XMouseClickHandler;
|
||||
import com.sun.star.awt.XUserInputInterception;
|
||||
import com.sun.star.awt.XWindow;
|
||||
import com.sun.star.frame.*;
|
||||
import com.sun.star.lang.*;
|
||||
import com.sun.star.lang.EventObject;
|
||||
import com.sun.star.sheet.XSpreadsheetDocument;
|
||||
import com.sun.star.text.XTextDocument;
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.uno.XInterface;
|
||||
import com.sun.star.util.*;
|
||||
import java.awt.Robot;
|
||||
import java.awt.event.InputEvent;
|
||||
|
||||
import util.AccessibilityTools;
|
||||
import util.SOfficeFactory;
|
||||
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
import org.openoffice.test.OfficeConnection;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
|
||||
/**
|
||||
* This <CODE>ComplexTest</CODE> checks the interface
|
||||
* <CODE>XUserInputInterception</CODE>. Therefore it creates a document,
|
||||
* adds a mouse and a key listener onto the interface and fire the
|
||||
* correspond events. If all listener works as expected the test results in
|
||||
* <CODE>OK</CODE> status.
|
||||
* @short Check the interface XUserInputIntercaption
|
||||
* @descr checks is a simple way the interface XUserInputInteraction
|
||||
*/
|
||||
public class EventTest {
|
||||
|
||||
// some const
|
||||
|
||||
|
||||
// member
|
||||
|
||||
/** indicates if the mousePressed event was called*/
|
||||
private boolean m_mousePressed = false;
|
||||
/** indicates if the mouseReleased event was called*/
|
||||
private boolean m_mouseReleased = false;
|
||||
|
||||
/** indicates if the mousePressed event was called*/
|
||||
private boolean m_keyPressed = false;
|
||||
/** indicates if the mouseReleased event was called*/
|
||||
private boolean m_keyReleased = false;
|
||||
|
||||
/** points to a global StarOffice factory */
|
||||
private SOfficeFactory m_SOF = null;
|
||||
|
||||
/**
|
||||
* define the milliseconds to wait until a <CODE>EventTrigger</CODE> thread should
|
||||
* be finished with its work
|
||||
*/
|
||||
static final int m_threadWait = 3000;
|
||||
|
||||
|
||||
// test environment
|
||||
|
||||
|
||||
/**
|
||||
* creates the member <CODE>m_xMSF</CODE> and <CODE>m_SOF</CODE>
|
||||
* @short Create the environment for following tests.
|
||||
* @descr create an empty test frame, where we can load
|
||||
* different components inside.
|
||||
*/
|
||||
@Before public void before() {
|
||||
// create frame instance
|
||||
try {
|
||||
// get a soffice factory object
|
||||
m_SOF = SOfficeFactory.getFactory(getMSF());
|
||||
|
||||
} catch(java.lang.Throwable ex) {
|
||||
fail("Could not create the XUserInputInterception instance.");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* closes the document
|
||||
* @short close the document.
|
||||
* @param xDoc the document to close
|
||||
*/
|
||||
public void closeDoc(XInterface xDoc) {
|
||||
XCloseable xClose = UnoRuntime.queryInterface(XCloseable.class, xDoc);
|
||||
try {
|
||||
xClose.close(false);
|
||||
} catch(com.sun.star.util.CloseVetoException exVeto) {
|
||||
System.out.println("document couldn't be closed successfully.");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* creates a text document and check the <CODE>XMouseClickHandler</CODE> and
|
||||
* <CODE>XKeyHandler</CODE>
|
||||
* @see com.sun.star.awt.XKeyHandler
|
||||
* @see com.sun.star.awt.XMouseClickHandler
|
||||
*/
|
||||
@Test public void checkTextDocument(){
|
||||
|
||||
XTextDocument xDoc = null;
|
||||
|
||||
try{
|
||||
xDoc = m_SOF.createTextDoc("WriterTest");
|
||||
} catch (com.sun.star.uno.Exception e){
|
||||
fail("Could not create a text document: " +e.toString());
|
||||
}
|
||||
|
||||
checkListener(xDoc);
|
||||
|
||||
closeDoc(xDoc);
|
||||
}
|
||||
|
||||
/**
|
||||
* creates an impress document and check the <CODE>XMouseClickHandler</CODE> and
|
||||
* <CODE>XKeyHandler</CODE>
|
||||
* @see com.sun.star.awt.XKeyHandler
|
||||
* @see com.sun.star.awt.XMouseClickHandler
|
||||
*/
|
||||
@Test public void checkImpressDocument(){
|
||||
|
||||
XComponent xDoc = null;
|
||||
|
||||
try{
|
||||
xDoc = m_SOF.createImpressDoc("ImpressTest");
|
||||
} catch (com.sun.star.uno.Exception e){
|
||||
fail("Could not create an impress document: " +e.toString());
|
||||
}
|
||||
|
||||
checkListener(xDoc);
|
||||
|
||||
closeDoc(xDoc);
|
||||
}
|
||||
|
||||
/**
|
||||
* creates a math document and check the <CODE>XMouseClickHandler</CODE> and
|
||||
* <CODE>XKeyHandler</CODE>
|
||||
* @see com.sun.star.awt.XKeyHandler
|
||||
* @see com.sun.star.awt.XMouseClickHandler
|
||||
*/
|
||||
@Test public void checkMathDocument(){
|
||||
|
||||
XComponent xDoc = null;
|
||||
|
||||
try{
|
||||
xDoc = m_SOF.createMathDoc("MathTest");
|
||||
} catch (com.sun.star.uno.Exception e){
|
||||
fail("Could not create a math document: " +e.toString());
|
||||
}
|
||||
|
||||
checkListener(xDoc);
|
||||
|
||||
closeDoc(xDoc);
|
||||
}
|
||||
|
||||
/**
|
||||
* creates a draw document and check the <CODE>XMouseClickHandler</CODE> and
|
||||
* <CODE>XKeyHandler</CODE>
|
||||
* @see com.sun.star.awt.XKeyHandler
|
||||
* @see com.sun.star.awt.XMouseClickHandler
|
||||
*/
|
||||
@Test public void checkDrawDocument(){
|
||||
|
||||
XComponent xDoc = null;
|
||||
|
||||
try{
|
||||
xDoc = m_SOF.createDrawDoc("DrawTest");
|
||||
} catch (com.sun.star.uno.Exception e){
|
||||
fail("Could not create a draw document: " +e.toString());
|
||||
}
|
||||
|
||||
checkListener(xDoc);
|
||||
|
||||
closeDoc(xDoc);
|
||||
}
|
||||
|
||||
/**
|
||||
* creates a calc document and check the <CODE>XMouseClickHandler</CODE> and
|
||||
* <CODE>XKeyHandler</CODE>
|
||||
* @see com.sun.star.awt.XKeyHandler
|
||||
* @see com.sun.star.awt.XMouseClickHandler
|
||||
*/
|
||||
@Test public void checkCalcDocument(){
|
||||
|
||||
XSpreadsheetDocument xDoc = null;
|
||||
|
||||
try{
|
||||
xDoc = m_SOF.createCalcDoc("CalcTest");
|
||||
} catch (com.sun.star.uno.Exception e){
|
||||
fail("Could not create a calc document: " +e.toString());
|
||||
}
|
||||
|
||||
checkListener(xDoc);
|
||||
closeDoc(xDoc);
|
||||
}
|
||||
|
||||
/**
|
||||
* This is the central test method. It is called by check[DOCTYPE]Document. It
|
||||
* creates the <CODE>XUserInputInterception</CODE> from the document and call the
|
||||
* <CODE>checkMouseListener</CODE> test and the <CODE>checkKeyListener</CODE> test
|
||||
* @param xDoc the document to test
|
||||
*/
|
||||
private void checkListener(XInterface xDoc){
|
||||
|
||||
XModel xModel = UnoRuntime.queryInterface(XModel.class, xDoc);
|
||||
|
||||
XUserInputInterception xUII = getUII(xModel);
|
||||
|
||||
checkMouseListener(xUII, xModel);
|
||||
checkKeyListener(xUII, xModel);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a <CODE>MyKeyHandler</CODE> and adds it to the
|
||||
* <CODE>XUserInputInterception</CODE>. Then an <CODE>EventTrigger</CODE> thread
|
||||
* was created and started.
|
||||
* Has <CODE>OK</CODE> if the members <CODE>m_keyPressed</CODE> and
|
||||
* <CODE>m_keyReleased</CODE> are <CODE>TRUE</CODE>
|
||||
* @param xUII the XUserInputInterception
|
||||
* @param xModel the XModel of a document
|
||||
* @see EventTest.MyKeyHandler
|
||||
* @see EventTest.EventTrigger
|
||||
*/
|
||||
private void checkKeyListener(XUserInputInterception xUII, XModel xModel) {
|
||||
m_keyPressed = false;
|
||||
m_keyReleased = false;
|
||||
|
||||
MyKeyHandler keyListener = new MyKeyHandler();
|
||||
|
||||
xUII.addKeyHandler(keyListener);
|
||||
|
||||
System.out.println("starting thread to check the key listener...");
|
||||
EventTrigger et = new EventTrigger(xModel, EventTriggerType.KEY_TEXT_INTO_DOC);
|
||||
|
||||
et.run();
|
||||
|
||||
util.utils.waitForEventIdle(getMSF());
|
||||
System.out.println("key listener thread should be finished.");
|
||||
|
||||
assertTrue("key event does not work!", m_keyPressed && m_keyReleased);
|
||||
xUII.removeKeyHandler(keyListener);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a <CODE>MyMouseClickHandler</CODE> and adds it to the
|
||||
* <CODE>XUserInputInterception</CODE>. Then an <CODE>EventTrigger</CODE> thread
|
||||
* was created and started.
|
||||
* Has <CODE>OK</CODE> if the members <CODE>m_mousePressed</CODE> and
|
||||
* <CODE>m_mouseReleased</CODE> are <CODE>TRUE</CODE>
|
||||
* @param xUII the XUserInputInterception
|
||||
* @param xModel the XModel of a document
|
||||
* @see EventTest.MyMouseClickHandler
|
||||
* @see EventTest.EventTrigger
|
||||
*/
|
||||
private void checkMouseListener(XUserInputInterception xUII, XModel xModel) {
|
||||
|
||||
m_mousePressed = false;
|
||||
m_mouseReleased = false;
|
||||
|
||||
MyMouseClickHandler mouseListener = new MyMouseClickHandler();
|
||||
|
||||
xUII.addMouseClickHandler(mouseListener);
|
||||
|
||||
System.out.println("starting thread to check the mouse listener...");
|
||||
EventTrigger et = new EventTrigger(xModel, EventTriggerType.MOUSE_KLICK_INTO_DOC);
|
||||
|
||||
et.run();
|
||||
|
||||
util.utils.waitForEventIdle(getMSF());
|
||||
System.out.println("mouse listener thread should be finished.");
|
||||
|
||||
assertTrue("mouse event does not work!", m_mousePressed && m_mouseReleased);
|
||||
xUII.removeMouseClickHandler(mouseListener);
|
||||
}
|
||||
|
||||
/*
|
||||
* returns the <CODE>XUserInputInterception</CODE> from the <CODE>XModel</CODE>
|
||||
* @param xModel the XModel of a document
|
||||
* @return the <CODE>XUserInputInterception</CODE> of the document
|
||||
*/
|
||||
private XUserInputInterception getUII(XModel xModel){
|
||||
|
||||
XController xController = xModel.getCurrentController();
|
||||
|
||||
XUserInputInterception xUII = UnoRuntime.queryInterface(XUserInputInterception.class, xController);
|
||||
if (xUII == null) {
|
||||
fail("could not get XUserInputInterception from XController");
|
||||
}
|
||||
return xUII;
|
||||
}
|
||||
|
||||
/**
|
||||
* Listener which added and its method must be called
|
||||
* on <code>keyPressed</code> and <code>keyReleased</code> call.
|
||||
*/
|
||||
private class MyKeyHandler implements XKeyHandler {
|
||||
/**
|
||||
* This event sets the member <code>m_keyPressed</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The key event informs about the pressed key.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean keyPressed( KeyEvent oEvent ){
|
||||
System.out.println("XKeyHandler: keyPressed-Event");
|
||||
m_keyPressed = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event sets the member <code>m_keyReleased</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The key event informs about the pressed key.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean keyReleased( KeyEvent oEvent ){
|
||||
System.out.println("XKeyHandler: keyReleased-Event");
|
||||
m_keyReleased = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event does nothing useful
|
||||
* @param oEvent refers to the object that fired the event.
|
||||
*/
|
||||
public void disposing( EventObject oEvent ){
|
||||
System.out.println("XKeyHandler: disposing-Event");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Listener which added and its method must be called
|
||||
* on <code>mousePressed</code> and <code>mouseReleased</code> call.
|
||||
*/
|
||||
private class MyMouseClickHandler implements XMouseClickHandler {
|
||||
/**
|
||||
* This event sets the member <code>m_mousePressed</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The mouse event informs about the kind of mouse event.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean mousePressed( MouseEvent oEvent ){
|
||||
System.out.println("XMouseClickHandler: mousePressed-Event");
|
||||
m_mousePressed = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event sets the member <code>m_mouseReleased</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The mouse event informs about the kind of mouse event.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean mouseReleased( MouseEvent oEvent ){
|
||||
System.out.println("XMouseClickHandler: mouseReleased-Event");
|
||||
m_mouseReleased = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event does nothing useful
|
||||
* @param oEvent refers to the object that fired the event.
|
||||
*/
|
||||
public void disposing( EventObject oEvent ){
|
||||
System.out.println("XMouseClickHandler: disposing-Event");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* To check the events this class is a thread which click a mouse button and
|
||||
* press a key with the <CODE>Robot</CODE> class
|
||||
* @see java.awt.Robot
|
||||
*/
|
||||
private static class EventTrigger implements Runnable {
|
||||
|
||||
/**
|
||||
* represents an <CODE>EventType</CODE>
|
||||
* @see EventTest.EventTriggerType
|
||||
*/
|
||||
private final int eventType;
|
||||
/**
|
||||
* represents a <CODE>XModel</CODE> of a document
|
||||
*/
|
||||
private final XModel xModel;
|
||||
|
||||
/**
|
||||
* Creates an instacne of this class. The parameter <CODE>eType</CODE> represents
|
||||
* the kind of event which will be triggert at <CODE>run()</CODE>
|
||||
* @param model the model of a document
|
||||
* @param eType the kind of event which should be trigger
|
||||
*/
|
||||
public EventTrigger(XModel model, int eType)
|
||||
{
|
||||
this.xModel = model;
|
||||
this.eventType = eType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Triggers the event which is represented by <CODE>eventType</CODE>
|
||||
* The scenarios are:
|
||||
* <ul>
|
||||
* <li>EventTest.EventTriggerType.MOUSE_KLICK_INTO_DOC
|
||||
* which calls
|
||||
* <li><CODE>clickIntoDoc</CODE></LI>
|
||||
* </LI>
|
||||
* <li>EventTest.EventTriggerType.KEY_TEXT_INTO_DOC
|
||||
* which calls
|
||||
* <li><CODE>clickIntodoc</CODE></LI>
|
||||
* <li><CODE>keyIntoDoc</CODE></LI>
|
||||
* </LI>
|
||||
* </UL>
|
||||
*/
|
||||
public void run(){
|
||||
|
||||
switch (this.eventType){
|
||||
|
||||
case EventTriggerType.MOUSE_KLICK_INTO_DOC:
|
||||
clickIntoDoc();
|
||||
break;
|
||||
case EventTriggerType.KEY_TEXT_INTO_DOC:
|
||||
clickIntoDoc();
|
||||
keyIntoDoc();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
/**
|
||||
* This method clicks into the middle of a document. It uses Accessibility
|
||||
* to get the document and query for its position and its range to calculate
|
||||
* the middle. This values was used for <CODE>Robot</CODE> Class. This
|
||||
* Robot class is able to move the mouse and to click a mouse button
|
||||
* @see java.awt.Robot
|
||||
*/
|
||||
private void clickIntoDoc(){
|
||||
try{
|
||||
// get the position and the range of a scroll bar
|
||||
|
||||
XWindow xWindow = AccessibilityTools.getCurrentWindow(
|
||||
xModel);
|
||||
|
||||
XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
|
||||
|
||||
|
||||
|
||||
XAccessibleContext xPanel = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.PANEL);
|
||||
XAccessibleComponent xPanelCont = UnoRuntime.queryInterface(XAccessibleComponent.class, xPanel);
|
||||
|
||||
// the position of the panel
|
||||
Point point = xPanelCont.getLocationOnScreen();
|
||||
|
||||
// the range of the panel
|
||||
Rectangle rect = xPanelCont.getBounds();
|
||||
|
||||
try {
|
||||
Robot rob = new Robot();
|
||||
int x = point.X + (rect.Width / 2);
|
||||
int y = point.Y + (rect.Height / 2);
|
||||
System.out.println("try to click into the middle of the document");
|
||||
rob.mouseMove(x, y);
|
||||
rob.mousePress(InputEvent.BUTTON1_MASK);
|
||||
rob.mouseRelease(InputEvent.BUTTON1_MASK);
|
||||
} catch (java.awt.AWTException e) {
|
||||
System.out.println("couldn't press mouse button");
|
||||
}
|
||||
} catch (java.lang.Exception e){
|
||||
System.out.println("could not click into the scroll bar: " + e.toString());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This method press the "A" key. Therefore it uses the <CODE>Robot</CODE>
|
||||
* class.
|
||||
* @see java.awt.Robot
|
||||
*/
|
||||
private void keyIntoDoc(){
|
||||
try {
|
||||
Robot rob = new Robot();
|
||||
System.out.println("try to press 'A'");
|
||||
rob.keyPress(java.awt.event.KeyEvent.VK_A);
|
||||
rob.keyRelease(java.awt.event.KeyEvent.VK_A);
|
||||
} catch (java.awt.AWTException e) {
|
||||
System.out.println("couldn't press key");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/** This interface represents all possible actions which could be used
|
||||
* in the <CODE>EventTrigger</CODE> class.
|
||||
* @see EventTest.EventTrigger
|
||||
*/
|
||||
private interface EventTriggerType{
|
||||
|
||||
/** click the mouse into the scroll bar*/
|
||||
int MOUSE_KLICK_INTO_DOC = 1;
|
||||
|
||||
/** write some text into a spread sheet*/
|
||||
int KEY_TEXT_INTO_DOC = 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
private XMultiServiceFactory getMSF()
|
||||
{
|
||||
return UnoRuntime.queryInterface(XMultiServiceFactory.class, connection.getComponentContext().getServiceManager());
|
||||
}
|
||||
|
||||
// setup and close connections
|
||||
@BeforeClass public static void setUpConnection() throws Exception {
|
||||
System.out.println("setUpConnection()");
|
||||
connection.setUp();
|
||||
}
|
||||
|
||||
@AfterClass public static void tearDownConnection()
|
||||
throws InterruptedException, com.sun.star.uno.Exception
|
||||
{
|
||||
System.out.println("tearDownConnection()");
|
||||
connection.tearDown();
|
||||
}
|
||||
|
||||
private static final OfficeConnection connection = new OfficeConnection();
|
||||
|
||||
}
|
|
@ -210,7 +210,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\
|
|||
qadevOOo/tests/java/ifc/awt/_XToolkit \
|
||||
qadevOOo/tests/java/ifc/awt/_XTopWindow \
|
||||
qadevOOo/tests/java/ifc/awt/_XUnoControlContainer \
|
||||
qadevOOo/tests/java/ifc/awt/_XUserInputInterception \
|
||||
qadevOOo/tests/java/ifc/awt/_XView \
|
||||
qadevOOo/tests/java/ifc/awt/_XWindow \
|
||||
qadevOOo/tests/java/ifc/beans/_XExactName \
|
||||
|
|
|
@ -1,528 +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.awt;
|
||||
|
||||
import com.sun.star.accessibility.AccessibleRole;
|
||||
import com.sun.star.accessibility.XAccessible;
|
||||
import com.sun.star.accessibility.XAccessibleComponent;
|
||||
import com.sun.star.accessibility.XAccessibleContext;
|
||||
import com.sun.star.awt.KeyEvent;
|
||||
import com.sun.star.awt.MouseEvent;
|
||||
import com.sun.star.awt.Point;
|
||||
import com.sun.star.awt.Rectangle;
|
||||
import com.sun.star.awt.XKeyHandler;
|
||||
import com.sun.star.awt.XMouseClickHandler;
|
||||
import com.sun.star.awt.XUserInputInterception;
|
||||
import com.sun.star.awt.XWindow;
|
||||
import com.sun.star.frame.XModel;
|
||||
import com.sun.star.lang.EventObject;
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
|
||||
import java.awt.Robot;
|
||||
import java.awt.event.InputEvent;
|
||||
|
||||
import lib.MultiMethodTest;
|
||||
import util.AccessibilityTools;
|
||||
|
||||
/**
|
||||
* Testing <code>com.sun.star.awt.XUserInputInterception</code>
|
||||
* interface methods:
|
||||
* <ul>
|
||||
* <li><code> addKeyHandler() </code></li>
|
||||
* <li><code> removeKeyHandler() </code></li>
|
||||
* <li><code> addMouseClickHandler() </code></li>
|
||||
* <li><code> removeMouseClickHandler() </code></li>
|
||||
* </ul><p>
|
||||
* This test needs the following object relations :
|
||||
* <ul>
|
||||
* <li> <code>'XUserInputInterception.XModel'</code> (of type <code>XModel</code>):
|
||||
* used as model where a mouse click or a key press could be done </li>
|
||||
* </ul> <p>
|
||||
* Test is <b> NOT </b> multithread compliant. <p>
|
||||
* @see com.sun.star.awt.XUserInputInterception
|
||||
*/
|
||||
public class _XUserInputInterception extends MultiMethodTest {
|
||||
public XUserInputInterception oObj = null;
|
||||
|
||||
private XModel m_XModel = null;
|
||||
|
||||
/** the listener 1 for the mouse click test */
|
||||
private MyMouseClickHandler1 m_MouseListener1 = null;
|
||||
/** the listener 2 for the mouse click test */
|
||||
private MyMouseClickHandler2 m_MouseListener2 = null;
|
||||
|
||||
/** the listener 1 for the key event test */
|
||||
private MyKeyHandler1 m_KeyListener1 = null;
|
||||
/** the listener 2 for the key event test */
|
||||
private MyKeyHandler2 m_KeyListener2 = null;
|
||||
|
||||
/** indicates if the mousePressed event was called*/
|
||||
private boolean m_mousePressed1 = false;
|
||||
/** indicates if the mouseReleased event was called*/
|
||||
private boolean m_mouseReleased1 = false;
|
||||
|
||||
/** indicates if the mousePressed event was called*/
|
||||
private boolean m_mousePressed2 = false;
|
||||
/** indicates if the mouseReleased event was called*/
|
||||
private boolean m_mouseReleased2 = false;
|
||||
|
||||
/** indicates if the mousePressed event was called*/
|
||||
private boolean m_keyPressed1 = false;
|
||||
/** indicates if the mouseReleased event was called*/
|
||||
private boolean m_keyReleased1 = false;
|
||||
|
||||
/** indicates if the mousePressed event was called*/
|
||||
private boolean m_keyPressed2 = false;
|
||||
/** indicates if the mouseReleased event was called*/
|
||||
private boolean m_keyReleased2 = false;
|
||||
|
||||
/** get the object relation XUserInputInterception.XModel from the
|
||||
* test environment
|
||||
*/
|
||||
@Override
|
||||
protected void before() {
|
||||
log.print("try to get object relation 'XUserInputInterception.XModel': ");
|
||||
m_XModel = (XModel)tEnv.getObjRelation("XUserInputInterception.XModel");
|
||||
if (m_XModel == null) log.println("failed => null");
|
||||
else log.println("OK");
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* This test adds two different key listener to the object. <p>
|
||||
*
|
||||
* Has <b> OK </b> if no exception is thrown.
|
||||
*/
|
||||
public void _addKeyHandler() {
|
||||
|
||||
log.println("creating key listener 1");
|
||||
m_KeyListener1 = new MyKeyHandler1();
|
||||
|
||||
log.println("creating key listener 2");
|
||||
m_KeyListener2 = new MyKeyHandler2();
|
||||
|
||||
|
||||
log.println("adding key listener 1");
|
||||
oObj.addKeyHandler(m_KeyListener1);
|
||||
|
||||
|
||||
log.println("adding key listener 2");
|
||||
oObj.addKeyHandler(m_KeyListener2);
|
||||
|
||||
tRes.tested("addKeyHandler()", true);
|
||||
}
|
||||
|
||||
/**
|
||||
* The test requires <CODE>addKeyHandler()</CODE> which adds two key listener.
|
||||
* Then one of them will be removed. In a second thread a key event is released
|
||||
* by the <CODE>robot</CODE> class.<p>
|
||||
* Has <b> OK </b> status if only one of the listener are triggered. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
* <ul>
|
||||
* <li> <code> addKeyHandler() </code> : adds two key listener </li>
|
||||
* </ul>
|
||||
*/
|
||||
public void _removeKeyHandler() {
|
||||
requiredMethod("addKeyHandler()");
|
||||
|
||||
log.println("remove key listener 2");
|
||||
|
||||
oObj.removeKeyHandler(m_KeyListener2);
|
||||
|
||||
log.println("starting thread to check the key listener...");
|
||||
EventTrigger et = new EventTrigger(m_XModel, EventTriggerType.KEY_TEXT_INTO_DOC);
|
||||
|
||||
et.run();
|
||||
|
||||
waitForEventIdle();
|
||||
log.println("key listener thread should be finished.");
|
||||
|
||||
|
||||
boolean bOK = m_keyPressed1 & m_keyReleased1 &
|
||||
! m_keyPressed2 & ! m_keyReleased2;
|
||||
|
||||
if (! bOK){
|
||||
log.println("The key listener has not the expected status:");
|
||||
log.println("listener\texpected\tgot");
|
||||
log.println("keyPressed1\ttrue\t"+m_keyPressed1);
|
||||
log.println("keyReleased1\ttrue\t"+m_keyReleased1);
|
||||
log.println("keyPressed2\tfalse\t"+m_keyPressed2);
|
||||
log.println("keyReleased2\tfalse\t"+m_keyReleased2);
|
||||
}
|
||||
|
||||
log.println("remove Key listener 1");
|
||||
oObj.removeKeyHandler(m_KeyListener1);
|
||||
|
||||
tRes.tested("removeKeyHandler()", bOK);
|
||||
}
|
||||
|
||||
/**
|
||||
* This test adds two different mouse click listener to the object. <p>
|
||||
*
|
||||
* Has <b> OK </b> if no exception is thrown.
|
||||
*/
|
||||
public void _addMouseClickHandler() {
|
||||
log.println("creating mouse listener 1");
|
||||
m_MouseListener1 = new MyMouseClickHandler1();
|
||||
log.println("creating mouse listener 2");
|
||||
m_MouseListener2 = new MyMouseClickHandler2();
|
||||
|
||||
log.println("adding mouse listener 1");
|
||||
oObj.addMouseClickHandler(m_MouseListener1);
|
||||
log.println("adding mouse listener 2");
|
||||
oObj.addMouseClickHandler(m_MouseListener2);
|
||||
|
||||
tRes.tested("addMouseClickHandler()", true);
|
||||
}
|
||||
|
||||
/**
|
||||
* The test requires <CODE>addMouseClickHandler()</CODE> which adds two key listener.
|
||||
* Then one of them will be removed. In a second thread a mouse click event is released
|
||||
* by the <CODE>robot</CODE> class.<p>
|
||||
* Has <b> OK </b> status if only one of the listener are triggered. <p>
|
||||
* The following method tests are to be completed successfully before :
|
||||
* <ul>
|
||||
* <li> <code> addMouseClickHandler() </code> : adds two key listener </li>
|
||||
* </ul>
|
||||
*/
|
||||
public void _removeMouseClickHandler() {
|
||||
requiredMethod("addMouseClickHandler");
|
||||
|
||||
log.println("remove mouse listener 2");
|
||||
|
||||
oObj.removeMouseClickHandler(m_MouseListener2);
|
||||
|
||||
log.println("starting thread to check the mouse listener...");
|
||||
EventTrigger et = new EventTrigger(m_XModel, EventTriggerType.MOUSE_KLICK_INTO_DOC);
|
||||
|
||||
et.run();
|
||||
|
||||
waitForEventIdle();
|
||||
log.println("mouse listener thread should be finished.");
|
||||
|
||||
boolean bOK = m_mousePressed1 & m_mouseReleased1 &
|
||||
! m_mousePressed2 & ! m_mouseReleased2;
|
||||
|
||||
if (! bOK){
|
||||
log.println("The mouse listener has not the expected status:");
|
||||
log.println("listener\t\texpected\tgot");
|
||||
log.println("mousePressed1\ttrue\t\t"+m_mousePressed1);
|
||||
log.println("mouseReleased1\ttrue\t\t"+m_mouseReleased1);
|
||||
log.println("mousePressed2\tfalse\t\t"+m_mousePressed2);
|
||||
log.println("mouseReleased2\tfalse\t\t"+m_mouseReleased2);
|
||||
}
|
||||
|
||||
log.println("remove mouse listener 1");
|
||||
oObj.removeMouseClickHandler(m_MouseListener1);
|
||||
|
||||
tRes.tested("removeMouseClickHandler()", bOK);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Forces environment recreation.
|
||||
*/
|
||||
@Override
|
||||
protected void after() {
|
||||
disposeEnvironment();
|
||||
}
|
||||
|
||||
/**
|
||||
* Listener which added and its method must be called
|
||||
* on <code>keyPressed</code> and <code>keyReleased</code> call.
|
||||
*/
|
||||
public class MyKeyHandler1 implements XKeyHandler {
|
||||
/**
|
||||
* This event sets the member <code>m_keyPressed</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The key event informs about the pressed key.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean keyPressed( KeyEvent oEvent ){
|
||||
log.println("XKeyHandler 1: keyPressed-Event");
|
||||
m_keyPressed1 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event sets the member <code>m_keyReleased</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The key event informs about the pressed key.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean keyReleased( KeyEvent oEvent ){
|
||||
log.println("XKeyHandler 1: keyReleased-Event");
|
||||
m_keyReleased1 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event does nothing useful
|
||||
* @param oEvent refers to the object that fired the event.
|
||||
*/
|
||||
public void disposing( EventObject oEvent ){
|
||||
log.println("XKeyHandler 1: disposing-Event");
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Listener which added and its method must be called
|
||||
* on <code>keyPressed</code> and <code>keyReleased</code> call.
|
||||
*/
|
||||
public class MyKeyHandler2 implements XKeyHandler {
|
||||
/**
|
||||
* This event sets the member <code>m_keyPressed</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The key event informs about the pressed key.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean keyPressed( KeyEvent oEvent ){
|
||||
log.println("XKeyHandler 2: keyPressed-Event: " +
|
||||
"This should not be happen because listener is removed!");
|
||||
m_keyPressed2 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event sets the member <code>m_keyReleased</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The key event informs about the pressed key.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean keyReleased( KeyEvent oEvent ){
|
||||
log.println("XKeyHandler 2: keyReleased-Event: " +
|
||||
"This should not be happen because listener is removed!");
|
||||
m_keyReleased2 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event does nothing useful
|
||||
* @param oEvent refers to the object that fired the event.
|
||||
*/
|
||||
public void disposing( EventObject oEvent ){
|
||||
log.println("XKeyHandler 2: disposing-Event: " +
|
||||
"This should not be happen because listener is removed!");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Listener which added and its method must be called
|
||||
* on <code>mousePressed</code> and <code>mouseReleased</code> call.
|
||||
*/
|
||||
public class MyMouseClickHandler1 implements XMouseClickHandler {
|
||||
/**
|
||||
* This event sets the member <code>m_mousePressed</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The mouse event informs about the kind of mouse event.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean mousePressed( MouseEvent oEvent ){
|
||||
log.println("XMouseClickHandler 1: mousePressed-Event");
|
||||
m_mousePressed1 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event sets the member <code>m_mouseReleased</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The mouse event informs about the kind of mouse event.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean mouseReleased( MouseEvent oEvent ){
|
||||
log.println("XMouseClickHandler 1: mouseReleased-Event");
|
||||
m_mouseReleased1 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event does nothing useful
|
||||
* @param oEvent refers to the object that fired the event.
|
||||
*/
|
||||
public void disposing( EventObject oEvent ){
|
||||
log.println("XMouseClickHandler 1: disposing-Event");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Listener which added and removed. Its method must NOT be called
|
||||
* on <code>mousePressed</code> and <code>mouseReleased</code> call.
|
||||
*/
|
||||
public class MyMouseClickHandler2 implements XMouseClickHandler {
|
||||
/**
|
||||
* This event sets the member <code>m_mousePressed</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The mouse event informs about the kind of mouse event.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean mousePressed( MouseEvent oEvent ){
|
||||
log.println("XMouseClickHandler 2: mousePressed-Event: " +
|
||||
"This should not be happen because listener is removed!");
|
||||
m_mousePressed2 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event sets the member <code>m_mouseReleased</coed> to
|
||||
* <code>true</code>
|
||||
* @param oEvent The mouse event informs about the kind of mouse event.
|
||||
* @return returns <CODE>TRUE</CODE> in erery case
|
||||
*/
|
||||
public boolean mouseReleased( MouseEvent oEvent ){
|
||||
log.println("XMouseClickHandler 2: mouseReleased-Event: " +
|
||||
"This should not be happen because listener is removed!");
|
||||
m_mouseReleased2 = true;
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This event does nothing useful
|
||||
* @param oEvent refers to the object that fired the event.
|
||||
*/
|
||||
public void disposing( EventObject oEvent ){
|
||||
log.println("XMouseClickHandler 2: disposing-Event: " +
|
||||
" This should not be happen because listener is removed!");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* To check the events this class is a thread which click a mouse button and
|
||||
* press a key with the <CODE>Robot</CODE> class
|
||||
* @see java.awt.Robot
|
||||
*/
|
||||
private class EventTrigger implements Runnable {
|
||||
|
||||
/**
|
||||
* represents an <CODE>EventType</CODE>
|
||||
* @see EventTest.EventTriggerType
|
||||
*/
|
||||
private final int eventType;
|
||||
/**
|
||||
* represents a <CODE>XModel</CODE> of a document
|
||||
*/
|
||||
private final XModel xModel;
|
||||
|
||||
/**
|
||||
* Creates an instacne of this class. The parameter <CODE>eType</CODE> represents
|
||||
* the kind of event which will be triggert at <CODE>run()</CODE>
|
||||
* @param model the model of a document
|
||||
* @param eType the kind of event which should be trigger
|
||||
*/
|
||||
public EventTrigger(XModel model, int eType)
|
||||
{
|
||||
this.xModel = model;
|
||||
this.eventType = eType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Triggers the event which is represented by <CODE>eventType</CODE>
|
||||
* The scenarios are:
|
||||
* <ul>
|
||||
* <li>EventTest.EventTriggerType.MOUSE_KLICK_INTO_DOC
|
||||
* which calls
|
||||
* <li><CODE>clickIntoDoc</CODE></LI>
|
||||
* </LI>
|
||||
* <li>EventTest.EventTriggerType.KEY_TEXT_INTO_DOC
|
||||
* which calls
|
||||
* <li><CODE>clickIntodoc</CODE></LI>
|
||||
* <li><CODE>keyIntoDoc</CODE></LI>
|
||||
* </LI>
|
||||
* </UL>
|
||||
*/
|
||||
public void run(){
|
||||
|
||||
switch (this.eventType){
|
||||
|
||||
case EventTriggerType.MOUSE_KLICK_INTO_DOC:
|
||||
clickIntoDoc();
|
||||
break;
|
||||
case EventTriggerType.KEY_TEXT_INTO_DOC:
|
||||
clickIntoDoc();
|
||||
keyIntoDoc();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
/**
|
||||
* This method clicks into the middle of a document. It uses Accessibility
|
||||
* to get the document and query for its position and its range to calculate
|
||||
* the middle. This values was used for <CODE>Robot</CODE> Class. This
|
||||
* Robot class is able to move the mouse and to click a mouse button
|
||||
* @see java.awt.Robot
|
||||
*/
|
||||
private void clickIntoDoc(){
|
||||
try{
|
||||
|
||||
util.DesktopTools.bringWindowToFront(xModel);
|
||||
|
||||
XWindow xWindow = AccessibilityTools.getCurrentWindow(
|
||||
xModel);
|
||||
|
||||
XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
|
||||
|
||||
|
||||
|
||||
XAccessibleContext xPanel = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.PANEL);
|
||||
XAccessibleComponent xPanelCont = UnoRuntime.queryInterface(XAccessibleComponent.class, xPanel);
|
||||
|
||||
// the position of the panel
|
||||
Point point = xPanelCont.getLocationOnScreen();
|
||||
|
||||
// the range of the panel
|
||||
Rectangle rect = xPanelCont.getBounds();
|
||||
|
||||
try {
|
||||
Robot rob = new Robot();
|
||||
int x = point.X + (rect.Width / 2);
|
||||
int y = point.Y + (rect.Height / 2);
|
||||
log.println("try to click into the middle of the document");
|
||||
rob.mouseMove(x, y);
|
||||
rob.mousePress(InputEvent.BUTTON1_MASK);
|
||||
rob.mouseRelease(InputEvent.BUTTON1_MASK);
|
||||
} catch (java.awt.AWTException e) {
|
||||
log.println("couldn't press mouse button");
|
||||
}
|
||||
} catch (java.lang.Exception e){
|
||||
log.println("could not click into the scroll bar: " + e.toString());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This method press the "A" key. Therefore it uses the <CODE>Robot</CODE>
|
||||
* class.
|
||||
* @see java.awt.Robot
|
||||
*/
|
||||
private void keyIntoDoc(){
|
||||
try {
|
||||
Robot rob = new Robot();
|
||||
log.println("try to press 'A'");
|
||||
rob.keyPress(java.awt.event.KeyEvent.VK_A);
|
||||
rob.keyRelease(java.awt.event.KeyEvent.VK_A);
|
||||
} catch (java.awt.AWTException e) {
|
||||
log.println("couldn't press key");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/** This interface represents all possible actions which could be used
|
||||
* in the <CODE>EventTrigger</CODE> class.
|
||||
* @see EventTest.EventTrigger
|
||||
*/
|
||||
private interface EventTriggerType{
|
||||
|
||||
/** click the mouse into the scroll bar*/
|
||||
int MOUSE_KLICK_INTO_DOC = 1;
|
||||
|
||||
/** write some text into a spread sheet*/
|
||||
int KEY_TEXT_INTO_DOC = 2;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue