2002/ws/desc/test-suite build.xml,1.23,1.24

Update of /sources/public/2002/ws/desc/test-suite
In directory hutz:/tmp/cvs-serv24483/test-suite

Modified Files:
	build.xml 
Log Message:
added zip of entire test-suite for easy downloading

Index: build.xml
===================================================================
RCS file: /sources/public/2002/ws/desc/test-suite/build.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -C 2 -d -r1.23 -r1.24
*** build.xml	23 Oct 2006 14:59:06 -0000	1.23
--- build.xml	11 Nov 2006 20:02:59 -0000	1.24
***************
*** 13,16 ****
--- 13,19 ----
  	Refer to ant-tips-steve-loughran.txt for details
  
+ 	2006-11-11 Arthur Ryman ryman@ca.ibm.com
+ 	- Added target to zip test cases for easy downloading.
+ 
  	2005-11-11 Arthur Ryman ryman@ca.ibm.com
  	- Added test coverage summary reports.
***************
*** 31,35 ****
  <project name="WSDL 2.0 Test Suite" default="main" basedir=".">
  
! 	<target name="main" depends="schemavalidate-all" description="Schema validates all documents." />
  
  	<target name="schemavalidate-all" depends="schemavalidate-wsdl, schemavalidate-xml, schemavalidate-xsd" description="Schema validates all documents." />
--- 34,43 ----
  <project name="WSDL 2.0 Test Suite" default="main" basedir=".">
  
! 	<target name="main" depends="schemavalidate-all, zips" description="Schema validates all documents." />
! 
! 	<target name="zips" depends="" description="Creates zip files for test cases for easy downloading.">
! 		<mkdir dir="zips" />
! 		<zip destfile="zips/test-suite.zip" basedir="." includes="documents/**/*.* exchanges/**/*.* messages/**/*.* xmlcatalog/**/*.*" />
! 	</target>
  
  	<target name="schemavalidate-all" depends="schemavalidate-wsdl, schemavalidate-xml, schemavalidate-xsd" description="Schema validates all documents." />
***************
*** 42,45 ****
--- 50,54 ----
  		<schemavalidate>
  			<schema namespace="http://www.w3.org/2006/02/wsdl/TestMetadata" file="${wsdl.dir}/TestMetadata.xsd" />
+ 			<schema namespace="http://www.w3.org/2006/06/wsdl/ValidationReport" file="${wsdl.dir}/ValidationReport.xsd" />
  			<schema namespace="http://www.w3.org/2006/01/wsdl-instance" file="${wsdl.dir}/wsdl20-instance.xsd" />
  			<schema namespace="urn:oasis:names:tc:entity:xmlns:xml:catalog" file="${catalog.dir}/catalog.xsd" />
***************
*** 80,84 ****
  		</schemavalidate>
  	</target>
! 	
  	<target name="schemavalidate-wsdlcm" description="Schema validates all test case *.wsdlcm files">
  		<schemavalidate>
--- 89,93 ----
  		</schemavalidate>
  	</target>
! 
  	<target name="schemavalidate-wsdlcm" description="Schema validates all test case *.wsdlcm files">
  		<schemavalidate>
***************
*** 96,103 ****
  		</schemavalidate>
  	</target>
! 	
!     <target name="update-testmetadata-identifier" description="Updates the test metadata identier.">
  		<replace dir="." includes="**/TestMetadata.xml" token="http://www.w3.org/2006/02/wsdl/test-suite/" value="http://dev.w3.org/cvsweb/2002/ws/desc/test-suite/" />
!     </target>
  
  	<target name="update-wsdl-ns" description="Updates the WSDL namespaces.">
--- 105,112 ----
  		</schemavalidate>
  	</target>
! 
! 	<target name="update-testmetadata-identifier" description="Updates the test metadata identier.">
  		<replace dir="." includes="**/TestMetadata.xml" token="http://www.w3.org/2006/02/wsdl/test-suite/" value="http://dev.w3.org/cvsweb/2002/ws/desc/test-suite/" />
! 	</target>
  
  	<target name="update-wsdl-ns" description="Updates the WSDL namespaces.">
***************
*** 150,162 ****
  
  	<target name="test-suite-assertions-coverage" depends="extract-assertions" description="Generates a coverage report for assertions">
! 		<xslt style="violate-assertions.xsl" in="test-suite.xml" out="violate-assertions.xml" />		
! 		<xslt style="assertions-report.xsl" in="violate-assertions.xml" out="assertions-report.html" />		
!         <delete file='violate-assertions.xml'/>
  	</target>
  
  	<target name='test-suite-convert-messages' description='Convert WS-I Log messages into test suite format'>
! 	  <xslt style='messages/ws-i.xsl' basedir='messages' destdir='messages'>
! 	    <mapper type="glob" from="*.wsimsg" to="*.descmsg"/>
! 	  </xslt>
  	</target>
  </project>
\ No newline at end of file
--- 159,171 ----
  
  	<target name="test-suite-assertions-coverage" depends="extract-assertions" description="Generates a coverage report for assertions">
! 		<xslt style="violate-assertions.xsl" in="test-suite.xml" out="violate-assertions.xml" />
! 		<xslt style="assertions-report.xsl" in="violate-assertions.xml" out="assertions-report.html" />
! 		<delete file='violate-assertions.xml' />
  	</target>
  
  	<target name='test-suite-convert-messages' description='Convert WS-I Log messages into test suite format'>
! 		<xslt style='messages/ws-i.xsl' basedir='messages' destdir='messages'>
! 			<mapper type="glob" from="*.wsimsg" to="*.descmsg" />
! 		</xslt>
  	</target>
  </project>
\ No newline at end of file

Received on Saturday, 11 November 2006 20:03:07 UTC