欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jmeter之Bean shell

程序员文章站 2022-07-07 18:56:53
...


1、什么是Bean Shell

  • BeanShell是一种完全符合Java语法规范的脚本语言,并且又拥有自己的一些语法和方法;
  • BeanShell是一种松散类型的脚本语言(这点和JS类似);
  • BeanShell是用Java写成的,一个小型的、免费的、可以下载的、嵌入式的Java源代码解释器,具有对象脚本语言特性,非常精简的解释器jar文件大小为175k。
  • BeanShell执行标准Java语句和表达式,另外包括一些脚本命令和语法。

官网:http://www.BeanShell.org/

2、Jmeter有哪些Bean Shell

  • 定时器:  BeanShell Timer

  • 前置处理器:BeanShell PreProcessor

  • 采样器:  BeanShell Sampler

  • 后置处理器:BeanShell PostProcessor

  • 断言:   BeanShell断言

  • 监听器:  BeanShell Listener

3、Bean Shell的使用

3.1、写Java代码

  • Sub.java
package calc;

public class SubCustom {
	
	public int sub_two_number(int a,int b){
		
		return a-b;
	}

	
}
  • Sum.java
package calc;

public class SumCustom {
	public int sum_two_number(int a,int b){
		
		return a+b;
	}

}

Jmeter之Bean shell
Jmeter之Bean shell

3.2、写好的代码打jar包

  • 在类上点击右键->Export->jar file
    Jmeter之Bean shell

Jmeter之Bean shell

3.3、调用jar包内的函数

将生成的jar包放入lib\ext下,重启Jmeter

import calc.*;
SumCustom sumCustom=new SumCustom();
int c=sumCustom.sum_two_number(1,2);
vars.put("c",c.toString());
  • int要转换成字符串才能在Jmeter中输出Jmeter之Bean shell

4、Bean Shell常用内置变量

  JMeter在它的BeanShell中内置了变量,用户可以通过这些变量与JMeter进行交互,其中主要的变量及其使用方法如下:

4.1、log

log:写入信息到jmeber.log文件,使用方法:log.info(“This is log info!”);

4.2、ctx

ctx:该变量引用了当前线程的上下文,使用方法可参考:org.apache.jmeter.threads.JMeterContext。

4.3、vars

vars - (JMeterVariables):操作jmeter变量,这个变量实际引用了JMeter线程中的局部变量容器(本质上是Map),它是测试用例与BeanShell交互的桥梁,常用方法:

  • vars.get(String key):从jmeter中获得变量值

  • vars.put(String key,String value):数据存到jmeter变量中

更多方法可参考:org.apache.jmeter.threads.JMeterVariables

4.4、props

props - (JMeterProperties - class java.util.Properties):操作jmeter属性,该变量引用了JMeter的配置信息,可以获取Jmeter的属性,它的使用方法与vars类似,但是只能put进去String类型的值,而不能是一个对象。对应于java.util.Properties。

  • props.get(“START.HMS”);  注:START.HMS为属性名,在文件jmeter.properties中定义
  • props.put(“PROP1”,“1234”);

4.5、prev

prev - (SampleResult):获取前面的sample返回的信息,常用方法:

  • getResponseDataAsString():获取响应信息

  • getResponseCode() :获取响应code

更多方法可参考:org.apache.jmeter.samplers.SampleResult

4.6、sampler

sampler - (Sampler):gives access to the current sample
官网:

  • http://jmeter.apache.org/usermanual/component_reference.html#BeanShell_Sampler

  • http://jmeter.apache.org/usermanual/component_reference.html#BeanShell_PreProcessor