Apache Groovy: What Is Groovy Used For?
March 22, 2021

Apache Groovy: What Is Groovy Used For?

Test Automation

Apache Groovy is the default scripting language for JSR223 Elements. This change has a history. While JSR223 elements have always had Groovy support (as well as any other scripting engine, given the relevant library is in the JMeter’s Classpath), groovy-all.jar became a part of the default JMeter bundle only in the JMeter version 3.0).

Prior to that JMeter users had to download the Groovy library manually and include it in the JMeter classpath. This caused some problems in using third-party plugins, scaling out JMeter tests when new JMeter instances had to be created on-the-fly and added an extra step when performing an upgrade to a newer JMeter version. Now, all of these problems are gone and Groovy is the only recommended scripting language.

Learn more about Apache Groovy and what Groovy is used for, plus take a closer look at the performance level of Groovy scripts. 

Back to top

What is Groovy Used For?

Apache Groovy is a Java-based development language with a concise and easy-to-learn syntax. These features, as well as its static-typing and static compilation capabilities, make Groovy a top choice for improving developer productivity. 

Back to top

Why Apache Groovy?

Apache Groovy is a dynamic object-oriented programming language that can be used as a scripting language for the Java platform. The most prominent features are:

  • Development and support: Groovy language is being constantly developed, maintained, and supported.
  • Java compatibility: valid Java code in 99% of cases will be valid Groovy code.
  • Performance: starting from version 2, Groovy scripts can be statically compiled providing near Java code performance.
  • Additional features on top of Java that make code more readable and compact, like native support of regular expressions, XML, JSON, simplified work with files and much more.

Groovy is a more “modern” language

When I state “valid Java code in 99% of cases will be valid Groovy code” it means that code that is developed using Java 6, 7 or 8 will be treated as a valid Groovy code. If you are using Beanshell, for example, you are limited to Java 5 language level, which means:

Back to top

Apache Groovy Script Performance

Let’s compare the performance of Groovy scripts with Beanshell equivalents by starting with something very basic, for example printing JMeter test start time (the relevant JMeter variable is TESTSTART.MS to jmeter.log file.

log.info(vars.get("TESTSTART.MS"));

 

Apache Groovy script performance

At first glance, Beanshell is faster (1 ms response time for Beanshell Sampler versus 5 ms response time for JSR223 Sampler). This is due to the Apache Groovy scripting engine size. As groovy-all-2.4.7.jar library size is almost 7 megabytes, it takes more time to load it. So if you use scripting for something very “light” and something which is being called once - it is still fine to use Beanshell.

Now let’s try something “heavier”, for instance calculating 36th number of Fibonacci sequence and again printing it to jmeter.log file using Beanshell and Groovy.

int fibonacci(int i) {
   if (i == 1 || i == 2) {
       return i;
   }
   return fibonacci(i - 1) + fibonacci(i - 2);
}
log.info("Fibonacci number 36: " + fibonacci(36));

The above code is used in both the Beanshell and JSR223 Samplers.

Code in Beanshell and JSR223 samplers

As far as you can see, the JSR223 Sampler calculates and prints the number out in 192 milliseconds, while the Beanshell Sampler needs over 36 seconds to do the same. So if you use scripting for generating the main load or the scripting sampler is called multiple times with multiple threads, the choice is obvious - go for Groovy.

Groovy “Syntax Sugar”

Groovy provides native syntax for some use cases that you might find useful for simplifying everyday life tasks.

Writing To and Reading From Files

Assuming you have initialized a File object, you can write to it as simple as this:

myFile << "Hello from Groovy"

 

Reading the file in its turn is just accessing the .text property of the File object:

 def fileContent = myFile.text

 

Putting everything together:

Writing To and Reading From Files in Apache Groovy

Iterating Collections

 

Working with collections in Groovy is also very quick and easy. For example, here is the code that prints all the JMeter Properties names along with values to jmeter.log file:

props.each { k, v -> log.info( "${k}:${v}") }

 

Here is the output:

iterating collections

Executing External Commands

With Groovy you can forget about the OS Process Sampler. Running OS commands or other executables is just this:

"your_command".execute()

 

If you need the output, just append .text property to the end:

"your_command".execute().text

 

 

Here is an example of executing the jmeter -v command and printing the output to the jmeter.log file:

Here is an example of executing the jmeter -v command and printing the output to the jmeter.log file

__groovy() Function

The brand new __groovy() function is available since JMeter 3.1 and it allows evaluating arbitrary Groovy code anywhere in the script where functions can be placed.

 __groovy() function

Assuming all the above and given that Groovy is now a part of JMeter distribution, I would recommend everyone start using it for scripting and eventually migrate the scripting logic developed in other scripting languages, to Groovy. As usual, you are welcome to use the below discussion form for any queries or feedback.

START TESTING NOW 
 

This blog was originally published on January 30, 2017, and has since been updated for accuracy and relevance.

 

Related Resources

Back to top