Jmeter中随机读取测试文件的内容

Posted tuo_chao

tags:

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

性能测试中需要测试这么一个场景:测试数据是一堆的地址,存储在一个文件中。为了模仿真实的用户访问场景,需要从这个文件中每次随机选取地址,拼接在一个固定的域名后发送出去。看了半天jmeter的帮助文档,也在网上搜了半天,用jmeter的Groovy脚本解决:

import java.text.*;
import java.io.*;
import java.util.*;

String csvTest = "test_data.csv";
//csvDir = vars.get("fileLocation");
String csvDir = "./";
ArrayList strList = new ArrayList();

try {
  File file = new File(csvDir + csvTest);

  if (!file.exists()) {
    throw new Exception ("ERROR: file " + csvTest + " not found in " + csvDir + " directory.");
  }

  BufferedReader bufRdr = new BufferedReader(new FileReader(file));
  String line = null;

  while((line = bufRdr.readLine()) != null) {
    strList.add(line);
  }

  bufRdr.close();

  Random rnd = new java.util.Random();
  log.info(strList.get(rnd.nextInt(strList.size())));
  vars.put("data",strList.get(rnd.nextInt(strList.size())));
}
catch (Exception ex) {
  IsSuccess = false;
  log.error(ex.getMessage());
  System.err.println(ex.getMessage());
}

 

这样每次发请求时jmeter会随机读取“test_data.csv”这个文件中的内容,并存为data变量,在http request中设置Send Parameter With the Request,用${data}的方式把这个变量取出来就好了。

以上是关于Jmeter中随机读取测试文件的内容的主要内容,如果未能解决你的问题,请参考以下文章

Jmeter使用csv文件读取测试数据

jmeter能不能随机读取csv文件中的参数?

JMeter接口测试——参数化(从文件中读取参数)

jmeter-解决CSVRead每次只读取第一行参数问题

jmeter参数化随机取值实现

Jmeter参数化随机取值实现