Browse Source

Add a failing test case to illustrate an unexpected behavior on self-referencing Antlib (more explanation on ant-dev@ in a few minutes)

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1385269 13f79535-47bb-0310-9956-ffa450edef68
master
Nicolas Lalevee 12 years ago
parent
commit
b5849676d8
1 changed files with 58 additions and 0 deletions
  1. +58
    -0
      src/tests/antunit/taskdefs/taskdef-antlib-test.xml

+ 58
- 0
src/tests/antunit/taskdefs/taskdef-antlib-test.xml View File

@@ -0,0 +1,58 @@
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 default="antunit" xmlns:au="antlib:org.apache.ant.antunit">
<import file="../antunit-base.xml" />

<target name="setUp">
<mkdir dir="${input}/org/example" />
<property name="tmpdir" location="../../../../build/ant-unit/taskdef" />
<mkdir dir="${tmpdir}" />
<echo file="${input}/org/example/antlib.xml">
<![CDATA[<antlib xmlns:e="antlib:org.example">
<macrodef name="echoo" backtrace="false">
<attribute name="message" />
<sequential>
<echo message="@{message}@{message}" />
</sequential>
</macrodef>
<macrodef name="echoooo" backtrace="false">
<attribute name="message" />
<sequential>
<e:echoo message="@{message}@{message}" />
</sequential>
</macrodef>
</antlib>]]>
</echo>
<jar destfile="${test.jar}">
<fileset dir="${input}" />
</jar>
</target>

<target name="testAntlib" depends="setUp">
<taskdef classpath="${test.jar}" uri="antlib:org.example" />
<echoooo xmlns="antlib:org.example" message="exemple" />
<au:assertLogContains text="exempleexempleexempleexemple" />
</target>

<target name="broken_testURI" depends="setUp">
<taskdef classpath="${test.jar}" uri="urn:my:exemple" resource="org/example/antlib.xml" />
<echoooo xmlns="urn:my:exemple" message="exemple" />
<au:assertLogContains text="exempleexempleexempleexemple" />
</target>

</project>

Loading…
Cancel
Save