JMeter - Running preprocessor when called from command line? - bash

I'm very new to JMeter.
My team has existing JMeter Test Plans that we generally run through the GUI. I am experimenting with running it from the command line.
In our test plans, we have a bunch of variables declared at the TestPlan level. These variables contain information for setting up different environments (eg test, prod, dev). Directly under the TestPlan is a JSR223 PreProcessor that basically takes the variable that shows what environment you're trying to run in and sets up the hostname, port, etc to the values for that environment.
When I run the test using the GUI, it works perfectly under the selected environment. However, when I run it with the command line using the following command:
jmeter -n -t testName.jmx -l Results.csv
it tries to run under the defaulted environment and doesn't change it to the environment I want. I tried adding a -Jenv=dev, but that didn't seem to make any difference.
Do preprocessors not run when called from the command line? Could there be something else that I'm missing? Given my inexperience here, I'm not even really sure how I can tell what the problem is.
Thanks so much!

It is very difficult to conclude what is the exact problem in your jmeter script. Looking into the problem statement I can sense that you need to find correct way of passing a variable from command line and processing it in a script.
Example of passing a variable from command line and handling it in jmeter is shown below:
Declare a variable with value as a property in jmeter. You can use anything here, I have used User Defined variable. Variable env is declared as ${__P(env)}
Using JSR to process that variable. Here just printing the value passed from parameter into jmeter log. Now the value can be reused using ${env} variable [note it is a variable and not a property, because we declared that way in User Defined variable].
String valuePassed = vars.get("env");
log.info("Parameter passed from command line: " + valuePassed);
Run from the Command Line using following command:
jmeter -n -t <>.jmx -Jenv=Prod -j sample.log
Result shown in log file

PreProcessors are executed only in conjunction with Samplers
If you don't have any Sampler in your Thread Group - none of PreProcessors will be executed.
Also be aware that PreProcessors obey JMeter Scoping Rules to wit:
if you have a PreProcessor added as a child of the Sampler - the PreProcessor will be executed before the given Sampler
if you have 2 Samplers and a PreProcessor at the same level - the PreProcessor will be executed before each Sampler

Related

Jmeter - Trigger if condition via Command line value

Using JMeter I would like to execute a script where the script is entering into specific condition based on the property provided via windows CMD execution. My script looks like:
and execution is done via CMD as:
jmeter -n -t C:\Users\test\Documents\api.jmx -Jusers=1
How can I enter into just single specific If controller, based on the value provided on the runtime?
I think you should rather go for a single Switch Controller instead of 3 If Controllers and use __P() function to read the value from the command line:
${__P(scenario,)}
This way if you execute JMeter as:
jmeter -Jscenario=A -Jusers=1 -n -t C:\Users\test\Documents\api.jmx
it will run Sampler (or a Logic Controller) named A, similarly for B and C
You may also find Running JMeter Samplers with Defined Percentage Probability article useful.
Add check to users parameter for each If, in your case:
${__groovy(props.get("users")=="1")}
Checking this and using __jexl3 or __groovy function in Condition is advised for performances

run jmeter in non gui mode, sending parameters for a groovy script, howto?

My testplan uses a JSR223 PreProcessor, which invokes a .groovy script with a parameter.
In GUI mode this parameter can be set in section "Parameters to be passed to script".
How can I define/set the value (the parameter) when jmeter runs in non-gui mode?
Can't find anything on that in the documentation!
It is the same plan that run in GUI and NON GUI mode.
So you can use the same mechanism.
To pass the value from command line:
-JpropName=value
To get it, use __P function:
${__P(propName)}

How to replace jmeter keys when running Taurus

Problem:
I am currently hard coding a password in my jmeter .jmx test file.
I want to be able to either set this in the config.yaml or on the command line using something like a "-o modules.jmeter.properties" switch (to replace this in the CI pipeline)
However I cant get either of these to actually replace the value in the .jmx file.
I have looked through the Taurus doco and ended up trying the following.
Updating the config.yaml file:
execution:
- executor: jmeter
scenario:
script: ../scripts/apigee_loadtesting.jmx
data-sources:
- ../datafiles/
concurrency: 2
ramp-up: 30s
hold-for: 1m
steps: 2
modules:
jmeter:
properties:
es.password: P#ssw0rd!
Also tried this from the commandline:
bzt ../config.yaml -o modules.jmeter.path=/usr/local/apache-jmeter-4.0.2/bin/jmeter \
-o modules.jmeter.properties.espassword=P#ssw0rd! config.yaml
But neither of them seem to do anything meaning, Any suggestions would be appreciated
Taurus itself will not change anything in the .jmx script, just make sure that you refer the property using __P() function as ${__P(es.password,)} in the .jmx script and the value will be substituted with the one from .jmx file or command-line override.
I would avoid using dots in properties names as it might cause problems with overriding properties values from the command-line. So stick to espassword everywhere if possible
The change your command line so config.yaml would be the last argument like:
bzt -o modules.jmeter.path=/usr/local/apache-jmeter-4.0.2/bin/jmeter -o modules.jmeter.properties.espassword=P#ssw0rd! config.yaml
See Navigating your First Steps Using Taurus article for more information on running JMeter tests using Taurus

How can I pass env vars to buster.js?

I have a buster.js test. I need to pass some data to the test via an environment variable. How can I do this?
You mean when launching it at the command line?
I've just realized the question was made the '14, anyway:
Run any node.js application along with the variable assignment, e.g:
VARIABLE_NAME='FOO' buster-test file.js
In the code:
process.env.VARIABLE_NAME;

Pass variable from Jenkins to Ruby script (Jenkins newbie)

I've pulled a few scripts into Jenkins for a proof of concept and think I'd like to move that direction for all of our scripts. Right now I keep an environment.rb file with my code (watir-webdriver, cucumber) which tells the script which environment we're testing and which browser to use (global variables). Jenkins fires off the script using rake.
I'd love to let the user choose the environment and browser through Jenkins 'choice' variable or similar, and then pass that to the script. While I see the framework in that for Jenkins and set up a choice list for environment, I'm having trouble determining what the next step is.
I could write to environment.rb, I could pass a variable to rake - I have many options for how to pass the information, I just need some assistance finding the first step to find the Jenkins way of accomplishing them. Google results and previous Stack questions weren't what I was looking for.
Thanks
Sure. Give the user either a text entry field a dropdown after telling Jenkins that this is a parameterized build. You'll give them a name, something like BuildEnvironment. Then when you call the build, you can pass these from the environment variables. For example, if you were using ANT, you'd add a line to the parameters that said environment = ${MyEnvironment} Jenkins will then pass the value along for your build tool to use.
There is a way to pass Jenkins Environment Variable to Ruby script. Please see the following example:
workspace_path = `echo $WORKSPACE`.strip # note the use of backticks
puts workspace_path
In the "echo $WORKSPACE".strip # the code work only if you replace quotes with backticks
This code example works in Jenkins on a Linux system.

Resources