- From: Philippe Le Hegaret via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 19 Jul 2007 00:43:41 +0000
- To: public-ws-addressing-eds@w3.org
Update of /sources/public/2004/ws/addressing/testsuitewsdl/testcases
In directory hutz:/tmp/cvs-serv25002/testcases
Modified Files:
Overview.html testcases.xml testcases.xsl
Log Message:
Changes from Rama
Index: Overview.html
===================================================================
RCS file: /sources/public/2004/ws/addressing/testsuitewsdl/testcases/Overview.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -C 2 -d -r1.6 -r1.7
*** Overview.html 17 Jul 2007 17:24:41 -0000 1.6
--- Overview.html 19 Jul 2007 00:43:39 -0000 1.7
***************
*** 1,2331 ****
! <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
! <html xmlns:s="http://www.w3.org/2002/ws/addr/testsuite/testcases/">
! <head>
! <META http-equiv="Content-Type" content="text/html; charset=utf-8">
! <title>Web Services Addressing 1.0 - Test Cases</title>
! <link href="../testsuite.css" rel="stylesheet" type="text/css">
! </head>
! <body>
! <h1>Web Services Addressing 1.0 - Test Cases</h1>
! <p>
[...4759 lines suppressed...]
! "World Wide Web Consortium">W3C</acronym></a> <sup>®</sup> (
! <a href="http://www.csail.mit.edu/"><acronym title=
! "Massachusetts Institute of Technology">MIT</acronym></a> ,
! <a href="http://www.ercim.org/"><acronym title=
! "European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>
! ,<a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved.
! W3C <a href=
! "/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
! <a href=
! "/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>,
! <a rel="Copyright" href=
! "/Consortium/Legal/copyright-documents">document use</a> and
! <a rel="Copyright" href=
! "/Consortium/Legal/copyright-software">software licensing</a> rules
! apply. Your interactions with this site are in accordance with our
! <a href="/Consortium/Legal/privacy-statement#Public">public</a>
! and<a href="/Consortium/Legal/privacy-statement#Members">Member</a>
! privacy statements.</p>
! </body>
! </html>
Index: testcases.xsl
===================================================================
RCS file: /sources/public/2004/ws/addressing/testsuitewsdl/testcases/testcases.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C 2 -d -r1.2 -r1.3
*** testcases.xsl 16 Jul 2007 21:11:11 -0000 1.2
--- testcases.xsl 19 Jul 2007 00:43:39 -0000 1.3
***************
*** 1,106 ****
! <?xml version="1.0"?>
! <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
! xmlns:s="http://www.w3.org/2002/ws/addr/testsuite/testcases/"
! version="1.0">
! <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
! indent="yes"/>
! <xsl:template match="/">
! <html>
! <head>
! <title>Web Services Addressing 1.0 - Test Cases</title>
! <link href="../testsuite.css" rel="stylesheet" type="text/css"/>
! </head>
! <body>
! <h1>Web Services Addressing 1.0 - Test Cases</h1>
!
! <p><xsl:value-of select="s:testcases/s:description"/></p>
!
! <h2>WSDL 1.1/SOAP 1.1</h2>
! <ul>
! <xsl:for-each select="s:testcases/s:testcase">
! <xsl:if test="starts-with(current()/@xml:id, 'test11')">
! <li><a href="#{@xml:id}"><xsl:value-of select="@xml:id"/></a>
! - <xsl:value-of select="s:title"/></li>
! </xsl:if>
! </xsl:for-each>
! </ul>
!
! <xsl:for-each select="s:testcases/s:note">
! <p><i><xsl:value-of select="."/></i></p>
! </xsl:for-each>
!
! <xsl:for-each select="s:testcases/s:testcase">
! <div class="testcase cr-{@cr}">
! <a name="{@xml:id}"/>
! <a href="#{@xml:id}">
! <xsl:value-of select="@xml:id"/>
! </a> - <b><xsl:value-of select="s:title"/></b>
! (<b><xsl:value-of select="@cr"/></b>)
! <div class="features">
! <p>
! Features:
! <xsl:for-each select="s:features/s:feature">
! <b><a href="../features/#{.}"><xsl:value-of select="."/></a></b>
! <xsl:text> </xsl:text>
! </xsl:for-each>
! </p>
! </div>
! <div class="description">
! <p class="test-description">
! <xsl:value-of select="s:description"/>
! </p>
! <p>
! Port: <xsl:value-of select="s:port"/>
! </p>
! <p class="message-exchange">
! <a href="../../testsuite/exchanges/Overview.html#{s:message-exchange/@type}"><xsl:value-of select="s:message-exchange/@type"/></a>
! </p>
!
! <ol>
! <xsl:for-each select="s:message-exchange/s:message">
! <li>
! <xsl:value-of select="@from"/>
!
! <xsl:choose>
! <xsl:when test="@name">
! sends a <a href="../documents/{@document}"><xsl:value-of select="@name"/></a>
! </xsl:when>
! <xsl:otherwise>
! sends an [empty] message
! </xsl:otherwise>
! </xsl:choose>
!
! to <xsl:value-of select="@to"/>.
!
! <ul>
! <xsl:for-each select="s:assert">
! <li>
! <span class="xpath"><xsl:value-of select="@test"/></span>
! <xsl:if test="@optional = '1'">
! <span class="optional"> (<b>OPTIONAL</b>)</span>
! </xsl:if>
! </li>
! </xsl:for-each>
! </ul>
! </li>
! </xsl:for-each>
! </ol>
! <p>
! <i>
! <xsl:value-of select="s:note"/>
! </i>
! </p>
! </div>
! </div>
! </xsl:for-each>
! <hr/>
! <p>
! Generated from <a href="testcases.xml">testcases.xml</a> using
! <a href="testcases.xsl">testcases.xsl</a>.<br/>
! $Date$
! </p>
! <xsl:copy-of select="document('../address.xml')/suffix/*"/>
! </body>
! </html>
! </xsl:template>
! </xsl:stylesheet>
--- 1,106 ----
! <?xml version="1.0"?>
! <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
! xmlns:s="http://www.w3.org/2002/ws/addr/testsuite/testcases/"
! version="1.0">
! <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
! indent="yes"/>
! <xsl:template match="/">
! <html>
! <head>
! <title>Web Services Addressing 1.0 - Test Cases</title>
! <link href="../testsuite.css" rel="stylesheet" type="text/css"/>
! </head>
! <body>
! <h1>Web Services Addressing 1.0 - Test Cases</h1>
!
! <p><xsl:value-of select="s:testcases/s:description"/></p>
!
! <h2>WSDL 1.1/SOAP 1.1</h2>
! <ul>
! <xsl:for-each select="s:testcases/s:testcase">
! <xsl:if test="starts-with(current()/@xml:id, 'test11')">
! <li><a href="#{@xml:id}"><xsl:value-of select="@xml:id"/></a>
! - <xsl:value-of select="s:title"/></li>
! </xsl:if>
! </xsl:for-each>
! </ul>
!
! <xsl:for-each select="s:testcases/s:note">
! <p><i><xsl:value-of select="."/></i></p>
! </xsl:for-each>
!
! <xsl:for-each select="s:testcases/s:testcase">
! <div class="testcase cr-{@cr}">
! <a name="{@xml:id}"/>
! <a href="#{@xml:id}">
! <xsl:value-of select="@xml:id"/>
! </a> - <b><a href="{@origin}"><xsl:value-of select="s:title"/></a></b>
! (<b><xsl:value-of select="@cr"/></b>)
! <div class="features">
! <p>
! Features:
! <xsl:for-each select="s:features/s:feature">
! <b><a href="../features/#{.}"><xsl:value-of select="."/></a></b>
! <xsl:text> </xsl:text>
! </xsl:for-each>
! </p>
! </div>
! <div class="description">
! <p class="test-description">
! <xsl:value-of select="s:description"/>
! </p>
! <p>
! Port: <xsl:value-of select="s:port"/>
! </p>
! <p class="message-exchange">
! <a href="../../testsuite/exchanges/Overview.html#{s:message-exchange/@type}"><xsl:value-of select="s:message-exchange/@type"/></a>
! </p>
!
! <ol>
! <xsl:for-each select="s:message-exchange/s:message">
! <li>
! <xsl:value-of select="@from"/>
!
! <xsl:choose>
! <xsl:when test="@name">
! sends a <a href="../documents/{@document}"><xsl:value-of select="@name"/></a>
! </xsl:when>
! <xsl:otherwise>
! sends an [empty] message
! </xsl:otherwise>
! </xsl:choose>
!
! to <xsl:value-of select="@to"/>.
!
! <ul>
! <xsl:for-each select="s:assert">
! <li>
! <span class="xpath"><xsl:value-of select="@test"/></span>
! <xsl:if test="@optional = '1'">
! <span class="optional"> (<b>OPTIONAL</b>)</span>
! </xsl:if>
! </li>
! </xsl:for-each>
! </ul>
! </li>
! </xsl:for-each>
! </ol>
! <p>
! <i>
! <xsl:value-of select="s:note"/>
! </i>
! </p>
! </div>
! </div>
! </xsl:for-each>
! <hr/>
! <p>
! Generated from <a href="testcases.xml">testcases.xml</a> using
! <a href="testcases.xsl">testcases.xsl</a>.<br/>
! $Date$
! </p>
! <xsl:copy-of select="document('../address.xml')/suffix/*"/>
! </body>
! </html>
! </xsl:template>
! </xsl:stylesheet>
Index: testcases.xml
===================================================================
RCS file: /sources/public/2004/ws/addressing/testsuitewsdl/testcases/testcases.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C 2 -d -r1.4 -r1.5
*** testcases.xml 17 Jul 2007 17:14:40 -0000 1.4
--- testcases.xml 19 Jul 2007 00:43:39 -0000 1.5
***************
*** 1,1177 ****
! <?xml version="1.0"?>
! <!--
! Web Services Addressing WSDL Binding Test Cases
! $Date$
! -->
! <!--
!
! - Add XPaths for inputs and output processing
! - CR status: REQUIRED, OPTIONAL, INFORMATIONAL
! - CR documents covered: CORE, SOAP, WSDL
[...2612 lines suppressed...]
! <![CDATA[This scenario covers the case of an EPR containing wsa:Metadata contains a wsam:ServiceName element with an EndpointName attribute and the related WSDL is referenced by the wsdi:wsdlLocation attribute.The name of the binding from the WSDL document referenced using
! the wsam:ServiceName and EndpointName is extracted.
!
! <wsa:EndpointReference xmlns:wsa="http://www.w3.org/2005/08/addressing"
! xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata">
! <wsa:Address>
! http://www.w3.org/2005/08/addressing/anonymous
! </wsa:Address>
! <wsa:Metadata xmlns:test="http://www.example.org/wsamTest/"
! xmlns:wsdli="http://www.w3.org/ns/wsdl-instance"
! wsdli:wsdlLocation="http://www.example.org/wsamTest/ http://people.apache.org/~davidillsley/wsamTest/wsamTest.wsdl">
! <wsam:InterfaceName>test:wsamTest2</wsam:InterfaceName>
! <wsam:ServiceName EndpointName="wsamTest2SOAP">test:wsamTest2SOAP</wsam:ServiceName>
! </wsa:Metadata>
! </wsa:EndpointReference>
!
! This scenario shows that the processor extracts the wsam:Metadata from conforming EPRs.]]>
! </description>
! </testcase>
! </testcases>
Received on Thursday, 19 July 2007 00:43:44 UTC