May 17, 2018

Loadrunner scripting useful functions

1.How to capture entire response in loadrunner using web reg save param?
using web_reg_save_param("EntireResponse","LB=","RB=","Search=Body",LAST);

2.Creating Random numbers in loadrunner?
int randomValue=Rand() %(Max -Min +1))+Min;

3.How to process and fetch a value from JSON body?
If you need to process from a response body. First Capture EntireResponse
web_reg_save_param("EntireResponse","LB=","RB=","Search=Body",LAST);

Now we have inbuilt function that is
lr_eval_json("Buffer=EntireResponse","JsonObject=EntireResponseJsonObject",LAST);

Now we have a json Object now using this we can using JSON query to capture the required data.
lr_json_get_valuess("JsonObject=EntireResponseJsonObject","ValueParam=capturedValue","QueryString=$..ValueObjectName",LAST);

4.How to generate future date using the LR inbuilt function?
For creating Future date or past date we have an inbuilt LR function that is
1.For Present Date:
lr_save_datetime("{DateFomat",DATE_NOW,"{DateLRParam}");

Example:
lr_save_datetime("%m/%d/%Y",DATE_NOW,"PresentDate");

2.Future Date:
lr_save_datetime("{DateFomat",DATE_NOW+(ONE_DAY*{NoOfDays}),"{DateFutureLRParam}");

Example:
lr_save_datetime ("%Y/%m/%d", DATE_NOW+(ONE_DAY*3), "FutureDate");

3.Past Date:
lr_save_datetime("{DateFomat",DATE_NOW-(ONE_DAY*{NoOfDays}),"{DatePastLRParam}");

Example:
lr_save_datetime ("%Y/%m/%d", DATE_NOW-(ONE_DAY*3), "PastDate");

Mar 12, 2018

JDBC-SQL Connection in JMeter

  Hi Guys, this is my notes on connecting to SQL instance through JMeter. For this example I am using latest version of JMeter that is 4.0 and SQL server 2017. We also need the latest SQL JDBC driver jar, I have downloaded the JDBC Driver 6.0.
 1.Open your JMeter instance and add a JDBC config element which helps for setting up the connection to sql server.


2.Now give all the details like DB connection pool name (which is important when using the JDBC sampler),
SQL server URL name, Driver Class ( I am using com.microsoft.sqlserver.jdbc.SQLServerDriver as I am using latest JDBC driver, if your are using JDBC driver less than 5.0 version then you must use the other one that is com.microsoft.jdbc.sqlserver.SQLServerDriver),Username and Password.

3.Now one thing is pending that we need to make sure that the JMeter is able to access the Microsoft JDBC driver so for this purpose we can include the jar file in TestPlan, where we have the option to browse and include that jar files.

4.Now the setup is done, it is time to add the JDBC request sampler along with the required query and donot forget the DB pool connection name which we assigned in JDBC configuration.

5.Finally add listener and run it.

Feb 27, 2018

Public Static Void main explained

This is my notes on public static void main method which we use regularly in our Java Code. I just literally used it without knowing why it is structured like that, so I started looking for this. Below are my points, Please do correct me if I am wrong.
Before going into deep what exactly is happening let us see the structure of this method.
PUBLIC  STATIC  VOID  MAIN (STRING A[])
Here
Public keyword is one of the Access Modifiers which  are available in Java
Static keyword is used for class-method binding
Void specifies the return type
Main is the method name
String A[] : String represents datatype and A represents the variable name

Basically when we execute the “.java” code it creates a “.class” file with the same name which we have given for “.java” code. When we try to execute this class file the JVM instance will takes the class name and by defaults searches for main method.

Here it will not create any object to that class instead it searches for the main method which is bound to that class, so for this purpose we need to specify the “Static” keyword  because “Static” keyword helps to bind the method to that particular class instead to the object of that class.
Just binding is not sufficient but also we need to take care of its accessibility, so for this purpose we use the “public” keyword which specifies that this method can be accessible by other classes also.
So now we can access the main method directly using the class itself.
For example, consider the below sample java code.

public class Sample {
public static void main(String a[])
{
System.out.println("Welcome to codeanyway blog");
}
}
As we specified the static keyword now the JVM can access the main() as Sample.main() directly.
     Now there is another constraint in Java that is every method should have a return type. We specified it void as we are not returning any data in this method.
    We are giving parameters to main method because it facilitates us to pass data during execution.



Feb 25, 2018

UNIX Commands

 This is my personal notes of UNIX commands with practise snapshots. Hope it might be helpful for others also, please correct if there are any wrongs in the commands.

Commands:

1.Uname: This command is used to get the details about OS details and the kernel version details. This command is useful if you don't know any details about the OS on which you are working.
Options:
·        -a: This option is useful if you want all the information of the system
·        -s: This option prints only the kernel name
·        -r:  This option prints only the kernel release details
·        -v: This option prints the kernel version details
·        -m: This option prints the details of the machine hardware
·        -p:  This option prints the processor details
·        -n: This option prints the network node hostname
·        -i: This option prints the details about non-portable hardware network

To get a better view of these commands I took the snapshots of my linuxpractiseinstance.

-a:


-s:
-r:
-v:
-n: