网关LR测试脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网关LR测试脚本相关的知识,希望对你有一定的参考价值。

一、网关引擎测试脚本

http://10.110.20.197/api-gateway-engine/API/LsqGrp1/V0001/LsqApi1A?param11=req11&param12=req12&param21=req21&param22=req22

#include "web_api.h"
Action()
{
int HttpRetCode;
web_add_cookie("MUID=1758581795A969EC26F352D291A96FCA; DOMAIN=www.bing.com");

web_add_header("Content-Type","application/json");
web_add_header("Accept","application/json");
web_add_header("x-ca-front-signature","oGvqUMw7fZISooGjY8z3qbVeb49SdDyDQCBAKS3t4xc=");
web_add_header("x-ca-front-devclientkey","f9993621997249ae8c930067011d0d8a");
web_add_header("x-ca-front-sign-headers","x-ca-front-timestamp,x-ca-front-nonce,x-ca-request-mode");
web_add_header("x-ca-front-timestamp","1503383699505");
web_add_header("x-ca-front-nonce","223344");
web_add_header("x-ca-request-mode","debug");
web_add_header("x-auth-token","445db7ec304a47778632694d7c8983a7");

web_url("favicon.ico",
"URL=http://10.110.20.197/api-gateway-engine/API/LsqGrp1/V0001/LsqApi1A?param11=req11&param12=req12&param21=req21&param22=req22",
"Resource=1",
"RecContentType=image/x-icon",
"Referer=",
"Snapshot=t1.inf",
LAST);

//{"result11":"res11-req11","result12":"res12-req12","result21":"res21-req21","result22":"res21-req22"}

HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);
if (HttpRetCode == 200)
lr_log_message("The Vuser exec-succeed!");
else
lr_log_message("The Vuser exec-failed!");

return 0;

}

二、SvcApp测试脚本

http://10.110.20.197/DemoWeb/rest/SpringJson/GetJson2.do?param11=req11&param12=req12&param21=req21&param22=req22

#include "web_api.h"
Action()
{
int HttpRetCode;
web_add_cookie("MUID=1758581795A969EC26F352D291A96FCA; DOMAIN=www.bing.com");

web_add_header("Content-Type","application/json");
web_add_header("Accept","application/json");
web_add_header("x-ca-front-signature","oGvqUMw7fZISooGjY8z3qbVeb49SdDyDQCBAKS3t4xc=");
web_add_header("x-ca-front-devclientkey","f9993621997249ae8c930067011d0d8a");
web_add_header("x-ca-front-sign-headers","x-ca-front-timestamp,x-ca-front-nonce,x-ca-request-mode");
web_add_header("x-ca-front-timestamp","1503383699505");
web_add_header("x-ca-front-nonce","223344");
web_add_header("x-ca-request-mode","debug");
web_add_header("x-auth-token","445db7ec304a47778632694d7c8983a7");

web_url("favicon.ico", 
"URL=http://10.110.20.197/DemoWeb/rest/SpringJson/GetJson2.do?param11=req11&param12=req12&param21=req21&param22=req22", 
"Resource=1", 
"RecContentType=image/x-icon", 
"Referer=", 
"Snapshot=t1.inf", 
LAST);

//{"result11":"res11-req11","result12":"res12-req12","result21":"res21-req21","result22":"res21-req22"}

HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);
if (HttpRetCode == 200)
lr_log_message("The Vuser exec-succeed!");
else
lr_log_message("The Vuser exec-failed!");

return 0;

}

以上是关于网关LR测试脚本的主要内容,如果未能解决你的问题,请参考以下文章

LR学习笔记9-回放测试脚本

性能测试工具LoadRunner13-LR之Virtual User Generator 创建java脚本

自动生成LR脚本且运行

性能测试学习第九天_脚本编写

LR学习笔记12-测试脚本的增强方法

性能测试工具LoadRunner12-LR之Virtual User Generator 脚本编写验证步骤