Blog
Categories
- Agile
- Best Practices
- Center of Excellence
- Cloud
- Featured
- Functional Testing and Automation
- Giveaway
- Healthcare IT
- HP
- HP Discover Conference
- HP Software Patches
- Latest News
- LoadRunner
- Methodology
- Mobile
- Northway Navigator Club News
- Operating Systems
- Performance Testing and Automation
- Quality Assurance
- Security
- Service Virtualization
- SiteScope
- Training
- TweakLR
- Uncategorized
- VuGen Code
Archives
- April 2019
- September 2018
- July 2018
- June 2018
- October 2017
- August 2016
- April 2015
- February 2015
- September 2014
- August 2014
- May 2014
- April 2014
- March 2014
- October 2013
- September 2013
- August 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- February 2011
- July 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- September 2007
- August 2007
- July 2007
- October 2006
- April 2006
- March 2005
- October 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- April 2003
-
LoadRunner VuGen: Make any SERVER or URL a Parameter
Posted on July 30, 2009 by Admin
From Michael Hendershot:
// DEFINE VARIABLES
char *appurl; // Variable To Hold URL Name// ************************************************************************
// START – SELECT ENVIRONMENT TO RUN LOADTEST AGAINST BY UNCOMMENTING THE CORRECT ENVIRONMENT
// ************************************************************************//appurl = “server_url:9999”; // Application #1
appurl = “server_url:1111″; // Application #2// CONVERT URL TO PARAMETER TO USE IN URLS BELOW
lr_save_string(appurl,”p_Url”); Read Entire Entry -
LoadRunner VuGen: Determine if an iteger is odd or even
Posted on June 22, 2009 by Admin
Today’s code comes to us from Anthony Lyski:
“I ran into an issue today where I needed to know id an integer was an odd or even number. I found that this is a very effective way to determine. I put this code in a ‘for’ loop so you can see how it works over a range of numbers.”
int i;for (i=0;i<100;i++) {
if (i & 1){
lr_message(“%d is odd”, i);
}
else{
lr_message(“%d is even”, i);
}
} Read Entire Entry -
Programmatically Create A Unique Parameter Name
Posted on June 11, 2009 by Admin
Lets say you need to grab a list of items or numbers from a web page, such as GUID’s. These are not dynamic numbers, but will be used in a script as parameters. Here is how I captured the data I wanted and created my own DAT file:
Figure out the format you want the DAT file to be in. For me, this was a GUID, another GUID, and a user ID. I created a file and put the top line in with the headers GUID1, GUID2, LOGIN and saved it to my C: drive in the root folder. I already knew the login so I had already set this up a a paramet Read Entire Entry
-
LoadRunner VuGen: What’s Up With SPRINTF?
Posted on May 27, 2009 by Admin
In my custom load testing class, we usually get into specific code examples that demonstrate how to do some tips and tricks in VUGen. One of the things I always like to bring up is the behavior or sprintf. This is a commonly used C function for string manipulation. Many a young LoadRunner lad has come across the dreaded memory violation error in their output log when using sprintf:
Error: C interpreter run time error: Action.c (10): Error — memory violation : Exception ACCESS_VIOLATION received.
Let’s look at why. Here is some code: Read Entire Entry -
VuGen: Dynamic data in web_submit_data
Posted on May 5, 2009 by Admin
This was developed as a result of load testing a bridal registry site written with BlueMartini. There needed to be a way for the Vuser to clean up its bridal registry at the end of each iteration. However, I couldn’t be assured of a specific number of items (because the item catalog changed frequently, and we varied the number of items added).
The web_submit_data function looks for a symbolic “LAST” to determine when it has reached the end of a variable argument list. This was modified by inserting it into a predefined argumen Read Entire Entry
-
VuGen Custom Function: xstrcat
Posted on April 23, 2009 by Admin
// – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –
// Brian Wilson – TechSouth, LLC
// – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –// – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –
// xstrcat()
// more efficient version of strcat
// – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –
char *xstrcat( char *dest, char *src )
{
while (*dest) dest++;
while (*dest++ = *src++);
return –dest;
}
/*char * xstrcat(char * dest, const char * src) // alternate version Read Entire Entry -
VuGen: Replace Special Characters
Posted on April 14, 2009 by Admin
This function (called EncodeText) may be a bit out of date, but can be used to replace special characters and use different encoding. You could put this in the very top of the vuser_init section of your script, or in the globals.h or other include file.
//——begin code—————
EncodeText(New,Orig)
char *New;
char *Orig;
{
int New_index;
int Orig_index;
int len;len = strlen(Orig);
New_index = 0;
for (Orig_index=0;Orig_index<len;Orig_index++) {
Read Entire Entry -
VuGen RTE Protocol: Autogenerate Transactions
Posted on April 2, 2009 by Admin
/*
This custom RTE function will auto generate a transaction timing
for every TE_wait_text. Paste this code into the top of your script,
or use as an include file.
Replace TE_wait_text with this function called TE_custom_wait_text
using the search and replace tool.*/
int TE_custom_wait_text ( char * text, int timeout)
{
int rtnCode = 0;
char myTransName[24];
char spacelessText[24];
char * spacePointer;memset ( spacelessText, ‘\0’, sizeof(spacelessText));
{
* spacePointer = ‘_’;
}sprintf (myTransName, Read Entire Entry
-
VuGen: Using Undocumented Functions
Posted on March 31, 2009 by Admin
From James Pulley:
———————-I have never really cared for the use of the lr_user_data_point() and
having to pull up the user defined graphs for analysis. Instead I take
advantage of some undocumented functionslr_set_transaction()
lr_get_transaction_duration()I use these functions in tandem to determine if I need to create a custom tracking transaction where a transaction has run too long and is out of spec.
I can then compare raw numbers at the end of the test, a ratio of <transaction name>_out_of_spe Read Entire Entry
-
Web Click and Script actually does work
Posted on March 27, 2009 by Admin
On my latest engagement, I needed a web script to go with all of the Citrix scripts I am creating. The web script was giving me some issues with correlation and NT authentication, so I decided to give Web Click and Script a try. I didn’t have much expectation since neither I nor my colleagues have been able to get it to work in the past, but I thought that it would be worth a try in 9.5. Imagine my surprise when it actually worked! This could partly be because the javascript is minimal. That seems to be where C&S hangs.
There i Read Entire Entry
-