cziegeler 2004/03/10 01:52:40
Modified: src/test/anteater all-tests.xml calc.xml
flowscriptReload.xml sitemapReload.xml
internalRequest.xml
src/test/org/apache/cocoon/transformation traxtest-input.xml
traxtest-style.xsl TraxTransformerTestCase.xtest
traxtest-result.xml
src/test/org/apache/cocoon/generation filetest-input1.xml
FileGeneratorTestCase.source.xml
FileGeneratorTestCase.xtest filetest-result1.xml
src/test/org/apache/cocoon/acting
ResourceExistsActionTestCase.xtest
RequestParamActionTestCase.xtest
Added: src/test/anteater reader-mime-type.xml
bug26571SendPageRedirectTo.xml
bug26186InternalRequestMemoryLeak.xml
Log:
Update license
Revision Changes Path
1.5 +29 -3 cocoon-2.2/src/test/anteater/all-tests.xml
Index: all-tests.xml
===================================================================
RCS file: /home/cvs/cocoon-2.2/src/test/anteater/all-tests.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- all-tests.xml 11 Sep 2003 22:55:56 -0000 1.4
+++ all-tests.xml 10 Mar 2004 09:52:39 -0000 1.5
@@ -1,4 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<!--
@@ -19,6 +34,10 @@
The newly added test file will be picked up and executed
auto-magically.
+ For block-specific tests, create anteater scripts in a subdirectory
+ called "test/anteater", for example src/blocks/batik/test/anteater
+ for the batik block.
+
-->
<project name="all-tests" default="all">
@@ -27,10 +46,17 @@
<typedef resource="META-INF/Anteater.types"/>
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
+ <property name="cocoon.base.dir" value="../../../.."/>
+
<target name="init">
- <property name="cocoon" value="http://${host}:${port}/${base}"/>
- <property name="src-webapp-dir" value="../../../../src/webapp"/>
- <property name="deploy-dir" value="../../../../build/webapp"/>
+ <!-- use build.properties as in the main build file, for example to
selectively disable tests -->
+ <property file="${user.home}/cocoon.build.properties"/>
+ <property file="${cocoon.base.dir}/local.build.properties"/>
+ <property file="${cocoon.base.dir}/build.properties"/>
+
+ <property name="anteater.env.cocoon"
value="http://${host}:${port}/${base}"/>
+ <property name="anteater.env.src-webapp-dir"
value="../../../../src/webapp"/>
+ <property name="anteater.env.deploy-dir"
value="../../../../build/webapp"/>
</target>
<target name="all" depends="init">
1.6 +16 -1 cocoon-2.2/src/test/anteater/calc.xml
Index: calc.xml
===================================================================
RCS file: /home/cvs/cocoon-2.2/src/test/anteater/calc.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- calc.xml 31 Aug 2003 16:32:34 -0000 1.5
+++ calc.xml 10 Mar 2004 09:52:39 -0000 1.6
@@ -1,4 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<project name="calc-test" default="calc">
@@ -10,7 +25,7 @@
the calculator example, and goes back in the processing several
times. -->
<target name="calc">
- <property name="calc" value="${cocoon}/samples/flow/calc/"/>
+ <property name="calc" value="${anteater.env.cocoon}/samples/flow/calc/"/>
<httpRequest href="${calc}/"
description="Test the 'calc' JavaScript implementation">
1.5 +26 -5 cocoon-2.2/src/test/anteater/flowscriptReload.xml
Index: flowscriptReload.xml
===================================================================
RCS file: /home/cvs/cocoon-2.2/src/test/anteater/flowscriptReload.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- flowscriptReload.xml 31 Aug 2003 16:32:34 -0000 1.4
+++ flowscriptReload.xml 10 Mar 2004 09:52:39 -0000 1.5
@@ -1,4 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<project name="flowscriptReload" default="flowscriptReload">
@@ -9,21 +24,24 @@
<!-- Check the reloading of the sitemap -->
<target name="flowscriptReload">
<property name="test-dir" value="samples/flow/test"/>
- <property name="url" value="${cocoon}/${test-dir}/showString"/>
+ <property name="url"
value="${anteater.env.cocoon}/${test-dir}/showString"/>
<!--+
| Copy the flowscript from its source directory to the destination
| area, and replace the parameter value with 'abc'
+-->
- <copy file="${src-webapp-dir}/${test-dir}/sendpage.js"
- tofile="${deploy-dir}/${test-dir}/sendpage.js"
+ <copy file="${anteater.env.src-webapp-dir}/${test-dir}/sendpage.js"
+ tofile="${anteater.env.deploy-dir}/${test-dir}/sendpage.js"
overwrite="yes">
<filterset>
<filter token="REPLACEME" value="replaceme-abc"/>
</filterset>
</copy>
+ <!-- make sure change is detected -->
+ <sleep seconds="1"/>
+
<httpRequest href="${url}" description="Send original request">
<match>
<xpath select="html/body/p[1]" pattern=".*replaceme-abc.*"/>
@@ -35,13 +53,16 @@
| area, and replace the parameter value with '123'
+-->
- <copy file="${src-webapp-dir}/${test-dir}/sendpage.js"
- tofile="${deploy-dir}/${test-dir}/sendpage.js"
+ <copy file="${anteater.env.src-webapp-dir}/${test-dir}/sendpage.js"
+ tofile="${anteater.env.deploy-dir}/${test-dir}/sendpage.js"
overwrite="yes">
<filterset>
<filter token="REPLACEME" value="replaceme-123"/>
</filterset>
</copy>
+
+ <!-- make sure change is detected -->
+ <sleep seconds="1"/>
<httpRequest href="${url}" description="Send next request after
flowscript was modified">
<match>
1.4 +20 -5 cocoon-2.2/src/test/anteater/sitemapReload.xml
Index: sitemapReload.xml
===================================================================
RCS file: /home/cvs/cocoon-2.2/src/test/anteater/sitemapReload.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sitemapReload.xml 31 Aug 2003 16:32:34 -0000 1.3
+++ sitemapReload.xml 10 Mar 2004 09:52:39 -0000 1.4
@@ -1,4 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<project name="sitemapReload" default="sitemapReload">
@@ -9,15 +24,15 @@
<!-- Check the reloading of the sitemap -->
<target name="sitemapReload">
<property name="test-dir" value="samples/flow/test"/>
- <property name="url" value="${cocoon}/${test-dir}/showString"/>
+ <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="${src-webapp-dir}/${test-dir}/sitemap.xmap"
- tofile="${deploy-dir}/${test-dir}/sitemap.xmap"
+ <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"/>
@@ -37,8 +52,8 @@
| area, and replace the parameter value with '123'
+-->
- <copy file="${src-webapp-dir}/${test-dir}/sitemap.xmap"
- tofile="${deploy-dir}/${test-dir}/sitemap.xmap"
+ <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"/>
1.2 +17 -4 cocoon-2.2/src/test/anteater/internalRequest.xml
Index: internalRequest.xml
===================================================================
RCS file: /home/cvs/cocoon-2.2/src/test/anteater/internalRequest.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- internalRequest.xml 9 Oct 2003 18:07:34 -0000 1.1
+++ internalRequest.xml 10 Mar 2004 09:52:39 -0000 1.2
@@ -1,4 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<project name="internal-request-test" default="internal-request-test">
@@ -6,11 +21,9 @@
<property name="usetidy" value="false"/>
</group>
- <!-- Simulate the behavior of a user that opens a browser, starts
- the calculator example, and goes back in the processing several
- times. -->
+ <!-- test samples/test/simpletest -->
<target name="internal-request-test">
- <property name="internal-request-test"
value="${cocoon}/samples/test/simpletest"/>
+ <property name="internal-request-test"
value="${anteater.env.cocoon}/samples/test/internal-request/simpletest"/>
<httpRequest href="${internal-request-test}"
description="Test the internal request handling">
1.1 cocoon-2.2/src/test/anteater/reader-mime-type.xml
Index: reader-mime-type.xml
===================================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="reader-mime-type" default="reader-mime-type">
<group id="default">
<property name="usetidy" value="false"/>
</group>
<!-- Check mime-types (bugzilla 25212) -->
<target name="reader-mime-type">
<property name="baseUrl"
value="${anteater.env.cocoon}/samples/test/reader-mime-type"/>
<httpRequest href="${baseUrl}/test10.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
<httpRequest href="${baseUrl}/test20.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
<httpRequest href="${baseUrl}/test30.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
<httpRequest href="${baseUrl}/test40.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
<httpRequest href="${baseUrl}/test50.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
<httpRequest href="${baseUrl}/test60.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
<httpRequest href="${baseUrl}/test70.html" description="Check
content-type">
<match>
<header name="Content-type" value="text/html"/>
</match>
</httpRequest>
</target>
</project>
1.1
cocoon-2.2/src/test/anteater/bug26571SendPageRedirectTo.xml
Index: bug26571SendPageRedirectTo.xml
===================================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="sendpage-redirect-test" default="sendpage-redirect-test">
<group id="default">
<property name="usetidy" value="false"/>
</group>
<target name="sendpage-redirect-test">
<property name="sendpage-redirect-test"
value="${anteater.env.cocoon}/samples/test/sendpage-redirect/test"/>
<httpRequest href="${sendpage-redirect-test}-good">
<match>
<responseCode value="302"/>
</match>
</httpRequest>
<httpRequest href="${sendpage-redirect-test}-bad">
<match>
<responseCode value="302"/>
</match>
</httpRequest>
</target>
</project>
1.1
cocoon-2.2/src/test/anteater/bug26186InternalRequestMemoryLeak.xml
Index: bug26186InternalRequestMemoryLeak.xml
===================================================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="Cocoon Stress Test" default="conditional">
<taskdef resource="META-INF/Anteater.tasks"/>
<typedef resource="META-INF/Anteater.types"/>
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
<property name="url"
value="${anteater.env.cocoon}/samples/xsp/java/resolver"/>
<target name="conditional" depends="main,disabled"/>
<target name="disabled"
unless="anteater.test.bug26186InternalRequestMemoryLeak.enabled">
<echo>bug26186InternalRequestMemoryLeak disabled by configuration</echo>
</target>
<target name="main"
if="anteater.test.bug26186InternalRequestMemoryLeak.enabled">
<echo>base=${anteater.target.base.path}</echo>
<echo>disabled?
${anteater.test.bug26186InternalRequestMemoryLeak.disabled}</echo>
<foreach list="0,1,2,3,4,5" target="multiplier1" param="m1"/>
</target>
<target name="multiplier1">
<foreach list="0,1,2,3,4,5,6,7,8,9" target="multiplier2" param="m2"/>
</target>
<target name="multiplier2">
<foreach list="0,1,2,3,4,5,6,7,8,9" target="multiplier3" param="m3"/>
</target>
<target name="multiplier3">
<foreach list="0,1,2,3,4,5,6,7,8,9" target="multiplier4" param="m4"/>
</target>
<target name="multiplier4">
<foreach list="0,1,2,3,4,5,6,7,8,9" target="content" param="m5"/>
</target>
<target name="content">
<echo>request no. ${m1}${m2}${m3}${m4}${m5}</echo>
<httpRequest href="${url}">
<match>
<responseCode value="200"/>
<regexp>An XSP Page using a source</regexp>
</match>
</httpRequest>
</target>
</project>
1.2 +16 -0
cocoon-2.2/src/test/org/apache/cocoon/transformation/traxtest-input.xml
Index: traxtest-input.xml
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/transformation/traxtest-input.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- traxtest-input.xml 19 Apr 2003 16:10:32 -0000 1.1
+++ traxtest-input.xml 10 Mar 2004 09:52:40 -0000 1.2
@@ -1,3 +1,19 @@
+<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<hello-world>
<title>Title of the example</title>
<some-text>This is a litte test file!</some-text>
1.2 +16 -1
cocoon-2.2/src/test/org/apache/cocoon/transformation/traxtest-style.xsl
Index: traxtest-style.xsl
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/transformation/traxtest-style.xsl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- traxtest-style.xsl 19 Apr 2003 16:10:32 -0000 1.1
+++ traxtest-style.xsl 10 Mar 2004 09:52:40 -0000 1.2
@@ -1,4 +1,19 @@
-<?xml version="1.0"?>
+<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
1.5 +15 -0
cocoon-2.2/src/test/org/apache/cocoon/transformation/TraxTransformerTestCase.xtest
Index: TraxTransformerTestCase.xtest
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/transformation/TraxTransformerTestCase.xtest,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TraxTransformerTestCase.xtest 22 Oct 2003 18:18:37 -0000 1.4
+++ TraxTransformerTestCase.xtest 10 Mar 2004 09:52:40 -0000 1.5
@@ -1,4 +1,19 @@
<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<testcase>
<annotation>
Test Cases: TraxTransformer
1.2 +16 -1
cocoon-2.2/src/test/org/apache/cocoon/transformation/traxtest-result.xml
Index: traxtest-result.xml
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/transformation/traxtest-result.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- traxtest-result.xml 19 Apr 2003 16:10:32 -0000 1.1
+++ traxtest-result.xml 10 Mar 2004 09:52:40 -0000 1.2
@@ -1,4 +1,19 @@
-<?xml version="1.0"?>
+<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<page>
<tab title="Overview" href="welcome"/>
<row>
1.2 +15 -1
cocoon-2.2/src/test/org/apache/cocoon/generation/filetest-input1.xml
Index: filetest-input1.xml
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/generation/filetest-input1.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- filetest-input1.xml 29 Apr 2003 10:45:03 -0000 1.1
+++ filetest-input1.xml 10 Mar 2004 09:52:40 -0000 1.2
@@ -1,5 +1,19 @@
-<?xml version="1.0"?>
+<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<!--
Skin configuration file. This file contains details of your project, which
will
be used to configure the chosen Forrest skin.
1.2 +16 -0
cocoon-2.2/src/test/org/apache/cocoon/generation/FileGeneratorTestCase.source.xml
Index: FileGeneratorTestCase.source.xml
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/generation/FileGeneratorTestCase.source.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- FileGeneratorTestCase.source.xml 9 Mar 2003 00:10:40 -0000 1.1
+++ FileGeneratorTestCase.source.xml 10 Mar 2004 09:52:40 -0000 1.2
@@ -1,3 +1,19 @@
+<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<a>
<b>bla bla bla</b>
<c xmlns="http://xml.apache.org/cocoon/schema/bla/1.0">
1.8 +14 -0
cocoon-2.2/src/test/org/apache/cocoon/generation/FileGeneratorTestCase.xtest
Index: FileGeneratorTestCase.xtest
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/generation/FileGeneratorTestCase.xtest,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- FileGeneratorTestCase.xtest 22 Oct 2003 18:18:37 -0000 1.7
+++ FileGeneratorTestCase.xtest 10 Mar 2004 09:52:40 -0000 1.8
@@ -1,5 +1,19 @@
<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<testcase>
<annotation>
Test Cases: FileGenerator
1.2 +16 -1
cocoon-2.2/src/test/org/apache/cocoon/generation/filetest-result1.xml
Index: filetest-result1.xml
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/generation/filetest-result1.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- filetest-result1.xml 29 Apr 2003 10:45:03 -0000 1.1
+++ filetest-result1.xml 10 Mar 2004 09:52:40 -0000 1.2
@@ -1,4 +1,19 @@
-<?xml version="1.0"?>
+<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<skinconfig>
<!-- Do we want to disable the Google search box? -->
<disable-search>false</disable-search>
1.4 +15 -0
cocoon-2.2/src/test/org/apache/cocoon/acting/ResourceExistsActionTestCase.xtest
Index: ResourceExistsActionTestCase.xtest
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/acting/ResourceExistsActionTestCase.xtest,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ResourceExistsActionTestCase.xtest 22 Oct 2003 18:18:37 -0000
1.3
+++ ResourceExistsActionTestCase.xtest 10 Mar 2004 09:52:40 -0000
1.4
@@ -1,4 +1,19 @@
<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<testcase>
<annotation>
Test Cases: ResourceExistsAction
1.4 +15 -0
cocoon-2.2/src/test/org/apache/cocoon/acting/RequestParamActionTestCase.xtest
Index: RequestParamActionTestCase.xtest
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/test/org/apache/cocoon/acting/RequestParamActionTestCase.xtest,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- RequestParamActionTestCase.xtest 22 Oct 2003 18:18:37 -0000 1.3
+++ RequestParamActionTestCase.xtest 10 Mar 2004 09:52:40 -0000 1.4
@@ -1,4 +1,19 @@
<?xml version="1.0" ?>
+<!--
+ Copyright 1999-2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
<testcase>
<annotation>
Test Cases: RequestParamAction