Skip to content

Instantly share code, notes, and snippets.

@thiagofa
Last active January 27, 2024 10:14
Show Gist options
  • Save thiagofa/cff61c709277f48a241c145116b92ec1 to your computer and use it in GitHub Desktop.
Save thiagofa/cff61c709277f48a241c145116b92ec1 to your computer and use it in GitHub Desktop.
Componente Spring para limpar os dados de todas as tabelas de um banco de teste (exceto a tabela de histórico do Flyway)
// Baseado em: https://brightinventions.pl/blog/clear-database-in-spring-boot-tests/
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import javax.sql.DataSource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class DatabaseCleaner {
private final Logger logger = LoggerFactory.getLogger(getClass());
@Autowired
private DataSource dataSource;
private Connection connection;
public void clearTables() {
try (Connection connection = dataSource.getConnection()) {
this.connection = connection;
checkTestDatabase();
tryToClearTables();
} catch (SQLException e) {
throw new RuntimeException(e);
} finally {
this.connection = null;
}
}
private void checkTestDatabase() throws SQLException {
String catalog = connection.getCatalog();
if (catalog == null || !catalog.endsWith("test")) {
throw new RuntimeException(
"Cannot clear database tables because '" + catalog + "' is not a test database (suffix 'test' not found).");
}
}
private void tryToClearTables() throws SQLException {
List<String> tableNames = getTableNames();
clear(tableNames);
}
private List<String> getTableNames() throws SQLException {
List<String> tableNames = new ArrayList<>();
DatabaseMetaData metaData = connection.getMetaData();
ResultSet rs = metaData.getTables(connection.getCatalog(), null, null, new String[] { "TABLE" });
while (rs.next()) {
tableNames.add(rs.getString("TABLE_NAME"));
}
tableNames.remove("flyway_schema_history");
return tableNames;
}
private void clear(List<String> tableNames) throws SQLException {
Statement statement = buildSqlStatement(tableNames);
logger.debug("Executing SQL");
statement.executeBatch();
}
private Statement buildSqlStatement(List<String> tableNames) throws SQLException {
Statement statement = connection.createStatement();
statement.addBatch(sql("SET FOREIGN_KEY_CHECKS = 0"));
addTruncateSatements(tableNames, statement);
statement.addBatch(sql("SET FOREIGN_KEY_CHECKS = 1"));
return statement;
}
private void addTruncateSatements(List<String> tableNames, Statement statement) {
tableNames.forEach(tableName -> {
try {
statement.addBatch(sql("TRUNCATE TABLE " + tableName));
} catch (SQLException e) {
throw new RuntimeException(e);
}
});
}
private String sql(String sql) {
logger.debug("Adding SQL: {}", sql);
return sql;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment