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
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.GetPropertyInfoTest
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
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.lang;
import java.sql.Connection;
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.DriverPropertyInfo;
import java.sql.SQLException;
import java.util.Properties;
public class GetPropertyInfoTest
{
static String protocol = "jdbc:derby:";
static String url = "EncryptedDB;create=true;dataEncryption=true";
static String driver = "org.apache.derby.jdbc.EmbeddedDriver";
public static void main(String[] args) throws SQLException,
InterruptedException, Exception
{
boolean passed = true;
// adjust URL to compensate for other encryption providers
String provider = System.getProperty("testEncryptionProvider");
if (provider != null)
{
url = "EncryptedDB;create=true;dataEncryption=true;encryptionProvider=" + provider;
}
System.out.println("Test GetPropertyInfoTest starting");
try
{
Properties info = new Properties();
Class<?> clazz = Class.forName(driver);
clazz.getConstructor().newInstance();
Driver cDriver = DriverManager.getDriver(protocol);
boolean canConnect = false;
// Test getPropertyInfo by passing attributes in the
// url.
for(int i = 0; i < 2; i++)
{
// In order to check for inadequate properties, we omit the
// bootPassword and call getPropertyInfo. (bootPassword is
// required because dataEncryption is true)
DriverPropertyInfo[] attributes = cDriver.getPropertyInfo(protocol+url,info);
// zero length means a connection attempt can be made
if (attributes.length == 0)
{
canConnect = true;
break;
}
for (int j = 0; j < attributes.length; j++)
{
System.out.print(attributes[j].name + " - value: " + attributes[j].value);
// Also check on the other PropertyInfo fields
String[] choices = attributes[j].choices;
System.out.print(" - description: "
+ attributes[j].description +
" - required " + attributes[j].required);
if (choices != null)
{
for (int k = 0; k < choices.length; k++)
{
System.out.print(" - choices [" + k + "] : " + choices[k]);
}
System.out.print("\n");
}
else
System.out.print(" - choices null \n");
}
// Now set bootPassword and call getPropertyInfo again.
// This time attribute length should be zero, sice we pass all
// minimum required properties.
url = url + ";bootPassword=db2everyplace";
}
if(canConnect == false)
{
System.out.println("More attributes are required to connect to the database");
passed = false;
}
else
{
Connection conn = DriverManager.getConnection(protocol + url, info);
conn.close();
}
canConnect = false;
// Test getPropertyInfo by passing attributes in the
// Properties array.
info.put("create", "true");
info.put("dataEncryption", "true");
info.put("bootPassword", "db2everyplace");
// Use alternate encryption provider if necessary.
if (provider != null)
{
info.put("encryptionProvider", provider);
}
for(int i = 0; i < 2; i++)
{
// In order to check for inadequate properties, we omit the
// database name and call getPropertyInfo.
DriverPropertyInfo[] attributes = cDriver.getPropertyInfo(protocol,info);
// zero length means a connection attempt can be made
if (attributes.length == 0)
{
canConnect = true;
break;
}
for (int j = 0; j < attributes.length; j++)
{
System.out.print(attributes[j].name + " - value: " + attributes[j].value);
// Also check on the other PropertyInfo fields
String[] choices = attributes[j].choices;
System.out.print(" - description: "
+ attributes[j].description +
" - required " + attributes[j].required);
if (choices != null)
{
for (int k = 0; k < choices.length; k++)
{
System.out.print(" - choices [" + k + "] : " + choices[k]);
}
System.out.print("\n");
}
else
System.out.print(" - choices null \n");
}
// Now set database name and call getPropertyInfo again.
// This time attribute length should be zero, sice we pass all
// minimum required properties.
info.put("databaseName", "EncryptedDB1");
}
if(canConnect == false)
{
System.out.println("More attributes are required to connect to the database");
passed = false;
}
else
{
Connection conn1 = DriverManager.getConnection(protocol, info);
conn1.close();
}
}
catch(SQLException sqle)
{
passed = false;
do {
System.out.println(sqle.getSQLState() + ":" + sqle.getMessage());
sqle = sqle.getNextException();
} while (sqle != null);
}
catch (Throwable e)
{
System.out.println("FAIL -- unexpected exception caught in main():\n");
System.out.println(e.getMessage());
e.printStackTrace();
passed = false;
}
if(passed)
System.out.println("Test GetPropertyInfoTest finished");
else
System.out.println("Test GetPropertyInfoTest failed");
}
}
|