blob: fce340a51262b8109b54682e54f4e55f23113c9f [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="testMissingArchive">
<mkdir dir="${output}"/>
<au:expectfailure expectedMessage="The archive foo.dump doesn't exist">
<copy todir="${output}">
<cmp:dumpfileset src="foo.dump"/>
</copy>
</au:expectfailure>
</target>
<target name="testMissingArchiveDoesntMatter">
<mkdir dir="${output}"/>
<copy todir="${output}">
<cmp:dumpfileset src="foo.dump" errorOnMissingArchive="false"/>
</copy>
</target>
<target name="testDumpSource" depends="setUp">
<copy todir="${output}">
<cmp:dumpfileset src="../resources/asf-logo.gif.dump"
includes="*.gif"/>
</copy>
<au:assertFilesMatch
actual="${output}/asf-logo.gif"
expected="../resources/asf-logo.gif"
/>
</target>
<target name="testUncompressSource" depends="setUp">
<gzip destfile="${input}/asf-logo.gif.dump.gz"
src="../resources/asf-logo.gif.dump"/>
<copy todir="${output}">
<cmp:dumpfileset includes="*.gif">
<gzipresource>
<file file="${input}/asf-logo.gif.dump.gz"/>
</gzipresource>
</cmp:dumpfileset>
</copy>
<au:assertFilesMatch
actual="${output}/asf-logo.gif"
expected="../resources/asf-logo.gif"
/>
</target>
<target name="test-refid-check-encoding">
<cmp:dumpfileset id="test-refid2"
encoding="utf-8"
dir="${basedir}"/>
<au:expectfailure>
<cmp:dumpfileset id="ref4"
encoding="utf-8"
refid="test-refid2"/>
</au:expectfailure>
</target>
</project>