summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_dbaccess/OSingleSelectQueryComposer.java
blob: 105fcbd18f516ead8f0a2360b874187897cf2dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

package mod._dbaccess;

import java.io.PrintWriter;

import lib.TestCase;
import lib.TestEnvironment;
import lib.TestParameters;
import util.DBTools;
import util.utils;

import com.sun.star.beans.XPropertySet;
import com.sun.star.container.XNameAccess;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.sdb.CommandType;
import com.sun.star.sdb.XSingleSelectQueryAnalyzer;
import com.sun.star.sdb.XSingleSelectQueryComposer;
import com.sun.star.sdbc.XConnection;
import com.sun.star.sdbc.XDataSource;
import com.sun.star.sdbc.XResultSet;
import com.sun.star.sdbcx.XColumnsSupplier;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;

/**
 * Test for object which is represented by service
 * <code>com.sun.star.sdb.DataSource</code>.
 * <p>
 *
 * Object implements the following interfaces :
 * <ul>
 * <li> <code>com::sun::star::sdbc::RowSet</code></li>
 * <li> <code>com::sun::star::sdbcx::XRowLocate</code></li>
 * <li> <code>com::sun::star::sdbc::XResultSetUpdate</code></li>
 * <li> <code>com::sun::star::util::XCancellable</code></li>
 * <li> <code>com::sun::star::sdbc::XParameters</code></li>
 * <li> <code>com::sun::star::sdbc::XResultSetMetaDataSupplier</code></li>
 * <li> <code>com::sun::star::sdbcx::XDeleteRows</code></li>
 * <li> <code>com::sun::star::sdbc::XCloseable</code></li>
 * <li> <code>com::sun::star::sdbcx::XColumnsSupplier</code></li>
 * <li> <code>com::sun::star::sdb::XResultSetAccess</code></li>
 * <li> <code>com::sun::star::sdbc::XResultSet</code></li>
 * <li> <code>com::sun::star::sdbc::XColumnLocate</code></li>
 * <li> <code>com::sun::star::sdbc::XRowSet</code></li>
 * <li> <code>com::sun::star::sdb::RowSet</code></li>
 * <li> <code>com::sun::star::sdbc::XRowUpdate</code></li>
 * <li> <code>com::sun::star::sdb::XRowSetApproveBroadcaster</code></li>
 * <li> <code>com::sun::star::beans::XPropertySet</code></li>
 * <li> <code>com::sun::star::sdbc::XRow</code></li>
 * <li> <code>com::sun::star::sdbc::XWarningsSupplier</code></li>
 * <li> <code>com::sun::star::lang::XComponent</code></li>
 * <li> <code>com::sun::star::sdbcx::ResultSet</code></li>
 * <li> <code>com::sun::star::sdbc::ResultSet</code></li>
 * </ul>
 * <p>
 * The following files used by this test :
 * <ul>
 * <li><b> TestDB/TestDB.dbf </b> : the database file with some predefined
 * fields described in <code>util.DBTools</code>. The copy of this file is
 * always made in temp directory for testing purposes.</li>
 * </ul>
 * <p>
 * The following parameters in ini-file used by this test:
 * <ul>
 * <li><code>test.db.url</code> - URL to MySQL database. For example:
 * <code>mysql://mercury:3306/api_current</code></li>
 * <li><code>test.db.user</code> - user for MySQL database</li>
 * <li><code>test.db.password</code> - password for MySQL database</li>
 * </ul>
 * <p>
 *
 * @see com.sun.star.sdbc.RowSet
 * @see com.sun.star.sdbcx.XRowLocate
 * @see com.sun.star.sdbc.XResultSetUpdate
 * @see com.sun.star.util.XCancellable
 * @see com.sun.star.sdbc.XParameters
 * @see com.sun.star.sdbc.XResultSetMetaDataSupplier
 * @see com.sun.star.sdbcx.XDeleteRows
 * @see com.sun.star.sdbc.XCloseable
 * @see com.sun.star.sdbcx.XColumnsSupplier
 * @see com.sun.star.sdb.XResultSetAccess
 * @see com.sun.star.sdbc.XResultSet
 * @see com.sun.star.sdbc.XColumnLocate
 * @see com.sun.star.sdbc.XRowSet
 * @see com.sun.star.sdb.RowSet
 * @see com.sun.star.sdbc.XRowUpdate
 * @see com.sun.star.sdb.XRowSetApproveBroadcaster
 * @see com.sun.star.beans.XPropertySet
 * @see com.sun.star.sdbc.XRow
 * @see com.sun.star.sdbc.XWarningsSupplier
 * @see com.sun.star.lang.XComponent
 * @see com.sun.star.sdbcx.ResultSet
 * @see com.sun.star.sdbc.ResultSet
 * @see ifc.sdbc._RowSet
 * @see ifc.sdbcx._XRowLocate
 * @see ifc.sdbc._XResultSetUpdate
 * @see ifc.util._XCancellable
 * @see ifc.sdbc._XParameters
 * @see ifc.sdbc._XResultSetMetaDataSupplier
 * @see ifc.sdbcx._XDeleteRows
 * @see ifc.sdbc._XCloseable
 * @see ifc.sdbcx._XColumnsSupplier
 * @see ifc.sdb._XResultSetAccess
 * @see ifc.sdbc._XResultSet
 * @see ifc.sdbc._XColumnLocate
 * @see ifc.sdbc._XRowSet
 * @see ifc.sdb._RowSet
 * @see ifc.sdbc._XRowUpdate
 * @see ifc.sdb._XRowSetApproveBroadcaster
 * @see ifc.beans._XPropertySet
 * @see ifc.sdbc._XRow
 * @see ifc.sdbc._XWarningsSupplier
 * @see ifc.lang._XComponent
 * @see ifc.sdbcx._ResultSet
 * @see ifc.sdbc._ResultSet
 */
public class OSingleSelectQueryComposer extends TestCase {

    String tableName = null;
    DBTools.DataSourceInfo srcInf = null;
    boolean isMySQLDB = false;
    protected final static String dbSourceName = "OSingleSelectQueryComposerDataSource";
    public XConnection conn = null;

    /**
    * Creating a TestEnvironment for the interfaces to be tested.
    *
    *     Object relations created :
    * <ul>SingleSelectQueryAnalyzer

    * <li> <code>'xComposer'</code> for
    *      {@link ifc.sdb._XSingleSelectQueryAnalyzer} interface
    * <li> <code>'xQueryAna'</code> for
    *      {@link ifc.sdb._XSingleSelectQueryComposer} interface
    * <li> <code>'xProp'</code> for
    *      {@link ifc.sdb._XSingleSelectQueryComposer} interface
    * <li> <code>'colName'</code> for
    *      {@link ifc.sdb._XSingleSelectQueryComposer} interface
    * <li> <code>'xResultSet'</code> for
    *      {@link ifc.sdb._XSingleSelectQueryComposer} interface
    * </ul>
    *
    */
    @Override
    protected TestEnvironment createTestEnvironment(TestParameters Param,
            PrintWriter log) throws Exception {

        XInterface oObj = null;
        Object oInterface = null;
        XMultiServiceFactory xMSF = null;
        xMSF = Param.getMSF();

        XNameAccess xNameAccess = UnoRuntime.queryInterface(XNameAccess.class,
                xMSF.createInstance("com.sun.star.sdb.DatabaseContext"));
        // we use the first datasource
        XDataSource xDS = UnoRuntime.queryInterface(XDataSource.class,
                xNameAccess.getByName("Bibliography"));

        log.println("check XMultiServiceFactory");
        XMultiServiceFactory xConn = UnoRuntime.queryInterface(
                XMultiServiceFactory.class, xDS.getConnection("", ""));

        log.println("check getAvailableServiceNames");
        String[] sServiceNames = xConn.getAvailableServiceNames();
        if (!sServiceNames[0]
                .equals("com.sun.star.sdb.SingleSelectQueryComposer")) {
            log.println("Service 'SingleSelectQueryComposer' not supported");
        }

        oInterface = xConn.createInstance(sServiceNames[0]);
        Object oRowSet = xMSF.createInstance("com.sun.star.sdb.RowSet");

        XPropertySet xSetProp = UnoRuntime.queryInterface(XPropertySet.class,
                oRowSet);

        xSetProp.setPropertyValue("DataSourceName", "Bibliography");
        xSetProp.setPropertyValue("Command", "biblio");
        xSetProp.setPropertyValue("CommandType",
                Integer.valueOf(CommandType.TABLE));

        com.sun.star.sdbc.XRowSet xORowSet = UnoRuntime.queryInterface(
                com.sun.star.sdbc.XRowSet.class, oRowSet);

        xORowSet.execute();

        XColumnsSupplier xColSup = UnoRuntime.queryInterface(
                XColumnsSupplier.class, oRowSet);

        XNameAccess xCols = xColSup.getColumns();

        XPropertySet xCol = (XPropertySet) AnyConverter.toObject(new Type(
                XPropertySet.class),
                xCols.getByName(xCols.getElementNames()[0]));

        XSingleSelectQueryAnalyzer xQueryAna = UnoRuntime.queryInterface(
                XSingleSelectQueryAnalyzer.class, oInterface);

        // XSingleSelectQueryComposer
        XSingleSelectQueryComposer xComposer = UnoRuntime.queryInterface(
                XSingleSelectQueryComposer.class, xQueryAna);
        xQueryAna.setQuery("SELECT * FROM \"biblio\"");

        oObj = (XInterface) oInterface;
        log.println("ImplementationName: " + utils.getImplName(oObj));

        log.println("    creating a new environment for object");
        TestEnvironment tEnv = new TestEnvironment(oObj);

        // for XSingleSelectQueryAnalyzer
        tEnv.addObjRelation("xComposer", xComposer);

        // for XSingleSelectQueryComposer
        tEnv.addObjRelation("xQueryAna", xQueryAna);

        tEnv.addObjRelation("xProp", xCol);
        tEnv.addObjRelation("colName", xCols.getElementNames()[0]);

        XResultSet xResultSet = UnoRuntime.queryInterface(XResultSet.class,
                oRowSet);
        tEnv.addObjRelation("xResultSet", xResultSet);

        return tEnv;

    } // finish method getTestEnvironment

    /**
     * Closes connection of <code>RowSet</code> instance created.
     */
    @Override
    protected void cleanup(TestParameters Param, PrintWriter log) {
    }
}