blob: 878dd7c0c94601b8dd0a614cd7d974635cd87156 [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 name="test" default="def" basedir=".">
<property name="tmpregexp" value="tmpregexp"/>
<target name="def">
<fail>This build file should only be run from within the testcase</fail>
</target>
<target name="setup">
<copy file="replaceregexp.properties" tofile="test.properties" />
</target>
<target name="setup-nl">
<copy file="replaceregexp2.properties" tofile="test.properties" />
</target>
<target name="testReplace" depends="setup">
<replaceregexp file="test.properties" byline="true">
<regexp pattern="Old(.*)=(.*)" />
<substitution expression="NewProp=\1\2" />
</replaceregexp>
</target>
<!-- use in conjunction with testDirectoryDateDoesNotChange to make sure something will happen -->
<target name="touchDirectory">
<mkdir dir="${tmpregexp}"/>
<copy file="replaceregexp.properties" tofile="${tmpregexp}/test.properties" />
<sleep seconds="2"/>
</target>
<target name="testDirectoryDateDoesNotChange">
<replaceregexp file="${tmpregexp}/test.properties" byline="true">
<regexp pattern="foo" />
<substitution expression="bar"/>
</replaceregexp>
</target>
<target name="testDontAddNewline1" depends="setup-nl">
<replaceregexp file="test.properties" byline="false">
<regexp pattern="Old(.*)=(.*)" />
<substitution expression="NewProp=\1\2" />
</replaceregexp>
</target>
<target name="testDontAddNewline2" depends="setup-nl">
<replaceregexp file="test.properties" byline="true">
<regexp pattern="Old(.*)=(.*)" />
<substitution expression="NewProp=\1\2" />
</replaceregexp>
</target>
<target name="cleanup">
<delete file="test.properties" />
<delete dir="${tmpregexp}" quiet="true"/>
</target>
</project>