blob: 9db7b5bfd17d4ba89ec8c9cd3090bf07124e3941 [file] [log] [blame]
<project name="Build specific targets and properties" default="test">
<!-- ===================================================================== -->
<!-- Steps to do after the build is done. -->
<!-- ===================================================================== -->
<target name="test">
<antcall target="runTest" />
</target>
<!-- ===================================================================== -->
<!-- Steps to do to test the build results -->
<!-- ===================================================================== -->
<target name="runTest">
<dirname file="${ant.file}" property="test.component.dir" />
<ant antfile="${wtp.builder.home}/scripts/build/label.xml" />
<property file="${buildDirectory}/label.properties" />
<property file="${wtp.builder.home}/build.properties" />
<mkdir dir="${testRoot}" />
<mkdir dir="${testRoot}/results" />
<mkdir dir="${testRoot}/results/consolelogs" />
<copy todir="${testRoot}" overwrite="true">
<fileset dir="${test.component.dir}/testScripts">
</fileset>
</copy>
<echo message="${baseos} ${basews} ${basearch} " />
<ant antfile="${test.component.dir}/testdependency.xml" target="get">
<property name="dependency.properties" value="${buildDirectory}/maps/releng/maps/dependencies.properties" />
<property name="base.install.dir" value="${testRoot}" />
</ant>
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-${buildLabel}.zip" overwrite="true" />
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-wst-Automated-Tests-${buildLabel}.zip" overwrite="true" />
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-jst-Automated-Tests-${buildLabel}.zip" overwrite="true" />
<!--
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-jsf-${buildLabel}.zip" overwrite="true" />
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-jsf-Automated-Tests-${buildLabel}.zip" overwrite="true" />
-->
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-jpa-${buildLabel}.zip" overwrite="true" />
<unzip dest="${testRoot}" src="${buildDirectory}/${buildLabel}/wtp-jpa-Automated-Tests-${buildLabel}.zip" overwrite="true" />
<antcall target="runTestEclipse">
<param name="testTarget" value="all" />
</antcall>
<antcall target="postRunTestEclipse">
<param name="testTarget" value="all" />
</antcall>
</target>
<target name="runTestEclipse">
<java taskname="test-wtp-${testTarget}" classpath="${testRoot}/eclipse/startup.jar" fork="true" classname="org.eclipse.core.launcher.Main" failonerror="true" timeout="7200000" output="${testRoot}/results/consolelogs/wtptestlog.txt" dir="${testRoot}">
<jvmarg value="-Dosgi.ws=${basews}" />
<jvmarg value="-Dosgi.os=${baseos}" />
<jvmarg value="-Dosgi.arch=${basearch}" />
<jvmarg value="-Dws=${basews}" />
<jvmarg value="-Dos=${baseos}" />
<jvmarg value="-Darch=${basearch}" />
<jvmarg value="-Dnoclean=true" />
<jvmarg value="-DbuildBranch=${buildBranch}" />
<jvmarg value="-DbuildType=${buildType}" />
<jvmarg value="-DbuildId=${buildId}" />
<jvmarg value="-DbuildLabel=${buildLabel}" />
<arg value="-propertyfile" />
<arg value="test.properties" />
<arg value="-application" />
<arg value="org.eclipse.ant.core.antRunner" />
<arg value="-file" />
<arg value="test.xml" />
<arg value="-logger" />
<arg value="org.apache.tools.ant.DefaultLogger" />
<arg value="${testTarget}" />
<sysproperty key="build.home" value="${build.home}" />
<sysproperty key="buildDirectory" value="${buildDirectory}" />
<sysproperty key="baseLocation" value="${baseLocation}" />
<sysproperty key="testDir" value="${testRoot}" />
<sysproperty key="perf.buildId" value="${buildType}${date}-${time}" />
<sysproperty key="eclipseBuilderDirectory" value="${pde.builder.path}" />
</java>
</target>
<target name="postRunTestEclipse">
<copy todir="${buildDirectory}/${buildLabel}/testResults" overwrite="true">
<fileset dir="${testRoot}/results">
<include name="**/*.*" />
</fileset>
</copy>
</target>
</project>