<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
The contents of this file are subject to the terms of either the GNU
General Public License Version 2 only ("GPL") or the Common Development
and Distribution License("CDDL") (collectively, the "License"). You
may not use this file except in compliance with the License. You can
obtain a copy of the License at
or packager/legal/LICENSE.txt. See the License for the specific
language governing permissions and limitations under the License.
When distributing the software, include this License Header Notice in each
file and include the License file at packager/legal/LICENSE.txt.
GPL Classpath Exception:
Oracle designates this particular file as subject to the "Classpath"
exception as provided by Oracle in the GPL Version 2 section of the License
file that accompanied this code.
Modifications:
If applicable, add the following below the License Header, with the fields
enclosed by brackets [] replaced by your own identifying information:
"Portions Copyright [year] [name of copyright owner]"
Contributor(s):
If you wish your version of this file to be governed by only the CDDL or
only the GPL Version 2, indicate your decision by adding "[Contributor]
elects to include this software in this distribution under the [CDDL or GPL
Version 2] license." If you don't indicate a single choice of license, a
recipient has the option to distribute your version of this file under
either the CDDL, the GPL Version 2 or to extend the choice of license to
its licensees as provided above. However, if you add GPL Version 2 code
and therefore, elected the GPL Version 2 license, then the option applies
only if the new code is made subject to such option by the copyright
holder.
-->
<!--
To use this file, the Maven Ant tasks and Ant Contrib must be added to the local Ant installation
-->
<project name="GlassFish Admin Console Dev Test Hudson Helper" default="test" basedir="."
xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<property file="test.properties"/>
<property environment="env"/>
<property name="BROWSER" value="firefox"/>
<property name="GUI_ADMIN_PORT" value="4848"/>
<property name="DOMAIN" value="domain1"/>
<property name="RELEASEAFTER" value="true"/>
<property name="SLOWDOWN" value="true"/>
<property name="ant.contrib.url"
value="http://mirrors.ibiblio.org/pub/mirrors/maven2/ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar"/>
<property name="maven.ant.tasks.url"
value="http://repo2.maven.org/maven2/org/apache/maven/maven-ant-tasks/2.1.1/maven-ant-tasks-2.1.1.jar"/>
<property name="glassfish.dist.url"
<target name="download">
<delete dir="${install.dir}"/>
<mkdir dir="${install.dir}"/>
</target>
<target name="setup">
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="antlib:org.apache.maven.artifact.ant"
classpath="maven-ant-tasks.jar"/>
<if>
<os family="windows"/>
<then>
</then>
<else>
<chmod perm="u+x" file="${executable}"/>
</else>
</if>
</target>
<target name="start-server" depends="shutdown-server">
<echo message="***** Starting GlassFish"/>
<exec executable="${executable}">
<arg value="start-domain"/>
<arg value="${DOMAIN}"/>
</exec>
</target>
<target name="test" depends="download,setup">
<trycatch>
<try>
<antcall target="start-server"/>
<artifact:mvn pom="pom.xml" fork="true" mavenHome="${env.MAVEN_HOME}" failonerror="false" resultproperty="test.result">
<arg value="-Dhttp.proxyHost=${http.proxyHost}"/>
<arg value="-Dhttp.proxyPort=${http.proxyPort}"/>
<arg value="-Dadmin.port=${GUI_ADMIN_PORT}"/>
<arg value="-Dbrowser=${BROWSER}"/>
<arg value="-DreleaseAfter=${RELEASEAFTER}"/>
<arg value="-DslowDown=${SLOWDOWN}"/>
<arg value="test"/>
</artifact:mvn>
</try>
<finally>
<antcall target="shutdown-server"/>
</finally>
</trycatch>
<fail message="The test run failed. Please see the console output for details.">
<condition>
<not>
</not>
</condition>
</fail>
</target>
<target name="shutdown-server">
<echo message="***** Stopping GlassFish"/>
<exec executable="${executable}">
<arg value="stop-domain"/>
<arg value="${DOMAIN}"/>
</exec>
</target>
</project>