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
|
/*
*
* Derby - Class org.apache.derbyTesting.functionTests.tests.store.LiveLockTest
*
* 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.store;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.LinkedList;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Test to test two threads doing staggered select then update of a row
* Staggered selects should not starve the update.
*
*/
public class LiveLockTest extends BaseJDBCTestCase {
private LinkedList<Exception> listExceptions = new LinkedList<Exception>();
private Object syncObject = new Object();
private boolean updateDone = false;
public LiveLockTest(String name) {
super(name);
}
/**
* Start three threads. Two doing staggered selects and a third trying
* to do an update. The update should not be starved by the staggered
* selects.
*/
public void testLiveLock() throws Exception {
Thread[] t = createThreads();
waitForThreads(t);
checkExceptions();
}
/**
* There should be no exceptions. The update should have gotten through
*
* @throws Exception
* if any occurred
*/
private void checkExceptions() throws Exception {
for (Exception e : listExceptions) {
throw e;
}
}
private void waitForThreads(Thread[] t) {
for (int i = 0; i < t.length; i++) {
try {
t[i].join();
} catch (InterruptedException e) {
fail("FAIL - InterruptedException thrown waiting for the threads");
}
}
}
private Thread[] createThreads() {
Thread[] t = new Thread[3];
// First select thread will start right away. Doing iterative
// selects
t[0] = new Thread(new Runnable() {
public void run() {
selectWorker(0);
}
}, "SelectThread1");
// Second select will wait 1 second before it starts. so
// selects will alternately be aquiring share locks.
t[1] = new Thread(new Runnable() {
public void run() {
selectWorker(1000);
}
}, "SelectThread2");
// Update thread waits 2 seconds to start to make sure both
// selects have locks. It should not be starved.
t[2] = new Thread(new Runnable() {
public void run() {
updateWorker();
}
}, "UpdateThread");
t[0].start();
t[1].start();
t[2].start();
return t;
}
private void selectWorker(int delay) {
Connection threadConnection = null;
try {
if (delay > 0)
Thread.sleep(delay);
threadConnection = openDefaultConnection();
Statement stmt = threadConnection.createStatement();
threadConnection.setAutoCommit(false);
/* set isolation level to repeatable read */
threadConnection
.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ);
// While our update is still not done, keep on doing the
// staggered select.
// Let's stop after 10 selects just in case the test fails
// and the update doesn't get through. We would have gotten
// a lock timeout by then, so we will get a test failure.
// We don't want it to run forever if live lock ever breaks.
int tries = 0;
while (!isUpdateDone()) {
ResultSet rs = stmt.executeQuery("select * from t");
while (rs.next())
;
Thread.sleep(4000);
threadConnection.commit();
tries++;
if (tries == 10)
fail("Update did not occur after 10 selects");
}
} catch (Exception e) {
synchronized (syncObject) {
listExceptions.add(e);
}
}
}
private void updateWorker() {
Connection threadConnection = null;
try {
Thread.sleep(2000);
threadConnection = openDefaultConnection();
Statement stmt = threadConnection.createStatement();
stmt.executeUpdate("UPDATE T SET I = 456 where I = 456");
synchronized (syncObject) {
setUpdateDone(true);
threadConnection.commit();
}
} catch (Exception e) {
synchronized (syncObject) {
listExceptions.add(e);
}
}
}
public static Test suite() {
Test suite = TestConfiguration
.embeddedSuite(LiveLockTest.class);
return new CleanDatabaseTestSetup(DatabasePropertyTestSetup
.setLockTimeouts(suite, 1, 10)) {
/**
* Creates the table used in the test cases.
*
*/
protected void decorateSQL(Statement s) throws SQLException {
s.executeUpdate("CREATE TABLE T (I INT)");
s.executeUpdate("INSERT INTO T VALUES(456)");
}
};
}
public boolean isUpdateDone() {
synchronized (syncObject) {
return updateDone;
}
}
public void setUpdateDone(boolean updateDone) {
synchronized (syncObject) {
this.updateDone = updateDone;
}
}
}
|