/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package ifc.frame;
import com.sun.star.awt.XWindow;
//import com.sun.star.awt.XWindow;
import com.sun.star.frame.FrameAction;
import com.sun.star.frame.FrameActionEvent;
import com.sun.star.frame.XController;
import com.sun.star.frame.XFrame;
import com.sun.star.frame.XFrameActionListener;
import com.sun.star.frame.XFramesSupplier;
import com.sun.star.lang.EventObject;
import java.io.PrintWriter;
import lib.MultiMethodTest;
import lib.TestEnvironment;
/**
* Testing com.sun.star.frame.XFrame
* interface methods:
*
getName()
setName()
activate()
deactivate()
isActive()
addFrameActionListener()
removeFrameActionListener()
getCreator()
getComponentWindow()
getContainerWindow()
getController()
isTop()
findFrame()
contextChanged()
setCreator()
setComponent()
initialize()
* This test needs the following object relations : *
'XFrame'
(of type XFrame
)
* optional: any frame named 'XFrame'.
* Could be used by findFrame
method to try
* to find other frame than itself.'Desktop'
(of type Object
):
* if exsists, then desktop component is tested* Test is NOT multithread compilant.
* @see com.sun.star.frame.XFrame */ public class _XFrame extends MultiMethodTest { final FrameAction[] actionEvent = new FrameAction[1] ; final boolean[] listenerCalled = new boolean[] {false} ; final boolean[] activatedCalled = new boolean[] {false} ; final boolean[] deactivatedCalled = new boolean[] {false} ; final TestFrameActionListener listener = new TestFrameActionListener() ; public static XFrame oObj = null; /** * Class used to test listeners. */ private class TestFrameActionListener implements XFrameActionListener { public void frameAction(FrameActionEvent e) { listenerCalled[0] = true ; activatedCalled[0] |= e.Action == FrameAction.FRAME_ACTIVATED; deactivatedCalled[0] |= e.Action == FrameAction.FRAME_DEACTIVATING; actionEvent[0] = e.Action; } public void disposing(EventObject e) {} } /** * Test calls the method.
* Has OK status if the method does not return null. */ public void _getName() { String name = oObj.getName() ; if (name == null) log.println("getName() returned null: FAILED") ; tRes.tested("getName()", name!=null) ; } /** * Test calls the method.
* Has OK status if set and gotten names are equal. */ public void _setName() { String sName = "XFrame" ; oObj.setName(sName); String gName = oObj.getName(); boolean res = sName.equals(gName); if (! res) log.println("setName('" + sName + "'), but getName() return '" + gName + "'") ; tRes.tested("setName()", res); } /** * Test calls the method.
* Has OK status if the method successfully returns * and no exceptions were thrown. */ public void _activate() { oObj.activate() ; tRes.tested("activate()", true) ; } /** * Test calls the method.
* Has OK status if the method successfully returns * and no exceptions were thrown. */ public void _deactivate() { oObj.deactivate() ; oObj.activate() ; tRes.tested("deactivate()", true) ; } /** * Test calls the method. Then frame is deactivated and method called * again.
* Has OK status if isDesktop() returns true or if the method * always display real status of a frame during activation/deactivation. */ public void _isActive() { boolean result = true; if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop is always active"); tRes.tested("isActive()", oObj.isActive()) ; return; } oObj.deactivate(); result &= !oObj.isActive(); if (oObj.isActive()) log.println("after deactivate() method call, isActive() returned true"); oObj.activate(); result &= oObj.isActive(); if (!oObj.isActive()) log.println("after activate() method call, isActive() returned false") ; boolean res = isDesktop(log,tEnv,"isActive()"); if (res) result=res; tRes.tested("isActive()", result) ; } /** * Test calls the method. Then frame status (activated/deactivated) is * changed, and the listener is checked.
* Has OK status if isDesktop() method returnes true, or if the * listener was called and frame was activated. */ public void _addFrameActionListener() { boolean result = true ; oObj.addFrameActionListener(listener) ; oObj.activate() ; oObj.deactivate() ; oObj.activate() ; if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("No actions supported by Desktop"); tRes.tested("addFrameActionListener()", true) ; return; } try { Thread.sleep(500); }catch (InterruptedException ex) {} if (!listenerCalled[0]) { log.println("listener was not called.") ; result = false ; } else { if (!activatedCalled[0]) { log.println("Listener was called, FRAME_ACTIVATED was not") ; result = false ; } if (!deactivatedCalled[0]) { log.println("Listener was called, FRAME_DEACTIVATING was not") ; result = false ; } } boolean res = isDesktop(log, tEnv, "addFrameActionListener()"); if (res) result=res; tRes.tested("addFrameActionListener()", result) ; } /** * Test calls the method. Then frame status (activated/deactivated) is * changed, and the listener is checked.
* Has OK status if isDesktop() method returns true, or if the * method actually removes listener so it does not react on * activate/deactivate events.
* The following method tests are to be completed successfully before : *
addFrameActionListener()
: adds action listener
* to a frame * Has OK status if isDesktop() method returns true or if the method * does not return null. */ public void _getCreator() { boolean result = true; if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop has no creator"); tRes.tested("getCreator()", true) ; return; } XFramesSupplier creator = oObj.getCreator() ; if (creator == null) log.println("getCreator() returns null") ; boolean res = isDesktop(log,tEnv,"getCreator()"); if (res) result=res; else result = (creator != null); tRes.tested("getCreator()", result) ; } /** * Test calls the method.
* Has OK status if isDesktop() method returns true or if the method * does not return null. */ public void _getComponentWindow() { boolean result = true; XWindow win = oObj.getComponentWindow() ; if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop has no component window"); tRes.tested("getComponentWindow()", true) ; return; } if (win == null) log.println("getComponentWindow() returns null") ; boolean res = isDesktop(log,tEnv,"getComponentWindow()"); if (res) result=res; else result = (win != null); tRes.tested("getComponentWindow()", result) ; } /** * Test calls the method.
* Has OK status if isDesktop() method returns true or if the method * does not return null. */ public void _getContainerWindow() { boolean result = true; if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop has no container window"); tRes.tested("getContainerWindow()", true) ; return; } XWindow win = oObj.getContainerWindow() ; if (win == null) log.println("getContainerWindow() returns null") ; boolean res = isDesktop(log,tEnv,"getContainerWindow()"); if (res) result=res; else result = (win != null); tRes.tested("getContainerWindow()", result) ; } /** * Test calls the method. Then returned controller is checked.
* Has OK status if isDesktop() method returns true or * if the method returns non-null controller, having frame that's equal to * a (XFrame) oObj. */ public void _getController() { boolean result = true; XController ctrl = oObj.getController(); if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop has no controller"); tRes.tested("getController()", true) ; return; } if (ctrl == null) { log.println("getController() returns null"); result = false; } else { XFrame frm = ctrl.getFrame(); if (!oObj.equals(frm)) { log.println("Frame returned by controller not " + "equals to frame testing"); result = false; } } boolean res = isDesktop(log, tEnv, "getController()"); if (res) result=res; tRes.tested("getController()", result) ; } /** * Test calls the method.
* Has OK status if the method successfully returns * and no exceptions were thrown. */ public void _isTop() { log.println("isTop() = " + oObj.isTop()); tRes.tested("isTop()", true) ; } /** * After obtaining an object relation 'XFrame', test tries to find a frame * named 'XFrame'.
* Has OK status if the method returns non-null object that's equal * to previously obtained object relation. */ public void _findFrame() { boolean result = true ; XFrame aFrame = (XFrame) tEnv.getObjRelation("XFrame"); if (aFrame != null) { log.println("Trying to find a frame with name 'XFrame' ..."); XFrame frame = oObj.findFrame("XFrame", com.sun.star.frame.FrameSearchFlag.GLOBAL) ; if (frame == null) { log.println("findFrame(\"XFrame,com.sun.star.frame.FrameSearchFlag.GLOBAL\") returns null") ; result = false ; } else if ( !aFrame.equals(frame) ) { log.println("findFrame(\"XFrame,com.sun.star.frame.FrameSearchFlag.GLOBAL\") " + " returns frame which is not equal to passed in relation") ; result = false ; } } log.println("Trying to find a frame with name '_self' ..."); XFrame frame = oObj.findFrame("_self", com.sun.star.frame.FrameSearchFlag.AUTO) ; if (frame == null) { log.println("findFrame(\"_self\") returns null") ; result = false ; } else if ( !oObj.equals(frame) ) { log.println("findFrame(\"_self\") " + " returns frame which is not equal to tested") ; result = false ; } tRes.tested("findFrame()", result) ; } /** * At first new listener is added, then test calls the method and result * is checked.
* Has OK status if isDesktop() method returnes true or if the * listener was called and proper event past to listener. */ public void _contextChanged() { boolean result = true; TestFrameActionListener listener = new TestFrameActionListener(); if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop cann't change context"); tRes.tested("contextChanged()", true) ; return; } listenerCalled[0] = false; oObj.addFrameActionListener(listener); try { oObj.contextChanged(); if ( !listenerCalled[0] ) { log.println("listener was not called on contextChanged() call.") ; result = false; } else if (actionEvent[0] != FrameAction.CONTEXT_CHANGED) { log.println("listener was called, but Action != CONTEXT_CHANGED") ; result = false; } } finally { oObj.removeFrameActionListener(listener); } boolean res = isDesktop(log, tEnv, "contextChanged()"); if (res) result = res; tRes.tested("contextChanged()", result); } /** * Test calls the method. Remembered old creater is restored at the end.
* Has OK status if the method sucessfully set new value to (XFrame) * oObj object. */ public void _setCreator() { if (tEnv.getTestCase().getObjectName().equals("Desktop")) { log.println("Desktop has no creator"); tRes.tested("setCreator()", true) ; return; } XFramesSupplier oldCreator = oObj.getCreator() ; oObj.setCreator(null) ; tRes.tested("setCreator()", oObj.getCreator() == null) ; oObj.setCreator(oldCreator) ; } /** * Test calls the method, then result is checked.
* Has OK status if method returns true, and values, set by the * method are nulls, or if method returns false, and values are not changed. * This method destroy the object. Therfore all other methods have to be * executed before : *
getName()
* setName()
* activate()
* deactivate()
* isActive()
* addFrameActionListener()
* getComponentWindow()
* getContainerWindow()
* getController()
* isTop()
* findFrame()
* contextChanged()
* setCreator()
* object
* Has OK status if the method successfully returns.
* In case a frame should initialised twice, a
* com.sun.star.uno.RuntimeException
was thron. This is ok. But since
* a com.sun.star.uno.RuntimeException could thrown in any state the message of
* the exception must contain a defined string. In this case the test get an
* OK
status.
* The following method tests are to be completed successfully before :
*
setComponent()
: sets window and controller to the
* object