Skip to Content.
Sympa Menu

perfsonar-dev - r1884 - trunk/perfsonar/ant/xmlls

Subject: perfsonar development work

List archive

r1884 - trunk/perfsonar/ant/xmlls


Chronological Thread 
  • From:
  • To:
  • Subject: r1884 - trunk/perfsonar/ant/xmlls
  • Date: Mon, 8 Jan 2007 05:18:11 -0500

Author: mac
Date: 2007-01-08 05:18:10 -0500 (Mon, 08 Jan 2007)
New Revision: 1884

Modified:
trunk/perfsonar/ant/xmlls/test-targets.xml
Log:
EchoRequest support for LS: new ant targets "test-echo" and "client-echo"

Modified: trunk/perfsonar/ant/xmlls/test-targets.xml
===================================================================
--- trunk/perfsonar/ant/xmlls/test-targets.xml 2007-01-05 17:05:32 UTC (rev
1883)
+++ trunk/perfsonar/ant/xmlls/test-targets.xml 2007-01-08 10:18:10 UTC (rev
1884)
@@ -105,6 +105,16 @@
</java>
</target>

+ <!-- Sends request to LS deployed in Tomcat, Keep alive -->
+ <target name="client-echo"
+ description="Sends request to Tomcat: ECHO">
+ <java classname="org.perfsonar.client.testHarness.SOAPClient"
+ classpathref="classpath" fork="true">
+ <arg value="${ls.local}"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/LS/test/EchoRequest.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/LS/test/EchoResponse.xml"/>
+ </java>
+ </target>


<!--
@@ -140,8 +150,6 @@
<target name="test-query"
depends="copy-config-files-for-test"
description="Run LS Test: LOOKUP - QUERY">
-
- <echo>BASEDIR=${classpath}</echo>

<java classname="org.perfsonar.client.testHarness.LSTestClient"
classpathref="classpath_for_test" fork="true">
<jvmarg
value="-Dcomponents.properties=${basedir}/conf/components.properties"/>
@@ -207,8 +215,22 @@
</java>
</target>

+ <!-- Echo test -->

+ <target name="test-echo"
+ depends="copy-config-files-for-test"
+ description="Run LS Test: ECHO">
+
+ <java classname="org.perfsonar.client.testHarness.LSTestClient"
classpathref="classpath_for_test" fork="true">
+ <jvmarg
value="-Dcomponents.properties=${basedir}/conf/components.properties"/>
+ <jvmarg
value="-Dservice.properties=${basedir}/conf/service.properties"/>
+ <arg value="query"/>
+ <arg value="RequestHandler"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/LS/test/EchoRequest.xml"/>
+ </java>
+ </target>

+
<!--


******************************************************************



  • r1884 - trunk/perfsonar/ant/xmlls, svnlog, 01/08/2007

Archive powered by MHonArc 2.6.16.

Top of Page