反射可能用于的场景

动态加载 YAML 中指定的类

**# test-config.yaml
className: com.example.TestService
method: queryData
parameters:

  • type: java.lang.String
    value: "testId"
  • type: java.lang.Integer
    value: 123**
java 复制代码
public class YamlClassLoader {
    public Object loadAndExecute(String yamlPath) throws Exception {
        // 1. 读取YAML配置
        Map<String, Object> config = loadYaml(yamlPath);
        
        // 2. 动态加载类
        String className = (String) config.get("className");
        Class<?> clazz = Class.forName(className);
        
        // 3. 创建实例
        Object instance = clazz.getDeclaredConstructor().newInstance();
        
        // 4. 获取方法
        String methodName = (String) config.get("method");
        List<Map<String, String>> params = (List<Map<String, String>>) config.get("parameters");
        
        // 5. 准备参数
        Class<?>[] paramTypes = new Class<?>[params.size()];
        Object[] paramValues = new Object[params.size()];
        for (int i = 0; i < params.size(); i++) {
            Map<String, String> param = params.get(i);
            paramTypes[i] = Class.forName(param.get("type"));
            paramValues[i] = convertValue(param.get("value"), paramTypes[i]);
        }
        
        // 6. 获取并调用方法
        Method method = clazz.getMethod(methodName, paramTypes);
        return method.invoke(instance, paramValues);
    }
    
    private Object convertValue(String value, Class<?> type) {
        if (type == String.class) return value;
        if (type == Integer.class) return Integer.parseInt(value);
        // ... 其他类型转换
        return null;
    }
}

Mock 数据注入到测试对象

java 复制代码
public class MockDataInjector {
    public void injectMockData(Object testObject, Map<String, Object> mockData) 
        throws Exception {
        
        Class<?> clazz = testObject.getClass();
        
        // 遍历所有字段
        for (Field field : clazz.getDeclaredFields()) {
            // 检查是否有需要mock的注解
            if (field.isAnnotationPresent(MockData.class)) {
                field.setAccessible(true); // 允许访问私有字段
                
                // 获取mock数据
                String fieldName = field.getName();
                Object mockValue = mockData.get(fieldName);
                
                // 注入mock数据
                field.set(testObject, mockValue);
            }
        }
    }
}

// 使用示例
@Test
public class UserServiceTest {
    @MockData
    private UserDao userDao;
    
    @BeforeTest
    public void setup() {
        // 准备mock数据
        Map<String, Object> mockData = new HashMap<>();
        mockData.put("userDao", new MockUserDao());
        
        // 注入mock数据
        new MockDataInjector().injectMockData(this, mockData);
    }
}

动态调用测试方法

java 复制代码
public class DynamicTestExecutor {
    public void executeTest(String className, String methodName) throws Exception {
        // 1. 加载测试类
        Class<?> testClass = Class.forName(className);
        Object testInstance = testClass.getDeclaredConstructor().newInstance();
        
        // 2. 查找并执行@BeforeTest方法
        for (Method method : testClass.getMethods()) {
            if (method.isAnnotationPresent(BeforeTest.class)) {
                method.invoke(testInstance);
            }
        }
        
        // 3. 执行指定的测试方法
        Method testMethod = testClass.getMethod(methodName);
        if (testMethod.isAnnotationPresent(Test.class)) {
            testMethod.invoke(testInstance);
        }
    }
}

// 使用实例
@Test
public class TestRunner {
    public void runSpecificTest() {
        DynamicTestExecutor executor = new DynamicTestExecutor();
        executor.executeTest(
            "com.example.UserServiceTest",
            "testUserCreation"
        );
    }
}

完整的工具类示例

java 复制代码
public class TestReflectionUtils {
    
    // 1. 动态加载并实例化类
    public static Object createInstance(String className) throws Exception {
        Class<?> clazz = Class.forName(className);
        return clazz.getDeclaredConstructor().newInstance();
    }
    
    // 2. 设置字段值
    public static void setField(Object object, String fieldName, Object value) 
        throws Exception {
        Field field = object.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        field.set(object, value);
    }
    
    // 3. 获取字段值
    public static Object getField(Object object, String fieldName) 
        throws Exception {
        Field field = object.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        return field.get(object);
    }
    
    // 4. 调用方法
    public static Object invokeMethod(Object object, String methodName, 
        Object... args) throws Exception {
        Class<?>[] paramTypes = new Class<?>[args.length];
        for (int i = 0; i < args.length; i++) {
            paramTypes[i] = args[i].getClass();
        }
        Method method = object.getClass().getMethod(methodName, paramTypes);
        return method.invoke(object, args);
    }
    
    // 5. 查找注解标注的方法
    public static List<Method> findAnnotatedMethods(Class<?> clazz, 
        Class<? extends Annotation> annotation) {
        List<Method> methods = new ArrayList<>();
        for (Method method : clazz.getDeclaredMethods()) {
            if (method.isAnnotationPresent(annotation)) {
                methods.add(method);
            }
        }
        return methods;
    }
}




public class TestExample {
    public static void main(String[] args) throws Exception {
        // 1. 动态加载类
        Object testInstance = TestReflectionUtils.createInstance(
            "com.example.UserServiceTest"
        );
        
        // 2. 注入mock数据
        TestReflectionUtils.setField(testInstance, "userDao", new MockUserDao());
        
        // 3. 查找并执行测试方法
        List<Method> testMethods = TestReflectionUtils.findAnnotatedMethods(
            testInstance.getClass(), 
            Test.class
        );
        
        for (Method method : testMethods) {
            TestReflectionUtils.invokeMethod(testInstance, method.getName());
        }
    }
}
相关推荐
测试员周周4 分钟前
【AI测试系统】第3篇:AI生成的测试用例太“水”?14年老兵:规则引擎+AI才是王炸组合
人工智能·python·测试
@小码农9 分钟前
2026年3月Scratch图形化编程等级考试一级真题试卷
开发语言·数据结构·c++·算法
这儿有一堆花10 分钟前
住宅代理(Residential Proxy)技术指南
开发语言·数据库·php
一只大袋鼠22 分钟前
Java进阶:CGLIB动态代理解析
java·开发语言
秦ぅ时23 分钟前
保姆级教程|OpenAI tts-1-hd模型调用全流程(Python+curl+懒人用法)
开发语言·python
Muyuan199826 分钟前
25.Paper RAG Agent 优化记录:上传反馈、计算器安全与 Chunk 参数调整
python·安全·django·sqlite·fastapi
Eiceblue31 分钟前
使用 C# 将 Excel 转换为 Markdown 表格(含批量转换示例)
开发语言·c#·excel
爱滑雪的码农37 分钟前
Java基础十三:Java中的继承、重写(Override)与重载(Overload)详解
java·开发语言
Java面试题总结38 分钟前
使用 Python 设置 Excel 数据验证
开发语言·python·excel
【 】42340 分钟前
C++&STL(Standard Template Library,标准模板库)
java·开发语言·c++