我有一个奇怪的任务。给出了以下(剥离的)代码(但我无法更改/增强它):

public class CustomTestClass {

    /**
     * Logger.
     */
    private Logger logger = Logger.getLogger("com.custom.testing");

    @Test
    public void simpleTestCaseOne(){
        logger.warning("simpleTestCaseOne: Not yet implemented!");
        assertTrue(true);
    }

    @Test
    public void simpleTestCaseTwo(){
        logger.warning("simpleTestCaseTwo: Not yet implemented!");
        assertTrue(true);
    }
}



现在,我使用以下蚂蚁代码运行测试:

<target name="Junit_Test"
        depends="compile.test" description="Custom TestCase Runner">
        <junit printsummary="yes" haltonfailure="no" fork="yes">
            <jvmarg value="-Djava.util.logging.config.file=res/logging.properties" />
            <classpath>
                <path refid="tests.class.path" />
                <fileset dir="${src.tests}">
                    <include name="**/*Test*.java"/>
                </fileset>
            </classpath>
            <test name="com.custom.testing.CustomTestClass"
                haltonfailure="no"
                todir="${reports.tests}/xml"
                methods="simpleTestCaseOne" >
                   <formatter type="xml" />
            </test>
        </junit>
    </target>


logging.properties文件仅定义一个ConsoleHandler,FileHandler和一个TestClass记录器的输出文件。
当我运行ant脚本时,它实际上可以正常工作,但是我需要重新运行测试几次,并每次都更改FileHandler的输出文件。

是否可以在不更改代码的情况下为指定的Logger添加/更改FileHandler?

最佳答案

我不是特别喜欢这个,但是...

您可以在属性java.util.logging.FileHandler.pattern的值中创建一个带有可替换令牌的日志记录配置文件,例如

java.util.logging.FileHandler.pattern=%h/logs/@[email protected]


然后,您可以将Ant copy taskfilterset一起使用以替换令牌,例如

<copy file="res/logging_tmp.properties" toFile="res/logging.properties" force="true">
  <filterset>
    <filter token="LOGFILE" value="your_value"/>
  </filterset>
</copy>


您将在每次执行单元测试之前进行复制,每次都指定一个不同的值。

10-08 07:01