/*
* #%L
* P6Spy
* %%
* Copyright (C) 2013 P6Spy
* %%
* 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.
* #L%
*/
package com.p6spy.engine.common;
import com.p6spy.engine.proxy.GenericInvocationHandler;
import com.p6spy.engine.proxy.ProxyFactory;
import com.p6spy.engine.test.AbstractTestConnection;
import com.p6spy.engine.test.BaseTestCase;
import com.p6spy.engine.test.TestConnection;
import com.p6spy.engine.test.TestConnectionImpl;
import org.apache.commons.dbcp.DelegatingConnection;
import org.junit.Test;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Wrapper;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class P6WrapperIsWrapperDelegateTest extends BaseTestCase {
@Test
public void testCastableFromProxy() throws SQLException {
Connection con = new TestConnectionImpl();
Connection proxy = ProxyFactory.createProxy(con, new GenericInvocationHandler<Connection>(con));
// if the proxy implements the interface then true should be returned.
assertTrue(proxy.isWrapperFor(Connection.class));
assertTrue(proxy.isWrapperFor(TestConnection.class));
assertTrue(proxy.isWrapperFor(Wrapper.class));
}
@Test
public void testCastableFromUnderlying() throws SQLException {
Connection con = new TestConnectionImpl();
Connection proxy = ProxyFactory.createProxy(con, new GenericInvocationHandler<Connection>(con));
// if the underlying object extends the class (or matches the class) then true should be returned.
assertTrue(proxy.isWrapperFor(TestConnectionImpl.class));
assertTrue(proxy.isWrapperFor(AbstractTestConnection.class));
}
@Test
public void testProxyOfWrappedConnection() throws SQLException {
// this will be the actual connection
Connection con = new TestConnectionImpl();
// use a wrapper from DBCP to create a proxy of a proxy
// Note: DBCP implements with JDBC 4.0 API so the Wrapper interface
// is implemented here.
DelegatingConnection underlying = new DelegatingConnection(con);
Connection proxy = ProxyFactory.createProxy(underlying, new GenericInvocationHandler<Connection>(underlying));
// TestConnection is an interface of the wrapped underlying object.
assertTrue(proxy.isWrapperFor(TestConnection.class));
// ResultSet is not implemented at all - false should be returned
assertFalse(proxy.isWrapperFor(ResultSet.class));
}
}