并发请求与参数化
在本小节中我们将通过一个实例演示如何并发多个POST请求,并且从CSV文件中读取POST请求的参数值。
1. 设置并发数与Ramp-up时间
上一节已经通过Thread Group配置了一个模拟用户发送HTTP请求的测试计划,通过Thread Group的参数设置我们可以模拟并发多个用户执行同样的测试计划:
关于Ramp-up Period的具体解释可以参见官网手册的介绍:
The ramp-up period tells JMeter how long to take to "ramp-up" to the full number of threads chosen. If 10 threads are used, and the ramp-up period is 100 seconds, then JMeter will take 100 seconds to get all 10 threads up and running. Each thread will start 10 (100/10) seconds after the previous thread was begun. If there are 30 threads and a ramp-up period of 120 seconds, then each successive thread will be delayed by 4 seconds.
Ramp-up needs to be long enough to avoid too large a work-load at the start of a test, and short enough that the last threads start running before the first ones finish (unless one wants that to happen).
Start with Ramp-up = number of threads and adjust up or down as needed.
2. 从CSV文件读取参数
前面演示了如何发起GET请求。接下来在这里会演示如何发起多个POST请求,并且每个POST请求的参数都来自于CSV文件中。
-
在CSV文件中保存参数值
创建一个CSV文件(如c:\input.csv),输入如下示例数据
该CSV文件中共有2列,每列用逗号区分
-
JMeter中创建CSV Data Set Config
按如下方式在Thread Group中创建CSV Data Set Config:
指定从CSV文件获取参数,指定参数名字(第一列对应变量名为eng_value, 第二列对应变量名为chn_value),默认分隔符即为逗号:
-
JMeter中修改HTTP Request
修改请求为POST,并设置POST请求的参数名与参数值。其中eng, chn为POST请求的参数名,而后面的${eng_value}, ${chn_value}则为相应的参数值,而这些值是从CSV文件中读取出来的(上面进行CSV Data Set Config时,就设置了每一列对应的Varaiable Names)
-
更新PutsReq网站的响应脚本
可以通过PutsReq网站提供的Response Builder,来自定义对POST请求的处理方式。
-
JMeter发起并发请求并检查结果
调整好Thread Group的并发数和Ramp-up时间后,就可以发起并发请求并查看结果了。
如果请求数起过了CSV文件提供的行数时,如第6个请求,则会重新使用CSV文件第一行的数据,以此类推。