You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by lu...@apache.org on 2004/08/17 16:34:56 UTC

cvs commit: jakarta-slide/testsuite/testsuite/junit/xmltestcases/functional/copy/mix copyDepth0.xml copyDepthInfinity.xml

luetzkendorf    2004/08/17 07:34:56

  Added:       testsuite/testsuite/junit/xmltestcases/functional/copy/mix
                        copyDepth0.xml copyDepthInfinity.xml
  Log:
  added to verify the bug that copy with depth: 0 does not work properly
  
  Revision  Changes    Path
  1.1                  jakarta-slide/testsuite/testsuite/junit/xmltestcases/functional/copy/mix/copyDepth0.xml
  
  Index: copyDepth0.xml
  ===================================================================
  <?xml version="1.0" encoding="utf-8"?>
  <!DOCTYPE test SYSTEM "../../../../Tprocessor.dtd">
  <test>
    <specification>
      <abstract></abstract>
      <description> 
             1. mkcol c
             2. put file  to collection c
             3. copy c with depth 0 to d
             4. test that d ie empty
      </description>
      <expectedResult></expectedResult>
    </specification>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">MKCOL /%globalVariableServerName%/%globalVariableCollection%/c HTTP/1.1</command>
      </request>
      <response>
        <command>HTTP/1.0 201 Created</command>
      </response>
    </step>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">PUT /%globalVariableServerName%/%globalVariableCollection%/c/f.html HTTP/1.1</command>
        <body fileReference="../../../contentDirectory/html.html" />
      </request>
      <response>
        <command>HTTP/1.0 201 Created</command>
      </response>
    </step>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">COPY /%globalVariableServerName%/%globalVariableCollection%/c HTTP/1.1</command>
        <header varUsage="globalVariableCollection,globalVariableServerName">Destination: /%globalVariableServerName%/%globalVariableCollection%/d</header>
        <header>Depth: 0</header>
      </request>
      <response>
        <command>HTTP/1.0 201 Created</command>
      </response>
    </step>
    
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">GET /%globalVariableServerName%/%globalVariableCollection%/d/f.html HTTP/1.1</command>
        <header>Content-Type: text/xml</header>
      </request>
      <response>
        <command>HTTP/1.0 404 Not Found</command>
      </response>
    </step>
    
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">DELETE /%globalVariableServerName%/%globalVariableCollection%/c HTTP/1.1</command>
      </request>
      <response>
        <command>HTTP/1.0 204 No Content</command>
      </response>
    </step>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">DELETE /%globalVariableServerName%/%globalVariableCollection%/d HTTP/1.1</command>
      </request>
      <response>
        <command>HTTP/1.0 204 No Content</command>
      </response>
    </step>
  
  </test>
  
  
  
  
  1.1                  jakarta-slide/testsuite/testsuite/junit/xmltestcases/functional/copy/mix/copyDepthInfinity.xml
  
  Index: copyDepthInfinity.xml
  ===================================================================
  <?xml version="1.0" encoding="utf-8"?>
  <!DOCTYPE test SYSTEM "../../../../Tprocessor.dtd">
  <test>
    <specification>
      <abstract></abstract>
      <description> 
             1. mkcol c
             2. put file f to collection c
             3. copy c with depth infinity to d
             4. check file f exists in d too
      </description>
      <expectedResult></expectedResult>
    </specification>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">MKCOL /%globalVariableServerName%/%globalVariableCollection%/c HTTP/1.1</command>
      </request>
      <response>
        <command>HTTP/1.0 201 Created</command>
      </response>
    </step>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">PUT /%globalVariableServerName%/%globalVariableCollection%/c/f.html HTTP/1.1</command>
        <body fileReference="../../../contentDirectory/html.html" />
      </request>
      <response>
        <command>HTTP/1.0 201 Created</command>
      </response>
    </step>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">COPY /%globalVariableServerName%/%globalVariableCollection%/c HTTP/1.1</command>
        <header varUsage="globalVariableCollection,globalVariableServerName">Destination: /%globalVariableServerName%/%globalVariableCollection%/d</header>
        <header>Depth: infinity</header>
      </request>
      <response>
        <command>HTTP/1.0 201 Created</command>
      </response>
    </step>
    
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">GET /%globalVariableServerName%/%globalVariableCollection%/d/f.html HTTP/1.1</command>
        <header>Content-Type: text/xml</header>
      </request>
      <response>
        <command>HTTP/1.0 200 OK</command>
        <body fileReference="../../../contentDirectory/html.html" />
      </response>
    </step>
    
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">DELETE /%globalVariableServerName%/%globalVariableCollection%/c HTTP/1.1</command>
      </request>
      <response>
        <command>HTTP/1.0 204 No Content</command>
      </response>
    </step>
    <step>
      <request>
        <command varUsage="globalVariableCollection,globalVariableServerName">DELETE /%globalVariableServerName%/%globalVariableCollection%/d HTTP/1.1</command>
      </request>
      <response>
        <command>HTTP/1.0 204 No Content</command>
      </response>
    </step>
  
  </test>
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org