5

我正在使用 jasypt 在 Spring Boot 应用程序中加密 application.properties。我的目标是更新我的集成测试,以便将 jasypt 与测试加密器密码一起使用。我的问题是我的测试没有覆盖测试属性。

依赖项:

        <dependency>
            <groupId>com.github.ulisesbocchio</groupId>
            <artifactId>jasypt-spring-boot-starter</artifactId>
            <version>3.0.2</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>de.flapdoodle.embed</groupId>
            <artifactId>de.flapdoodle.embed.mongo</artifactId>
            <scope>test</scope>
        </dependency>

我有两个application.properties,一个在src/main/resources/application.properties,另一个在src/test/application-test.properties。在测试属性中,我设置 jasypt.encryptor.password=test 并使用测试密码用 jasypt ENC 值覆盖 spring.data.mongodb.uri。我的测试如下所示:

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit.jupiter.SpringExtension;


@ExtendWith(SpringExtension.class)
@SpringBootTest
@ActiveProfiles("test")
@TestPropertySource("classpath:application-test.properties")
public class SpringBootAppTest{


    @Test
    public void shouldLoadContext(){
        //nothing to test
    }
}

如您所见,我使用 JUnit5 进行 Spring Boot 测试。我尝试了多种使用自定义测试属性编写此测试的方法,但我得到了同样的例外:

Unable to decrypt: ENC(JsHRQaQN0cuHgrq/0o ...)

它的值是来自 src/main/resources/application.properties 的 spring.data.mongodb.uri 属性值,而不是来自 application-test.properties 的值。我做错了什么,如何用测试属性覆盖我的“主要”属性?

4

2 回答 2

1

改变你的

@TestPropertySource("classpath:application-test.properties")

@TestPropertySource(locations="classpath:application-test.properties")

@RunWith(SpringRunner.class)你的测试课上

如果这在这里不起作用是主要方法

@TestPropertySource水平使用class。默认情况下,此注解会尝试加载与声明该注​​解的类相关的属性文件。

例如,在您的情况下,如果我们的测试类位于 com.kunal.testpropertysource 包中,那么我们将需要类路径中的文件 com/kunal/testpropertysource/DefaultTest.properties。

让我们将它添加到我们的资源文件夹中:

# DefaultTest.properties
kunal.testpropertysource.one=default-value

此外,我们可以更改默认配置文件位置,或添加具有更高优先级的额外属性:

@TestPropertySource(locations = "/other-location.properties",
  properties = "kunal.testpropertysource.one=other-property-value")
于 2020-05-05T11:00:33.507 回答
0

有几种方法可以覆盖原始properties文件以进行测试,但是在任何一种方法中,您都必须将其放在src/test/resources目录下

覆盖属性文件

现在,我们将通过将属性文件放在测试资源中来覆盖属性。此文件必须与默认文件位于相同的类路径中。

此外,它应该包含默认文件中指定的所有属性键。因此,我们将 application.properties 文件添加到 src/test/resources 中:

弹簧型材

在本节中,我们将学习如何使用 Spring Profiles 来处理我们的问题。与前一种方法不同,此方法合并了默认文件和配置文件中的属性。

首先,让我们在 src/test/resources 中创建一个 application-test.properties 文件:

于 2020-05-05T11:38:33.203 回答