blob: e3b67174814d3c7e4899a4d456e7e1fa8a0c8f20 [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:cond="antlib:org.apache.tools.ant.types.conditions"
xmlns:cmp="antlib:org.apache.ant.compress">
<import file="antunit-base.xml" />
<target name="setUp">
<mkdir dir="${output}"/>
</target>
<target name="testArjSource" depends="setUp">
<copy todir="${output}">
<cmp:arjentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.arj"/>
</cmp:arjentry>
</copy>
<au:assertFilesMatch
actual="${output}/asf-logo.gif"
expected="../resources/asf-logo.gif"
/>
</target>
<!-- asf-logo.gif.arj has been created on DOS, asf-logo.gif.unix.arj
on Linux -->
<target name="testResourceProperties">
<au:assertTrue>
<cond:islastmodified datetime="2001-11-19-15:34:20"
pattern="yyyy-MM-dd-HH:mm:ss">
<cmp:arjentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.arj"/>
</cmp:arjentry>
</cond:islastmodified>
</au:assertTrue>
<au:assertTrue>
<cmp:hasmode mode="0">
<cmp:arjentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.arj"/>
</cmp:arjentry>
</cmp:hasmode>
</au:assertTrue>
<au:assertTrue>
<cond:islastmodified datetime="2001-11-19-15:34:20 +0100"
pattern="yyyy-MM-dd-HH:mm:ss Z">
<cmp:arjentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.unix.arj"/>
</cmp:arjentry>
</cond:islastmodified>
</au:assertTrue>
<au:assertTrue>
<cmp:hasmode mode="644">
<cmp:arjentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.unix.arj"/>
</cmp:arjentry>
</cmp:hasmode>
</au:assertTrue>
</target>
</project>