/* * The contents of this file are subject to the terms of the Common Development and * Distribution License (the License). You may not use this file except in compliance with the * License. * * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the * specific language governing permission and limitations under the License. * * When distributing Covered Software, include this CDDL Header Notice in each file and include * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL * Header, with the fields enclosed by brackets [] replaced by your own identifying * information: "Portions copyright [year] [name of copyright owner]". * * Copyright 2026 3A Systems, LLC. */ package org.opends.server.backends.jdbc; import org.opends.server.DirectoryServerTestCase; import org.opends.server.backends.pluggable.spi.StorageRuntimeException; import org.opends.server.types.DirectoryException; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import java.sql.SQLException; import static org.forgerock.i18n.LocalizableMessage.raw; import static org.forgerock.opendj.ldap.ResultCode.OTHER; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertTrue; /** * Tests how a failure is classified as a transaction conflict, which is what decides whether * {@link JDBCStorage#write} replays the operation, and how long it waits before it does. *

* Runs without a database: the failures the drivers report are reproduced as synthetic * {@link SQLException}s carrying the same vendor error number and SQLState. */ @Test(sequential = true) @SuppressWarnings("javadoc") public class JDBCStorageRetryTest extends DirectoryServerTestCase { /** Driver class names, which is what the classification keys the vendor error numbers off. */ private static final String MSSQL = "com.microsoft.sqlserver.jdbc.SQLServerConnection"; private static final String MYSQL = "com.mysql.cj.jdbc.ConnectionImpl"; private static final String ORACLE = "oracle.jdbc.driver.T4CConnection"; private static final String POSTGRES = "org.postgresql.jdbc.PgConnection"; /** A failure whose cause chain is a cycle, to check that walking it terminates. */ private static final class SelfCausedException extends RuntimeException { private static final long serialVersionUID = 1L; @Override public synchronized Throwable getCause() { return this; } } @DataProvider public Object[][] failures() { return new Object[][] { // SQL Server picking a transaction as the deadlock victim: the failure this retry exists for { "mssql deadlock victim", sql(1205, "40001"), MSSQL, true }, // a deployment may add xopenStates=true to its connection URL, which reports the same deadlock as 42000 { "mssql deadlock victim, xopenStates", sql(1205, "42000"), MSSQL, true }, // the conflict of most other engines is carried by the SQLState, under a vendor number of their own { "postgres serialization failure", sql(0, "40001"), POSTGRES, true }, { "postgres deadlock detected", sql(0, "40P01"), POSTGRES, true }, // Connector/J replaces the server side HY000 of both conditions with 40001, so neither needs a number here { "mysql deadlock", sql(1213, "40001"), MYSQL, true }, // not a deadlock, but transient in the same way and equally resolved by a replay { "mysql lock wait timeout", sql(1205, "40001"), MYSQL, true }, // the rollback a MySQL group replication conflict reports, error 3101, which the driver maps to 40000 { "mysql group replication rollback", sql(3101, "40000"), MYSQL, true }, // Oracle maps ORA-00060 to SQLState 61000, so only its error number identifies the deadlock { "oracle deadlock detected", sql(60, "61000"), ORACLE, true }, // the conflict reaches JDBCStorage.write() wrapped, so the whole cause chain has to be walked { "wrapped once", new StorageRuntimeException(sql(1205, "40001")), MSSQL, true }, { "wrapped twice", new DirectoryException(OTHER, raw("unchecked"), new StorageRuntimeException(sql(1205, "40001"))), MSSQL, true }, // the vendor numbers collide across engines, so they must not be matched driver-independently: // ORA-01205 "not a data file" is fatal, and no replay resolves it { "oracle not a data file", sql(1205, "64000"), ORACLE, false }, // and a lock wait timeout is a MySQL number: 1205 means nothing of the kind to PostgreSQL { "postgres unrelated 1205", sql(1205, "22001"), POSTGRES, false }, // two class 40 states are rollbacks that a replay must not repeat: 40003 leaves the outcome of the // transaction unknown, and 40002 is an integrity constraint violation that a replay would only hit again { "statement completion unknown", sql(0, "40003"), POSTGRES, false }, { "transaction integrity constraint violation", sql(0, "40002"), POSTGRES, false }, // ... but the state of a conflict is still matched whatever vendor number carries it { "class 40 is driver independent", sql(0, "40001"), null, true }, // nothing a replay can resolve { "primary key violation", sql(2627, "23000"), MSSQL, false }, { "syntax error", sql(102, "S0001"), MSSQL, false }, { "no SQLState", sql(0, null), MSSQL, false }, { "not a SQLException", new IllegalStateException("connection closed"), MSSQL, false }, { "wrapped, not a conflict", new StorageRuntimeException(sql(2627, "23000")), MSSQL, false }, { "no failure at all", null, MSSQL, false }, // a vendor number is never matched without a driver to key it off, since the engines collide on it { "unknown driver", sql(1205, "HY000"), null, false }, { "cyclic cause chain", new SelfCausedException(), MSSQL, false }, }; } @Test(dataProvider = "failures") public void testIsRetryableConflict(String name, Throwable failure, String driver, boolean expected) { assertEquals(JDBCStorage.isRetryableConflict(failure, driver), expected, name); } /** The delay grows with the attempt, so that the replays outlast a contention lasting more than a few ms. */ @Test public void testRetryDelayGrowsAndStaysBounded() { long previousBound = 0; for (int attempt = 1; attempt <= 10; attempt++) { long bound = 0; for (int i = 0; i < 100; i++) { final long delay = JDBCStorage.retryDelayMillis(attempt); assertTrue(delay >= 0, "attempt " + attempt + " waited " + delay + " ms"); assertTrue(delay < 1000, "attempt " + attempt + " waited " + delay + " ms"); bound = Math.max(bound, delay); } assertTrue(bound >= previousBound / 2, "attempt " + attempt + " did not grow past attempt " + (attempt - 1)); previousBound = bound; } } /** * A replay is logged once per attempt, so what it logs has to identify the conflict without a stack trace: the * SQLState and the vendor error number, reached through however many wrappers the failure arrived in. */ @Test public void testConflictSummaryNamesTheStateAndTheNumber() { final String summary = JDBCStorage.conflictSummary( new DirectoryException(OTHER, raw("unchecked"), new StorageRuntimeException(sql(1205, "40001")))); assertTrue(summary.contains("40001"), summary); assertTrue(summary.contains("1205"), summary); assertTrue(summary.contains("synthetic failure"), summary); } /** A failure carrying no SQLException at all, and a cyclic cause chain, still have to yield something loggable. */ @Test public void testConflictSummaryTerminatesWithoutASQLException() { assertTrue(JDBCStorage.conflictSummary(new IllegalStateException("connection closed")).contains("closed")); assertTrue(JDBCStorage.conflictSummary(new SelfCausedException()).contains("SelfCausedException")); assertEquals(JDBCStorage.conflictSummary(null), "null"); } private static SQLException sql(int errorCode, String sqlState) { return new SQLException("synthetic failure", sqlState, errorCode); } }