blob: 73a462a4cbb6ec8e7b4a427d388b5002dbe94883 [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="testAgainstPack200Task" depends="setUp">
<cmp:pack200 destfile="${input}/test.pack">
<cmp:zip>
<fileset dir="."/>
</cmp:zip>
</cmp:pack200>
<cmp:unpack200 src="${input}/test.pack" dest="${input}/test.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="testAgainstNativePack200" depends="setUp">
<cmp:unpack200 src="../resources/asf-logo.gif.pack"
dest="${input}/test.zip" />
<cmp:unzip src="${input}/test.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="testTempFileStrategy" depends="setUp">
<cmp:unpack200 src="../resources/asf-logo.gif.pack"
dest="${input}/test.zip"
pack200strategy="temp-file"/>
<cmp:unzip src="${input}/test.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="testProperties" depends="setUp">
<cmp:unpack200 src="../resources/asf-logo.gif.pack"
dest="${input}/test.zip">
<property key="unpack.deflate.hint" value="keep"/>
</cmp:unpack200>
<cmp:unzip src="${input}/test.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="testDoesntSupportConcatenatedStreams">
<au:expectfailure>
<cmp:unpack200 src="../resources/asf-logo.gif.pack"
dest="${input}/test.zip"
decompressconcatenated="true"/>
</au:expectfailure>
</target>
</project>