51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2020|回复: 2
打印 上一主题 下一主题

LoadRunner 脚本开发和常用函数

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2018-5-11 16:43:39 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
开发性能测试脚本原则.简单 正确 高效

在lr中,脚本运行是解释执行的。所以在运行时,需要先编译。

局部变量和全局变量

1、在init、action、end中定义的变量就是局部变量

2、在globals.h中定义的变量是全局变量

3、什么时候定义全局变量 ? 整个过程中固定不变的,例如URL地址、KEY、其他

复制代码
int a=100;//这个a是文件级别的。除了globals.h 都可访问
  1. Action()
  2. {
  3.     int a =10;
  4.     int b =6; //在lr要使用变量,必须放在最上面。
  5.     printf("%d",a);//c语言自带的打印函数不能用
  6.     lr_output_message("%d",a);
  7.     //int c =6;不支持其他位置定义变量
  8.     return 0;
  9. }
复制代码

复制代码
复制代码
  1. vuser_init()
  2. {
  3.     p=(char*)malloc(1024*sizeof(char)); //给p分配内存
  4.     return 0;
  5. }
  6. Action()
  7. {
  8.     lr_output_message("hello");
  9.     return 0;
  10. }
  11. vuser_end()
  12. {
  13.     free(p);
  14.     return 0;
  15. }

  16. globals.h

  17. #ifndef _GLOBALS_H
  18. #define _GLOBALS_H

  19. //--------------------------------------------------------------------
  20. // Include Files
  21. #include "lrun.h"
  22. #include "web_api.h"
  23. #include "lrw_custom_body.h"

  24. //--------------------------------------------------------------------
  25. // Global Variables
复制代码


#endif // _GLOBALS_H
char *p ; //定义变量p
复制代码
复制代码
Action()
  1. {
  2.     //lr对指针的支持;
  3.     char var ='A';//定义字符
  4.     char *s =&var;//定义指向字符的指针,取字符的地址
  5.     char *name ="LoadRunner";//定义指针,将字符串赋值给指针。
  6.     lr_output_message("var=%c",*s);//以字符的形式输出指针
  7.     lr_output_message("name=%s",name);//以字符串的形式输出指针
  8.     return 0;
  9. }
复制代码

复制代码
复制代码
  1. Action2()
  2. {
  3.     char p[]={'A','B','\0'};//这种方式赋值,需要手动加上/0。因为输出的时候,只有遇到\0才结束.不加\0的话 会输出ABLoad Runner!!!。尽量不要用这种方式赋值
  4.     char s[]="Load Runner!!!";//这种方式赋值,会自动加上\0
  5.     lr_output_message("p=%s",p);
  6.     lr_output_message("s=%s",s);
  7.       lr_output_message("%d",sizeof(s)); //返回15.多了一个看不到的\0。这个不建议用
  8.       lr_output_message("%d",strlen(s)); //返回14。用这个。

  9. return 0;
  10. }
复制代码

复制代码
    char a[5] ="ABCDE";//因为定义的是5,所以自动加上的\0被丢了。所以还要往后打。应该把长度改成>5的数值。保证数据都能装下
    char b ='a';
    lr_output_message("a数组的输出是:%s",a);
//运行结果:a数组的输出是:ABCDEa
复制代码
//LR 对判断循环语句的支持
  1.         int m=0;
  2.         int n=5;
  3.         int a[5]={1,2,3,4,5};
  4.         int i=0;
  5.         if(m==0){
  6.             lr_output_message("m=0");
  7.         }
  8.         else
  9.             { lr_output_message("m<>0");
  10.         }
  11.          lr_output_message("m++是:%d",m++);
  12.          lr_output_message("++n是:%d",++n);
  13.          for(i=0;i<5;i++){
  14.              lr_output_message("a[%d]=%d",i,a[1]);
  15.          }
  16.          lr_output_message("*********************");
  17.          while(n>0){
  18.              lr_output_message("in while");
  19.             n--;
  20.          }
复制代码

复制代码
需要注意的事项:

1、注意中文的分号。注意全角半角

2、变量使用前尽量初始化。如果不初始化,可能是0,可能是空指针等。

3、字符数组尽量少用。尽量用字符串

-----------------------------------------------------------------------------------------------------

LoadRunner中的三种类型的函数:

a、通用函数 lr开头的(例如日志函数,思考时间函数...)

b、与编程语言相关的函数

c、与协议相关的函数

自定义函数

复制代码
  1. Action()
  2. {
  3.     vuser_init(); //action init end 都是函数。可以互相调用。
  4.        lr_output_message("action");
  5.     return 0;
  6. }
  7. 复制代码
  8. 复制代码
  9. Action()
  10. {
  11.     int a=1;
  12.     int b=2;
  13.     lr_output_message("a+b=%d",sum(a,b));
  14.     return 0;
  15. }
  16. sum(int a,int b){
  17.     return a+b;
  18. }
  19. 复制代码
复制代码

将sum函数放入c:/a.h 文件中,在globals.h中加上#include "c:/a.h" 也可以正常调用。

或者 file-addfilesscript将a.h引用。并在action最上方引入#include "a.h" 这里不需要加路径,不需要加分号。

查某一个函数的帮助。F1

通用函数解析

  1. lr_think_time()

  2. lr_get_host_name( )

  3.     char * my_host;
  4.     my_host =lr_get_host_name();
  5.     lr_output_message("%s",my_host);


  6. lr_whoami()

  7. int id, scid;
  8. char *vuser_group;
  9. lr_whoami(&id, &vuser_group, &scid);
  10. lr_message( "Group: %s, vuser id: %d, scenario id %d",vuser_group, id, scid);

复制代码

lr_get_attrib_string函数的使用



1)通过运行时设置使用

2)通过命令行

第一种使用方法:获取全局变量的值。

    char *p =lr_get_attrib_string("hello");
    lr_output_message("%s",p);  
        //返回结果
        Action.c(13): (null)
设置hello的值

继续运行返回:Action.c(13): abcd

第二种使用方法:命令行传入。



LoadRunner错误机制解析

1、 LoadRunner错误处理机制 2、lr_continue_on _error函数解析

运行时,是mmdrv.ext进程执行脚本.





lr_continue_on _error 会覆盖运行时设置的设置。

lr_continue_on_error(1); 后面发生错误继续执行

lr_continue_on_error(0);后面发生错误结束执行

日志函数解析

lr_output_message 不仅在本地写,还会上传到主机、 lr_log_message 只在本地写 、 lr_message 、 lr_error_message区别



调试代码

1) F10 一步一步的执行 F9断点

2) 右键代码-- 可以选择快速打开脚本目录

3) 右键代码-- 可以选择快速定位到回放日志的地方

与编程语言相关的函数(可在文档中查到。)

1) strcpy 拷贝一个字符串到另一个字符串 与 strcat 连接2个字符串

复制代码
  1. Action()
  2. {
  3.     char fullpath[1024],*filename ="logfile.txt";
  4.     strcpy(fullpath,"c:\\tmp"); //拷贝一个字符串到另一个字符串中。在头进行添加
  5.     lr_output_message("fullpath after strcpy:%s",fullpath);
  6.     strcat(fullpath,"\\"); //连接2个字符串,在尾进行添加
  7.     strcat(fullpath,filename);
  8.     lr_output_message("Full path of file is %s",fullpath);
  9.     return 0;
  10. }
  11. //运行结果
  12. Action.c(5): fullpath after strcpy:c:\tmp
  13. Action.c(8): Full path of file is c:\tmp\logfile.txt
复制代码

复制代码
2) strcmp函数

3) atoi函数解析

atoi 类型转换 前面是数字进行转换,后面不是的进行丢弃。

复制代码
  1. Action()
  2. {
  3.     int i=0;
  4.     char *s="7元";
  5.     i = atoi(s); // 类型转换 前面是数字进行转换,后面不是的进行丢弃。
  6.     lr_output_message("price $%d",i);
  7.     return 0;
  8. }
复制代码

//运行结果
Action.c(6): price $7
复制代码
4)sprinf 将字符串组合成特定的格式

复制代码
  1. Action()
  2. {
  3.     int index =56;
  4.     char filename[64],*suffix="txt";
  5.     sprintf(filename,"log_%d_%s",index,suffix);
  6.     lr_output_message("the new file name is %s",filename);
  7.     return 0;
  8. }
复制代码

//执行结果
Action.c(6): the new file name is log_56_txt
复制代码
5) time  以秒的形式,返回197001010000到现在的时间差。

复制代码
  1. Action()
  2. {
  3.     typedef long time_t;
  4.     time_t t;
  5.     lr_message ("Time in seconds since 1/1/70: %ld\n", time(&t));
  6.     lr_message ("Formatted time and date: %s", ctime(&t));
  7.     return 0;
  8. }
复制代码

运行结果:
Time in seconds since 1/1/70: 1498489129
Formatted time and date: Mon Jun 26 22:58:49 2017
复制代码
6) 文件操作.

与协议相关的函数

1)web_link 与 web_url (都是get)

2)web_submit_form 与 web_submit_data (都是POST) web_submit_form中的hidden自动发送

3)web_custom_request 自定义请求,可上传文件。

z4)web_add_header 添加指定的头给下一个http请求。web_add_auto_header 下面所有的请求都加上

复制代码
  1. Action()
  2. {
  3.     web_add_header("ggg", "myLoadRunner");
  4.     web_url("WebTours",
  5.         "URL=http://127.0.0.1:1080/WebTours/",
  6.         "Resource=0",
  7.         "RecContentType=text/html",
  8.         "Referer=",
  9.         "Snapshot=t10.inf",
  10.         "Mode=HTTP",
  11.         LAST);
  12.     return 0;
  13. }
复制代码

//运行结果
Action.c(4):     ggg: myLoadRunner\r\n
复制代码
5)web_get_int_property 拿到HTTP request的返回信息

复制代码
  1. int HttpRetCode;
  2. web_url("my_home",
  3.     "URL=http://my_home",
  4.     "TargetFrame=_TOP",
  5.     LAST );
  6. HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);
  7. if (HttpRetCode == 200)
  8.     lr_log_message("The script successfully accessed the My_home home page");
  9.     else
  10.     lr_log_message("The script failed to access the My_home home page ");
  11. }
复制代码

复制代码
需要注意的

在脚本的任何系统函数中,都不能使用C语言函数。在系统函数之间可以任意使用C元素。如果在函数中药使用C语言的变量,LR提供参数化的功能。

DLL解析

lr_load_dll 加载一个外部的dll

复制代码
  1. vuser_init()
  2. {
  3.    lr_load_dll("c:\\md5.dll"); //md5.dll,自己准备。有一个方法Calculate,将字符串用MD5加密
  4.     return 0;
  5. }
  6. Action()
  7. {
  8.     char *p="myLoadRunner";
  9.     int len =strlen(p);
  10.     char *result=(char *)Calculate(p,len);
  11.     lr_output_message("MD5的结果是:%s",result);
  12.     return 0;
  13. }
  14. //返回MD5加密的字符串
复制代码


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-6 11:22 , Processed in 0.084542 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表