模拟中的弹簧值注入

Spring value injection in mockito(模拟中的弹簧值注入)
本文介绍了模拟中的弹簧值注入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在尝试为以下方法编写测试类

I'm trying to write test class for the following method

public class CustomServiceImpl implements CustomService {
    @Value("#{myProp['custom.url']}")
    private String url;
    @Autowire
    private DataService dataService;

我在类中的一种方法中使用注入的 url 值.为了测试这一点,我编写了一个 junit 类

I'm using the injected url value in one of the methods in the class. To test this i've written a junit class

@RunWith(MockitoJUnitRunner.class)
@ContextConfiguration(locations = { "classpath:applicationContext-test.xml" })
public CustomServiceTest{
    private CustomService customService;
    @Mock
    private DataService dataService;
    @Before
    public void setup() {
        customService = new CustomServiceImpl();
        Setter.set(customService, "dataService", dataService);
    }    
    ...
}

public class Setter {
    public static void set(Object obj, String fieldName, Object value) throws Exception {
        Field field = obj.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        field.set(obj, value);
    }
}

在 applicationContext-test.xml 中,我正在使用

In applicationContext-test.xml I'm loading the property file using

    <util:properties id="myProp" location="myProp.properties"/>

但是在运行测试时,url 值没有加载到 CustomService 中.我想知道是否有办法完成这项工作.

But the url value is not getting loaded in the CustomService on running the test. I was wondering if there is anyway to get this done.

谢谢

推荐答案

您可以自动装配到 mutator(setter)中,而不仅仅是注释私有字段.然后你也可以从你的测试类中使用那个设置器.无需公开,包私有即可,因为 Spring 仍然可以访问它,但否则只有您的测试可以进入那里(或同一包中的其他代码).

You can autowire into a mutator (setter), rather than just annotating the private field. Then you can use that setter from your test class as well. No need to make it public, package private will do as Spring can still access it, but otherwise only your test can get in there (or other code in the same package).

@Value("#{myProp['custom.url']}")
String setUrl( final String url ) {
    this.url  = url;
}

我不喜欢仅仅为了测试而以不同的方式自动装配(与我的代码库相比),但是从测试中更改被测类的替代方法简直是邪恶的.

I'm not a fan of autowiring differently (compared to my codebase) just for testing, but the alternative of changing the class under test, from the test, is simply unholy.

这篇关于模拟中的弹簧值注入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)