gpt4 book ai didi

java - 如何使测试类从目标/而不是目标/测试类读取数据Java

转载 作者:行者123 更新时间:2023-11-30 07:33:46 26 4
gpt4 key购买 nike

我有一个 Java 项目,当我从命令行执行 mvn clean install 命令时,它会生成一个输出目标文件夹。

我有一个 JUnit 测试类,它从该目标文件夹获取测试数据。直接运行此测试类时(右键单击 Testclass.java > Run As > Junit Test)工作正常,因为目标文件夹已经生成。

但是,当我执行 mvn clean (这也会清除目标文件夹和我的测试数据)然后执行 mvn clean install 时,我会遇到测试失败。因为测试试图从 target/test-classes/pdf-content 读取而不是从 target/pdf-content

如何让我的 Testclass 从 target/ 而不是 target/test-classes 读取测试数据?

编辑:

<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<executions>
<execution>
<id>unpack and rename content</id>
<phase>process-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<properties>
</properties>
<source>
import com.cg.fs.common.FileUtil
import com.cg.fs.common.ZipUtil
import com.cg.fs.common.StringUtil

com.services.fs.common.logging.LoggerFactory.setLogger("com.services.fs.common.logging.SystemOutLogger")
com.services.fs.common.logging.FSLogger.setMinimal(true)
buildHelper = new BuildHelper()

output = new File("target")
pdfContent = new File("target/pdf-content")

// unzip tt intermediate thing
List ttZip = FileUtil.discoverFiles(output, true, "production-content-.*\\.zip")
assert ttZip.size() == 1, "Did not find expected number of content zip " + ttZip.size()
println "Unzipping " + ttZip.get(0)
ZipUtil.unzipToDisk(ttZip.get(0))

// move it to pdf content
List content = FileUtil.discoverDirectories(output, "production-content-.*-intermediate", true)
assert tContent.size() == 1, "Did not find expected number of contents " + tContent.size()
println "Moving " + tContent.get(0) + " to " + pdfContent
success = FileUtil.copy(tContent.get(0), pdfContent)
assert success, "Could not copy content"

// move pdf content
List fpsContent = FileUtil.discoverDirectories(output, “ls-production-content.*", true)
assert fpsContent.size() == 1, "Did not find expected number of ls contents " + fpsContent.size()
println "Moving " + fpsContent.get(0) + " to target/pdf-content"
success = FileUtil.copy(fpsContent.get(0), pdfContent)
assert success, "Could not copy pdf content"

// rename to not be unsupported
List unsupportedDirs = FileUtil.discoverDirectories(pdfContent, "_unsupported_.*", true)
println "Renaming _unsupported content: " + unsupportedDirs
for (File file : unsupportedDirs) {
file.renameTo(new File(file.getParentFile(), file.getName().replace("_unsupported_", "")))
}
</source>
</configuration>

最佳答案

你有相反的问题:你不想要 maven-surefire-plugin读取 target而不是target/test-classes 。您真正想做的是将文件添加为项目的测试资源。

对于静态资源,这位于 src/test/resources 下。 maven-resources-plugin会将这些资源复制到target/test-classes默认情况下。

对于生成的资源,您可以使用 build-helper-maven-plugin:add-test-resource 目标是将生成的内容添加为测试资源。如果它们是在target/pdf-content下生成的,你可以拥有:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-test-resources</phase>
<goals>
<goal>add-test-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${project.build.directory}/pdf-content</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>

这将添加文件夹 target/pdf-content 下的所有文件作为类路径根目录中的测试资源。如果需要在指定的包中,可以添加 <targetPath>到配置,它们将在指定的 targetPath 下可用。请注意,该插件绑定(bind)到 generate-test-resources阶段,因此您需要确保这些资源的生成发生在之前(例如,通过在 POM 中使用阶段 generate-test-resources 声明之前)。

关于java - 如何使测试类从目标/而不是目标/测试类读取数据Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35702756/

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