Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r2325 - trunk/perfsonar/ant/rrdma

Subject: perfsonar development work

List archive

perfsonar: r2325 - trunk/perfsonar/ant/rrdma


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r2325 - trunk/perfsonar/ant/rrdma
  • Date: Thu, 12 Apr 2007 08:43:31 -0400

Author: roman
Date: 2007-04-12 08:43:31 -0400 (Thu, 12 Apr 2007)
New Revision: 2325

Modified:
trunk/perfsonar/ant/rrdma/rrdma-client-run-targets.xml
trunk/perfsonar/ant/rrdma/rrdma-test-run-targets.xml
Log:

new test target to check getting lookup information from the service




Modified: trunk/perfsonar/ant/rrdma/rrdma-client-run-targets.xml
===================================================================
--- trunk/perfsonar/ant/rrdma/rrdma-client-run-targets.xml 2007-04-12
12:30:38 UTC (rev 2324)
+++ trunk/perfsonar/ant/rrdma/rrdma-client-run-targets.xml 2007-04-12
12:43:31 UTC (rev 2325)
@@ -19,7 +19,36 @@
<property name="ma.local"
value="http://${target.server}:${target.port}/${deploy.root}/services/MeasurementArchiveService"/>


+ <!-- echo -->

+
+ <target name="run-echo">
+
+ <java classname="org.perfsonar.client.testHarness.SOAPClient"
+ classpathref="classpath" fork="true">
+ <arg value="${ma.local}"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/Echo-Req.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-1.xml"/>
+ </java>
+
+ </target>
+
+
+ <!-- lookup info -->
+
+
+ <target name="run-lookup-info">
+
+ <java classname="org.perfsonar.client.testHarness.SOAPClient"
+ classpathref="classpath" fork="true">
+ <arg value="${ma.local}"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/LookupInfo-Req.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-2.xml"/>
+ </java>
+
+ </target>
+
+
<!-- fetching -->


@@ -29,7 +58,7 @@
classpathref="classpath" fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/MetadataKey-Filter-Req-1.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response-1.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-3.xml"/>

<classpath>
<pathelement location="build/perfSONAR-generic.jar"/>
@@ -48,7 +77,7 @@
classpathref="classpath" fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/MetadataKey-Filter-Req-2.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response-2.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-4.xml"/>

<classpath>
<pathelement location="build/perfSONAR-generic.jar"/>
@@ -67,7 +96,7 @@
classpathref="classpath" fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/SetupDataRequest-FilterRRDSelect.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response-3.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-5.xml"/>

<classpath>
<pathelement location="build/perfSONAR-generic.jar"/>
@@ -84,7 +113,7 @@
classpathref="classpath" fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/SetupDataRequest-FilterRRDSelect-2.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response-4.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-6.xml"/>

<classpath>
<pathelement location="build/perfSONAR-generic.jar"/>
@@ -103,7 +132,7 @@
classpathref="classpath" fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/SetupDataRequest-FilterRRDSelect-3.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response-5.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-7.xml"/>

<classpath>
<pathelement location="build/perfSONAR-generic.jar"/>
@@ -158,7 +187,7 @@
fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/MeasurementArchiveStoreRequest-1.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-8.xml"/>
</java>

</target>
@@ -171,24 +200,11 @@
fork="true">
<arg value="${ma.local}"/>
<arg
value="${basedir}/schema/example-instances/perfSONAR/MeasurementArchiveStoreRequest-Key-1.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response.xml"/>
+ <arg
value="${basedir}/schema/example-instances/perfSONAR/response-9.xml"/>
</java>

</target>



- <target name="run-echo">
-
- <java classname="org.perfsonar.client.testHarness.SOAPClient"
- classpathref="classpath" fork="true">
- <arg value="${ma.local}"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/Echo-Req.xml"/>
- <arg
value="${basedir}/schema/example-instances/perfSONAR/response.xml"/>
- </java>
-
- </target>
-
-
-
</project>

Modified: trunk/perfsonar/ant/rrdma/rrdma-test-run-targets.xml
===================================================================
--- trunk/perfsonar/ant/rrdma/rrdma-test-run-targets.xml 2007-04-12
12:30:38 UTC (rev 2324)
+++ trunk/perfsonar/ant/rrdma/rrdma-test-run-targets.xml 2007-04-12
12:43:31 UTC (rev 2325)
@@ -24,6 +24,7 @@
<echo></echo>

<antcall target="run-echo"/>
+ <antcall target="run-lookup-info"/>

<antcall target="run-rrdma-client-1"/>
<antcall target="run-rrdma-client-2"/>



  • perfsonar: r2325 - trunk/perfsonar/ant/rrdma, svnlog, 04/12/2007

Archive powered by MHonArc 2.6.16.

Top of Page