我正在使用JUnit
编写测试用例,并且测试中的方法使用私有构造函数作为参数的最终类。由于我无法使用new
关键字对其进行实例化,我尝试使用Mockito
,但发现Mockito
不喜欢final class
。我开始使用PowerMockito
这对我来说似乎是合理的,但PowerMockito.mockStatic(Field.class);
是一个void方法,我需要Field
的引用,以便我可以在调用方法时将其作为参数传递。
我想抓住IllegalArgumentException
,但首先我需要将Field
的引用作为参数传递
待测方法
public boolean accept(Field field) {
if( ignoreNulls ) {
try {
if( field.get( super.getObject() ) == null ) {
return false;
}
} catch (IllegalArgumentException e) {
} catch (IllegalAccessException e) {
}
}
return super.accept(field);
}
JUnit测试用例
@Test(expected=IllegalArgumentException.class)
public void testAccept() throws Exception {
DefaultToStringBuilder builder = new DefaultToStringBuilder(new Object());
PowerMockito.mockStatic(Field.class);
builder.accept(?);
}
我不确定我该怎么做。
提前致谢
答案 0 :(得分:4)
我的回答不这样做。不要因为您的生产代码无法以其他方式进行测试而参与PowerMock。
你很快就会发现PowerMock可以创造出比它解决的问题更多的问题。
通常,使用PowerMock的需求来自破碎的设计。因此,您不必花费数小时来通过PowerMock实现破损的设计测试......您最好花一点时间来重新设计您的设计。 (从我的经验来看:PowerMock很快就会花费无数的时间用在它上面)
含义:您可以添加一个包受保护的构造函数用于测试目的。或者你可以更进一步,以获得更广泛的图景;并找到允许公共建设者的方法;同时保持导致当前最终/私人实施的设计理念。
答案 1 :(得分:3)
我们实际上可以使用Core Java
来实现这一目标。下面的代码显示了如何执行此操作。
private Field field;
@Test(expected=IllegalArgumentException.class)
public void testAccept() throws Exception {
Class<?> clazz = Field.class;
Constructor<?> [] constructors = clazz.getDeclaredConstructors();
for(Constructor cons: constructors) {
cons.setAccessible(true);
field = (Field) cons.newInstance();
}
DefaultToStringBuilder builder = new DefaultToStringBuilder(new Object());
builder.accept(field);
assertNotNull(builder);
}
答案 2 :(得分:0)
使用Java反射从外部类获取私有构造函数的对象。这是示例。
//示例类 Student.java
public class Student {
private Integer sudentId;
private String studentName;
private Student(){}
private Student(Integer studentId, String studentName) {
this.studentId = studentId;
this.studentName = studentName;
}
public Integer getStudentId() {
return studentId;
}
public String getStudentName() {
return studentName;
}
}
在下面的代码中,有两种实例化类的方法
1-使用给定的构造函数名称查找私有构造函数
实例化该类。
2-查找给定数量的参数的私有构造函数和
输入并实例化类
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
public class PrivateConstructorDemo {
//Find the private constructor using given constructor name and instantiate the class.
public void createObjectByConstructorName(int id, String name) throws NoSuchMethodException, SecurityException,
InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException{
Constructor<Student> constructor = Student.class.getDeclaredConstructor(Integer.class, String.class);
if (Modifier.isPrivate(constructor.getModifiers())) {
constructor.setAccessible(true);
Student student = (Student)constructor.newInstance(id, name);
System.out.println("Student Id:"+ student.getStudentId());
System.out.println("Student Name:"+ student.getStudentName());
}
}
//For given number of arguments and types and instantiate the class.
public void createObject(int id, String name) throws InstantiationException,
IllegalAccessException, IllegalArgumentException, InvocationTargetException {
Constructor<?>[] constructors = Student.class.getDeclaredConstructors();
for (Constructor<?> constructor : constructors) {
if (Modifier.isPrivate(constructor.getModifiers())) {
constructor.setAccessible(true);
Class<?>[] clazzs = constructor.getParameterTypes();
if (constructor.getParameterCount() == 2 && clazzs[0] == Integer.class &&
clazzs[1] == String.class) {
Object ob = constructor.newInstance(id, name);
if (ob instanceof Student) {
Student student = (Student)ob;
System.out.println("Student Id:"+ student.getStudentId());
System.out.println("Student Name:"+ student.getStudentName());
}
}
}
}
}
public static void main(String[] args) throws InstantiationException, IllegalAccessException,
IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {
PrivateConstructorDemo obj = new PrivateConstructorDemo();
obj.createObject(10, "Sandeep");
System.out.println("-------------------------");
obj.createObjectByConstructorName(20,"Sandeep");
}
}