summaryrefslogtreecommitdiff
path: root/src/etc
diff options
context:
space:
mode:
authorMatt Benson <mbenson@apache.org>2022-02-08 18:28:05 -0600
committerMatt Benson <mbenson@apache.org>2022-02-09 10:09:28 -0600
commit6fdb34e7351e5fb3090717600e682b82e2553835 (patch)
treecf226e665461c89d3e04060fd1794499163e4d54 /src/etc
parenta66dafa7d5ee0ac2717dfbeed1cb47e589938eed (diff)
downloadant-6fdb34e7351e5fb3090717600e682b82e2553835.tar.gz
fully migrate pathconvert tests to antunit
Diffstat (limited to 'src/etc')
-rw-r--r--src/etc/testcases/taskdefs/pathconvert.xml60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/etc/testcases/taskdefs/pathconvert.xml b/src/etc/testcases/taskdefs/pathconvert.xml
deleted file mode 100644
index 3ca3102e0..000000000
--- a/src/etc/testcases/taskdefs/pathconvert.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<?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
-
- https://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="pathconvert">
-
- <import file="../buildfiletest-base.xml"/>
-
- <path id="testpath">
- <pathelement path="${ant.file}" />
- </path>
-
- <target name="testmap">
- <pathconvert property="result" dirsep="#">
- <path refid="testpath" />
- <map from="${basedir}" to="test" />
- </pathconvert>
- </target>
-
- <target name="testmapper">
- <pathconvert property="result" dirsep="#">
- <path refid="testpath" />
- <mapper type="glob" from="${basedir}*" to="test*" />
- </pathconvert>
- </target>
-
- <target name="testnotargetos">
- <pathconvert property="result" refid="testpath" />
- </target>
-
- <target name="test-nonmatching-mapper" description="test for bug fix bz-62076">
- <mkdir dir="${output}/mapper-source-dir"/>
- <!-- create 2 files, one of which will be matched/included by the globmapper
- later in this target -->
- <touch file="${output}/mapper-source-dir/file1.txt"/>
- <touch file="${output}/mapper-source-dir/file2.log"/>
-
- <pathconvert property="pc">
- <mappedresources>
- <fileset dir="${output}/mapper-source-dir"/>
- <!-- we intentionally exclude one of the files -->
- <globmapper from="*.log" to="*.txt"/>
- </mappedresources>
- </pathconvert>
- </target>
-
-</project>