1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
<project name="testng" default="all" basedir=".">
<property file="build.properties"/>
<property name="report.dir" value="${test.output.dir}"/>
<property name="junit.report.dir" value="${report.dir}/test-tmp"/>
<property name="testng.report.dir" value="${report.dir}"/>
<target name="all" depends="prepare,compile,run,reports,done"/>
<!-- ==================================================================== -->
<!-- Compile -->
<!-- ==================================================================== -->
<path id="compile.cp">
<pathelement location="${testng.jar}" />
<fileset dir="${lib.dir}" includes="${guice2.jar}" />
<fileset dir="${lib.dir}" includes="${junit.jar}" />
<fileset dir="${lib.dir}" includes="aopalliance-1.0.jar" />
</path>
<target name="env:info">
<echo>
BASEDIR =${basedir}
TEST.DIR =${test.dir}
TEST.BUILD.DIR =${test.build.dir}
REPORT.DIR =${report.dir}
JUNIT.REPORT.DIR =${junit.report.dir}
TESTNG.REPORT.DIR=${testng.report.dir}
</echo>
</target>
<target name="compile" depends="prepare">
<echo message=" -- Compiling tests --"/>
<property name="build.compiler" value="modern"/>
<javac debug="true"
source="1.5"
classpathref="compile.cp"
srcdir="${test.dir}"
destdir="${test.build.dir}"
/>
</target>
<target name="prepare">
<tstamp/>
<mkdir dir="${test.build.dir}"/>
<mkdir dir="${junit.report.dir}"/>
<mkdir dir="${testng.report.dir}"/>
<taskdef name="testng"
classname="org.testng.TestNGAntTask"
classpath="${build.dir}"/>
</target>
<!--
<property name="cobertura.dir" value="../cobertura-1.9.4.1" />
<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura.jar" />
<include name="lib/**/*.jar" />
</fileset>
</path>
-->
<!-- ==================================================================== -->
<!-- Run -->
<!-- ==================================================================== -->
<path id="run.cp">
<!--
<path location="target/instrumented-classes" />
<path refid="cobertura.classpath" />
-->
<path refid="compile.cp"/>
<pathelement location="${test.build.dir}"/>
</path>
<target name="run" description="Run tests" depends="compile,copy-resources">
<echo message=" -- Running tests --"/>
<echo message=" -- ${testng.jar} --" />
<testng classpathref="run.cp"
outputdir="${testng.report.dir}">
<xmlfileset dir="${test.resources.dir}" includes="testng.xml"/>
<jvmarg value="-Dtest.resources.dir=${test.resources.dir}" />
<jvmarg value="-Dsun.io.serialization.extendedDebugInfo=true" />
</testng>
</target>
<target name="copy-resources" description="Copies resources.">
<copy verbose="false"
file="${src.resources.dir}/testngtasks"
todir="${build.dir}" />
<copy todir="${build.dir}">
<fileset dir="${src.resources.dir}">
<exclude name="**/.*" />
<exclude name="**/CVS/*" />
</fileset>
</copy>
</target>
<target name="run:single" description="Run 1 property file named with the ant property test" depends="compile">
<echo message=" -- testng-tests-run1 --"/>
<testng outputdir="${testng.report.dir}"
classpathref="run.cp"
useDefaultListeners="true"
outputDir="${testng.report.dir}">
<xmlfileset dir="${test.resources.dir}" includes="testng-single.xml"/>
</testng>
<echo>Report created in open ${testng.report.dir}/index.html</echo>
</target>
<target name="run:antprop" description="Run a test to see if ant system propertes are passed correctly" depends="compile">
<echo message=" -- testng-tests-run-antprop --"/>
<property name="syspropset1" value="value 1"/>
<property name="syspropset2" value="value 2"/>
<propertyset id="propset1">
<propertyref name="syspropset1"/>
<propertyref name="syspropset2"/>
</propertyset>
<testng outputdir="${testng.report.dir}"
classpathref="run.cp">
<xmlfileset dir="${test.resources.dir}" includes="testng-single3.xml"/>
<propertyset refid="propset1"/>
<sysproperty key="sysprop1" value="value 3"/>
</testng>
</target>
<!-- ==================================================================== -->
<!-- Run specific configuration -->
<!-- ==================================================================== -->
<target name="run:conf"
if="testng.conf"
depends="clean:reports,compile"
description="Run specified tests">
<echo message=" -- testng-tests-run --"/>
<echo message="using: ${testng.conf}.xml"/>
<testng classpathref="run.cp"
outputDir="${testng.report.dir}">
<xmlfileset dir="${test.resources.dir}" includes="${testng.conf}.xml"/>
</testng>
<antcall target="clean.tmp"/>
</target>
<!-- ==================================================================== -->
<!-- Reports -->
<!-- ==================================================================== -->
<target name="reports">
<junitreport todir="${junit.report.dir}">
<fileset dir="${testng.report.dir}">
<include name="*.xml"/>
<exclude name="testng-failed.xml"/>
<exclude name="testng-results.xml" />
</fileset>
<report format="noframes" todir="${junit.report.dir}"/>
</junitreport>
</target>
<target name="clean.tmp">
<delete dir="${test.output.dir}"/>
</target>
<target name="clean:reports">
<delete dir="${report.dir}"/>
<delete dir="${junit.report.dir}"/>
</target>
<target name="clean" depends="clean.tmp,clean:reports">
<echo message=" -- test clean --"/>
<delete dir="${test.build.dir}"/>
</target>
<target name="done">
<echo>Reports can be found in: open ${testng.report.dir}/index.html</echo>
</target>
</project>
|