Set that a non-modal Popover don't auto-grab focus on popup
[LibreOffice.git] / qadevOOo / tests / java / mod / _file / dbase / ODriver.java
blob659b6e9a4046322c812e0aabd3c45a534eac4f83
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._file.dbase;
21 import java.io.PrintWriter;
23 import lib.Status;
24 import lib.StatusException;
25 import lib.TestCase;
26 import lib.TestEnvironment;
27 import lib.TestParameters;
29 import com.sun.star.beans.PropertyValue;
30 import com.sun.star.uno.XInterface;
32 /**
33 * Here <code>com.sun.star.sdbc.Driver</code> service is tested.<p>
34 * Test allows to run object tests in several threads concurrently.
35 * @see com.sun.star.sdbc.Driver
36 * @see com.sun.star.sdbc.XDriver
37 * @see com.sun.star.sdbcx.XCreateCatalog
38 * @see com.sun.star.sdbcx.XDropCatalog
39 * @see ifc.sdbc._XDriver
40 * @see ifc.sdbcx._XCreateCatalog
41 * @see ifc.sdbcx._XDropCatalog
43 public class ODriver extends TestCase {
45 /**
46 * Creating a TestEnvironment for the interfaces to be tested.
47 * Creates an instance of the service
48 * <code>com.sun.star.sdbc.Driver</code>. <p>
49 * Object relations created :
50 * <ul>
51 * <li> <code>'XDriver.URL'</code> for {@link ifc.sdbc._XDriver}:
52 * is the URL of the database to which to connect.
53 * The URL is obtained from the parameter <code>dbase.url</code></li>
54 * <li> <code>'XDriver.UNSUITABLE_URL'</code> for
55 * {@link ifc.sdbc._XDriver}:
56 * the wrong kind of URL to connect using given driver.
57 * The URL is obtained from the parameter <code>jdbc.url</code></li>
58 * <li> <code>'XDriver.INFO'</code> for {@link ifc.sdbc._XDriver}:
59 * a list of arbitrary string tag/value pairs as connection arguments
60 * </li>
61 * </ul>
63 @Override
64 protected TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) throws Exception {
66 XInterface oObj = (XInterface)Param.getMSF().createInstance(
67 "com.sun.star.comp.sdbc.dbase.ODriver");
69 log.println("creating a new environment for dbase.ODriver object");
70 TestEnvironment tEnv = new TestEnvironment(oObj);
72 //adding relation for sdbc.XDriver
73 String dBaseURL = (String) Param.get("dbase.url");
74 if (dBaseURL == null) {
75 throw new StatusException(Status.failed(
76 "Couldn't get 'dbase.url' from ini-file"));
78 tEnv.addObjRelation("XDriver.URL", "sdbc:dbase:" + dBaseURL);
80 PropertyValue[] info = new PropertyValue[0];
81 tEnv.addObjRelation("XDriver.INFO", info);
83 String jdbcUrl = (String) Param.get("jdbc.url");
84 if (jdbcUrl == null) {
85 throw new StatusException(Status.failed(
86 "Couldn't get 'jdbc.url' from ini-file"));
88 tEnv.addObjRelation("XDriver.UNSUITABLE_URL", "jdbc:" + jdbcUrl);
90 return tEnv;