我正在尝试为使用@RefreshScope
的应用程序编写测试。我想添加一个实际更改属性并断言应用程序正确响应的测试。我已经弄清楚如何触发刷新(在RefreshScope
中自动装配并调用refresh(...)
),但我还没有想出一种修改属性的方法。如果可能的话,我想直接写入属性源(而不是使用文件),但我不知道在哪里看。
更新
以下是我正在寻找的一个例子:
public class SomeClassWithAProperty {
@Value{"my.property"}
private String myProperty;
public String getMyProperty() { ... }
}
public class SomeOtherBean {
public SomeOtherBean(SomeClassWithAProperty classWithProp) { ... }
public String getGreeting() {
return "Hello " + classWithProp.getMyProperty() + "!";
}
}
@Configuration
public class ConfigClass {
@Bean
@RefreshScope
SomeClassWithAProperty someClassWithAProperty() { ...}
@Bean
SomeOtherBean someOtherBean() {
return new SomeOtherBean(someClassWithAProperty());
}
}
public class MyAppIT {
private static final DEFAULT_MY_PROP_VALUE = "World";
@Autowired
public SomeOtherBean otherBean;
@Autowired
public RefreshScope refreshScope;
@Test
public void testRefresh() {
assertEquals("Hello World!", otherBean.getGreeting());
[DO SOMETHING HERE TO CHANGE my.property TO "Mars"]
refreshScope.refreshAll();
assertEquals("Hello Mars!", otherBean.getGreeting());
}
}
答案 0 :(得分:3)
你可以这样做(我假设你错误地省略了样本顶部的JUnit注释,所以我会为你添加它们):
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
public class MyAppIT {
@Autowired
public ConfigurableEnvironment environment;
@Autowired
public SomeOtherBean otherBean;
@Autowired
public RefreshScope refreshScope;
@Test
public void testRefresh() {
assertEquals("Hello World!", otherBean.getGreeting());
EnvironmentTestUtils.addEnvironment(environment, "my.property=Mars");
refreshScope.refreshAll();
assertEquals("Hello Mars!", otherBean.getGreeting());
}
}
但是你并没有真正测试你的代码,只测试了Spring Cloud的刷新范围功能(已经针对这种行为进行了广泛的测试)。
我很确定你也可以从现有的刷新范围测试中得到这个。
答案 1 :(得分:-2)
应用程序中使用的属性必须是使用@Value注释的变量。这些变量必须属于由Spring管理的类,就像在具有@Component注释的类中一样。
如果要更改属性文件的值,可以设置不同的配置文件,并为每个配置文件提供各种.properties文件。
我们应该注意这些文件是静态的并且加载一次,因此以编程方式更改它们有点超出预期用途的范围。但是,您可以在Spring启动应用程序中设置一个简单的REST端点,该应用程序修改主机文件系统上的文件(很可能是您正在部署的jar文件中),然后在原始的Spring启动应用程序上调用Refresh。