Web Services 如何打印JMeterbeanshellAssert中的变量值

2nc8po8w  于 2022-11-24  发布在  Shell
关注(0)|答案(2)|浏览(169)

使用Jmeter,我通过REST API将值传递给Web服务。如果成功,API会将值更新到mongo DB。当使用JMeter BeanShell Assertion进行Assert时,我希望显示在请求中发送的值和存储在DB中的值。
我正在使用下面的脚本..

String req_data="${Request_Configuration}";
String res_data="${mongo_db_Configuration}";

if(res_data.equalsIgnoreCase(req_data)){
   Failure=false;
   FailureMessage = "Data stored in DB is correct";
   System.out.println("ReqData="+req_data);
   System.out.println("ResData="+res_data);
}
else{
   Failure = true;
   FailureMessage = "Data Stored in DB is NOT correct";
   System.out.println("ReqData="+req_data);
   System.out.println("ResData="+res_data);
}

我只是无法打印请求数据和资源数据。请帮助解决。

0kjbasz6

0kjbasz61#

您的脚本中存在问题。在Beanshell中,您无法访问${Request_Configuration}之类的变量,您需要使用vars.get("Request_Configuration")
vars是当前上下文的JMeterVariables类示例的简写。
因此,您的Beanshell声明代码应如下所示:

String req_data=vars.get("Request_Configuration");
String res_data=vars.get("mongo_db_Configuration");

if(res_data.equalsIgnoreCase(req_data)){
   Failure=false;
   FailureMessage = "Data stored in DB is correct";
   System.out.println("ReqData="+req_data);
   System.out.println("ResData="+res_data);
}
else{
   Failure = true;
   FailureMessage = "Data Stored in DB is NOT correct";
   System.out.println("ReqData="+req_data);
   System.out.println("ResData="+res_data);
}

我还建议使用log.info()而不是System.out.println(),因为在这种情况下,结果将进入 * jmeter.log * 文件,而不会被超过屏幕缓冲区大小“吃掉”。
请参阅How to use BeanShell: JMeter's favorite built-in component指南,了解有关Beanshell脚本和各种JMeter API对象公开到Beanshell的详细信息。

chy5wohz

chy5wohz2#

使用log.info()

    • 示例**
log.info("myVariable: " + vars.get("myVariable"));

我的使用案例:
我确实使用了在我的HTTP Request采样器中的BeanShell Assertion中截取的以下代码来打印出我的三个变量idtypevalue

log.info(Thread.currentThread().getName()+": " + SampleLabel + ": id: " + vars.get("id"));
log.info(Thread.currentThread().getName()+": " + SampleLabel + ":  +-type: " + vars.get("type"));
log.info(Thread.currentThread().getName()+": " + SampleLabel + ":  +-value: " + vars.get("value"));

同时打印内置的SampleLabel变量可以提示您记录此信息的采样器。

相关问题