gpt4 book ai didi

java - 如何使用 Mockito/Powermock 模拟枚举单例类?

转载 作者:IT老高 更新时间:2023-10-28 21:00:23 31 4
gpt4 key购买 nike

我不确定如何模拟枚举单例类。

public enum SingletonObject{
INSTANCE;
private int num;

protected setNum(int num) {
this.num = num;
}

public int getNum() {
return num;
}

我想在上面的例子中 stub getNum(),但我不知道如何模拟实际的 SingletonObject 类。我认为使用 Powermock 来准备测试会有所帮助,因为枚举本质上是最终的。

//... rest of test code
@Test
public void test() {
PowerMockito.mock(SingletonObject.class);
when(SingletonObject.INSTANCE.getNum()).thenReturn(1); //does not work
}

这是使用 PowerMockMockito 1.4.10 和 Mockito 1.8.5。

最佳答案

如果你想删除 INSTANCE 返回的内容,你可以这样做,但它有点讨厌(使用反射和字节码操作)。我使用 PowerMock 1.4.12/Mockito 1.9.0 创建并测试了一个包含三个类的简单项目。所有类都在同一个包中。

SingletonObject.java

public enum SingletonObject {
INSTANCE;
private int num;

protected void setNum(int num) {
this.num = num;
}

public int getNum() {
return num;
}
}

SingletonConsumer.java

public class SingletonConsumer {
public String consumeSingletonObject() {
return String.valueOf(SingletonObject.INSTANCE.getNum());
}
}

SingletonConsumerTest.java

import static org.junit.Assert.*;
import static org.powermock.api.mockito.PowerMockito.*;

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;

@RunWith(PowerMockRunner.class)
@PrepareForTest({SingletonObject.class})
public class SingletonConsumerTest {
@Test
public void testConsumeSingletonObject() throws Exception {
SingletonObject mockInstance = mock(SingletonObject.class);
Whitebox.setInternalState(SingletonObject.class, "INSTANCE", mockInstance);

when(mockInstance.getNum()).thenReturn(42);

assertEquals("42", new SingletonConsumer().consumeSingletonObject());
}
}

Whitebox.setInternalState 的调用将 INSTANCE 替换为您可以在测试中操作的模拟对象。

关于java - 如何使用 Mockito/Powermock 模拟枚举单例类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15939023/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com