org.powermock.api.mockito.internal.mockmaker.PowerMockMaker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powermock-api-mockito Show documentation
Show all versions of powermock-api-mockito Show documentation
PowerMock API for Mockito 1.+..
The newest version!
/*
* Copyright 2012 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 org.powermock.api.mockito.internal.mockmaker;
import org.mockito.internal.InternalMockHandler;
import org.mockito.internal.creation.MockSettingsImpl;
import org.mockito.internal.stubbing.InvocationContainer;
import org.mockito.internal.util.MockNameImpl;
import org.mockito.invocation.Invocation;
import org.mockito.invocation.MockHandler;
import org.mockito.mock.MockCreationSettings;
import org.mockito.plugins.MockMaker;
import org.mockito.stubbing.Answer;
import org.mockito.stubbing.VoidMethodStubbable;
import org.powermock.api.mockito.repackaged.CglibMockMaker;
import org.powermock.core.classloader.MockClassLoader;
import java.util.List;
/**
* A PowerMock implementation of the MockMaker. Right now it simply delegates to the default Mockito
* {@link org.mockito.plugins.MockMaker} via {@link org.mockito.internal.configuration.plugins.Plugins#getMockMaker()}
* but in the future we may use it more properly.
* The reason for its existence is that the current Mockito MockMaker throws exception when getting the name
* from of a mock that is created by PowerMock but not know for Mockito. This is triggered when by the
* {@link org.mockito.internal.util.MockUtil} class.
* For more details see the {@link org.powermock.api.mockito.internal.invocation.ToStringGenerator}.
*/
public class PowerMockMaker implements MockMaker {
private final MockMaker cglibMockMaker = new CglibMockMaker();
@Override
public T createMock(MockCreationSettings settings, MockHandler handler) {
T mock = cglibMockMaker.createMock(settings, handler);
ClassLoader classLoader = cglibMockMaker.getClass().getClassLoader();
if (classLoader instanceof MockClassLoader) {
MockClassLoader mcl = (MockClassLoader) classLoader;
// The generated class is not picked up by PowerMock so we cache it here
mcl.cache(mock.getClass());
}
return mock;
}
@Override
public MockHandler getHandler(Object mock) {
// Return a fake mock handler for static method mocks
if (mock instanceof Class) {
return new PowerMockInternalMockHandler((Class>) mock);
} else {
return cglibMockMaker.getHandler(mock);
}
}
@Override
public void resetMock(Object mock, MockHandler newHandler, MockCreationSettings settings) {
cglibMockMaker.resetMock(mock, newHandler, settings);
}
/**
* It needs to extend InternalMockHandler because Mockito requires the type to be of InternalMockHandler and not MockHandler
*/
private static class PowerMockInternalMockHandler implements InternalMockHandler