1

我有一个带有加密属性的 application.properties 文件:

test.username='testUser'
test.password=ENC(3ncryp73dp@$$w0rd)

我想在功能文件中使用解密的值,有点像:

Feature: Login

Scenario: Test login at myurl.com
Given url 'myurl.com/login'
And param username = testUsername
And param password = testPassword
When method GET
[etc]

通常 Spring-boot 处理解密这些属性,我可以使用

@Value(${test.username})
protected String testUsername;

在我的步骤定义类中从application.properties文件中获取属性。

我怎么能用空手道做到这一点?

4

1 回答 1

1

对此没有直接的支持。我的建议是使用Java interop。如果将 Spring Boot 使用的代码添加到 classpath / maven 依赖项中,您甚至可以利用该代码。所以你可以得到这样的结果:

And param username = MyUtil.decode(testUserName)
And param password = MyUtil.decode(testPassword)
于 2017-08-31T14:47:57.297 回答