gpt4 book ai didi

java - 如何在 Ant JunitLauncher 中将系统属性作为参数

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:35:23 24 4
gpt4 key购买 nike

我正在尝试将我的测试套件从 Junit4 迁移到 Junit5。在 Junit4 上运行测试的旧目标中有一堆系统属性作为参数给出,但现在当我迁移到 Junit5 时,JunitLauncher 不支持此参数。

在 Junit4 上运行测试的旧目标:

<target name="test">
<mkdir dir="${junit_reports.dir}" />
<junit printsummary="${junit.printsummary}" haltonfailure="${junit.haltonfailure}" haltonerror="${junit.haltonerror}" showoutput="${junit.showoutput}" fork="true" forkmode="once" failureProperty="failed">
<sysproperty key="clover.initstring" value="${clover.dbdir}/${clover.dbfile}" />
<sysproperty key="rules.location" value="${classes.dir}/rules/impl" />
<classpath>
<path refid="classes.classpath" />
<path refid="test.classpath" />
<pathelement path="${basedir}/../../.." />
<pathelement path="${test.classes.dir}" />
<path location="${basedir}/../common/target/test_classes" />
<pathelement location="${3rdparty.dir}/prime-server-framework/framework-core-mock.jar" />
</classpath>
<formatter type="${unittest.output.type}" />
<batchtest fork="true" todir="${junit_reports.dir}">
<fileset dir="${test.classes.dir}" includes="${tests.patternset}" />
</batchtest>
</junit>
</target>

在 Junit5 上运行测试的新目标:

<target name = "sampletest">
<mkdir dir="${junit_reports.dir}" />
<junitlauncher>
<classpath>
<path refid="classes.classpath" />
<path refid="test.classpath" />
<pathelement path="${basedir}/../../.." />
<pathelement path="${test.classes.dir}" />
<path location="${basedir}/../common/target/test_classes" />
</classpath>
<!--<testclasses outputdir="${junit_reports.dir}">
<fileset dir="${test.classes.dir}">
<include name = "**/*Test.class"/>
</fileset>
</testclasses>-->
<test name = "impl.RulesEngineValidationTest"/>
</junitlauncher>
</target>

如何在新目标中提供系统属性?

最佳答案

Ant 1.10.4 确实支持 JUnit 5。但是,它不支持 Ant 集成 JUnit 4 所具有的所有功能。特别是,它不支持 fork junit 进程,因此不支持传递系统属性。

我发现这个问题是因为我正在尝试做同样的事情。我找到了解决方法。您可以在调用 junitlauncher 之前在代码中设置系统属性。

这段代码是我用来为文件编码设置单个系统属性的代码。您可以为您的属性(property)做类似的事情。

<script language="javascript">
<![CDATA[
var imports = new JavaImporter(java.lang.System);
imports.System.setProperty('file.encoding', 'ISO8859_1')
]]>
</script>

你的有点复杂,因为你的属性使用了其他属性。您可以从代码内部读取 Ant 变量。 (我不知道如何阅读名字中带点的,所以我在这个例子中去掉了点)

<property name="cloverdbdir" value="clover-dir-property-value" />
<property name="cloverdbfile" value="clover-db-file-property-value" />

<script language="javascript">
<![CDATA[
var imports = new JavaImporter(java.lang.System);
imports.System.setProperty('clover.initstring', cloverdbdir + '/' + cloverdbfile);
print(imports.System.getProperty('clover.initstring'));
]]>
</script>

如果您使用此技术,需要注意以下几点:

  1. Nashorn 已弃用并被移除。它肯定在 Java 11 中。但是,不能保证所有 future 版本。到那时 Ant 似乎很可能会在本地添加系统属性功能,所以我并不担心。
  2. 系统属性在构建的其余部分保持设置。这对你来说似乎不是问题。如果是,则在调用 JUnit 后需要另一个脚本 block 将其清零。

关于java - 如何在 Ant JunitLauncher 中将系统属性作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51111488/

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