blob: 1e920d1645ad49141560c857358b264abd2ab34c [file] [log] [blame]
<?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/test"/>
<property name="url" value="${anteater.env.cocoon}/${test-dir}/showString"/>
<!--+
| Copy the sitemap from its source directory to the destination
| area, and replace the parameter value with 'abc'
+-->
<copy file="${anteater.env.src-webapp-dir}/${test-dir}/sitemap.xmap"
tofile="${anteater.env.deploy-dir}/${test-dir}/sitemap.xmap"
overwrite="yes">
<filterset>
<filter token="PARAMETER" value="abc"/>
</filterset>
</copy>
<sleep seconds="1"/>
<httpRequest href="${url}" description="Send original request">
<match>
<xpath select="html/body//p[2]" pattern=".*abc.*"/>
</match>
</httpRequest>
<!--+
| Copy the sitemap from its source directory to the destination
| area, and replace the parameter value with '123'
+-->
<copy file="${anteater.env.src-webapp-dir}/${test-dir}/sitemap.xmap"
tofile="${anteater.env.deploy-dir}/${test-dir}/sitemap.xmap"
overwrite="yes">
<filterset>
<filter token="PARAMETER" value="123"/>
</filterset>
</copy>
<sleep seconds="1"/>
<httpRequest href="${url}"
description="Send next request after sitemap was modified">
<match>
<xpath select="html/body//p[2]" pattern=".*123.*"/>
</match>
</httpRequest>
</target>
</project>