All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.creation.settings.CreationSettings Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.creation.settings;

import org.mockito.listeners.InvocationListener;
import org.mockito.internal.listeners.StubbingLookupListener;
import org.mockito.mock.MockCreationSettings;
import org.mockito.mock.MockName;
import org.mockito.mock.SerializableMode;
import org.mockito.stubbing.Answer;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;

public class CreationSettings implements MockCreationSettings, Serializable {
    private static final long serialVersionUID = -6789800638070123629L;

    protected Class typeToMock;
    protected Set> extraInterfaces = new LinkedHashSet>();
    protected String name;
    protected Object spiedInstance;
    protected Answer defaultAnswer;
    protected MockName mockName;
    protected SerializableMode serializableMode = SerializableMode.NONE;
    protected List invocationListeners = new ArrayList();
    protected final List stubbingLookupListeners = new ArrayList();
    protected boolean stubOnly;
    private boolean useConstructor;
    private Object outerClassInstance;
    private Object[] constructorArgs;

    public CreationSettings() {}

    @SuppressWarnings("unchecked")
    public CreationSettings(CreationSettings copy) {
        this.typeToMock = copy.typeToMock;
        this.extraInterfaces = copy.extraInterfaces;
        this.name = copy.name;
        this.spiedInstance = copy.spiedInstance;
        this.defaultAnswer = copy.defaultAnswer;
        this.mockName = copy.mockName;
        this.serializableMode = copy.serializableMode;
        this.invocationListeners = copy.invocationListeners;
        this.stubOnly = copy.stubOnly;
        this.useConstructor = copy.isUsingConstructor();
        this.outerClassInstance = copy.getOuterClassInstance();
        this.constructorArgs = copy.getConstructorArgs();
    }

    public Class getTypeToMock() {
        return typeToMock;
    }

    public CreationSettings setTypeToMock(Class typeToMock) {
        this.typeToMock = typeToMock;
        return this;
    }

    public Set> getExtraInterfaces() {
        return extraInterfaces;
    }

    public CreationSettings setExtraInterfaces(Set> extraInterfaces) {
        this.extraInterfaces = extraInterfaces;
        return this;
    }

    public String getName() {
        return name;
    }

    public Object getSpiedInstance() {
        return spiedInstance;
    }

    public Answer getDefaultAnswer() {
        return defaultAnswer;
    }

    public MockName getMockName() {
        return mockName;
    }

    public CreationSettings setMockName(MockName mockName) {
        this.mockName = mockName;
        return this;
    }

    public boolean isSerializable() {
        return serializableMode != SerializableMode.NONE;
    }

    public CreationSettings setSerializableMode(SerializableMode serializableMode) {
        this.serializableMode = serializableMode;
        return this;
    }

    public SerializableMode getSerializableMode() {
        return serializableMode;
    }

    public List getInvocationListeners() {
        return invocationListeners;
    }

    public List getStubbingLookupListeners() {
        return stubbingLookupListeners;
    }

    public boolean isUsingConstructor() {
        return useConstructor;
    }

    @Override
    public Object[] getConstructorArgs() {
        return constructorArgs;
    }

    public Object getOuterClassInstance() {
        return outerClassInstance;
    }

    public boolean isStubOnly() {
        return stubOnly;
    }

}