ovidiu 2002/10/01 02:01:14
Added: src/test/anteater sitemapReload.xml
Log:
Added. Tests the reloading of a modified sitemap.
Revision Changes Path
1.1 xml-cocoon2/src/test/anteater/sitemapReload.xml
Index: sitemapReload.xml
===================================================================
<?xml version="1.0" encoding="utf-8"?>
<project name="sitemapReload" default="sitemapReload">
<group id="default">
<property name="usetidy" value="true"/>
</group>
<!-- Check the reloading of the sitemap -->
<target name="sitemapReload">
<property name="test-dir" value="/samples/flow/examples/test"/>
<property name="url" value="${cocoon}${test-dir}/showString"/>
<!-- Copy the sitemap from its source directory to the destination
area, and replace the parameter value with 'abc' -->
<copy toDir="${deploy-dir}${test-dir}"
file="${src-webapp-dir}${test-dir}/sitemap.xmap">
<filterset>
<filter token="@parameter@" value="abc"/>
</filterset>
</copy>
<httpRequest href="${url}"
description="Send original request">
<match>
<xpath select="html/body//p" value="abc"/>
</match>
</httpRequest>
<!-- Copy the sitemap from its source directory to the destination
area, and replace the parameter value with '123' -->
<copy toDir="${deploy-dir}${test-dir}"
file="${src-webapp-dir}${test-dir}/sitemap.xmap">
<filterset>
<filter token="@parameter@" value="123"/>
</filterset>
</copy>
<httpRequest debug="10" href="${url}"
description="Send next request after sitemap was modified">
<match>
<xpath select="html/body//p" value="123"/>
</match>
</httpRequest>
</target>
</project>
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]