blob: ee75a8a657ec166753e57a3c5d0807454aefa59b [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE project [
<!--
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!ENTITY commonSetup SYSTEM "file:./../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "file:./../../../../config/common.xml">
<!ENTITY testproperties SYSTEM "file:./build.properties">
]>
<project name="SSLconverterApp" default="usage" basedir=".">
&commonSetup;
&commonBuild;
&testproperties;
<target name="all" depends="build,deploy,run,undeploy"/>
<!-- run-test target added to have setup/unsetup commonly -->
<target name="run-test" depends="build,deploy,run,undeploy"/>
<target name="clean" depends="init-common">
<antcall target="clean-common"/>
</target>
<target name="compile" depends="clean">
<antcall target="compile-common">
<param name="src" value="ejb"/>
</antcall>
<antcall target="compile-common">
<param name="src" value="client"/>
</antcall>
</target>
<target name="build" depends="compile">
<antcall target="build-ear-common"/>
</target>
<target name="deploy" depends="init-common">
<antcall target="deploy-common"/>
</target>
<target name="run" depends="set-appserver-version">
<antcall target="run-win"/>
<antcall target="run-unix"/>
</target>
<target name="run-win" depends="set-appserver-version" if="isWindows">
<antcall target="runclient-local-win"/>
<antcall target="runclient-local-ee-win"/>
</target>
<target name="runclient-local-win" depends="init-common" unless="isEE">
<echo message="Test is running on Platform Edition!"/>
<exec executable="${APPCLIENT}">
<env key="VMARGS" value=" -Djavax.net.ssl.trustStore=&quot;${admin.domain.dir}/${admin.domain}/config/cacerts.jks&quot; -Djavax.net.ssl.trustStorePassword=${master.password}" />
<arg value="-client" />
<arg value="${assemble.dir}/${appname}AppClient.jar"/>
<!-- dummy user added as appclient throwing login window -->
<arg value="-textauth"/>
<arg value="-user"/>
<arg value="temp"/>
<arg value="-password"/>
<arg value="temp"/>
<arg line="-xml &quot;${admin.domain.dir}/${admin.domain}/config/glassfish-acc.xml&quot;"/>
</exec>
<!-- confirming report generation... -->
<antcall target="checkReporting-common">
<param name="test.name" value="${appname}"/>
<param name="test.description" value="${test.description}"/>
<param name="test.count" value="1"/>
</antcall>
</target>
<target name="runclient-local-ee-win" depends="init-common" if="isEE">
<echo message="Test is running on Standard/Enterprise Edition!"/>
<antcall target="get-certdb-to-jks">
</antcall>
<exec executable="${APPCLIENT}">
<env key="VMARGS" value=" -Djavax.net.ssl.trustStore=&quot;${admin.domain.dir}/${admin.domain}/config/certdb_cacerts.jks&quot;" />
<arg value="-client" />
<arg value="${assemble.dir}/${appname}AppClient.jar"/>
<!-- dummy user added as appclient throwing login window -->
<arg value="-textauth"/>
<arg value="-user"/>
<arg value="temp"/>
<arg value="-password"/>
<arg value="temp"/>
<arg line="-xml ${admin.domain.dir}/${admin.domain}/config/glassfish-acc.xml"/>
</exec>
<!-- confirming report generation... -->
<antcall target="checkReporting-common">
<param name="test.name" value="${appname}"/>
<param name="test.description" value="${test.description}"/>
<param name="test.count" value="1"/>
</antcall>
</target>
<target name="run-unix" depends="set-appserver-version" if="isUnix">
<antcall target="runclient-local-unix"/>
<antcall target="runclient-local-ee-unix"/>
</target>
<target name="runclient-local-unix" depends="init-common" unless="isEE">
<echo message="Test is running on Platform Edition!"/>
<exec executable="${APPCLIENT}">
<env key="VMARGS" value=" -Djavax.net.ssl.trustStore=${admin.domain.dir}/${admin.domain}/config/cacerts.jks -Djavax.net.ssl.trustStorePassword=${master.password}" />
<arg value="-client" />
<arg value="${assemble.dir}/${appname}AppClient.jar"/>
<!-- dummy user added as appclient throwing login window -->
<arg value="-textauth"/>
<arg value="-user"/>
<arg value="temp"/>
<arg value="-password"/>
<arg value="temp"/>
<arg line="-xml ${admin.domain.dir}/${admin.domain}/config/glassfish-acc.xml"/>
</exec>
<!-- confirming report generation... -->
<antcall target="checkReporting-common">
<param name="test.name" value="${appname}"/>
<param name="test.description" value="${test.description}"/>
<param name="test.count" value="1"/>
</antcall>
</target>
<target name="runclient-local-ee-unix" depends="init-common" if="isEE">
<echo message="Test is running on Standard/Enterprise Edition!"/>
<antcall target="get-certdb-to-jks">
</antcall>
<exec executable="${APPCLIENT}">
<env key="VMARGS" value=" -Djavax.net.ssl.trustStore=${admin.domain.dir}/${admin.domain}/config/certdb_cacerts.jks" />
<arg value="-client" />
<arg value="${assemble.dir}/${appname}AppClient.jar"/>
<!-- dummy user added as appclient throwing login window -->
<arg value="-textauth"/>
<arg value="-user"/>
<arg value="temp"/>
<arg value="-password"/>
<arg value="temp"/>
<arg line="-xml ${admin.domain.dir}/${admin.domain}/config/glassfish-acc.xml"/>
</exec>
<!-- confirming report generation... -->
<antcall target="checkReporting-common">
<param name="test.name" value="${appname}"/>
<param name="test.description" value="${test.description}"/>
<param name="test.count" value="1"/>
</antcall>
</target>
<target name="undeploy" depends="init-common">
<antcall target="undeploy-common"/>
</target>
<!-- =============================================== -->
<!-- Target to run the standalone client without ACC -->
<!-- =============================================== -->
<target name="run-standalone-client" depends="init-common">
<property name="jndi.name" value="SSLconverter"/>
<property name="provider.url" value="iiop://${admin.host}:${orb.port}"/>
<property name="ctxfactory"
value="com.sun.enterprise.naming.SerialInitContextFactory"/>
<echo message="provider.url used is ${provider.url}"/>
<java classname="${test.client}"
classpath="${s1astest.classpath}:${assemble.dir}/${appname}AppClient.jar"
failonerror="true" fork="true">
<jvmarg value="-Dorg.omg.CORBA.ORBInitialHost=${admin.host}"/>
<jvmarg value="-Dorg.omg.CORBA.ORBInitialPort=${orb.port}"/>
<jvmarg value="-Djavax.net.ssl.keyStore=${admin.domain.dir}/${admin.domain}/config/keystore.jks"/>
<jvmarg value="-Djavax.net.ssl.trustStore=${admin.domain.dir}/${admin.domain}/config/cacerts.jks"/>
<jvmarg value="-Djavax.net.ssl.trustStorePassword=${master.password}"/>
<jvmarg value="-Dcom.sun.CORBA.connection.ORBSocketFactoryClass=com.sun.enterprise.iiop.IIOPSSLSocketFactory"/>
<arg value="${provider.url}"/>
<arg value="${ctxfactory}"/>
<arg value="${jndi.name}"/>
</java>
</target>
<target name="usage">
<antcall target="usage-common"/>
</target>
<!-- NSS related for SE/EE -->
<target name="get-certdb-to-jks" depends="init-common">
<exec executable="${env.S1AS_HOME}/lib/certutil" output="${admin.domain.dir}/${admin.domain}/config/certdb.rfc">
<env key="LD_LIBRARY_PATH" path="${env.S1AS_HOME}/lib"/>
<arg line="-L -n ${cert.nickname}"/>
<arg line="-d ${admin.domain.dir}/${admin.domain}/config -a"/>
</exec>
<antcall target="import-cert-jks">
<param name="cert.alias" value="${cert.nickname}"/>
<param name="keystore.file" value="${admin.domain.dir}/${admin.domain}/config/certdb_cacerts.jks"/>
<param name="cert.file" value="${admin.domain.dir}/${admin.domain}/config/certdb.rfc"/>
</antcall>
</target>
<target name="import-cert-jks" depends="init-common">
<echo message="Installing certificate in ${keystore.file} ..."/>
<exec executable="${env.JAVA_HOME}/bin/keytool">
<arg value="-import"/>
<arg value="-noprompt"/>
<arg value="-trustcacerts"/>
<arg value="-keystore"/>
<arg value="${keystore.file}"/>
<arg value="-storepass"/>
<arg value="${keystore.password}"/>
<arg value="-alias"/>
<arg value="${cert.alias}"/>
<arg value="-file"/>
<arg value="${cert.file}"/>
</exec>
</target>
<!-- get the appserver edition -->
<target name="set-appserver-version" depends="init-common">
<!--
<exec executable="${ASADMIN}" output="as_version.txt">
<arg line="version"/>
<arg line="${as.props}"/>
</exec>
<loadfile property="Version" srcFile="as_version.txt" failonerror="false"/>
<echo message="Got the version=${Version}"/>
-->
<!-- use the following workaround to find the appserver edition until I figureout the above parse method -->
<available file="${admin.domain.dir}/${admin.domain}/config/cert8.db" type="file" property="isEE"/>
</target>
</project>