Testing Connection Unwrap Mechanisms in HikariCP
A comprehensive test suite for validating the unwrap functionality in HikariCP’s connection pooling implementation. This test suite verifies the proper unwrapping of both Connection and DataSource objects, ensuring type safety and correct behavior of the connection pool’s wrapper mechanisms.
Test Coverage Overview
Implementation Analysis
Technical Details
Best Practices Demonstrated
brettwooldridge/hikaricp
src/test/java/com/zaxxer/hikari/pool/UnwrapTest.java
/*
* Copyright (C) 2013 Brett Wooldridge
*
* Licensed 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 com.zaxxer.hikari.pool;
import static com.zaxxer.hikari.pool.TestElf.newHikariConfig;
import static com.zaxxer.hikari.pool.TestElf.getPool;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import java.sql.Connection;
import java.sql.SQLException;
import org.junit.Test;
import com.zaxxer.hikari.HikariConfig;
import com.zaxxer.hikari.HikariDataSource;
import com.zaxxer.hikari.mocks.StubConnection;
import com.zaxxer.hikari.mocks.StubDataSource;
/**
* @author Brett Wooldridge
*/
public class UnwrapTest
{
@Test
public void testUnwrapConnection() throws SQLException
{
HikariConfig config = newHikariConfig();
config.setMinimumIdle(1);
config.setMaximumPoolSize(1);
config.setInitializationFailTimeout(0);
config.setConnectionTestQuery("VALUES 1");
config.setDataSourceClassName("com.zaxxer.hikari.mocks.StubDataSource");
try (HikariDataSource ds = new HikariDataSource(config)) {
ds.getConnection().close();
assertSame("Idle connections not as expected", 1, getPool(ds).getIdleConnections());
Connection connection = ds.getConnection();
assertNotNull(connection);
StubConnection unwrapped = connection.unwrap(StubConnection.class);
assertTrue("unwrapped connection is not instance of StubConnection: " + unwrapped, (unwrapped instanceof StubConnection));
}
}
@Test
public void testUnwrapDataSource() throws SQLException
{
HikariConfig config = newHikariConfig();
config.setMinimumIdle(1);
config.setMaximumPoolSize(1);
config.setInitializationFailTimeout(0);
config.setConnectionTestQuery("VALUES 1");
config.setDataSourceClassName("com.zaxxer.hikari.mocks.StubDataSource");
try (HikariDataSource ds = new HikariDataSource(config)) {
StubDataSource unwrap = ds.unwrap(StubDataSource.class);
assertNotNull(unwrap);
assertTrue(unwrap instanceof StubDataSource);
assertTrue(ds.isWrapperFor(HikariDataSource.class));
assertTrue(ds.unwrap(HikariDataSource.class) instanceof HikariDataSource);
assertFalse(ds.isWrapperFor(getClass()));
try {
ds.unwrap(getClass());
}
catch (SQLException e) {
assertTrue(e.getMessage().contains("Wrapped DataSource"));
}
}
}
}