/*! ****************************************************************************** * * Pentaho Data Integration * * Copyright (C) 2002-2016 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * 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 org.pentaho.hadoop.shim.common.delegating; import org.mockito.invocation.InvocationOnMock; import org.mockito.stubbing.Answer; import org.pentaho.hbase.shim.common.wrapper.HBaseConnectionInterface; import java.lang.reflect.Method; import java.util.concurrent.atomic.AtomicBoolean; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; /** * User: Dzmitry Stsiapanau Date: 02/15/2016 Time: 17:18 */ public class DelegatingHBaseConnectionTest { private DelegatingHBaseConnection dhs; private HBaseConnectionInterface shimMock; @org.junit.Before public void setUp() throws Exception { shimMock = mock( HBaseConnectionInterface.class ); dhs = new DelegatingHBaseConnection( shimMock ); } @org.junit.Test public void testCheckAllMethodsDelegated() throws Exception { final AtomicBoolean called = new AtomicBoolean( false ); shimMock = mock( HBaseConnectionInterface.class, new Answer() { @Override public Object answer( InvocationOnMock invocation ) throws Throwable { called.set( true ); return null; } } ); dhs = new DelegatingHBaseConnection( shimMock ); Method[] methods = HBaseConnectionInterface.class.getDeclaredMethods(); for ( Method m : methods ) { called.set( false ); m.invoke( dhs, DelegatingUtils.createArgs( m.getParameterTypes() ) ); assertTrue( "Method was not delegated " + m.getName(), called.get() ); } } }