Adding load testing to my continuous build process provides several benefits for a fairly cheap entry fee. As the development process progresses, I’ll have a baseline and know if I add something to the application that impacts the performance. I’ll also be able to accurately discuss it’s performance when asked, instead of guessing. And if I want to increase the performance, that same baseline will serve as a guide on my progress.

Not every application needs to process 100,000 transactions/second, but the cost of guessing how well our application will perform tends to catch up with us.

In the previous post, I walked through using WCAT to define and execute a load test scenario against the site from my continuous delivery project. In this post, I’ll take those WCAT scripts and incorporate them into Jenkins as a new build step in my delivery pipeline, not only running the load test but capturing the results so I can show them over time.

Prep the Server

Before I can start configuring my new build step, I need to prep the server. Following the steps in my prior post, I’ll download the WCAT msi to the build server and install it, then register the build server as a WCAT client:

cscript //H:cscript
wcat.wsf –terminate –update –clients localhost

And, of course, wait for the obligatory reboot to go through.

Creating the Build Job

Initially I want a build job that I can run manually, to let me tweak the test execution, results capture, and plotting. The overall plan for the job will be to:

  • Get the load test scripts from a dedicated source repository
  • Pull in the compiled artifacts from the first step (continuous integration)
  • Deploy the artifacts to a remote IIS web application folder
  • Smoke test the deployment
  • Run the Load Test against the delpoyed application
  • Capture the results of the Smoke Test and Load Test

While I originally expected the load test portion to be the trickiest, the reality was that plotting the results ended up being the hardest part of the whole adventure.

First up is defining the parameter for the CI build number:


Load Test Job – Build Parameter

Then I need to add in the code repository that I’m hosting the Load Test scripts from the last post in:


Load Test Job – Load Test Scripts

I’ve also added the EnvFile plugin to allow me to store critical information, like server names and passwords, in an external settings file:


Load Test Job – External Settings

Then using the Copy Artifact plugin, I’ll add a build step to retrieve the zipped deployable website from the CI build step:


Load Test Job – Copy Artifacts

With those retrieved, I can now deploy them to my remote server using MS Deploy and execute the VBScript file I created to smoke test the deployed site, each as windows batch command steps:


Load Test Job – Deploy + Smoke Test

Note: These commands and scripts are available in the Deploy and Smoke Test post

The actual command to execute the load test is nicely wrapped in a the Run.cmd file, so I can add a batch command to execute that:


I only included this screenshot to be consistent with the rest of the steps 🙂

The last steps archive the log.xml file that WCAT produces,


Load Test Job – Archive Log File

capture the results of the smoke test,


Load Test Job – Capture Smoke Test Results

and clutter up my twitter feed.


Twitter Checkbox

With that I have a fully functional build job that deploys a website on demand and load tests it.

And now the really hard part. Doing something with the load test results (you think I’m being sarcastic, but just wait).

Displaying the Results

This was an interesting project and, oddly enough, went like so many IT projects do. We get 90% of the way done and then find out we have another 180% to do.

There is really only one plugin in Jenkins that I could find to handle plotting for free form data. I did look into trying to misuse the JMeter plugin (like I repurpose the JUnit one to capture my smoke test results), but at a glance it looked like JMeter provide the detailed data without the summaries, while WCAT is just giving me the summaries.

The Plot Plugin (Duh Duh Duuuuh)

The Plot Plugin is finicky, poorly documented, and has some hinkiness in the Jenkins display that I haven’t seen from other plugins. It annoyed me enough that I actually started reading through the source code in github to get help figuring out some of it’s behavior (and then after seeing it, briefly considered trying to relearn java long enough to add some much needed fixes).

Among it’s other weaknesses, the plot plugin doesn’t allow you to set data labels, it automatically uses the tag names of the XML. Which doesn’t work so well when your XML nodes all have the same name.

Like the WCAT results.

Argh.

So after much wrestling, I decided to map the WCAT data to a new XML file purely for the purposes of feeding the plot plugin (and to also reconfigure it so I could enter all the points for a plot from one XPath query, don’t get me started on forcing me to re-enter the filename for each XPath statement for the same plot).

Transform.xsl

<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="/">
	<result>
		<persecond>
			<TransactionsPerSecond><xsl:value-of select='//section[@name="summary"]/table[@name="summarydata"]/item/data[@name="tps"]' /></TransactionsPerSecond>
			<RequestsPerSecond><xsl:value-of select='//section[@name="summary"]/table[@name="summarydata"]/item/data[@name="rps"]' /></RequestsPerSecond>
		</persecond>
		<total>
			<Transactions><xsl:value-of select='//section[@name="details"]/table[@name="requeststats"]/item[1]/data[@name="transactions"]' /></Transactions>
			<Requests><xsl:value-of select='//section[@name="details"]/table[@name="requeststats"]/item[1]/data[@name="requests"]' /></Requests>
			<Errors><xsl:value-of select='//section[@name="summary"]/table[@name="summarydata"]/item/data[@name="terrors"]' /></Errors>
		</total>
		<responsetime>
			<Average><xsl:value-of select='//section[@name="details"]/table[@name="histogram"]/item[2]/data[@name="response_time_avg"]' /></Average>
			<Minimum><xsl:value-of select='//section[@name="details"]/table[@name="histogram"]/item[2]/data[@name="response_time_min"]' /></Minimum>
			<NinetyFivePercent><xsl:value-of select='//section[@name="details"]/table[@name="histogram"]/item[2]/data[@name="response_time_95"]' /></NinetyFivePercent>
			<NinetyNinePercent><xsl:value-of select='//section[@name="details"]/table[@name="histogram"]/item[2]/data[@name="response_time_99"]' /></NinetyNinePercent>
			<Maximum><xsl:value-of select='//section[@name="details"]/table[@name="histogram"]/item[2]/data[@name="response_time_max"]' /></Maximum>
		</responsetime>
	</result>
</xsl:template>

</xsl:stylesheet>

And then I can use a quick VBScript file to execute the XSL against the WCAT log.xml file:

Transform.vbs

Dim xml, xsl
set xml = CreateObject("Microsoft.XMLDOM")
xml.async = false
xml.load("log.xml")

'Load the XSL
set xsl = CreateObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load("transform.xsl")

Dim fso, fs
Set fso = CreateObject("Scripting.FileSystemObject")
Set fs = fso.CreateTextFile("result.xml",true)
fs.Write(Replace(xml.transformNode(xsl),"<?xml version=""1.0"" encoding=""UTF-16""?>",""))
fs.Close
Set fs = Nothing
Set fso = Nothing

Which nets me a results file, like so:

result.xml

<result>
	<persecond>
		<TransactionsPerSecond>1.80</TransactionsPerSecond>
		<RequestsPerSecond>29.56</RequestsPerSecond>
	</persecond>
	<total>
		<Transactions>216</Transactions>
		<Requests>3547</Requests>
		<Errors>3</Errors>
	</total>
	<responsetime>
		<Average>270</Average>
		<Minimum>0</Minimum>
		<NinetyFivePercent>912</NinetyFivePercent>
		<NinetyNinePercent>1536</NinetyNinePercent>
		<Maximum>2563</Maximum>
	</responsetime>
</result>

The last piece of the equation is to configure the Plot in the load test job. Here is an example of one graph configuration (the full set is pretty long):


Load Test Job – Plot Settings

Each plot has an XPath statement that corresponds to one of the sections of the result XML file, that way I have unique names for the values when it stores the data and I have labels on the plots. Running the job a few times to build up data and my graph looks like this:


Load Test Job – Response Time Diagram

Note: I suspect the fact that I got bored and was watching Netflix for the last few tests had some effect on the values

And there we go, I now have a job that I can run on demand that will load test my site.

Incorporate into Build Pipeline

The last step of this whole load test adventure is incorporating the load test job I’ve created into my build pipeline.


Continuous Delivery Pipeline with Load Test Step

The only changes necessary to insert the Load Test job into the pipeline is to modify my “ASPNet MVC Music Store Interface Tests” build job to trigger a parametrized build of this new load test and in the load test, check the “Build Pipeline Plugin -> Manually Execute Downstream Project” option and specify the “Deploy to QA” build step as the target.


Continuous Delivery Pipeline w/ Load Testing Step

With the steps rewired, the pipeline now incorporates the Load Testing job.

Next Steps

While the plotting portion of this project took longer than I expected, I still managed to do the whole thing in under 8 hours, and that includes writing part of the first blog and the fact that I was working on it in pieces, in between sleeping, feeding the baby, and so on.

Not every project needs to be the fastest, most responsive application on the planet, but given how cheaply you can add some basic numbers into your process, the net gain of knowing exactly how your application is performing and the heads up when you do something that really breaks performance are both valuable and fairly inexpensive to implement.