1ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ef39d40dSAndrew Rist  * distributed with this work for additional information
6ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10ef39d40dSAndrew Rist  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12ef39d40dSAndrew Rist  *
13ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18ef39d40dSAndrew Rist  * under the License.
19ef39d40dSAndrew Rist  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package mod._fwk;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import com.sun.star.beans.XPropertySet;
27cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
28cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
29cdf0e10cSrcweir import com.sun.star.uno.XInterface;
30cdf0e10cSrcweir import java.io.PrintWriter;
31cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
32cdf0e10cSrcweir import com.sun.star.uno.XComponentContext;
33cdf0e10cSrcweir import com.sun.star.util.XCloseable;
34cdf0e10cSrcweir import com.sun.star.frame.XUIControllerRegistration;
35cdf0e10cSrcweir import lib.StatusException;
36cdf0e10cSrcweir import lib.TestCase;
37cdf0e10cSrcweir import lib.TestEnvironment;
38cdf0e10cSrcweir import lib.TestParameters;
39cdf0e10cSrcweir import util.WriterTools;
40cdf0e10cSrcweir 
41cdf0e10cSrcweir /**
42cdf0e10cSrcweir  */
43cdf0e10cSrcweir public class PopupMenuControllerFactory extends TestCase {
44cdf0e10cSrcweir     XTextDocument xTextDoc;
45cdf0e10cSrcweir 
46cdf0e10cSrcweir     /**
47cdf0e10cSrcweir      * Cleanup: close the created document
48cdf0e10cSrcweir      * @param tParam The test parameters.
49*e6b649b5SPedro Giffuni      * @param log The log writer.
50cdf0e10cSrcweir      */
cleanup(TestParameters tParam, PrintWriter log)51cdf0e10cSrcweir     protected void cleanup(TestParameters tParam, PrintWriter log) {
52cdf0e10cSrcweir         log.println("    disposing xTextDoc ");
53cdf0e10cSrcweir 
54cdf0e10cSrcweir         try {
55cdf0e10cSrcweir             XCloseable closer = (XCloseable) UnoRuntime.queryInterface(
56cdf0e10cSrcweir             XCloseable.class, xTextDoc);
57cdf0e10cSrcweir             closer.close(true);
58cdf0e10cSrcweir         } catch (com.sun.star.util.CloseVetoException e) {
59cdf0e10cSrcweir             log.println("couldn't close document");
60cdf0e10cSrcweir         } catch (com.sun.star.lang.DisposedException e) {
61cdf0e10cSrcweir             log.println("couldn't close document");
62cdf0e10cSrcweir         }
63cdf0e10cSrcweir     }
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 
66cdf0e10cSrcweir     /**
67cdf0e10cSrcweir      * Create test environment:
68cdf0e10cSrcweir      * @param tParam The test parameters.
69*e6b649b5SPedro Giffuni      * @param log The log writer.
70cdf0e10cSrcweir      * @return The test environment.
71cdf0e10cSrcweir      */
createTestEnvironment(TestParameters tParam, PrintWriter log)72cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
73cdf0e10cSrcweir         TestEnvironment tEnv = null;
74cdf0e10cSrcweir         XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF();
75cdf0e10cSrcweir         XInterface xInst = null;
76cdf0e10cSrcweir 
77cdf0e10cSrcweir         log.println("Creating instance...");
78cdf0e10cSrcweir 
79cdf0e10cSrcweir         xTextDoc = WriterTools.createTextDoc(xMSF);
80cdf0e10cSrcweir         util.dbg.printInterfaces(xTextDoc);
81cdf0e10cSrcweir 
82cdf0e10cSrcweir         try {
83cdf0e10cSrcweir             xInst = (XInterface)xMSF.createInstance(
84cdf0e10cSrcweir                             "com.sun.star.comp.framework.PopupMenuControllerFactory");
85cdf0e10cSrcweir         }
86cdf0e10cSrcweir         catch(com.sun.star.uno.Exception e) {
87cdf0e10cSrcweir             throw new StatusException("Couldn't create test object", e);
88cdf0e10cSrcweir         }
89cdf0e10cSrcweir 
90cdf0e10cSrcweir         log.println("TestObject: " + util.utils.getImplName(xInst));
91cdf0e10cSrcweir         tEnv = new TestEnvironment(xInst);
92cdf0e10cSrcweir         XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xMSF);
93cdf0e10cSrcweir         try {
94cdf0e10cSrcweir             Object o = xProp.getPropertyValue("DefaultContext");
95cdf0e10cSrcweir             XComponentContext xContext = (XComponentContext)UnoRuntime.queryInterface(XComponentContext.class, o);
96cdf0e10cSrcweir             tEnv.addObjRelation("DC", xContext);
97cdf0e10cSrcweir         }
98cdf0e10cSrcweir         catch(com.sun.star.beans.UnknownPropertyException e) {
99cdf0e10cSrcweir             log.println("Cannot get the 'DefaultContext' for XMultiComponentFactory test.");
100cdf0e10cSrcweir             e.printStackTrace(log);
101cdf0e10cSrcweir         }
102cdf0e10cSrcweir         catch(com.sun.star.lang.WrappedTargetException e) {
103cdf0e10cSrcweir             log.println("Cannot get the 'DefaultContext' for XMultiComponentFactory test.");
104cdf0e10cSrcweir             e.printStackTrace(log);
105cdf0e10cSrcweir         }
106cdf0e10cSrcweir 
107cdf0e10cSrcweir         // register one controller, so it can be instantiated
108cdf0e10cSrcweir         XUIControllerRegistration xReg = (XUIControllerRegistration)
109cdf0e10cSrcweir                 UnoRuntime.queryInterface(XUIControllerRegistration.class, xInst);
110cdf0e10cSrcweir 
111cdf0e10cSrcweir         xReg.registerController(".uno:MyCommandUrl", "", "com.sun.star.comp.framework.FooterMenuController");
112cdf0e10cSrcweir         tEnv.addObjRelation("XUIControllerRegistration.RegisteredController", ".uno:MyCommandUrl");
113cdf0e10cSrcweir         tEnv.addObjRelation("XMultiComponentFactory.ServiceNames", new String[]{".uno:MyCommandUrl"});
114cdf0e10cSrcweir 
115cdf0e10cSrcweir         return tEnv;
116cdf0e10cSrcweir     }
117cdf0e10cSrcweir }
118cdf0e10cSrcweir 
119cdf0e10cSrcweir 
120