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
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2008, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/test/jdbc3/Jdbc3SavepointTest.java,v 1.8 2008/01/08 06:56:31 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.test.jdbc3;
import java.sql.*;
import junit.framework.TestCase;
import org.postgresql.test.TestUtil;
public class Jdbc3SavepointTest extends TestCase {
private Connection _conn;
public Jdbc3SavepointTest(String name) {
super(name);
}
protected void setUp() throws Exception {
_conn = TestUtil.openDB();
TestUtil.createTable(_conn, "savepointtable", "id int primary key");
_conn.setAutoCommit(false);
}
protected void tearDown() throws SQLException {
_conn.setAutoCommit(true);
TestUtil.dropTable(_conn, "savepointtable");
TestUtil.closeDB(_conn);
}
private boolean hasSavepoints() throws SQLException {
return TestUtil.haveMinimumServerVersion(_conn, "8.0");
}
private void addRow(int id) throws SQLException {
PreparedStatement pstmt = _conn.prepareStatement("INSERT INTO savepointtable VALUES (?)");
pstmt.setInt(1, id);
pstmt.executeUpdate();
pstmt.close();
}
private int countRows() throws SQLException {
Statement stmt = _conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT COUNT(*) FROM savepointtable");
rs.next();
int count = rs.getInt(1);
rs.close();
return count;
}
public void testAutoCommitFails() throws SQLException {
if (!hasSavepoints())
return ;
_conn.setAutoCommit(true);
try
{
_conn.setSavepoint();
fail("Can't create a savepoint with autocommit.");
}
catch (SQLException sqle)
{
}
try
{
_conn.setSavepoint("spname");
fail("Can't create a savepoint with autocommit.");
}
catch (SQLException sqle)
{
}
}
public void testCantMixSavepointTypes() throws SQLException {
if (!hasSavepoints())
return ;
Savepoint namedSavepoint = _conn.setSavepoint("named");
Savepoint unNamedSavepoint = _conn.setSavepoint();
try
{
namedSavepoint.getSavepointId();
fail("Can't get id from named savepoint.");
}
catch (SQLException sqle)
{
}
try
{
unNamedSavepoint.getSavepointName();
fail("Can't get name from unnamed savepoint.");
}
catch (SQLException sqle)
{
}
}
public void testRollingBackToSavepoints() throws SQLException {
if (!hasSavepoints())
return ;
Savepoint empty = _conn.setSavepoint();
addRow(1);
Savepoint onerow = _conn.setSavepoint("onerow");
addRow(2);
assertEquals(2, countRows());
_conn.rollback(onerow);
assertEquals(1, countRows());
_conn.rollback(empty);
assertEquals(0, countRows());
}
public void testGlobalRollbackWorks() throws SQLException {
if (!hasSavepoints())
return ;
_conn.setSavepoint();
addRow(1);
_conn.setSavepoint("onerow");
addRow(2);
assertEquals(2, countRows());
_conn.rollback();
assertEquals(0, countRows());
}
public void testContinueAfterError() throws SQLException {
if (!hasSavepoints())
return ;
addRow(1);
Savepoint savepoint = _conn.setSavepoint();
try
{
addRow(1);
fail("Should have thrown duplicate key exception");
}
catch (SQLException sqle)
{
_conn.rollback(savepoint);
}
assertEquals(1, countRows());
addRow(2);
assertEquals(2, countRows());
}
public void testReleaseSavepoint() throws SQLException {
if (!hasSavepoints())
return ;
Savepoint savepoint = _conn.setSavepoint("mysavepoint");
_conn.releaseSavepoint(savepoint);
try
{
savepoint.getSavepointName();
fail("Can't use savepoint after release.");
}
catch (SQLException sqle)
{
}
savepoint = _conn.setSavepoint();
_conn.releaseSavepoint(savepoint);
try
{
savepoint.getSavepointId();
fail("Can't use savepoint after release.");
}
catch (SQLException sqle)
{
}
}
public void testComplicatedSavepointName() throws SQLException {
if (!hasSavepoints())
return ;
Savepoint savepoint = _conn.setSavepoint("name with spaces + \"quotes\"");
_conn.rollback(savepoint);
_conn.releaseSavepoint(savepoint);
}
public void testRollingBackToInvalidSavepointFails() throws SQLException {
if (!hasSavepoints())
return ;
Savepoint sp1 = _conn.setSavepoint();
Savepoint sp2 = _conn.setSavepoint();
_conn.rollback(sp1);
try
{
_conn.rollback(sp2);
fail("Can't rollback to a savepoint that's invalid.");
}
catch (SQLException sqle)
{
}
}
public void testRollbackMultipleTimes() throws SQLException {
if (!hasSavepoints())
return ;
addRow(1);
Savepoint savepoint = _conn.setSavepoint();
addRow(2);
_conn.rollback(savepoint);
assertEquals(1, countRows());
_conn.rollback(savepoint);
assertEquals(1, countRows());
addRow(2);
_conn.rollback(savepoint);
assertEquals(1, countRows());
_conn.releaseSavepoint(savepoint);
assertEquals(1, countRows());
}
}
|