|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?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="testEmptyDirs">
- <mkdir dir="${input}/foo"/>
- <mkdir dir="${output}/bar"/>
- <zip destfile="${output}/test.zip">
- <fileset dir="${input}"/>
- </zip>
- <unzip src="${output}/test.zip" dest="${output}/bar"/>
- <au:assertFileExists file="${output}/bar/foo"/>
- </target>
-
- <target name="testMappedResources">
- <mkdir dir="${input}"/>
- <mkdir dir="${output}/out"/>
- <echo file="${input}/foo.txt">Hello, world!</echo>
- <zip destfile="${output}/test.zip">
- <mappedresources>
- <fileset dir="${input}"/>
- <globmapper from="foo.*" to="bar.*"/>
- </mappedresources>
- </zip>
- <unzip src="${output}/test.zip" dest="${output}/out"/>
- <au:assertFileDoesntExist file="${output}/out/foo.txt"/>
- <au:assertFileExists file="${output}/out/bar.txt"/>
- <au:assertFilesMatch expected="${input}/foo.txt"
- actual="${output}/out/bar.txt"/>
- </target>
-
- <target name="testMappedClasspath">
- <mkdir dir="${input}"/>
- <mkdir dir="${output}/out"/>
- <zip destfile="${output}/test.zip">
- <mappedresources>
- <path path="${java.class.path}"/>
- <chainedmapper>
- <flattenmapper/>
- <globmapper from="*" to="WEB-INF/lib/*"/>
- </chainedmapper>
- </mappedresources>
- </zip>
- <unzip src="${output}/test.zip" dest="${output}/out"/>
- <au:assertFileExists file="${output}/out/WEB-INF/lib/ant.jar"/>
- </target>
-
- <target name="testIssue45902"
- description="https://issues.apache.org/bugzilla/show_bug.cgi?id=45902">
- <mkdir dir="${input}/src/p"/>
- <mkdir dir="${output}"/>
- <touch file="${input}/src/p/X.java"/>
- <touch file="${input}/src/p/x.properties"/>
- <mkdir dir="${input}/build"/>
- <copy todir="${input}/build">
- <fileset dir="${input}/src" includes="**/*.java"/>
- </copy>
-
- <jar jarfile="${output}/jar.jar">
- <fileset dir="${input}/build"/>
- <fileset dir="${input}/src" excludes="**/*.java"/>
- </jar>
- <copy file="${output}/jar.jar" tofile="${output}/reference.jar"/>
-
- <sleep seconds="1"/>
- <touch file="${input}/src/p/y.properties"/>
- <sleep seconds="1"/>
- <delete file="${input}/src/p/y.properties"/>
- <jar jarfile="${output}/jar.jar">
- <fileset dir="${input}/build"/>
- <fileset dir="${input}/src" excludes="**/*.java"/>
- </jar>
- <au:assertDestIsUptodate src="${output}/jar.jar"
- dest="${output}/reference.jar"/>
-
- <sleep seconds="1"/>
- <jar jarfile="${output}/jar.jar">
- <fileset dir="${input}/build"/>
- <fileset dir="${input}/src" excludes="**/*.java"/>
- </jar>
- <au:assertDestIsUptodate src="${output}/jar.jar"
- dest="${output}/reference.jar"/>
-
- <jar jarfile="${output}/jar.jar">
- <fileset dir="${input}/build"/>
- <fileset dir="${input}/src" excludes="**/*.java"/>
- </jar>
- <au:assertDestIsUptodate src="${output}/jar.jar"
- dest="${output}/reference.jar"/>
- </target>
-
- <target name="testNewEmptyDirUpdatesArchive">
- <mkdir dir="${input}"/>
- <touch file="${input}/x"/>
- <mkdir dir="${output}"/>
- <jar jarfile="${output}/jar.jar">
- <fileset dir="${input}"/>
- </jar>
- <copy file="${output}/jar.jar" tofile="${output}/reference.jar"/>
-
- <mkdir dir="${input}/y"/>
- <sleep seconds="2"/>
- <jar jarfile="${output}/jar.jar">
- <fileset dir="${input}"/>
- </jar>
- <au:assertDestIsOutofdate src="${output}/jar.jar"
- dest="${output}/reference.jar"/>
- </target>
- </project>
|