gpt4 book ai didi

java - 带 DB 的 Spring Boot 应用程序 - 使用 @DirtiesContext 重新创建上下文后测试类失败

转载 作者:行者123 更新时间:2023-11-30 03:36:17 25 4
gpt4 key购买 nike

我正在尝试执行 Spring Boot 应用程序的一组 JUnit4 测试类,该应用程序由多个 Web 服务组成并配置了一个数据库。

每次测试后都会清除上下文,这很方便,因此我在每个测试类上添加了 @DirtiesContext 注释,因为该注释的默认行为是在 AFTER_CLASS 处设置的。

我遇到的问题是第一个测试类运行良好,但接下来的测试类总是失败。

因此我创建了 2 个简单的 JUnit 类来尝试解决该问题。两者相等且测试方法为空,因此始终应返回成功:

import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;

import urlshortener2014.goldenbrown.Application;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
@WebAppConfiguration
@IntegrationTest("server.port=0")
@DirtiesContext
public class ApplicationTests {

@Value("${local.server.port}")
private int port = 0;

@Test
public void testAlwaysOk() throws Exception {

}
}

我已经在 eclipse 中通过“gradle test”执行了两个测试类(ApplicationTests 和 SameApplicationTests),在这两种情况下,在清理上下文后,第二个和后续测试类都会失败。

我怀疑问题与应用程序的数据库有关,即未正确重新创建,因为输出跟踪多次指向与数据库相关的错误。但我不确定这是如何或为何发生以及如何解决它。

这是一个带有“gradle test”输出的要点(正常输出、--info 输出和--debug 输出): https://gist.github.com/jgbarcos/c8b34c5c292ca1fabc1d

这是正在使用的 build.gradle(仅测试 2 个简单的类):

eclipse {
project {
name = "UrlShortener2014.goldenBrown"
}
}

dependencies {
compile project(":common")
// Provides java script libraries for static content
compile("org.webjars:bootstrap:3.0.3")
compile("org.webjars:jquery:2.0.3-1")
compile 'org.apache.httpcomponents:httpclient:4.3.6'
compile 'nl.bitwalker:UserAgentUtils:1.2.4'
compile 'org.springframework:spring-context'
compile 'org.springframework:spring-context-support'
compile 'net.sf.ehcache:ehcache:2.7.4'
compile("org.springframework.boot:spring-boot-starter-web:1.2.0.RELEASE")
compile 'org.springframework:spring-test:4.1.4.RELEASE'
testCompile 'junit:junit:4.10'
}

// Used for @DirtiesContext problem
test{
scanForTestClasses = false
// This should get only "ApplicationTests.class" and "SameApplicationTests.class"
include "**/*ApplicationTests.class"
}

这是我创建的 GitHub 分支,用于重现团队项目文件夹 (goldenBrown) 的问题: https://github.com/jgbarcos/UrlShortener2014/tree/debug_branch/goldenBrown

(注意:项目依赖于另一个文件夹“/common”中名为 common 的另一个项目,而不是“/goldenBrown”,这可能有点棘手)

希望这有助于理解问题,提前致谢。

最佳答案

你的代码没问题。故障在schema-hsqldb.sql 。只需在文件开头添加以下两行即可:

DROP TABLE CLICK IF EXISTS;
DROP TABLE SHORTURL IF EXISTS;

这确保每次重新创建数据库时,都会删除现有表。

关于java - 带 DB 的 Spring Boot 应用程序 - 使用 @DirtiesContext 重新创建上下文后测试类失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27823249/

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