blob: 607669562da0a255790facaf01eb2a8c8f20e817 [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
https://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="testDumpSource" depends="setUp">
<copy todir="${output}">
<cmp:dumpentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.dump"/>
</cmp:dumpentry>
</copy>
<au:assertFilesMatch
actual="${output}/asf-logo.gif"
expected="../resources/asf-logo.gif"
/>
</target>
<target name="NOtestResourceProperties">
<au:assertTrue>
<cond:islastmodified datetime="2009-07-31-20:11:13 +0200"
pattern="yyyy-MM-dd-HH:mm:ss Z">
<cmp:dumpentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.dump"/>
</cmp:dumpentry>
</cond:islastmodified>
</au:assertTrue>
<au:assertTrue>
<cmp:hasuserid id="1000">
<cmp:dumpentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.dump"/>
</cmp:dumpentry>
</cmp:hasuserid>
</au:assertTrue>
<au:assertTrue>
<cmp:hasgroupid id="1000">
<cmp:dumpentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.dump"/>
</cmp:dumpentry>
</cmp:hasgroupid>
</au:assertTrue>
<au:assertTrue>
<cmp:hasmode mode="644">
<cmp:dumpentry name="asf-logo.gif">
<file file="../resources/asf-logo.gif.dump"/>
</cmp:dumpentry>
</cmp:hasmode>
</au:assertTrue>
</target>
</project>