gpt4 book ai didi

java - @SpringBootTest 不使用测试属性

转载 作者:行者123 更新时间:2023-12-04 11:40:50 42 4
gpt4 key购买 nike

我正在使用 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 的值。我做错了什么,如何用测试属性覆盖我的“主要”属性?

最佳答案

改变你的

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


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

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

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

使用 @TestPropertySourceclass等级。默认情况下,此批注尝试加载与声明该批注的类相关的属性文件。

例如,在您的情况下,如果我们的测试类在 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")

关于java - @SpringBootTest 不使用测试属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61611197/

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com