merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / ifc / reflection / _XIdlReflection.java
blobde6d45cd31e786ae6f7687cb683deab031c2951b
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: _XIdlReflection.java,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package ifc.reflection;
33 import com.sun.star.lang.XMultiServiceFactory;
34 import com.sun.star.reflection.XIdlClass;
35 import com.sun.star.reflection.XIdlReflection;
36 import com.sun.star.uno.TypeClass;
37 import lib.MultiMethodTest;
39 /**
40 * Testing <code>com.sun.star.reflection.XIdlReflection</code>
41 * interface methods :
42 * <ul>
43 * <li><code> forName()</code></li>
44 * <li><code> getType()</code></li>
45 * </ul> <p>
46 * @see com.sun.star.reflection.XIdlReflection
48 public class _XIdlReflection extends MultiMethodTest{
49 public XIdlReflection oObj = null;
50 protected final static String typeName = "com.sun.star.container.XNameAccess";
52 /**
53 * Test calls the method and checks returned interface
54 * <code>com.sun.star.container.XNameAccess</code>: gets the name and the
55 * type and checks it. <p>
56 * Has <b> OK </b> status if returned name is equal to the name of the
57 * interface that was passed as parameter in the method call and if returned
58 * type is equal to <code>com.sun.star.uno.TypeClass.INTERFACE</code>. <p>
60 public void _forName() {
61 boolean result = true;
62 XIdlClass cls = oObj.forName(typeName);
64 if (cls != null) {
65 log.println("Class name: " + cls.getName());
66 result &= cls.getTypeClass() == TypeClass.INTERFACE;
67 result &= typeName.equals(cls.getName());
68 } else {
69 log.println("Method returned null");
70 result = false;
73 tRes.tested("forName()", result);
76 /**
77 * Test creates the instance of <code>com.sun.star.io.Pipe</code>,
78 * calls the method using this instance as parameter and checks returned
79 * value. <p>
80 * Has <b> OK </b> status if the instance was created successfully, if
81 * returned value isn't null and no exceptions were thrown. <p>
83 public void _getType() {
84 boolean result = true;
85 Object obj = null;
87 try {
88 obj = ((XMultiServiceFactory)tParam.getMSF()).
89 createInstance("com.sun.star.io.Pipe") ;
90 } catch (com.sun.star.uno.Exception e) {
91 log.println("Can't create object");
92 tRes.tested("getType()", false);
93 return;
96 if (obj == null) {
97 result = false;
98 log.println("Object wasn't created !");
99 tRes.tested("getType()", false);
102 XIdlClass cls = oObj.getType(obj);
104 log.println("The name is " + cls.getName());
106 tRes.tested("getType()", cls != null);