1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir package ifc.frame; 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir import lib.MultiMethodTest; 31*cdf0e10cSrcweir import util.utils; 32*cdf0e10cSrcweir 33*cdf0e10cSrcweir import com.sun.star.frame.DispatchDescriptor; 34*cdf0e10cSrcweir import com.sun.star.frame.FrameSearchFlag; 35*cdf0e10cSrcweir import com.sun.star.frame.XDispatch; 36*cdf0e10cSrcweir import com.sun.star.frame.XDispatchProvider; 37*cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 38*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 39*cdf0e10cSrcweir import com.sun.star.util.URL; 40*cdf0e10cSrcweir import com.sun.star.util.XURLTransformer; 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir /** 43*cdf0e10cSrcweir * Testing <code>com.sun.star.frame.XDispatchProvider</code> 44*cdf0e10cSrcweir * interface methods: 45*cdf0e10cSrcweir * <ul> 46*cdf0e10cSrcweir * <li><code> queryDispatch() </code></li> 47*cdf0e10cSrcweir * <li><code> queryDispatches() </code></li> 48*cdf0e10cSrcweir * </ul><p> 49*cdf0e10cSrcweir * This test needs the following object relations : 50*cdf0e10cSrcweir * <ul> 51*cdf0e10cSrcweir * <li> <code>'XDispatchProvider.URL'</code> (of type <code>String</code>): 52*cdf0e10cSrcweir * used to obtain unparsed url of DispatchProvider </li> 53*cdf0e10cSrcweir * </ul> <p> 54*cdf0e10cSrcweir * Test is <b> NOT </b> multithread compilant. <p> 55*cdf0e10cSrcweir * @see com.sun.star.frame.XDispatchProvider 56*cdf0e10cSrcweir */ 57*cdf0e10cSrcweir public class _XDispatchProvider extends MultiMethodTest { 58*cdf0e10cSrcweir public static XDispatchProvider oObj = null; 59*cdf0e10cSrcweir private String dispatchUrl = null ; 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir /** 62*cdf0e10cSrcweir * Retrieves object relation. 63*cdf0e10cSrcweir */ 64*cdf0e10cSrcweir public void before() { 65*cdf0e10cSrcweir dispatchUrl = (String) tEnv.getObjRelation("XDispatchProvider.URL") ; 66*cdf0e10cSrcweir if (dispatchUrl == null) { 67*cdf0e10cSrcweir dispatchUrl = utils.getFullTestDocName("index.html"); 68*cdf0e10cSrcweir } 69*cdf0e10cSrcweir log.println("Using URL: '" + dispatchUrl + "'"); 70*cdf0e10cSrcweir } 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir /** 73*cdf0e10cSrcweir * Test calls the method. <p> 74*cdf0e10cSrcweir * Has <b> OK </b> status if the method does not return null. 75*cdf0e10cSrcweir */ 76*cdf0e10cSrcweir public void _queryDispatch() { 77*cdf0e10cSrcweir URL url = new URL(); 78*cdf0e10cSrcweir String frameName = "_top"; 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir url.Complete = dispatchUrl; 81*cdf0e10cSrcweir try { 82*cdf0e10cSrcweir XURLTransformer xParser=(XURLTransformer) 83*cdf0e10cSrcweir UnoRuntime.queryInterface(XURLTransformer.class, 84*cdf0e10cSrcweir ((XMultiServiceFactory)tParam.getMSF()).createInstance 85*cdf0e10cSrcweir ("com.sun.star.util.URLTransformer")); 86*cdf0e10cSrcweir // Because it's an in/out parameter we must use an array of 87*cdf0e10cSrcweir // URL objects. 88*cdf0e10cSrcweir URL[] aParseURL = new URL[1]; 89*cdf0e10cSrcweir aParseURL[0] = new URL(); 90*cdf0e10cSrcweir aParseURL[0].Complete = dispatchUrl; 91*cdf0e10cSrcweir xParser.parseStrict(aParseURL); 92*cdf0e10cSrcweir url = aParseURL[0]; 93*cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 94*cdf0e10cSrcweir log.println("Couldn't parse URL"); 95*cdf0e10cSrcweir } 96*cdf0e10cSrcweir XDispatch xDispatch = oObj.queryDispatch(url, 97*cdf0e10cSrcweir frameName, FrameSearchFlag.ALL); 98*cdf0e10cSrcweir tRes.tested("queryDispatch()", xDispatch != null); 99*cdf0e10cSrcweir } 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir /** 102*cdf0e10cSrcweir * Before test calls the method, DispatchDescriptor sequence is defined.<p> 103*cdf0e10cSrcweir * Has <b> OK </b> status if the method does not return null, returned 104*cdf0e10cSrcweir * sequence length is equal to a number of DispatchDescriptors 105*cdf0e10cSrcweir * and returned sequence consists of non-null elements. 106*cdf0e10cSrcweir */ 107*cdf0e10cSrcweir public void _queryDispatches() { 108*cdf0e10cSrcweir String name1 = "_self"; 109*cdf0e10cSrcweir String name2 = "_top"; 110*cdf0e10cSrcweir URL url1 = new URL(); 111*cdf0e10cSrcweir URL url2 = new URL(); 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir url1.Complete = dispatchUrl; 114*cdf0e10cSrcweir url2.Complete = dispatchUrl; 115*cdf0e10cSrcweir try { 116*cdf0e10cSrcweir log.println("Parsing URL"); 117*cdf0e10cSrcweir XURLTransformer xParser = (XURLTransformer) 118*cdf0e10cSrcweir UnoRuntime.queryInterface(XURLTransformer.class, 119*cdf0e10cSrcweir ((XMultiServiceFactory)tParam.getMSF()).createInstance 120*cdf0e10cSrcweir ("com.sun.star.util.URLTransformer")); 121*cdf0e10cSrcweir // Because it's an in/out parameter we must use an array of 122*cdf0e10cSrcweir // URL objects. 123*cdf0e10cSrcweir URL[] aParseURL = new URL[1]; 124*cdf0e10cSrcweir aParseURL[0] = new URL(); 125*cdf0e10cSrcweir aParseURL[0].Complete = dispatchUrl; 126*cdf0e10cSrcweir xParser.parseStrict(aParseURL); 127*cdf0e10cSrcweir url1 = aParseURL[0]; 128*cdf0e10cSrcweir url2 = aParseURL[0]; 129*cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 130*cdf0e10cSrcweir log.println("Couldn't parse URL"); 131*cdf0e10cSrcweir } 132*cdf0e10cSrcweir DispatchDescriptor descs[] = new DispatchDescriptor[] { 133*cdf0e10cSrcweir new DispatchDescriptor(url1, name1, FrameSearchFlag.ALL), 134*cdf0e10cSrcweir new DispatchDescriptor(url2, name2, FrameSearchFlag.ALL) 135*cdf0e10cSrcweir }; 136*cdf0e10cSrcweir XDispatch[] xDispatches = oObj.queryDispatches(descs); 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir if (xDispatches == null) { 139*cdf0e10cSrcweir log.println("queryDispatches() returned null"); 140*cdf0e10cSrcweir tRes.tested("queryDispatches()", false); 141*cdf0e10cSrcweir return; 142*cdf0e10cSrcweir } 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir if (xDispatches.length != descs.length) { 145*cdf0e10cSrcweir log.println("queryDispatches() returned " 146*cdf0e10cSrcweir + xDispatches.length 147*cdf0e10cSrcweir + " amount of XDispatch instead of " 148*cdf0e10cSrcweir + descs.length); 149*cdf0e10cSrcweir tRes.tested("queryDispatches()", false); 150*cdf0e10cSrcweir return; 151*cdf0e10cSrcweir } 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir for (int i = 0; i < xDispatches.length; i++) { 154*cdf0e10cSrcweir if (xDispatches[i] == null) { 155*cdf0e10cSrcweir log.println("queryDispatches() result contains" 156*cdf0e10cSrcweir + " null object"); 157*cdf0e10cSrcweir tRes.tested("queryDispatches()", false); 158*cdf0e10cSrcweir return; 159*cdf0e10cSrcweir } 160*cdf0e10cSrcweir } 161*cdf0e10cSrcweir 162*cdf0e10cSrcweir tRes.tested("queryDispatches()", true); 163*cdf0e10cSrcweir return; 164*cdf0e10cSrcweir } 165*cdf0e10cSrcweir 166*cdf0e10cSrcweir } 167*cdf0e10cSrcweir 168