Pete Freitag Pete Freitag

Using Ant to test Concurrency

Updated on November 16, 2023
By Pete Freitag
web

Apache Ant is an awesome tool for creating batch builds, and doing all sorts of automated tasks. It was designed to replace make files, but you can use it for lots of things, as my example will show. Ant uses an XML language, with tasks (tags) to compile java classes, run java classes, manipulate the file system, create zip or tar.gz files, run SQL statements, XSL, FTP, etc. It also has an extensible API so there are tasks to do pretty much anything you would like to automate. We use ant at CFDEV to package our products into zip files, encrypt CFM templates, create multiple versions, and even upload the distribution files to our server - all in one step!

To get started check out the Ant Manual

One Ant task that I have found useful recently for testing concurrency is that parallel task. It allows you to run several ant tasks within their own thread. I was using this to test some java code but you could also use it to test a web site.

Here's a code sample testing concurrent requests.

<?xml version='1.0'?>
<project name="Concurrent" default="test" basedir=".">
	<target name="test">
		<parallel>
			<get src="https://www.example.com/" dest="1.html" />
			<get src="https://www.example.com/" dest="2.html" />
			<get src="https://www.example.com/" dest="3.html" />
			<get src="https://www.example.com/" dest="4.html" />
			<get src="https://www.example.com/" dest="5.html" />
		</parallel>
	</target>
</project>

Save the above contents in a file called build.xml and run the file by browsing the directory you saved it in with your shell, and typing ant (after installing ant ofcourse). You can add more concurrent threads just by adding more get tags.


Using Ant to test Concurrency was first published on October 01, 2003.

Discuss / Follow me on Twitter ↯