alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<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
  </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>

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.