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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.tools.SysinfoCPCheckTest
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.tools;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.util.Locale;
import junit.framework.Test;
import org.apache.derby.iapi.services.info.JVMInfo;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.Derby;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.LocaleTestSetup;
public class SysinfoCPCheckTest extends BaseJDBCTestCase {
public SysinfoCPCheckTest(String name) {
super(name);
}
private static boolean isClient = true;
private static boolean isServer = true;
public static Test suite() {
if (!Derby.hasTools())
return new BaseTestSuite("empty: no tools support");
// check to see if we have derbynet.jar or derbyclient.jar
// before starting the security manager...
if (!Derby.hasServer())
isServer=false;
if (!Derby.hasClient())
isClient=false;
Test suite = new BaseTestSuite(
SysinfoCPCheckTest.class, "Sysinfo ClassPath Checker");
return new LocaleTestSetup(suite, Locale.ENGLISH);
}
/**
* Test sysinfo.testClassPathChecker()
*
* Tests sysinfo classpathtester
* This test compares expected output strings; expected language is en_US
*
*/
/**
* Test Classpath Checker output for 3 supported variations
*/
public void testClassPathChecker() throws IOException {
String Success = "Success: All Derby related classes found in class path.";
// for testing the -cp with valid class
String thisclass = "org.apache.derbyTesting.functionTests.tests.tools." +
"SysinfoCPCheckTest.class";
// initialize the array of arguments and expected return strings
// The purpose of the values in the inner level is:
// {0: argument to be passed with -cp,
// 1: line number in the output to compare with,
// 2: string to compare the above line with
// 3: optional string to search for in addition to the above line
// 4: a string/number to unravel the output
final String[][] tstargs = {
// empty string; should check all; what to check? Just check top
// to ensure it recognizes it needs to check all.
{null, "0", "Testing for presence of all Derby-related " +
"libraries; typically, only some are needed.", null},
// incorrect syntax, or 'args' - should return usage
{
"a",
"0",
"Usage: java org.apache.derby.tools.sysinfo -cp ["
+ " [ embedded ][ server ][ client] [ tools ]"
+ " [ anyClass.class ] ]", null },
{"embedded", "6", Success, "derby.jar"},
{"server", "10", Success, "derbynet.jar"},
{"tools", "6", Success, "derbytools.jar"},
{"client", "6", Success, "derbyclient.jar"},
{thisclass, "6", Success, "SysinfoCPCheckTest"},
// neg tst, hope this doesn't exist
{"nonexist.class", "6", " (nonexist not found.)", null}
};
PrintStream out = System.out;
int tst=0;
for (tst=0; tst<tstargs.length ; tst++)
{
ByteArrayOutputStream rawBytes = getOutputStream();
// First obtain the output for the sysinfo command
PrintStream testOut = new PrintStream(rawBytes,
false);
setSystemOut(testOut);
if (!checkClientOrServer(tstargs[tst][0]))
continue;
// First command has only 1 arg, prevent NPE with if/else block
if (tstargs[tst][0] == null)
org.apache.derby.tools.sysinfo.main(new String[] {"-cp"} );
else
org.apache.derby.tools.sysinfo.main(
new String[] {"-cp", tstargs[tst][0]} );
setSystemOut(out);
rawBytes.flush();
rawBytes.close();
byte[] testRawBytes = rawBytes.toByteArray();
//System.out.println("cp command: -cp " + tstargs[tst][0]);
String s = null;
try {
BufferedReader sysinfoOutput = new BufferedReader(
new InputStreamReader(
new ByteArrayInputStream(testRawBytes)));
// evaluate the output
// compare the sentence picked
// first one is a bit different - is classpath dependent, so
// we're not going to look through all lines.
if (tstargs[tst][0]==null)
{
s=sysinfoOutput.readLine();
assertEquals(tstargs[tst][2], s);
while (s != null)
{
s=sysinfoOutput.readLine();
}
continue;
}
if (!checkClientOrServer(tstargs[tst][0]))
continue;
// get the appropriate line for the full line comparison
int linenumber = Integer.parseInt(tstargs[tst][1]);
boolean found = false;
for (int i=0; i<linenumber; i++)
{
s = sysinfoOutput.readLine();
if (tstargs[tst][3] != null)
{
// do the search for the optional string comparison
if (s.indexOf(tstargs[tst][3])>0)
found = true;
}
}
if (tstargs[tst][3] != null && !found)
fail ("did not find the string searched for: " +
tstargs[tst][3] + " for command -cp: " + tstargs[tst][0]);
// read the line to be compared
s = sysinfoOutput.readLine();
if (s == null)
fail("encountered unexpected null strings");
else
{
assertEquals(tstargs[tst][2], s);
}
// read one more line - should be the next command's sequence number
s = sysinfoOutput.readLine();
sysinfoOutput.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
public boolean checkClientOrServer(String kind)
{
if (kind == null)
return true;
// if there is no derbynet.jar, the syntax should still
// work, but the comparisons will fail. So never mind.
// JSR169 / J2ME does not support client or server
if ((kind.equals("server") || kind.equals("client"))
&& JDBC.vmSupportsJSR169())
return false;
if (kind.equals("server"))
return isServer;
// same for derbyclient.jar
if (kind.equals("client"))
return isClient;
return true;
}
ByteArrayOutputStream getOutputStream() {
return new ByteArrayOutputStream(20 * 1024);
}
public void testjavaVersion(){
assertEquals(JVMInfo.J2SE_18, JVMInfo.JDK_ID);
}
// Still testing this here although we don't actually put
// out this line with sysinfo anymore.
public void testderbyVMLevel() {
switch (JVMInfo.JDK_ID) {
case JVMInfo.J2SE_18:
assertEquals("Java SE 8 - JDBC 4.2", JVMInfo.derbyVMLevel());
break;
default:
assertEquals("?-?", JVMInfo.derbyVMLevel());
break;
}
}
public void testisSunJVM(){
if(JVMInfo.isSunJVM()==true){
assertEquals(true,JVMInfo.isSunJVM());
}
else{
assertEquals(false,JVMInfo.isSunJVM());
}
}
public void testisIBMJVM(){
if(JVMInfo.isIBMJVM()==true){
assertEquals(true,JVMInfo.isIBMJVM());
}
else{
assertEquals(false,JVMInfo.isIBMJVM());
}
}
public void testhasJNDI(){
if(JVMInfo.hasJNDI()==true){
assertEquals(true,JVMInfo.hasJNDI());
}
else{
assertEquals(false,JVMInfo.hasJNDI());
}
}
}
|