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
.calc
;
21 import java
.io
.PrintWriter
;
24 import lib
.StatusException
;
26 import lib
.TestEnvironment
;
27 import lib
.TestParameters
;
29 import com
.sun
.star
.beans
.PropertyValue
;
30 import com
.sun
.star
.lang
.XMultiServiceFactory
;
31 import com
.sun
.star
.uno
.XInterface
;
35 * Here <code>com.sun.star.sdbc.Driver</code> service is tested.<p>
36 * Test allows to run object tests in several threads concurently.
37 * @see com.sun.star.sdbc.Driver
38 * @see com.sun.star.sdbc.XDriver
39 * @see com.sun.star.sdbcx.XCreateCatalog
40 * @see com.sun.star.sdbcx.XDropCatalog
41 * @see ifc.sdbc._XDriver
42 * @see ifc.sdbcx._XCreateCatalog
43 * @see ifc.sdbcx._XDropCatalog
45 public class ODriver
extends TestCase
{
47 * Creating a Testenvironment for the interfaces to be tested.
48 * Creates an instance of the service
49 * <code>com.sun.star.sdbc.Driver</code>. <p>
50 * Object relations created :
52 * <li> <code>'XDriver.URL'</code> for {@link ifc.sdbc._XDriver}:
53 * is the URL of the Spreadsheet document to which to connect.
54 * The URL is obtained from the parameter <code>calc.url</code></li>
55 * <li> <code>'XDriver.UNSUITABLE_URL'</code> for
56 * {@link ifc.sdbc._XDriver}:
57 * the wrong kind of URL to connect using given driver.
58 * The URL is obtained from the parameter <code>jdbc.url</code></li>
59 * <li> <code>'XDriver.INFO'</code> for {@link ifc.sdbc._XDriver}:
60 * a list of arbitrary string tag/value pairs as connection arguments
64 public synchronized TestEnvironment
createTestEnvironment(
65 TestParameters Param
, PrintWriter log
) throws StatusException
{
67 XInterface oObj
= null;
71 (XMultiServiceFactory
)Param
.getMSF()).createInstance(
72 "com.sun.star.comp.sdbc.calc.ODriver");
73 } catch (com
.sun
.star
.uno
.Exception e
) {
74 e
.printStackTrace(log
);
75 throw new StatusException(Status
.failed("Couldn't create object"));
78 log
.println("creating a new environment for calc.ODriver object");
79 TestEnvironment tEnv
= new TestEnvironment(oObj
);
81 //adding relation for sdbc.XDriver
82 String calcURL
= (String
) Param
.get("calc.url");
83 if (calcURL
== null) {
84 throw new StatusException(Status
.failed(
85 "Couldn't get 'calc.url' from ini-file"));
87 tEnv
.addObjRelation("XDriver.URL", "sdbc:calc:" + calcURL
);
89 PropertyValue
[] info
= new PropertyValue
[0];
90 tEnv
.addObjRelation("XDriver.INFO", info
);
92 String jdbcUrl
= (String
) Param
.get("jdbc.url");
93 if (jdbcUrl
== null) {
94 throw new StatusException(Status
.failed(
95 "Couldn't get 'jdbc.url' from ini-file"));
97 tEnv
.addObjRelation("XDriver.UNSUITABLE_URL", "jdbc:" + jdbcUrl
);
99 tEnv
.addObjRelation("NoBadURL", "TRUE");