tdf#130857 qt weld: Introduce QtInstanceScrolledWindow
[LibreOffice.git] / qadevOOo / tests / java / mod / _dbaccess / OSQLMessageDialog.java
blob2fe02240ccfc6a33eb64dbfd4dfe9b51aa24ad3f
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package mod._dbaccess;
21 import java.io.PrintWriter;
23 import lib.TestCase;
24 import lib.TestEnvironment;
25 import lib.TestParameters;
27 import com.sun.star.uno.UnoRuntime;
28 import com.sun.star.uno.XInterface;
30 /**
31 * Test for object which is represented by service
32 * <code>com.sun.star.sdb.ErrorMessageDialog</code>.
33 * <p>
34 * Object implements the following interfaces :
35 * <ul>
36 * <li> <code>com::sun::star::lang::XInitialization</code></li>
37 * <li> <code>com::sun::star::sdb::ErrorMessageDialog</code></li>
38 * <li> <code>com::sun::star::ui::dialogs::XExecutableDialog</code></li>
39 * <li> <code>com::sun::star::beans::XPropertySet</code></li>
40 * </ul> <p>
41 * This object test <b> is NOT </b> designed to be run in several
42 * threads concurrently.
44 * @see com.sun.star.lang.XInitialization
45 * @see com.sun.star.sdb.ErrorMessageDialog
46 * @see com.sun.star.ui.dialogs.XExecutableDialog
47 * @see com.sun.star.beans.XPropertySet
48 * @see ifc.lang._XInitialization
49 * @see ifc.sdb._ErrorMessageDialog
50 * @see ifc.ui.dialogs._XExecutableDialog
51 * @see ifc.beans._XPropertySet
53 public class OSQLMessageDialog extends TestCase {
55 /**
56 * Creating a TestEnvironment for the interfaces to be tested.
58 * Creates an instance of the service
59 * <code>com.sun.star.sdb.ErrorMessageDialog</code>. Object relations
60 * created :
61 * <ul>
62 * <li> <code>'ERR1', 'ERR2'</code> for {@link ifc.sdb._ErrorMessageDialog}</li>
63 * </ul>
65 @Override
66 public TestEnvironment createTestEnvironment(TestParameters Param,
67 PrintWriter log) throws Exception {
68 XInterface oObj = null;
69 Object oInterface = null;
71 Object err1 = null;
72 Object err2 = null;
74 oInterface = Param.getMSF().createInstance(
75 "com.sun.star.sdb.ErrorMessageDialog");
77 err1 = new com.sun.star.sdbc.SQLException("err1");
78 err2 = new com.sun.star.sdbc.SQLException("err2");
80 oObj = (XInterface) oInterface;
82 // create XWindow for Object relations...
83 com.sun.star.awt.XToolkit xToolkit = UnoRuntime.queryInterface(
84 com.sun.star.awt.XToolkit.class,
85 Param.getMSF().createInstance("com.sun.star.awt.Toolkit"));
87 // Describe the properties of the container window.
88 com.sun.star.awt.WindowDescriptor aDescriptor = new com.sun.star.awt.WindowDescriptor();
90 aDescriptor.Type = com.sun.star.awt.WindowClass.TOP;
91 aDescriptor.WindowServiceName = "window";
92 aDescriptor.ParentIndex = -1;
93 aDescriptor.Parent = null;
94 aDescriptor.Bounds = new com.sun.star.awt.Rectangle(0, 0, 0, 0);
96 aDescriptor.WindowAttributes = com.sun.star.awt.WindowAttribute.BORDER
97 | com.sun.star.awt.WindowAttribute.MOVEABLE
98 | com.sun.star.awt.WindowAttribute.SIZEABLE
99 | com.sun.star.awt.WindowAttribute.CLOSEABLE;
101 com.sun.star.awt.XWindowPeer xPeer = xToolkit.createWindow(aDescriptor);
103 com.sun.star.awt.XWindow xWindow = UnoRuntime.queryInterface(
104 com.sun.star.awt.XWindow.class, xPeer);
106 log.println(" creating a new environment for object");
107 TestEnvironment tEnv = new TestEnvironment(oObj);
109 log.println("add ObjectRelations err1 and err2 for 'ErrorMessageDialog'");
110 tEnv.addObjRelation("ERR1", err1);
111 tEnv.addObjRelation("ERR2", err2);
112 tEnv.addObjRelation("ERR_XWindow", xWindow);
114 return tEnv;
115 } // finish method getTestEnvironment
117 @Override public void disposeTestEnvironment(
118 TestEnvironment tEnv, TestParameters tParam)
120 UnoRuntime.queryInterface(
121 com.sun.star.lang.XComponent.class,
122 (com.sun.star.awt.XWindow) tEnv.getObjRelation("ERR_XWindow"))
123 .dispose();
124 super.disposeTestEnvironment(tEnv, tParam);
126 } // finish class OSQLMessageDialog