blob: 6b921d082506aaa16d1cab59bc116a3e0be8e405 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="junitreport-test" basedir="." default="reports">
<property name="jrdir" location="junitreport"/>
<property name="outputdir" location="${jrdir}/test"/>
<!-- reports1 take care of transformation of 2 test result files and
produce reports according to the default format (frames)
needed for testNoFileJunitNoFrames -->
<target name="reports1">
<mkdir dir="${outputdir}"/>
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testEmptyFile">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="ZEROBYTES-*.xml"/>
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testIncompleteFile">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="INCOMPLETE-*.xml"/>
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testWrongElement">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="WRONGELEMENT-*.xml"/>
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testNamespace">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="NAMESPACE-*.xml"/>
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="clean">
<delete dir="${outputdir}"/>
</target>
<target name="testStackTraceLineBreaks">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testSpecialSignsInSrcPath">
<mkdir dir="${outputdir}/html"/>
<mkdir dir="${outputdir}/test# $$%§&amp;-!cases"/>
<copy todir="${outputdir}/test# $$%§&amp;-!cases">
<fileset dir="junitreport" includes="TEST-*.xml"/>
</copy>
<junitreport todir="${outputdir}/html">
<fileset dir="${outputdir}/test# $$%§&amp;-!cases">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testSpecialSignsInHtmlPath">
<mkdir dir="${outputdir}/html# $$%§&amp;-!report"/>
<mkdir dir="${outputdir}/test"/>
<copy todir="${outputdir}/test">
<fileset dir="junitreport" includes="TEST-*.xml"/>
</copy>
<junitreport todir="${outputdir}/html# $$%§&amp;-!report">
<fileset dir="${outputdir}/test">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html# $$%§&amp;-!report"/>
</junitreport>
</target>
<target name="testWithStyleFromClasspath">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"/>
</junitreport>
</target>
<target name="testNoFrames">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html" format="noframes"/>
</junitreport>
</target>
<target name="testWithStyleFromDir">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"
styledir="junitreport"
format="frames"/>
</junitreport>
</target>
<!-- bug report 40022 -->
<target name="testWithStyleFromDirAndXslImport">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"
styledir="junitreport-with-include"
format="frames"/>
</junitreport>
</target>
<target name="testWithParams">
<mkdir dir="${outputdir}/html"/>
<junitreport todir="${outputdir}">
<fileset dir="${jrdir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${outputdir}/html"
styledir="junitreport"
format="frames">
<param name="key1" expression="value1"/>
<param name="key2" expression="value2"/>
</report>
</junitreport>
<concat>
<fileset file="${outputdir}/html/index.html"/>
</concat>
</target>
</project>