Ce este corelația?
Corelația, așa cum sugerează și numele, este un mecanism de definire a unei relații între două variabile sau entități. Un dicționar îl definește ca „relație statistică între două sau mai multe variabile, astfel încât modificările sistematice din cealaltă să însoțească modificările sistematice ale valorii unei variabile”.
În acest tutorial, vom afla despre
- De ce avem nevoie de corelație?
- Corelația automată
- Corelarea manuală
- Înțelegerea funcției Web_reg_save_param
De ce avem nevoie de corelație?
Să înțelegem corelația cu următorul scenariu.
Luați în considerare că înregistrați un script folosind LoadRunner.
Comunicare client-server
- În timpul înregistrării, clientul trimite o cerere către server pentru a începe o sesiune
- Un server primește cererea și alocă un nou ID de sesiune ABC
- Clientul stochează ID-ul sesiunii ABC în script.
- Clientul începe sesiunea cu ID-ul ABC și trimite o cerere către un server pentru a-i permite înregistrarea
- Serverul recunoaște ID-ul ABC și permite clientului să înregistreze scriptul
- Acum, să studiem comunicarea client-server în timpul redării
- În timpul redării, un client trimite o cerere către server pentru a începe o sesiune
- Un server primește cererea și alocă un nou ID de sesiune XYZ
- Un client începe sesiunea cu ID-ul de sesiune înregistrat anterior ABC și trimite cererea către server pentru a-i permite înregistrarea
- Un server nu poate identifica ID-ul ABC deoarece aștepta ID-ul XYZ pe care l-a alocat și sesiunea eșuează.
Avem nevoie de o soluție care să capteze analiza valorii dinamice trimise în timpul rulării și să returnăm această valoare înapoi la server. Iată cum va arăta comunicarea client-server cu această soluție
- În timpul redării, un client trimite o cerere către server pentru a începe o sesiune
- Un server primește cererea și alocă un nou ID de sesiune ZZZ
- Un client analizează acest nou ID de sesiune ZZZ din cerere.
- Un client trimite o cerere pentru a începe sesiunea cu ID-ul ZZZ
- Un server recunoaște ID-ul ZZZ și permite clientului să redea scriptul
Aceasta nu este altceva decât corelație .
Faceți clic aici dacă videoclipul nu este accesibil
În cazul VUGen, corelația este o relație obligatorie între un răspuns și orice cerere precedentă.
Există diverse situații în care o cerere se bazează pe un răspuns primit de la server, cum ar fi un ID de sesiune, data / ora serverului care este preluată de pe server. Aceste valori sunt diferite de fiecare dată când rulați o aplicație sau înregistrați un script. Evident, dacă execuția scriptului depinde de o valoare returnată de server, înseamnă că trebuie să găsiți un mecanism în care să puteți „prinde” răspunsul serverului și să atașați acele cereri pe care serverul le așteaptă. Aceasta se numește de obicei corelație în LoadRunner.
În cuvinte simple, soluția prin utilizarea corelației este:
- Captează valoarea de ieșire dintr-un pas
- Utilizați valoarea capturată mai sus pentru a servi drept intrare la toți pașii următori
Corelația este clasificată în 2 categorii în VUGen / LoadRunner:
- Corelația automată
- Corelarea manuală
Corelarea automată
LoadRunner provides a mechanism to easily perform correlation in automatic fashion.
VUGen will require you to run a recorded script at least two times so it can internally compare the varying values in the server response.
Automatic correlation can be classified into 3 categories:
- Auto-Detect Correlation
- Rule-Based Correlation
- Correlating All Statements
Rule Name | When to Use |
Auto-detect Correlation | Detect and correlate dynamic data for application servers supported by HP LoadRunner |
Rule-Based | Used when working with a non-supported application server for which the context is known. |
Correlate All | Helps correlate all dynamic data in blind fashion. |
Though Automatic Correlation seems simpler, it can be error-prone and works in not more than 5% of the cases. It is always advisable to use manual correlation.
To configure automatic correlation at the time of recording, perform below configuration in Record Time Setting after a script has been recorded.
Click on Record =>Recording Options (or click Ctrl +F7),
>
Below window will open:
Click on Correlation =>Configuration - below window will open.
Here, you need to mark as checked against all applications (ASPNET) etc., which are used in your subject application. On the right-hand side, you can see the rules which will detect possible candidates for correlation e.g. _VIEWSTATE. You can also add more applications or custom rules by clicking on New Rule button.
You can also click on RULES, you will see as below:
In order for Automatic Correlation to work, you need to ensure Rules Scan is marked as checked. If you click on automatically correlate values found, VUGen will not prompt you with the choice once a correlation candidate is found, instead, it will just correlate them.
We will understand API used for correlation later. However, it is advisable to use HTML comparison instead of text comparison.
Once you’ve selected any rules, click on OK button to close the windows.
Click on from menu and VUGen will regenerate script (without having to record) with new configurations. VUGen will automatically add a required piece of code to handle correlation. We will look at the sample in more detail in Manual Correlation.
Please note, if you perform correlation manually or use automatic correlation, the piece of code will contain exactly same syntax and function.
Steps to auto-correlate a script:
- Record a script
- Replay script
- Identify the values to be correlated
- Select the values and click the auto-correlate button
- Verify the script by running again. A successful run means successful correlation.
Tip:
- Correlation helps run your script with different values
- Correlation also reduces the size of your script
Manual Correlation
Manual correlation is about writing code directly into your script to cater for ever-changing values. We can split it into below steps:
- Determine the value to capture
- Find the right and left text boundaries of the value to capture (WEB)
- Find which occurrence of the text boundaries should be used
- Add a web_reg_save_param function to the script, above the piece of code which requests the page with the value to capture
- Add a parameter name, left boundary, the right boundary, and occurrence to the function
- Parameterize the dynamic value in the script every time it occurs
- Verify correct execution
web_reg_save_param (" OracleAppJSESSIONID3","LB/IC=JSESSIONID=","RB/IC=;","Ord=l","Search=headers","RelFrameId=l",LAST);web_reg_save_param("Siebel_Analytic_ViewState2","LB/IC=ViewState\" value=\"","RB/IC=\"","Ord=1","Search=Body","RelFrameId=l",LAST);
Manual correlation can be done by VUser Comparison. Steps in VUser Comparison method of Correlation can be split as below:
- Identify Dynamic values that need to be correlated
- Find Servers response containing the Dynamic value
- Capture the Dynamic value in a parameter
- Replace every occurrence of the Dynamic value with the parameter
- Verify Changes
Understanding Web_reg_save_param function
VUGen provides multiple functions or APIs to correlate candidates, including:
- web_reg_save_param
- web_reg_save_param_ex
- web_reg_save_param_regexp
- web_reg_save_param_xpath
While a brief introduction is being provided here, for a detailed understanding of functions and their parameters, open VUGen, write function (or use Steps Toolbox), move a cursor on the function and click F1 - get yourself acquainted with VUGen help and make a habit. You will have to deal with it a lot when working in the industry.
Here we go with the function details:
web_reg_save_param(Parameter Name , Left Boundary , Right Boundary )
List of Attributes
Convert: The possible values are:
HTML_TO_URL: convert HTML-encoded data to a URL-encoded data format
HTML_TO_TEXT: convert HTML-encoded data to plain text format; this attribute is optional.
Ignore Redirections: If "Ignore Redirections=Yes" is specified and the server response is redirection information (HTTP status code 300-303, 307), the response is not searched. Instead, after receiving a redirection response, the GET request is sent to the redirected location, and the search is performed on the response from that location.
This attribute is optional. The default is "Ignore Redirections=No".
LB: The left boundary of the parameter or the dynamic data. If you do not specify an LB value, it uses all of the characters from the beginning of the data as a boundary. Boundary parameters are case-sensitive. To further customize the search text, use one or more text flags. This attribute is required. See the Boundary Arguments section.
NOTFOUND: The handling option when a boundary is not found, and an empty string is generated.
"Not found=error", the default value, causes an error to be raised when a boundary is not found.
"Not found=warning" ("Not found=empty" in earlier versions), does not issue an error. If the boundary is not found, it sets the parameter count to 0 and continues executing the script. The "warning" option is ideal if you want to see if the string was found, but you do not want the script to fail.
Note: If Continue on Error is enabled for the script, then even when NOTFOUND is set to "error", the script continues when the boundary is not found, but an error message is written to the extended log file.
This attribute is optional as well.
ORD: Indicates the ordinal position or instance of the match. The default instance is 1. If you specify "All," it saves the parameter values in an array. This attribute is optional.
Note: The use of Instance instead of ORD is supported for backward compatibility, but deprecated.
RB: The right boundary of the parameter or the dynamic data. If you do not specify an RB value, it uses all of the characters until the end of the data as a boundary. Boundary parameters are case-sensitive. To further customize the search text, use one or more text flags. This attribute is required. See the Boundary Arguments section.
RelFrameID: The hierarchy level of the HTML page relative to the requested URL. The possible values are ALL or a number. Click RelFrameID Attribute for a detailed description. This attribute is optional.
Note: RelFrameID is not supported in GUI level scripts.
SaveLen : Lungimea unui șir secundar al valorii găsite, de la offsetul specificat, pentru a fi salvat în parametru. Acest atribut este opțional. Valoarea implicită este -1, indicând salvarea la sfârșitul șirului.
SaveOffset : Decalajul unui sub-șir din valoarea găsită, pentru a fi salvat în parametru. Valoarea de compensare trebuie să fie negativă. Valoarea implicită este 0. Acest atribut este opțional.
Căutare: domeniul de căutare - unde să căutați datele delimitate. Valorile posibile sunt Anteturi (Căutați numai antetele), Corpul (căutați doar datele corpului, nu antetele), Fără resursă (căutați doar corpul HTML, excluzând toate antetele și resursele) sau TOATE (corpul căutării, antetele și resursele) . Valoarea implicită este ALL. Acest atribut este opțional, dar în general preferat.