JMeter - Changing a Cookie's Value during a Test? - cookies

I have created a test plan in JMeter *(Version 2.13). I was able to add a Cookie Manager to the plan and have my cookies preserved between HTTP Requests, which works just fine.
What I'm trying to do now is, if possible, preserve one Cookie from the start (*Called "JSESSIONID") and then have another Cookie (*let's call it "MYID") which can be modified during the test.
My 1st try at this was like the following:
+Thread Group
-HTTP Request Defaults
-HTTP Cookie Manager
+HTTP Request - Goto HomePage
-HTTP Cookie Manager - Set MYID="server_1"
+HTTP Request - Load Login Page
-HTTP Cookie Manager - Set MYID="server_2"
....and so on for about 3 more HTTP Requests....
But, doing it this way only kept the original Cookies which were captured by the initial Cookie Manager which was set right under the Thread Group element.
Apache's site warns that:
"If there is more than one Cookie Manager in the scope of a Sampler, there is currently no way to specify which one is to be used. Also, a cookie stored in one cookie manager is not available to any other manager, so use multiple Cookie Managers with care."
Another test I did, that was similar to the first except I added a User Defined Variables element to the start of the test which had a variable for the MYID Cookie set to one server, and then about 2 or 3 HTTP Requests down I had a second User Defined Variables element, this time setting the variable to another server. But, after reading a bit more on the User Variables, JMeter only reads User Defined Variables ONCE, at the beginning of the test. So the variable I set last would remain as whatever I set it to in the 2nd User Defined Variables section. So that way won't work to change the Cookie value during the test...
I also, read this from ApacheJMeter's site, here Using Variables to Parametrize Tests, which seems closest to what I am trying to achieve. But, from their example it seems as though it's for modifying variables before the test starts, like for example setting a variable from the command line...
Summary:
To sum things up, what I am trying to achieve is to send my HTTP Requests with 2 Cookies:
1. JSESSIONID
2. MYID
Where JSESSIONID will remain the same from the very start, and MYID which I want to change it's value during test *(multiple times if posible).
Let me know if that does not make sense and I will try and explain further.
Any thoughts or suggestions would be greatly appreciated!
Thanks in Advance,
Matt

You can use Beanshell scripting for cookies manipulation as:
Add a Beanshell PreProcessor to your HTTP Request
Put the following code into the PreProcessor's "Script" area:
import org.apache.jmeter.protocol.http.control.Cookie;
import org.apache.jmeter.protocol.http.control.CookieManager;
CookieManager manager = sampler.getCookieManager();
for (int i = 0; i < manager.getCookieCount(); i++) {
Cookie cookie = manager.get(i);
if (cookie.getName().equals("MYID")) {
cookie.setValue(vars.get("foo"));
manager.remove(i);
manager.add(cookie);
break;
}
}
Above code will substitute "MYID" cookie value with "foo" JMeter Variable value via direct calls to CookieManager class (see API documentation for all possible methods and fields)
Check out How to use BeanShell: JMeter's favorite built-in component guide for advanced information on Beanshell scripting in Apache JMeter.

Related

Storing the value of cookie in variable but doesn't appear in cookie data in request body in Jmeter

There are lots of cookies present and I need to extract those cookie and pass them as a post parameter in further request. So i have changed the setting for them in jmeter.property file as
save.cookies=true
check.cookies=false
Then after running the test, I got those cookie value in debug sampler as ${COOKIE_}
EXPECTED:
GET data:
Cookie Data:
private_content_version=e17f5f6a5ed9557378a6f85fa2202c0e;form_key=mCPI56sUAl6bqAJdqq;
Actual Result
GET data:
[no cookies]
I have passed in the value in HTTP header manager as
name=private_content_version
Value=${COOKIE_private_content_version}
name=form_key
Value=${COOKIE_Form_key}
But instead of value, same variable is passed as ${COOKIE_private_content_version}
Also there are multiple cookies and I need to fetch them too and pass them in further http request payload,but unable to do that.What I AM MISSING?Please help
DO I NEED TO ADD THEM COOKIE MANAGER UNDER EACH OF THE HTTP REQUEST?OR DEFINED IN GLOBALLY?
Also how to define them ?
You don't need to manually add cookies in the HTTP Header Manager, the Cookie Manager should normally handle them.
If for some reason you need to build Cookie header manually make sure to use strict Cookie name and in the value one or more name/value pairs of cookies separated by semicolons
You might find HTTP Cookie Manager Advanced Usage - A Guide article useful, it contains comprehensive information on HTTP Cookie Manager configuration and troubleshooting.

Postman - Setting a cookie from a global variable with "Tests" code

What i want to do is to take a cookie value I've received after a "GET" message , set it's value as a global variable, then set it as a session cookie for a specific host, and later on use it in other requests.
Currently i'm doing this manually via this menu:
Is that possible?
What you need to do is in the Test on response store the value you want to use in a global variable postman.setGlobalVariable('key', value) then in the request you want to use it as a cookie, pass along the value in the header as a cookie where:
Cookie | cookieName={{key}}
Check out the MZN docs on Cookie to see how to send multiple cookies in one header.
Doing this is well documented on the POSTMAN site. You require the interceptor plugin and the instructions to use it are here:
https://www.getpostman.com/docs/interceptor_cookies

Jmeter clear cookies after SOME iteration

In jmeter cookie manager you can just clear cookies in each iteration or not.
Question
But what I need is that Jmeter should clear cookies after some iteration. Eg. 2 or 3
Why?
I need this beceause I dont want to overload the server with new cookie data each time. I will send 30 k request but I need just 15 k new session.
You can do this using some scripting, i.e:
Add Beanshell PreProcessor as a child of the very first HTTP Request sampler
Put the following code into "Script" area:
if (vars.getIteration() == 2) {
sampler.getCookieManager().clear();
}
Where:
vars - an instance of JMeterVariables, provides access to all JMeter Variables, including current iteration number
sampler - an entity representing the parent Sampler for the Beanshell PreProcessor, in case of HTTP Request samplers - HTTPSamplerProxy
See How to Use BeanShell: JMeter's Favorite Built-in Component article to get started with scripting in JMeter tests.

How to change cookie values between pages in JMeter

I know how to modify cookies using BeanShell PreProcessor from:
How to modify / add to Cookie in JMeter?
Thanks to PMD UBIK-INGENIERIE for the answer!
Now, my question is: how do I modify the cookie value between pages? Let me explain, I've a cookie called 'Answers' that for the first page is empty, i.e., Answers="" (empty), then in second page takes the value Answers="-,-,-,-,-,-"; finally in a third page it takes a longer value Answers="-,A,B,-,C,- ..."
How do I modify the same cookie in different pages? I have seen the CookieManager API: http://jmeter.apache.org/api/org/apache/jmeter/protocol/http/control/CookieManager.html
But can anyone please explain with an example? Thank you!
As there cannot be 2 cookies having the same name, the CookieManager is smart enough to replace existing cookie with a new value (see removeMatchingCookies(c); // Can't have two matching cookies line)
So
Request 1: nothing required as you cannot send a cookie having empty value
Requests 2 and 3: Add a Beanshell PreProcessor with the same code like:
import org.apache.jmeter.protocol.http.control.Cookie;
import org.apache.jmeter.protocol.http.control.CookieManager;
CookieManager manager = ctx.getCurrentSampler().getProperty("HTTPSampler.cookie_manager").getObjectValue();
Cookie cookie = new Cookie("Answers", "**VALUE**", sampler.getDomain(), sampler.getPath(), false, System.currentTimeMillis());
manager.add(cookie);
sampler.setCookieManager(manager);
Where **Value** for Request 2 will be -,-,-,-,-,- and for Request 3 will be -,A,B,-,C,- ...
For more information on Beanshell scripting and kind of Beanshell cookbook refer to How to use BeanShell: JMeter's favorite built-in component guide.

Cookie Manager of Apache JMeter doesn't add the cookie to POST request

I build up very simple test plan.
Login: POST, a session cookie is returned.
Get the state: GET, a user state is returned.
Create a resource: POST, JSON body is supplied for the resource.
So my 'Test Plan' looks like:
Test Plan
Thread Group
HTTP Request Defaults
HTTP Cookie Manager
Login (HTTP Request Sampler: POST)
Get State (HTTP Request Sampler: GET)
Create Resource (HTTP Request Sampler: POST)
The cookie generated by 'Login' is added to 'Get State' correctly.
But 'Create Resource' has NO cookie. I changed their order but it doesn't help.
I used the default options firstly and changed some options but it also doesn't help.
Is it a bug of JMeter? or just POST http request is not able to have cookie?
Please give me any advice.
[SOLVED]
I noticed that it is related to the path, not the method.
You'd like to look at the domain of the cookie as well as the path.
I mean, the path and the domain of a cookie could be defined in the server side through Set-Cookie header.
Another solution is to set CookieManager.check.cookies=false in jmeter.properties usually sitting besides the jmeter startup script in bin.
JMeter for some reasons thinks that you can't set the path=/something in a cookie if you are on http:/somesite/somethingelse. That is the path has to match the path your currently on.
I've never seen a browser enforce this limitation if it actually exists. I've seen and written several sites that use this technique to set a secure cookie and then forward someone say to /admin.
I wish this option was at least in the GUI so I didn't have to change the properties file. I think BlazeMeter is smart enough to turn off checking where flood.io is not. If it were up to me I'd just remove the code that checks this entirely. Why make the load tester any harder then it needs to be.
I had this turned on in my Spring Boot server which was causing the issue with CookieManager in jMeter:
server.servlet.session.cookie.secure=true
Removing this made the cookies flow ! Of course this is for localhost. For Production you may need this turned on.