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
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.replicationTests.ShutdownSlave
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 ShutdownSlave extends BaseJDBCTestCase
{
private static ReplicationRun repRun = new ReplicationRun("ShutdownSlave");
public ShutdownSlave(String testcaseName)
{
super(testcaseName);
}
/* */
static String jvmVersion = null;
static String derbyVersion = null;
static String slaveServerHost = null;
static int slaveServerPort = -1;
static String slaveDatabasePath = null;
static String masterServerHost = null;
static int masterServerPort = -1;
static String masterDatabasePath = 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;
}
/*
public static Test suite()
throws Exception
{
System.out.println("**** ShutdownSlave.suite()");
System.out.println("'ShutdownSlave' can not be run outside the 'ReplicationRun' framework.");
setEnv();
BaseTestSuite suite = new BaseTestSuite("ShutdownSlave");
suite.addTest(ShutdownSlave.suite(masterServerHost, masterServerPort));
return (Test)suite;
}
*/
/**
* Adds this class to the *existing server* suite.
*/
/*
public static Test suite(String serverHost, int serverPort)
throws IOException
{
System.out.println("*** ShutdownSlave.suite("+serverHost+","+serverPort+")");
Test t = TestConfiguration.existingServerSuite(ShutdownSlave.class,false,serverHost,serverPort);
System.out.println("*** Done TestConfiguration.existingServerSuite(ShutdownSlave.class,false,"
+serverHost+":"+serverPort+")");
return t;
}
*/
/**
* Test shut down slave server during replication.
*
* @throws SQLException, IOException, InterruptedException
*/
/*
public void testShutdownSlave()
throws SQLException, IOException, InterruptedException
{
String slaveServerURL = "jdbc:derby:"
+"//"+slaveServerHost+":"+slaveServerPort+"/";
String slaveDbURL = slaveServerURL
+ReplicationRun.slaveDatabasePath
+"/"+ReplicationRun.slaveDbSubPath
+"/"+ReplicationRun.replicatedDb;
// shutdown(null, false, true); // -,-,true: Use OS kill on server!
// shutdown(null, false, false); // null,-,-: use networkservercontrol!
shutdown(slaveServerURL, false, false); // serverURL,false,-: shutdown server!
// shutdown(slaveDbURL, true, false); // dbURL,true,-: shutdown database!
}
*/
void shutdown(String url, boolean dbOnly, boolean killServer) // FIXME! Factor out this as common with ShutdownMaster!
throws SQLException, IOException, InterruptedException
{
System.out.println("**** ShutdownSlave.shutdown() "
+ getTestConfiguration().getJDBCClient().getJDBCDriverName()
+ " " + url + " dbOnly: " + dbOnly + " killServer: " + killServer);
Connection conn = getConnection(); // To master
Statement s = conn.createStatement();
s.executeUpdate("create table t (i integer primary key, vc varchar(20))");
PreparedStatement pSt = prepareStatement("insert into t values (?,?)");
for (int i=0;i<1000;i++)
{
pSt.setInt(1, i);
pSt.setString(2, "i"+i);
pSt.execute();
System.out.println("i: "+i);
if ( i == 500 )
{
// conn.commit(); // Force transferring replication data?
if ( killServer )
{
repRun.killMaster(slaveServerHost, slaveServerPort);
// expectNoConnection = true;
}
else if (url == null )
{
repRun.stopServer(jvmVersion, derbyVersion, // Shuts down the server
slaveServerHost, slaveServerPort);
}
else
{ // url specifies server or database shutdown.
System.out.println("**** DriverManager.getConnection(\"" + url+";shutdown=true\");");
try
{
DriverManager.getConnection(url+";shutdown=true"); // PoC hangs on dburl.
// SQLCODE: -1, SQLSTATE: XJ015
// Will not be allowed in final code: when privileges are implemented!
}
catch( SQLException se)
{
int errCode = se.getErrorCode();
String msg = se.getMessage();
String state = se.getSQLState();
String expectedState = (dbOnly)? "08004": "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.");
// Continue insert on master. return;
// shutdown db will be refused in this state!
}
else
{
throw se;
}
}
}
}
}
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");
}
}
|