1*ef39d40dSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*ef39d40dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*ef39d40dSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*ef39d40dSAndrew Rist * distributed with this work for additional information 6*ef39d40dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*ef39d40dSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*ef39d40dSAndrew Rist * "License"); you may not use this file except in compliance 9*ef39d40dSAndrew Rist * with the License. You may obtain a copy of the License at 10*ef39d40dSAndrew Rist * 11*ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*ef39d40dSAndrew Rist * 13*ef39d40dSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*ef39d40dSAndrew Rist * software distributed under the License is distributed on an 15*ef39d40dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*ef39d40dSAndrew Rist * KIND, either express or implied. See the License for the 17*ef39d40dSAndrew Rist * specific language governing permissions and limitations 18*ef39d40dSAndrew Rist * under the License. 19*ef39d40dSAndrew Rist * 20*ef39d40dSAndrew Rist *************************************************************/ 21*ef39d40dSAndrew Rist 22*ef39d40dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package ifc.sdbc; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import lib.MultiMethodTest; 27cdf0e10cSrcweir 28cdf0e10cSrcweir import com.sun.star.sdbc.XConnection; 29cdf0e10cSrcweir import com.sun.star.sdbc.XDataSource; 30cdf0e10cSrcweir 31cdf0e10cSrcweir /** 32cdf0e10cSrcweir * Testing <code>com.sun.star.sdbc.XDataSource</code> 33cdf0e10cSrcweir * interface methods : 34cdf0e10cSrcweir * <ul> 35cdf0e10cSrcweir * <li><code>getConnection()</code></li> 36cdf0e10cSrcweir * <li><code>setLoginTimeout()</code></li> 37cdf0e10cSrcweir * <li><code>getLoginTimeout()</code></li> 38cdf0e10cSrcweir * </ul> <p> 39cdf0e10cSrcweir * @see com.sun.star.sdbc.XDataSource 40cdf0e10cSrcweir */ 41cdf0e10cSrcweir public class _XDataSource extends MultiMethodTest { 42cdf0e10cSrcweir // oObj filled by MultiMethodTest 43cdf0e10cSrcweir public XDataSource oObj = null; 44cdf0e10cSrcweir 45cdf0e10cSrcweir /** 46cdf0e10cSrcweir * Calls the method and checks returned value. 47cdf0e10cSrcweir * Has OK status if exception wasn't thrown and 48cdf0e10cSrcweir * if returned value isn't null. 49cdf0e10cSrcweir */ _getConnection()50cdf0e10cSrcweir public void _getConnection() { 51cdf0e10cSrcweir boolean res = true; 52cdf0e10cSrcweir 53cdf0e10cSrcweir try { 54cdf0e10cSrcweir XConnection connection = oObj.getConnection("", ""); 55cdf0e10cSrcweir res = connection != null; 56cdf0e10cSrcweir } catch(com.sun.star.sdbc.SQLException e) { 57cdf0e10cSrcweir log.println("Unexpected exception:"); 58cdf0e10cSrcweir e.printStackTrace(log); 59cdf0e10cSrcweir res = false; 60cdf0e10cSrcweir } 61cdf0e10cSrcweir 62cdf0e10cSrcweir tRes.tested("getConnection()", res); 63cdf0e10cSrcweir } 64cdf0e10cSrcweir 65cdf0e10cSrcweir /** 66cdf0e10cSrcweir * Sets new timeout, compares with timeout returned by the method 67cdf0e10cSrcweir * <code>getLoginTimeout()</code>. 68cdf0e10cSrcweir * Has OK status if exception wasn't thrown and if timeout values are equal. 69cdf0e10cSrcweir */ _setLoginTimeout()70cdf0e10cSrcweir public void _setLoginTimeout() { 71cdf0e10cSrcweir requiredMethod("getLoginTimeout()"); 72cdf0e10cSrcweir boolean res = true; 73cdf0e10cSrcweir 74cdf0e10cSrcweir try { 75cdf0e10cSrcweir final int TO = 111; 76cdf0e10cSrcweir log.println("setLoginTimeout(" + TO + ")"); 77cdf0e10cSrcweir oObj.setLoginTimeout(TO); 78cdf0e10cSrcweir int timeout = oObj.getLoginTimeout(); 79cdf0e10cSrcweir res = timeout == TO; 80cdf0e10cSrcweir log.println("getLoginTimeout(): " + timeout); 81cdf0e10cSrcweir } catch(com.sun.star.sdbc.SQLException e) { 82cdf0e10cSrcweir log.println("Unexpected exception:"); 83cdf0e10cSrcweir e.printStackTrace(log); 84cdf0e10cSrcweir res = false; 85cdf0e10cSrcweir } 86cdf0e10cSrcweir 87cdf0e10cSrcweir tRes.tested("setLoginTimeout()", res); 88cdf0e10cSrcweir } 89cdf0e10cSrcweir 90cdf0e10cSrcweir /** 91cdf0e10cSrcweir * Calls the method and checks returned value. 92cdf0e10cSrcweir * Has OK status if exception wasn't thrown and 93cdf0e10cSrcweir * if returned value is equal to zero. 94cdf0e10cSrcweir */ _getLoginTimeout()95cdf0e10cSrcweir public void _getLoginTimeout() { 96cdf0e10cSrcweir boolean res = true; 97cdf0e10cSrcweir 98cdf0e10cSrcweir try { 99cdf0e10cSrcweir int timeout = oObj.getLoginTimeout(); 100cdf0e10cSrcweir log.println("getLoginTimeout(): " + timeout); 101cdf0e10cSrcweir res = timeout == 0; 102cdf0e10cSrcweir } catch(com.sun.star.sdbc.SQLException e) { 103cdf0e10cSrcweir log.println("Unexpected exception:"); 104cdf0e10cSrcweir e.printStackTrace(log); 105cdf0e10cSrcweir res = false; 106cdf0e10cSrcweir } 107cdf0e10cSrcweir 108cdf0e10cSrcweir tRes.tested("getLoginTimeout()", res); 109cdf0e10cSrcweir } 110cdf0e10cSrcweir }