/* * Copyright 2008 the original author or authors. * * 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 samples.methodhierarchy; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.modules.junit4.PowerMockRunner; import org.powermock.reflect.Whitebox; import static org.easymock.EasyMock.expect; import static org.junit.Assert.assertEquals; import static org.powermock.api.easymock.PowerMock.*; /** * Test that verifies that it's possible to invoke and create partial mocks of * private and/protected methods in a hierarchy. */ @RunWith(PowerMockRunner.class) @PrepareForTest( { MethodInvocationDemo.class }) public class MethodInvocationDemoTest { @Test public void testCreatePartialMockForAProtectedMethodInASubclass() throws Exception { final String value = "another string"; final String getTheStringMethodName = "getTheString"; MethodInvocationDemo tested = createPartialMock(MethodInvocationDemo.class, getTheStringMethodName); expect(tested.getTheString()).andReturn(value); replay(tested); assertEquals(value, Whitebox.invokeMethod(tested, "getString")); verify(tested); } @Test @Ignore("Mabey this is impossible to achieve") public void testCreatePartialMockForAProtectedMethodInASpecificSubclass() throws Exception { final String value = "another string"; final String getTheStringMethodName = "getTheString"; MethodInvocationDemo tested = createPartialMock(MethodInvocationDemo.class, MethodInvocationDemoGrandParent.class, getTheStringMethodName); expectPrivate(tested, getTheStringMethodName, MethodInvocationDemoGrandParent.class).andReturn(value); replay(tested); assertEquals("MethodInvocationDemoParent wrapped " + value, tested.getTheString()); verify(tested); } @Test public void testWhenClassUnderTestIsAnAnonymousInnerClass() throws Exception { MethodInvocationDemo tested = new MethodInvocationDemo() { }; assertEquals("MethodInvocationDemoParent wrapped a string from MethodInvocationDemoGrandParent", Whitebox.invokeMethod(tested, "getString")); } @Test public void testInvokePrivateMethodInSuperClassWhenClassUnderTestIsAnAnonymousInnerClass() throws Exception { MethodInvocationDemo tested = new MethodInvocationDemo() { }; assertEquals("MethodInvocationDemoParent", Whitebox.invokeMethod(tested, MethodInvocationDemoParent.class, "getString")); } @Test public void testInvokeProtectedMethodWhenClassUnderTestIsAnAnonymousInnerClass() throws Exception { MethodInvocationDemo tested = new MethodInvocationDemo() { }; assertEquals("MethodInvocationDemoParent wrapped a string from MethodInvocationDemoGrandParent", tested.getTheString()); } @Test public void testInvokeProtectedMethodWhenClassUnderTestIsAnAnonymousInnerClassUsingWithbox() throws Exception { MethodInvocationDemo tested = new MethodInvocationDemo() { }; assertEquals("MethodInvocationDemoParent wrapped a string from MethodInvocationDemoGrandParent", Whitebox.invokeMethod(tested, "getTheString")); } @Test public void testInvokeSpecificMethodInHierarchy() throws Exception { MethodInvocationDemo tested = new MethodInvocationDemo(); assertEquals("MethodInvocationDemoGrandParent", Whitebox.invokeMethod(tested, MethodInvocationDemoGrandParent.class, "getString", (Object[]) new Class<?>[0])); } @Test public void testInvokeSpecificMethodInHierarchyWithArguments() throws Exception { MethodInvocationDemo tested = new MethodInvocationDemo(); assertEquals("MethodInvocationDemoGrandParent: 2", Whitebox.invokeMethod(tested, MethodInvocationDemoGrandParent.class, "getString", new Class<?>[] { int.class }, 2)); } }