使用ApplicationContextInitializer进行Spring Config测试 - 如何解密?

时间:2016-09-09 01:03:24

标签: java spring encryption spring-cloud-config

我在Spring Config服务器上运行测试以验证应用程序是否正常运行。我做了一些手动测试,一切正常,Spring Confg Boot应用程序的基本启动,但我想要一个单元测试来证明解决方案,并能够测试我的开发密钥库和诸如此类的东西。

我添加了一个自定义ApplicationContextInitializer实现,以便在执行启动时从application-test.yml加载数据。当数据未加密时,一切正常;但是,当我添加加密属性时,它不会解密它。

我使用的实现是:

public class TestYamlFileApplicationContextInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {

  @Override
  public void initialize(ConfigurableApplicationContext applicationContext) {
    try {
      Resource resource = applicationContext.getResource(CLASSPATH_URI);
      YamlPropertySourceLoader sourceLoader = new YamlPropertySourceLoader();
      PropertySource<?> testProperties = sourceLoader.load("yamlTestProperties", resource, null);
      applicationContext.getEnvironment().getPropertySources().addFirst(testProperties);
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }
}

application-test.yml是:

my:
  encrypted:
    parameter: '{cipher}AQB8C/1v9J+jPQZG...'

server:
  port: 0

spring:
  profiles:
    active: native

encrypt:
  key-store:
    location: classpath*:/security/development-test.jks
    alias: DevelopmentTest
    secret: SomeSecretPassword123
    password: SomeStorePassword123

我的测试用@ContextConfiguration (initializers = TestYamlFileApplicationContextInitializer.class)注释以启动它。

测试使用以下方式进行基本检查:

@Autowired
Environment env;

@Test
public void testStuff() {
  String theProp = env.getProperty("my.encrypted.parameter");
  System.err.println(theProp);
}

输出为:{cipher}AQB8C/1v9J+jPQZG...

没有列出例外情况。

我错过了哪一块拼图?

1 个答案:

答案 0 :(得分:1)

看起来这是Spring的一个未解决的问题。 https://jira.spring.io/browse/SPR-12420。 SO帖子Process Spring Boot externalized property values

提供了一种可能的解决方案