blob: bc841d39c3f72dd6b79966c0b27c609fba3903ff [file] [log] [blame]
<?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"
xmlns:cmp="antlib:org.apache.ant.compress">
<import file="antunit-base.xml" />
<target name="setUp">
<mkdir dir="${output}"/>
<mkdir dir="${input}"/>
</target>
<target name="testAgainstCoreZipTask" depends="setUp">
<zip destfile="${input}/test.zip">
<fileset dir="."/>
</zip>
<cmp:unzip src="${input}/test.zip" dest="${output}"/>
<au:assertFileExists file="${output}/untar-test.xml"/>
<au:assertFilesMatch
actual="${output}/untar-test.xml"
expected="untar-test.xml"
/>
</target>
<target name="testAgainstAntlibZipTask" depends="setUp">
<cmp:zip destfile="${input}/test.zip">
<fileset dir="."/>
</cmp:zip>
<cmp:unzip src="${input}/test.zip" dest="${output}"/>
<au:assertFileExists file="${output}/untar-test.xml"/>
<au:assertFilesMatch
actual="${output}/untar-test.xml"
expected="untar-test.xml"
/>
</target>
<target name="testAgainstNativeZip" depends="setUp">
<cmp:unzip src="../resources/asf-logo.gif.zip" dest="${output}" />
<au:assertFileExists file="${output}/asf-logo.gif"/>
<au:assertFilesMatch
actual="${output}/asf-logo.gif"
expected="../resources/asf-logo.gif"
/>
</target>
<target name="testResourceCollection" depends="setUp">
<zip destfile="${input}/test.zip">
<fileset dir="../resources" includes="*.zip" excludes="passwo*"/>
</zip>
<cmp:unzip dest="${output}">
<zipfileset src="${input}/test.zip">
<include name="*.zip"/>
</zipfileset>
</cmp:unzip>
<au:assertFileExists file="${output}/asf-logo.gif"/>
<au:assertFilesMatch
actual="${output}/asf-logo.gif"
expected="../resources/asf-logo.gif"
/>
</target>
<target name="testStrippingOfPathsep" depends="setUp">
<touch file="${input}/file"/>
<zip destfile="${output}/a.zip">
<zipfileset dir="${input}" prefix="/foo"/>
</zip>
<cmp:unzip src="${output}/a.zip" stripAbsolutePathSpec="true"
dest="${output}"/>
<au:assertFileExists file="${output}/foo/file"/>
</target>
<target name="testFailsOnUnreadableEntries" depends="setUp">
<au:expectfailure message="unsupported feature encryption">
<cmp:unzip src="../resources/password-encrypted.zip"
dest="${output}"/>
</au:expectfailure>
</target>
<target name="testSkipUnreadableEntries" depends="setUp">
<cmp:unzip src="../resources/password-encrypted.zip"
dest="${output}"
skipUnreadableEntries="true"/>
<au:assertLogContains text="Commons Compress cannot read it"/>
</target>
</project>