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
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.replicationTests.ShutdownMaster
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.replicationTests;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
public class ShutdownMaster extends BaseJDBCTestCase
{
private static ReplicationRun repRun = new ReplicationRun("ShutdownMaster");
public ShutdownMaster(String testcaseName)
{
super(testcaseName);
}
/* */
static String jvmVersion = null;
static String derbyVersion = null;
static String masterServerHost = null;
static int masterServerPort = -1;
static String masterDatabasePath = null;
static String slaveServerHost = null;
static int slaveServerPort = -1;
static String slaveDatabasePath = null;
/* */
static void setEnv()
throws Exception
{
repRun.initEnvironment();
masterServerHost = ReplicationRun.masterServerHost;
masterServerPort = ReplicationRun.masterServerPort;
slaveServerHost = ReplicationRun.slaveServerHost;
slaveServerPort = ReplicationRun.slaveServerPort;
jvmVersion = ReplicationRun.masterJvmVersion;
derbyVersion = ReplicationRun.derbyMasterVersion;
masterDatabasePath = ReplicationRun.masterDatabasePath;
slaveDatabasePath = ReplicationRun.slaveDatabasePath;
}
/**
* Test shut down master server during replication.
*
* @throws SQLException, IOException, InterruptedException
*/
void shutdown(String url, boolean dbOnly, boolean killServer) // FIXME?! Factor out this as common with ShutdownSlave!
throws SQLException, IOException, InterruptedException
{
System.out.println("**** ShutdownMaster.shutdown() "
+ getTestConfiguration().getJDBCClient().getJDBCDriverName()
+ " url: " + url + " dbOnly: " + dbOnly + " killServer: " + killServer);
Connection conn = getConnection();
Statement s = conn.createStatement();
s.executeUpdate("create table t (i integer primary key, vc varchar(20))");
PreparedStatement pSt = prepareStatement("insert into t values (?,?)");
boolean expectNoConnection = false;
for (int i=0;i<1000;i++)
{
try
{
pSt.setInt(1, i);
pSt.setString(2, "i"+i);
pSt.execute();
}
catch (SQLException se)
{
int errCode = se.getErrorCode();
String msg = se.getMessage();
String state = se.getSQLState();
System.out.println("execute Got SQLException: " + errCode + " " + state + " " + msg);
if ( expectNoConnection
&& (errCode == 40000 && state.equalsIgnoreCase("08006")) /* FIXME! -1/40000 08006*/ )
{
System.out.println("As expected - connection terminated. Quit.");
return; // FIXME! Final code will refuse shutdown in this state!
}
else
{
throw se;
}
}
System.out.println("i: "+i);
if ( i == 500 )
{
if ( killServer )
{
repRun.killMaster(masterServerHost, masterServerPort);
expectNoConnection = true;
}
else if ( url == null )
{
System.out.println("**** stopServer: " + masterServerHost + ":" + masterServerPort);
repRun.stopServer(jvmVersion, derbyVersion, // Shut down server
masterServerHost, masterServerPort);
expectNoConnection = true;
// FIXME! Final code will refuse shutdown in this state!
}
else
{
/* Alternative: NB! url can be with or without database path! */
System.out.println("**** DriverManager.getConnection(\"" + url+";shutdown=true\");");
try
{
DriverManager.getConnection(url+";shutdown=true");
// Expecting: SQLCODE: -1, SQLSTATE: XJ015 | 08006, SQLERRMC: Derby system shutdown.
// FIXME! Final code will refuse shutdown in this state!
}
catch(SQLException se)
{
int errCode = se.getErrorCode();
String msg = se.getMessage();
String state = se.getSQLState();
String expectedState = (dbOnly)? "08006": "XJ015";
int expectedCode = dbOnly ? 45000 : 50000;
System.out.println("shutdown Got SQLException: " + errCode + " " + state + " " + msg);
if ( (errCode == expectedCode)
&& (state.equalsIgnoreCase(expectedState) ) )
{
System.out.println("As expected.");
expectNoConnection = true;
// return; // FIXME! Final code will refuse shutdown in this state!
}
else
{
throw se;
}
}
}
}
}
// With PoC V2d:
this.assertTrue("Should never reach this point in the ShutdownMaster test with PoC V2d!", false);
// Final code: shutdown of master database or server should not be allowed after
// starmaster.
ResultSet rs = s.executeQuery("select count(*) from t");
rs.next();
int count = rs.getInt(1);
System.out.println("count: "+count);
// s.executeUpdate("drop table t");
}
}
|